diff --git a/code/game/area/Space Station 13 areas.dm b/code/game/area/Space Station 13 areas.dm index 1e37c2b02a..e848d25c3d 100755 --- a/code/game/area/Space Station 13 areas.dm +++ b/code/game/area/Space Station 13 areas.dm @@ -2683,13 +2683,3 @@ var/list/the_station_areas = list ( name = "\improper Junker" icon_state = "shuttlered" requires_power = 1 - -// CHOMPAdd Start new Map -/area/SouthernCrossV2/Maints - name = "\improper Evac" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Evac - name = "\improper Evac" - icon_state = "shuttle2" -// CHOMPAdd End new Map diff --git a/code/modules/asset_cache/asset_list_items.dm b/code/modules/asset_cache/asset_list_items.dm index 5cab053545..5a9fd3db63 100644 --- a/code/modules/asset_cache/asset_list_items.dm +++ b/code/modules/asset_cache/asset_list_items.dm @@ -484,5 +484,15 @@ "southern_cross_nanomap_z9.png" = 'icons/_nanomaps/southern_cross_nanomap_z9.png', "southern_cross_nanomap_z10.png" = 'icons/_nanomaps/southern_cross_nanomap_z10.png', "southern_cross_nanomap_z11.png" = 'icons/_nanomaps/southern_cross_nanomap_z11.png', + + /*"soluna_nexus_nanomap_z1.png" = 'icons/_nanomaps/soluna_nexus_nanomap_z1.png', + "soluna_nexus_nanomap_z2.png" = 'icons/_nanomaps/soluna_nexus_nanomap_z2.png', + "soluna_nexus_nanomap_z3.png" = 'icons/_nanomaps/soluna_nexus_nanomap_z3.png', + "soluna_nexus_nanomap_z4.png" = 'icons/_nanomaps/southern_cross_nanomap_z5.png', + "soluna_nexus_nanomap_z5.png" = 'icons/_nanomaps/southern_cross_nanomap_z6.png', + "soluna_nexus_nanomap_z6.png" = 'icons/_nanomaps/soluna_nexus_nanomap_z6.png', + "soluna_nexus_nanomap_z7.png" = 'icons/_nanomaps/soluna_nexus_nanomap_z7.png', + "soluna_nexus_nanomap_z8.png" = 'icons/_nanomaps/soluna_nexus_nanomap_z8.png', + "soluna_nexus_nanomap_z9.png" = 'icons/_nanomaps/southern_cross_nanomap_z10.png',*/ // DISABLE until first render is done // CHOMP Edit End ) diff --git a/code/unit_tests/map_tests.dm b/code/unit_tests/map_tests.dm index beca04f0b8..a68865dda2 100644 --- a/code/unit_tests/map_tests.dm +++ b/code/unit_tests/map_tests.dm @@ -26,10 +26,6 @@ /area/vacant/vacant_shop, /area/rnd/research_storage, // This should probably be fixed, /area/security/riot_control, // This should probably be fixed, - // CHOMPAdd Start for new MAP! - /area/SouthernCrossV2/Maints, - /area/SouthernCrossV2/Evac - //CHOMPADD End ) var/list/exempt_from_apc = typesof(/area/construction, diff --git a/maps/southern_sun/datums/supplypacks/munitions.dm b/maps/southern_sun/datums/supplypacks/munitions.dm deleted file mode 100644 index 1912e16c9a..0000000000 --- a/maps/southern_sun/datums/supplypacks/munitions.dm +++ /dev/null @@ -1,35 +0,0 @@ -/* -* Here is where any supply packs -* related to sc weapons live. -*/ - -/datum/supply_pack/munitions/bolt_rifles_explorer - name = "Weapons - Surplus Hunting Rifles" - contains = list( - /obj/item/gun/projectile/shotgun/pump/rifle = 2, - /obj/item/ammo_magazine/clip/c762/hunter = 6 - ) - cost = 50 - containertype = /obj/structure/closet/crate/secure/hedberg - containername = "Hunting Rifle crate" - access = access_explorer //CHOMP keep explo - -/datum/supply_pack/munitions/phase_carbines_explorer - name = "Weapons - Surplus Phase Carbines" - contains = list( - /obj/item/gun/energy/locked/phasegun = 2, - ) - cost = 25 - containertype = /obj/structure/closet/crate/secure/ward - containername = "Phase Carbine crate" - access = access_explorer //CHOMP keep explo - -/datum/supply_pack/munitions/phase_rifles_explorer - name = "Weapons - Phase Rifles" - contains = list( - /obj/item/gun/energy/locked/phasegun/rifle = 2, - ) - cost = 50 - containertype = /obj/structure/closet/crate/secure/ward - containername = "Phase Rifle crate" - access = access_explorer //CHOMP keep explo diff --git a/maps/southern_sun/events/wildlife_encounter.dm b/maps/southern_sun/events/wildlife_encounter.dm deleted file mode 100644 index 204bb43232..0000000000 --- a/maps/southern_sun/events/wildlife_encounter.dm +++ /dev/null @@ -1,105 +0,0 @@ -// This event sends random sif mobs at someone in the wilderness, unannounced. - -/datum/event2/meta/wildlife_encounter - name = "random encounter" - departments = list(DEPARTMENT_EVERYONE) - chaos = 10 - event_type = /datum/event2/event/wildlife_encounter - -/datum/event2/meta/wildlife_encounter/get_weight() - var/explorers = metric.count_people_with_job(/datum/job/explorer) + metric.count_people_with_job(/datum/job/sar) - - if(!explorers) - return 0 - return 20 + explorers * 50 - -/datum/event2/event/wildlife_encounter - var/mob/living/victim = null - var/list/potential_victims = list() - -/datum/event2/event/wildlife_encounter/set_up() - for(var/mob/living/L in player_list) - //if(!(L.z in get_location_z_levels())) - // log_debug("Not on the right z-level") - // continue // Not on the right z-level. - if(L.stat) - continue // Don't want dead people. - var/turf/T = get_turf(L) - var/area/A = get_area(L) - if(T?.is_outdoors() && istype(A, /area/surface/outside/wilderness)) // VOREStation Edit - potential_victims += L - - if(potential_victims.len) - victim = pick(potential_victims) - -/datum/event2/event/wildlife_encounter/start() - if(!victim) - log_debug("Failed to find a target for random encounter. Aborting.") - abort() - return - - var/number_of_packs = rand(1, 3) - // Getting off screen tiles is kind of tricky due to potential edge cases that could arise. - // The method we're gonna do is make a big square around the victim, then - // subtract a smaller square in the middle for the default vision range. - - var/list/outer_square = get_safe_square(victim, world.view + 5) - var/list/inner_square = get_safe_square(victim, world.view + 1) - - var/list/donut = outer_square - inner_square - for(var/T in donut) - if(!istype(T, /turf/simulated/floor/outdoors)) - donut -= T - - var/build_path = item_to_spawn() - var/turf/spawning_turf = null - var/attempts = 0 - - while (!spawning_turf && attempts != 10) - spawning_turf = pick(donut) - for(var/i = 1 to potential_victims.len) - if (get_dist(spawning_turf, potential_victims[i]) < world.view) - spawning_turf = null - log_debug("Failed to locate position out of sight of [potential_victims[i]].") - attempts++ - - potential_victims = null - - log_debug("Sending [number_of_packs] [build_path]\s after \the [victim].") - for(var/i = 1 to number_of_packs) - - if(spawning_turf) - var/mob/living/simple_mob/M = new build_path(spawning_turf) - M.ai_holder?.give_destination(get_turf(victim)) - else - log_debug("Failed to locate turf to spawn encounter.") - -/datum/event2/event/wildlife_encounter/proc/item_to_spawn() - return pick(prob(22);/mob/living/simple_mob/animal/sif/savik, - prob(20);/mob/living/simple_mob/animal/sif/frostfly, - prob(10);/mob/living/simple_mob/animal/sif/tymisian, - prob(45);/mob/living/simple_mob/animal/sif/shantak, - prob(15);/mob/living/simple_mob/animal/sif/kururak/hibernate, - prob(10);/mob/living/simple_mob/animal/sif/kururak, - prob(3);/mob/living/simple_mob/animal/giant_spider, - prob(8);/mob/living/simple_mob/animal/giant_spider/hunter, - prob(3);/mob/living/simple_mob/animal/giant_spider/webslinger, - prob(3);/mob/living/simple_mob/animal/giant_spider/carrier, - prob(6);/mob/living/simple_mob/animal/giant_spider/lurker, - prob(4);/mob/living/simple_mob/animal/giant_spider/tunneler, - prob(5);/mob/living/simple_mob/animal/giant_spider/pepper, - prob(5);/mob/living/simple_mob/animal/giant_spider/thermic, - prob(1);/mob/living/simple_mob/animal/giant_spider/phorogenic, - prob(30);/mob/living/simple_mob/animal/giant_spider/frost) - -/datum/event2/event/wildlife_encounter/proc/get_safe_square(atom/center, radius) - var/lower_left_x = max(center.x - radius, 1 + TRANSITIONEDGE) - var/lower_left_y = max(center.y - radius, 1 + TRANSITIONEDGE) - - var/upper_right_x = min(center.x + radius, world.maxx - TRANSITIONEDGE) - var/upper_right_y = min(center.y + radius, world.maxy - TRANSITIONEDGE) - - var/turf/lower_left = locate(lower_left_x, lower_left_y, victim.z) - var/turf/upper_right = locate(upper_right_x, upper_right_y, victim.z) - - return block(lower_left, upper_right) diff --git a/maps/southern_sun/icons/mob/sc_suit.dmi b/maps/southern_sun/icons/mob/sc_suit.dmi deleted file mode 100644 index 33c2f27abe..0000000000 Binary files a/maps/southern_sun/icons/mob/sc_suit.dmi and /dev/null differ diff --git a/maps/southern_sun/icons/mob/sc_under.dmi b/maps/southern_sun/icons/mob/sc_under.dmi deleted file mode 100644 index 37efd43e95..0000000000 Binary files a/maps/southern_sun/icons/mob/sc_under.dmi and /dev/null differ diff --git a/maps/southern_sun/icons/mob/species/teshari/sc_suit.dmi b/maps/southern_sun/icons/mob/species/teshari/sc_suit.dmi deleted file mode 100644 index 690de3b6f0..0000000000 Binary files a/maps/southern_sun/icons/mob/species/teshari/sc_suit.dmi and /dev/null differ diff --git a/maps/southern_sun/icons/mob/species/teshari/sc_uniform.dmi b/maps/southern_sun/icons/mob/species/teshari/sc_uniform.dmi deleted file mode 100644 index a19216d6f8..0000000000 Binary files a/maps/southern_sun/icons/mob/species/teshari/sc_uniform.dmi and /dev/null differ diff --git a/maps/southern_sun/icons/obj/sc_hats.dmi b/maps/southern_sun/icons/obj/sc_hats.dmi deleted file mode 100644 index ee8b32de29..0000000000 Binary files a/maps/southern_sun/icons/obj/sc_hats.dmi and /dev/null differ diff --git a/maps/southern_sun/icons/obj/sc_suit.dmi b/maps/southern_sun/icons/obj/sc_suit.dmi deleted file mode 100644 index 460e9ad699..0000000000 Binary files a/maps/southern_sun/icons/obj/sc_suit.dmi and /dev/null differ diff --git a/maps/southern_sun/icons/obj/sc_ties.dmi b/maps/southern_sun/icons/obj/sc_ties.dmi deleted file mode 100644 index 9085d2084c..0000000000 Binary files a/maps/southern_sun/icons/obj/sc_ties.dmi and /dev/null differ diff --git a/maps/southern_sun/icons/obj/sc_uniforms.dmi b/maps/southern_sun/icons/obj/sc_uniforms.dmi deleted file mode 100644 index 29b4f4e747..0000000000 Binary files a/maps/southern_sun/icons/obj/sc_uniforms.dmi and /dev/null differ diff --git a/maps/southern_sun/items/clothing/sc_accessory.dm b/maps/southern_sun/items/clothing/sc_accessory.dm deleted file mode 100644 index f47c344fcd..0000000000 --- a/maps/southern_sun/items/clothing/sc_accessory.dm +++ /dev/null @@ -1,14 +0,0 @@ -//Pilot - -/obj/item/clothing/accessory/storage/webbing/pilot1 - name = "pilot harness" - desc = "Sturdy mess of black synthcotton belts and buckles." - icon_state = "pilot_webbing1" - -/obj/item/clothing/accessory/storage/webbing/pilot2 - name = "pilot harness" - desc = "Sturdy mess of black synthcotton belts and buckles." - icon_state = "pilot_webbing2" - sprite_sheets = list( - SPECIES_TESHARI = 'icons/inventory/accessory/mob_teshari.dmi' - ) \ No newline at end of file diff --git a/maps/southern_sun/items/clothing/sc_suit.dm b/maps/southern_sun/items/clothing/sc_suit.dm deleted file mode 100644 index cec3eca91e..0000000000 --- a/maps/southern_sun/items/clothing/sc_suit.dm +++ /dev/null @@ -1,13 +0,0 @@ -//Pilot - -/obj/item/clothing/suit/storage/toggle/bomber/pilot - name = "pilot jacket" - desc = "A thick, blue bomber jacket." - icon_state = "pilot_bomber" - item_icons = list(slot_wear_suit_str = 'maps/southern_cross/icons/mob/sc_suit.dmi') - item_state_slots = list(slot_r_hand_str = "brown_jacket", slot_l_hand_str = "brown_jacket") - icon = 'maps/southern_cross/icons/obj/sc_suit.dmi' - sprite_sheets = list( - SPECIES_TESHARI = 'maps/southern_cross/icons/mob/species/teshari/sc_suit.dmi' - ) - min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE \ No newline at end of file diff --git a/maps/southern_sun/items/clothing/sc_under.dm b/maps/southern_sun/items/clothing/sc_under.dm deleted file mode 100644 index ea024abe7a..0000000000 --- a/maps/southern_sun/items/clothing/sc_under.dm +++ /dev/null @@ -1,33 +0,0 @@ -//Pilot - -/obj/item/clothing/under/rank/pilot1 - name = "\improper NanoTrasen flight suit" - desc = "A blue and grey NanoTrasen flight suit. Warm and practical, it feels cozy." - icon_state = "pilot1" - worn_state = "pilot1" - item_icons = list(slot_w_uniform_str = 'maps/southern_cross/icons/mob/sc_under.dmi') - icon = 'maps/southern_cross/icons/obj/sc_uniforms.dmi' - sprite_sheets = list( - SPECIES_TESHARI = 'maps/southern_cross/icons/mob/species/teshari/sc_uniform.dmi' - ) - starting_accessories = list(/obj/item/clothing/accessory/storage/webbing/pilot1) - -/obj/item/clothing/under/rank/pilot1/no_webbing - starting_accessories = null - -/obj/item/clothing/under/rank/pilot2 - name = "\improper NanoTrasen flight suit" - desc = "A dark blue NanoTrasen flight suit. Warm and practical, seveal patches are scattered across it." - icon_state = "pilot2" - worn_state = "pilot2" - rolled_down = 0 - rolled_sleeves = 0 - item_icons = list(slot_w_uniform_str = 'maps/southern_cross/icons/mob/sc_under.dmi') - icon = 'maps/southern_cross/icons/obj/sc_uniforms.dmi' - sprite_sheets = list( - SPECIES_TESHARI = 'maps/southern_cross/icons/mob/species/teshari/sc_uniform.dmi' - ) - starting_accessories = list(/obj/item/clothing/accessory/storage/webbing/pilot2) - -/obj/item/clothing/under/rank/pilot2/no_webbing - starting_accessories = null diff --git a/maps/southern_sun/items/encryptionkey_sc.dm b/maps/southern_sun/items/encryptionkey_sc.dm deleted file mode 100644 index 2d30889275..0000000000 --- a/maps/southern_sun/items/encryptionkey_sc.dm +++ /dev/null @@ -1,30 +0,0 @@ -/obj/item/encryptionkey/pilot - name = "pilot's encryption key" - icon_state = "com_cypherkey" - channels = list(CHANNEL_SUPPLY = 1, CHANNEL_EXPLORATION = 1) - -/obj/item/encryptionkey/explorer - name = "explorer radio encryption key" - icon_state = "com_cypherkey" - channels = list(CHANNEL_EXPLORATION = 1) - -/obj/item/encryptionkey/sar - name = "sar's encryption key" - icon_state = "med_cypherkey" - channels = list(CHANNEL_MEDICAL = 1, CHANNEL_EXPLORATION = 1) - -/obj/item/encryptionkey/heads/hop - name = "head of personnel's encryption key" - icon_state = "hop_cypherkey" - channels = list(CHANNEL_SUPPLY = 1, CHANNEL_SERVICE = 1, CHANNEL_COMMAND = 1, CHANNEL_SECURITY = 1, CHANNEL_EXPLORATION = 1) - -/obj/item/encryptionkey/heads/ai_integrated - name = "ai integrated encryption key" - desc = "Integrated encryption key" - icon_state = "cap_cypherkey" - channels = list(CHANNEL_COMMAND = 1, CHANNEL_SECURITY = 1, CHANNEL_ENGINEERING = 1, CHANNEL_SCIENCE = 1, CHANNEL_MEDICAL = 1, CHANNEL_SUPPLY = 1, CHANNEL_SERVICE = 1, CHANNEL_AI_PRIVATE = 1, CHANNEL_EXPLORATION = 1) - -/obj/item/encryptionkey/heads/captain - name = "site manager's encryption key" - icon_state = "cap_cypherkey" - channels = list(CHANNEL_COMMAND = 1, CHANNEL_SECURITY = 1, CHANNEL_ENGINEERING = 1, CHANNEL_SCIENCE = 1, CHANNEL_MEDICAL = 1, CHANNEL_SUPPLY = 1, CHANNEL_SERVICE = 1, CHANNEL_EXPLORATION = 1) diff --git a/maps/southern_sun/items/headset_sc.dm b/maps/southern_sun/items/headset_sc.dm deleted file mode 100644 index b409dd2ddd..0000000000 --- a/maps/southern_sun/items/headset_sc.dm +++ /dev/null @@ -1,35 +0,0 @@ -/obj/item/radio/headset/pilot - name = "pilot's headset" - desc = "A headset used by pilots, has access to supply and explorer channels." - icon_state = "pilot_headset" - adhoc_fallback = TRUE - ks2type = /obj/item/encryptionkey/pilot - -/obj/item/radio/headset/pilot/alt - name = "pilot's bowman headset" - desc = "A bowman headset used by pilots, has access to supply and explorer channels." - icon_state = "pilot_headset_alt" - -/obj/item/radio/headset/explorer - name = "explorer's headset" - desc = "Headset used by explorers for exploring. Access to the explorer channel." - icon_state = "exp_headset" - adhoc_fallback = TRUE - ks2type = /obj/item/encryptionkey/explorer - -/obj/item/radio/headset/explorer/alt - name = "explorer's bowman headset" - desc = "Bowman headset used by explorers for exploring. Access to the explorer channel." - icon_state = "exp_headset_alt" - -/obj/item/radio/headset/sar - name = "sar radio headset" - desc = "A headset for search and rescue." - icon_state = "sar_headset" - adhoc_fallback = TRUE - ks2type = /obj/item/encryptionkey/sar - -/obj/item/radio/headset/sar/alt - name = "sar radio bowman headset" - desc = "A bowman headset for search and rescue." - icon_state = "sar_headset_alt" diff --git a/maps/southern_sun/job/outfits.dm b/maps/southern_sun/job/outfits.dm deleted file mode 100644 index 26eb158ee0..0000000000 --- a/maps/southern_sun/job/outfits.dm +++ /dev/null @@ -1,67 +0,0 @@ -//Job Outfits - -/* -SOUTHERN CROSS OUTFITS -Keep outfits simple. Spawn with basic uniforms and minimal gear. Gear instead goes in lockers. Keep this in mind if editing. -*/ - - -/decl/hierarchy/outfit/job/explorer2 - name = OUTFIT_JOB_NAME(JOB_EXPLORER) - shoes = /obj/item/clothing/shoes/boots/winter/explorer - uniform = /obj/item/clothing/under/explorer - l_ear = /obj/item/radio/headset/explorer - id_slot = slot_wear_id - pda_slot = slot_l_store - pda_type = /obj/item/pda/explorer //VORESTation Edit - Better Brown - id_type = /obj/item/card/id/exploration //CHOMPedit: fix conflicts with citrp ID port - id_pda_assignment = JOB_EXPLORER - flags = OUTFIT_HAS_BACKPACK|OUTFIT_COMPREHENSIVE_SURVIVAL - backpack_contents = list(/obj/item/clothing/accessory/permit/gun/planetside = 1) - -/decl/hierarchy/outfit/job/explorer2/post_equip(mob/living/carbon/human/H) - ..() - for(var/obj/item/clothing/accessory/permit/gun/planetside/permit in H.back.contents) - permit.set_name(H.real_name) - -/decl/hierarchy/outfit/job/explorer2/technician - name = OUTFIT_JOB_NAME(JOB_ALT_EXPLORERE_TECHNICIAN) - belt = /obj/item/storage/belt/utility/full - pda_slot = slot_l_store - id_pda_assignment = JOB_ALT_EXPLORERE_TECHNICIAN - -/decl/hierarchy/outfit/job/explorer2/medic - name = OUTFIT_JOB_NAME(JOB_ALT_EXPLORER_MEDIC) - l_hand = /obj/item/storage/firstaid/regular - pda_slot = slot_l_store - id_pda_assignment = JOB_ALT_EXPLORER_MEDIC - -/decl/hierarchy/outfit/job/pilot - name = OUTFIT_JOB_NAME(JOB_PILOT) - shoes = /obj/item/clothing/shoes/black - uniform = /obj/item/clothing/under/rank/pilot1/no_webbing - suit = /obj/item/clothing/suit/storage/toggle/bomber/pilot - gloves = /obj/item/clothing/gloves/fingerless - glasses = /obj/item/clothing/glasses/fakesunglasses/aviator - l_ear = /obj/item/radio/headset/pilot/alt - uniform_accessories = list(/obj/item/clothing/accessory/storage/webbing/pilot1 = 1) - id_slot = slot_wear_id - pda_slot = slot_belt - pda_type = /obj/item/pda //VOREStation Edit - Civilian - id_type = /obj/item/card/id/civilian/pilot - id_pda_assignment = JOB_PILOT - flags = OUTFIT_HAS_BACKPACK|OUTFIT_COMPREHENSIVE_SURVIVAL - -/decl/hierarchy/outfit/job/medical/sar - name = OUTFIT_JOB_NAME(JOB_FIELD_MEDIC) //VOREStation Edit - uniform = /obj/item/clothing/under/utility/blue - //suit = /obj/item/clothing/suit/storage/hooded/wintercoat/medical/sar //VOREStation Edit - shoes = /obj/item/clothing/shoes/boots/winter/explorer - l_ear = /obj/item/radio/headset/sar - l_hand = /obj/item/storage/firstaid/regular - belt = /obj/item/storage/belt/medical/emt - pda_slot = slot_l_store - id_type = /obj/item/card/id/medical/sar - pda_type = /obj/item/pda/sar //VOREStation Add - id_pda_assignment = JOB_FIELD_MEDIC //VOREStation Edit - flags = OUTFIT_HAS_BACKPACK|OUTFIT_EXTENDED_SURVIVAL|OUTFIT_COMPREHENSIVE_SURVIVAL diff --git a/maps/southern_sun/loadout/loadout_accessories.dm b/maps/southern_sun/loadout/loadout_accessories.dm deleted file mode 100644 index b85b72c822..0000000000 --- a/maps/southern_sun/loadout/loadout_accessories.dm +++ /dev/null @@ -1,33 +0,0 @@ -/datum/gear/accessory/brown_vest - display_name = "webbing, brown" - path = /obj/item/clothing/accessory/storage/brown_vest -// allowed_roles = list(JOB_ENGINEER,JOB_ATMOSPHERIC_TECHNICIAN,JOB_CHIEF_ENGINEER,JOB_SECURITY_OFFICER,JOB_DETECTIVE,JOB_HEAD_OF_SECURITY,JOB_WARDEN,JOB_ALT_SEARCH_AND_RESCUE,JOB_CHIEF_MEDICAL_OFFICER,JOB_MEDICAL_DOCTOR,JOB_PARAMEDIC,JOB_EXPLORER,JOB_SHAFT_MINER) // CHOMPedit remove - -/datum/gear/accessory/black_vest - display_name = "webbing, black" - path = /obj/item/clothing/accessory/storage/black_vest -// allowed_roles = list(JOB_ENGINEER,JOB_ATMOSPHERIC_TECHNICIAN,JOB_CHIEF_ENGINEER,JOB_SECURITY_OFFICER,JOB_DETECTIVE,JOB_HEAD_OF_SECURITY,JOB_WARDEN,JOB_ALT_SEARCH_AND_RESCUE,JOB_CHIEF_MEDICAL_OFFICER,JOB_MEDICAL_DOCTOR,JOB_PARAMEDIC,JOB_EXPLORER,JOB_SHAFT_MINER) // CHOMPedit remove - -/datum/gear/accessory/white_vest - display_name = "webbing, white" - path = /obj/item/clothing/accessory/storage/white_vest -// allowed_roles = list(JOB_ENGINEER,JOB_ATMOSPHERIC_TECHNICIAN,JOB_CHIEF_ENGINEER,JOB_SECURITY_OFFICER,JOB_DETECTIVE,JOB_HEAD_OF_SECURITY,JOB_WARDEN,JOB_ALT_SEARCH_AND_RESCUE,JOB_CHIEF_MEDICAL_OFFICER,JOB_MEDICAL_DOCTOR,JOB_PARAMEDIC,JOB_EXPLORER,JOB_SHAFT_MINER) // CHOMPedit remove - -/datum/gear/accessory/brown_drop_pouches - display_name = "drop pouches, brown" - path = /obj/item/clothing/accessory/storage/brown_drop_pouches -// allowed_roles = list(JOB_ENGINEER,JOB_ATMOSPHERIC_TECHNICIAN,JOB_CHIEF_ENGINEER,JOB_SECURITY_OFFICER,JOB_DETECTIVE,JOB_HEAD_OF_SECURITY,JOB_WARDEN,JOB_ALT_SEARCH_AND_RESCUE,JOB_CHIEF_MEDICAL_OFFICER,JOB_MEDICAL_DOCTOR,JOB_PARAMEDIC,JOB_EXPLORER,JOB_SHAFT_MINER) // CHOMPedit remove - -/datum/gear/accessory/black_drop_pouches - display_name = "drop pouches, black" - path = /obj/item/clothing/accessory/storage/black_drop_pouches -// allowed_roles = list(JOB_ENGINEER,JOB_ATMOSPHERIC_TECHNICIAN,JOB_CHIEF_ENGINEER,JOB_SECURITY_OFFICER,JOB_DETECTIVE,JOB_HEAD_OF_SECURITY,JOB_WARDEN,JOB_ALT_SEARCH_AND_RESCUE,JOB_CHIEF_MEDICAL_OFFICER,JOB_MEDICAL_DOCTOR,JOB_PARAMEDIC,JOB_EXPLORER,JOB_SHAFT_MINER) // CHOMPedit remove - -/datum/gear/accessory/white_drop_pouches - display_name = "drop pouches, white" - path = /obj/item/clothing/accessory/storage/white_drop_pouches -// allowed_roles = list(JOB_ENGINEER,JOB_ATMOSPHERIC_TECHNICIAN,JOB_CHIEF_ENGINEER,JOB_SECURITY_OFFICER,JOB_DETECTIVE,JOB_HEAD_OF_SECURITY,JOB_WARDEN,JOB_ALT_SEARCH_AND_RESCUE,JOB_CHIEF_MEDICAL_OFFICER,JOB_MEDICAL_DOCTOR,JOB_PARAMEDIC,JOB_EXPLORER,JOB_SHAFT_MINER) // CHOMPedit remove - -/datum/gear/accessory/holster - path = /obj/item/clothing/accessory/holster - allowed_roles = list(JOB_SITE_MANAGER,JOB_HEAD_OF_PERSONNEL,JOB_SECURITY_OFFICER,JOB_WARDEN,JOB_HEAD_OF_SECURITY,JOB_DETECTIVE,JOB_PATHFINDER,JOB_EXPLORER) diff --git a/maps/southern_sun/loadout/loadout_head.dm b/maps/southern_sun/loadout/loadout_head.dm deleted file mode 100644 index f4e0da07d4..0000000000 --- a/maps/southern_sun/loadout/loadout_head.dm +++ /dev/null @@ -1,4 +0,0 @@ -/datum/gear/head/pilot - display_name = "helmet, pilot (" + JOB_PILOT + ")" - path = /obj/item/clothing/head/ompilot/alt //VOREStation Edit - allowed_roles = list(JOB_PILOT) diff --git a/maps/southern_sun/loadout/loadout_suit.dm b/maps/southern_sun/loadout/loadout_suit.dm deleted file mode 100644 index 1cfa67846c..0000000000 --- a/maps/southern_sun/loadout/loadout_suit.dm +++ /dev/null @@ -1,3 +0,0 @@ -/datum/gear/suit/bomber_pilot - display_name = "bomber jacket, pilot" - path = /obj/item/clothing/suit/storage/toggle/bomber/pilot diff --git a/maps/southern_sun/loadout/loadout_uniform.dm b/maps/southern_sun/loadout/loadout_uniform.dm deleted file mode 100644 index 03892ba7d5..0000000000 --- a/maps/southern_sun/loadout/loadout_uniform.dm +++ /dev/null @@ -1,5 +0,0 @@ -// Uniform slot -/datum/gear/uniform/pilot - display_name = "uniform, pilot (" + JOB_PILOT + ")" - path = /obj/item/clothing/under/rank/pilot2 - allowed_roles = list(JOB_PILOT) diff --git a/maps/southern_sun/loadout/loadout_vr.dm b/maps/southern_sun/loadout/loadout_vr.dm deleted file mode 100644 index 460d967498..0000000000 --- a/maps/southern_sun/loadout/loadout_vr.dm +++ /dev/null @@ -1,19 +0,0 @@ -/datum/gear/head/pilot/standard - display_name = "helmet, standard pilot (" + JOB_PILOT + ")" - path = /obj/item/clothing/head/pilot_vr - allowed_roles = list(JOB_PILOT) - -/datum/gear/head/pilot/colored - display_name = "helmet, colored pilot (" + JOB_PILOT + ")" - path = /obj/item/clothing/head/pilot_vr/alt - allowed_roles = list(JOB_PILOT) - -/datum/gear/head/pilot/talon - display_name = "helmet, talon pilot (" + JOB_PILOT + ")" - path = /obj/item/clothing/head/pilot_vr/talon - allowed_roles = list(JOB_PILOT) - -/datum/gear/head/pilot/mbill - display_name = "helmet, major bill's (" + JOB_PILOT + ")" - path = /obj/item/clothing/head/pilot_vr/mbill - allowed_roles = list(JOB_PILOT) diff --git a/maps/southern_sun/overmap/planets/kara/aerostat/aerostat.dm b/maps/southern_sun/overmap/planets/kara/aerostat/aerostat.dm deleted file mode 100644 index bb853f5cf1..0000000000 --- a/maps/southern_sun/overmap/planets/kara/aerostat/aerostat.dm +++ /dev/null @@ -1,192 +0,0 @@ -//Parent of this place is kara.dm -// -- Datums -- // - -/datum/map_template/sc_lateload/away_aerostat - name = "Kara Aerostat - Z1 Aerostat" - desc = "The Kara Aerostat away mission." - mappath = "maps/southern_cross/overmap/planets/kara/aerostat/aerostat.dmm" - associated_map_datum = /datum/map_z_level/sc_lateload/away_aerostat - -/datum/map_z_level/sc_lateload/away_aerostat - name = "Away Mission - Aerostat" - z = Z_LEVEL_AEROSTAT - - -// -- Overmap -- // -/* // Moved to kara.dm as this is part of the planet and future planet z-levels are planned. Also seems important for overmap to run properly. -/obj/effect/overmap/visitable/sector/aerostat - name = "Aerostat" - desc = "Abandoned aerostat installation, floating in the low stratosphere." - scanner_desc = @{"[i]Registration[/i]: Vir System Authority -[i]Class[/i]: Installation -[i]Transponder[/i]: Transmitting (CIV), Vir IFF -[b]Notice[/b]: CONDEMNED! NO ENTRY! -Vir System Authority"} - map_z = list(Z_LEVEL_AEROSTAT) - initial_generic_waypoints = list("aerostat_west","aerostat_east","aerostat_south","aerostat_northwest","aerostat_northeast") - icon_state = "object" - unknown_state = "object" - known = FALSE - in_space = 0 - start_x = 14 - start_y = 15 -*/ - - -// extra_z_levels = list(Z_LEVEL_AEROSTAT_2) //SOON - - -// -- Areas -- // - -/area/sc_away/aerostat - name = "\improper Away Mission - Aerostat Outside" - icon_state = "away" - base_turf = /turf/unsimulated/floor/sky/kara_sky - requires_power = FALSE - dynamic_lighting = FALSE - flags = RAD_SHIELDED - -/area/sc_away/aerostat/inside - name = "\improper Away Mission - Aerostat Inside" - icon_state = "crew_quarters" - base_turf = /turf/simulated/floor/plating/kara - requires_power = TRUE - dynamic_lighting = TRUE - forced_ambience = list('sound/ambience/tension/tension.ogg', 'sound/ambience/tension/argitoth.ogg', 'sound/ambience/tension/burning_terror.ogg') - -/area/sc_away/aerostat/solars - name = "\improper Away Mission - Aerostat Solars" - icon_state = "crew_quarters" - base_turf = /turf/simulated/floor/plating/kara - dynamic_lighting = TRUE - - -// -- Landmarks -- // - -/obj/effect/shuttle_landmark/premade/aerostat/aerostat_west - name = "Aerostat - West Dock (Baby Mammoth, Stargazer,Needle, Ursula)" - landmark_tag = "aerostat_west" - -/obj/effect/shuttle_landmark/premade/aerostat/aerostat_east - name = "Aerostat - East Dock (Echidna)" - landmark_tag = "aerostat_east" - -/obj/effect/shuttle_landmark/premade/aerostat/aerostat_south - name = "Aerostat - South Dock" - landmark_tag = "aerostat_south" - -/obj/effect/shuttle_landmark/premade/aerostat/aerostat_northwest - name = "Aerostat - Northwest Dock (Baby Mammoth, Stargazer,Needle, Ursula)" - landmark_tag = "aerostat_northwest" - -/obj/effect/shuttle_landmark/premade/aerostat/aerostat_northeast - name = "Aerostat - Northeast Dock (Echidna)" - landmark_tag = "aerostat_northeast" - - -// -- Objs -- // - -/obj/sc_away_spawner/aerostat_inside //This spawner BS is proceeded by some BS in _southern_cross_submaps.dm - name = "Aerostat Indoors Spawner" - faction = "aerostat_inside" - prob_spawn = 100 - prob_fall = 50 - //guard = 20 - mobs_to_pick_from = list( - /mob/living/simple_mob/mechanical/hivebot/ranged_damage/basic = 3, - /mob/living/simple_mob/mechanical/hivebot/ranged_damage/ion = 1, - /mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser = 3, - /mob/living/simple_mob/vore/aggressive/corrupthound = 1 - ) - -/obj/structure/old_roboprinter - name = "old drone fabricator" - desc = "Built like a tank, still working after so many years." - icon = 'icons/obj/machines/drone_fab.dmi' - icon_state = "drone_fab_idle" - anchored = TRUE - density = TRUE - -/obj/structure/metal_edge - name = "metal underside" - desc = "A metal wall that extends downwards." - icon = 'icons/turf/cliff.dmi' - icon_state = "metal" - anchored = TRUE - density = FALSE - - - -// -- Turfs -- // -// Most turfs moved to kara.dm for use in future kara maps. - -/* -KARA_TURF_CREATE(/turf/simulated/mineral) -/turf/simulated/mineral/kara/make_ore() - if(mineral) - return - - var/mineral_name = pickweight(list("marble" = 5, "uranium" = 5, "platinum" = 5, "hematite" = 5, "carbon" = 5, "diamond" = 5, "gold" = 5, "silver" = 5, "lead" = 5, "verdantium" = 5, "rutile" = 20)) - - if(mineral_name && (mineral_name in GLOB.ore_data)) - mineral = GLOB.ore_data[mineral_name] - UpdateMineral() - update_icon() - -KARA_TURF_CREATE(/turf/simulated/mineral/ignore_mapgen) -KARA_TURF_CREATE(/turf/simulated/mineral/floor) -KARA_TURF_CREATE(/turf/simulated/mineral/floor/ignore_mapgen) -*/ - -// -- Areas -- // - - -/* -/area/offmap/aerostat/surface - flags = RAD_SHIELDED - ambience = list('sound/ambience/ambimine.ogg', 'sound/ambience/song_game.ogg') - base_turf = /turf/simulated/mineral/floor/ignore_mapgen/kara - -/area/offmap/aerostat/surface/explored - name = "Away Mission - Aerostat Surface (E)" - icon_state = "explored" - dynamic_lighting = FALSE - -/area/offmap/aerostat/surface/shuttleconsole - name = "Away Mission - Aerostat Surface Console" - icon_state = "explored" - dynamic_lighting = FALSE - requires_power = FALSE - -/area/offmap/aerostat/surface/unexplored - name = "Away Mission - Aerostat Surface (UE)" - icon_state = "unexplored" - dynamic_lighting = FALSE - -KARA_TURF_CREATE(/turf/simulated/floor/hull) - -/area/offmap/aerostat/surface/outpost - requires_power = TRUE - dynamic_lighting = TRUE - ambience = null - -/area/offmap/aerostat/surface/outpost/backroom - name = "V4 Outpost - Research Area" -/area/offmap/aerostat/surface/outpost/hallway - name = "V4 Outpost - Hallway" -/area/offmap/aerostat/surface/outpost/cafe - name = "V4 Outpost - Cafe" -/area/offmap/aerostat/surface/outpost/park - name = "V4 Outpost - Park" -/area/offmap/aerostat/surface/outpost/officerone - name = "V4 Outpost - Officer's Quarters 1" -/area/offmap/aerostat/surface/outpost/officertwo - name = "V4 Outpost - Officer's Quarters 2" -/area/offmap/aerostat/surface/outpost/barracks - name = "V4 Outpost - Barracks" -/area/offmap/aerostat/surface/outpost/airlock - name = "V4 Outpost - Airlock" -/area/offmap/aerostat/surface/outpost/powerroom - name = "V4 Outpost - Power Room" -/area/offmap/aerostat/surface/outpost/guardpost - name = "V4 Outpost - Guard Post" -*/ diff --git a/maps/southern_sun/overmap/planets/kara/aerostat/aerostat.dmm b/maps/southern_sun/overmap/planets/kara/aerostat/aerostat.dmm deleted file mode 100644 index 543974c6e5..0000000000 --- a/maps/southern_sun/overmap/planets/kara/aerostat/aerostat.dmm +++ /dev/null @@ -1,21633 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/simulated/wall/virgo2, -/area/sc_away/aerostat) -"ab" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"ac" = ( -/obj/effect/overmap/visitable/planet/kara, -/turf/unsimulated/floor/sky/kara_sky, -/area/sc_away/aerostat) -"ad" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"ae" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"af" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/power/solar, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"ag" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"ah" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"ai" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"aj" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"ak" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"al" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"am" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"an" = ( -/obj/structure/bed/padded, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"ao" = ( -/obj/structure/girder, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"ap" = ( -/obj/structure/girder, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"aq" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/solar, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"ar" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"as" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"at" = ( -/obj/structure/table/standard, -/obj/fiftyspawner/osmium, -/obj/random/toolbox, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"au" = ( -/obj/structure/table/standard, -/obj/fiftyspawner/phoron, -/obj/random/cigarettes, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"av" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"aw" = ( -/turf/unsimulated/floor/sky/kara_sky, -/area/sc_away/aerostat) -"ax" = ( -/obj/machinery/power/solar, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"ay" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"az" = ( -/obj/machinery/atmospherics/binary/algae_farm, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"aA" = ( -/obj/machinery/atmospherics/binary/algae_farm, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"aB" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"aC" = ( -/obj/machinery/atmospherics/binary/algae_farm, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"aD" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"aE" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"aF" = ( -/obj/machinery/atmospherics/binary/algae_farm, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 6; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"aG" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/solar, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"aH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"aI" = ( -/obj/machinery/atmospherics/binary/algae_farm, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"aJ" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"aK" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"aL" = ( -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"aM" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"aN" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"aO" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"aP" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - cell_type = /obj/item/cell/high/empty; - dir = 4; - name = "east bump"; - pixel_x = 28; - req_access = list() - }, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"aQ" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"aR" = ( -/obj/machinery/light/small, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"aS" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"aT" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"aU" = ( -/obj/machinery/power/solar, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"aV" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"aW" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"aX" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"aY" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"aZ" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"ba" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"bb" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"bc" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"bd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/space, -/area/sc_away/aerostat/inside) -"be" = ( -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bg" = ( -/obj/effect/shuttle_landmark/premade/aerostat/aerostat_south, -/turf/unsimulated/floor/sky/kara_sky, -/area/sc_away/aerostat) -"bh" = ( -/obj/effect/shuttle_landmark/premade/aerostat/aerostat_east, -/turf/unsimulated/floor/sky/kara_sky, -/area/sc_away/aerostat) -"bi" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bj" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bk" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bl" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bm" = ( -/obj/structure/old_roboprinter, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bn" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bo" = ( -/obj/structure/grille, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bp" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bq" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bs" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bt" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"bu" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"bv" = ( -/turf/simulated/wall/virgo2, -/area/sc_away/aerostat/inside) -"bw" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/sc_away_spawner/aerostat_inside{ - prob_fall = 25 - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bx" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"by" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bz" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bA" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bB" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bC" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bD" = ( -/obj/machinery/portable_atmospherics/canister/empty/oxygen, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bE" = ( -/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bF" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bG" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bJ" = ( -/obj/structure/table/standard, -/obj/random/cargopod, -/obj/random/junk, -/obj/random/maintenance, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bK" = ( -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bL" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bM" = ( -/obj/machinery/atmospherics/binary/algae_farm, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bN" = ( -/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bO" = ( -/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bP" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bQ" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bR" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bS" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bT" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bU" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bV" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bX" = ( -/obj/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"bY" = ( -/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"bZ" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"ca" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cb" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cc" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"cd" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"cg" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - dir = 1; - icon_state = "door_closed" - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"ch" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"ci" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cm" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cn" = ( -/obj/machinery/access_button{ - frequency = 1089; - master_tag = "aerostat_doors"; - name = "Aerostat Shuttle Dock"; - pixel_x = 10; - pixel_y = 25 - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"co" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cp" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/metal{ - dir = 1; - icon_state = "door_closed" - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cq" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cr" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/structure/bed/chair, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cs" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"ct" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/gibs, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"cu" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"cv" = ( -/obj/effect/shuttle_landmark/premade/aerostat/aerostat_west, -/turf/unsimulated/floor/sky/kara_sky, -/area/sc_away/aerostat) -"cw" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"cx" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"cy" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"cz" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cA" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cB" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cC" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cD" = ( -/obj/machinery/cryopod/robot, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cE" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cF" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cG" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/obj/item/trash/candle, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"cH" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/obj/item/trash/candle, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"cI" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/obj/item/trash/candle, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"cJ" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/obj/item/trash/candle, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"cK" = ( -/obj/machinery/recharge_station, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cL" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cM" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cN" = ( -/obj/structure/table/standard, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cO" = ( -/obj/machinery/door/airlock/external{ - frequency = 1089; - icon_state = "door_locked"; - id_tag = "aerostat_door_inner"; - locked = 1 - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cP" = ( -/obj/sc_away_spawner/aerostat_inside, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"cQ" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"cR" = ( -/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"cS" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"cT" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"cU" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"cV" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"cW" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"cX" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"cY" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"cZ" = ( -/obj/effect/blocker, -/turf/unsimulated/floor/sky/kara_sky, -/area/sc_away/aerostat) -"da" = ( -/obj/effect/floor_decal/plaque{ - desc = "A plaque memorializing the 2551 crew of the Remmi Aerostat. It appears they were the final crew, and 'they will be missed'."; - name = "memorial plaque"; - pixel_y = -32 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"db" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dc" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dd" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"de" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"df" = ( -/obj/machinery/power/tracker, -/obj/structure/cable/yellow, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dg" = ( -/obj/machinery/power/solar_control, -/obj/structure/cable/yellow, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dh" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"di" = ( -/obj/structure/cable/heavyduty{ - dir = 2; - icon_state = "0-4" - }, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dj" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dk" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dl" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dm" = ( -/obj/structure/cable/heavyduty{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dn" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/heavyduty{ - icon_state = "0-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"do" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dp" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dq" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dr" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"ds" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"dt" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"du" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dv" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dw" = ( -/obj/structure/metal_edge, -/turf/unsimulated/floor/sky/kara_sky, -/area/sc_away/aerostat/solars) -"dx" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dy" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"dz" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dA" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dB" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dC" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dD" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/obj/random/powercell, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dE" = ( -/obj/effect/floor_decal/rust, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dF" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dG" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/power/solar, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dI" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/solar, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dJ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dK" = ( -/obj/machinery/power/smes/buildable, -/obj/structure/cable, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"dL" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - dir = 2; - icon_state = "0-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"dM" = ( -/obj/machinery/power/smes/buildable, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"dN" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"dO" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"dP" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/door/airlock/external{ - frequency = 1089; - icon_state = "door_locked"; - id_tag = "aerostat_door_outer"; - locked = 1 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"dQ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dR" = ( -/obj/machinery/power/solar, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dS" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dT" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dU" = ( -/obj/effect/floor_decal/rust, -/obj/random/powercell, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/solars) -"dV" = ( -/obj/machinery/access_button{ - frequency = 1089; - master_tag = "aerostat_doors"; - name = "Aerostat Shuttle Dock"; - pixel_x = 25; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"dW" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/access_button{ - frequency = 1089; - master_tag = "aerostat_doors"; - name = "Aerostat Shuttle Dock"; - pixel_x = 10; - pixel_y = 25 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"dX" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/access_button{ - frequency = 1089; - master_tag = "aerostat_doors"; - name = "Aerostat Shuttle Dock"; - pixel_x = 10; - pixel_y = -25 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"dY" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1089; - id_tag = "aerostat_doors"; - name = "Aerostat Airlock Controller"; - pixel_y = 25; - tag_exterior_door = "aerostat_door_outer"; - tag_interior_door = "aerostat_door_inner" - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"dZ" = ( -/obj/structure/ghost_pod/manual/lost_drone/dogborg, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"eb" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/obj/machinery/access_button{ - frequency = 1089; - master_tag = "aerostat_doors"; - name = "Aerostat Shuttle Dock"; - pixel_x = -25; - pixel_y = 25 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"ec" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/rust, -/obj/machinery/access_button{ - frequency = 1089; - master_tag = "aerostat_doors"; - name = "Aerostat Shuttle Dock"; - pixel_x = -25; - pixel_y = -25 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"eE" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/random/toolbox, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"eL" = ( -/obj/structure/railing, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat) -"fl" = ( -/obj/random/contraband, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"fH" = ( -/obj/structure/salvageable/implant_container, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"gt" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat) -"gD" = ( -/obj/sc_away_spawner/aerostat_inside, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"gT" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat) -"gX" = ( -/obj/structure/salvageable/data, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"hd" = ( -/obj/random/contraband, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"kD" = ( -/obj/effect/shuttle_landmark/premade/aerostat/aerostat_northwest, -/turf/unsimulated/floor/sky/kara_sky, -/area/sc_away/aerostat) -"kF" = ( -/obj/random/action_figure, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"tZ" = ( -/obj/structure/table/standard, -/obj/random/powercell, -/obj/random/contraband, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"uU" = ( -/obj/structure/table/standard, -/obj/item/gun/energy/taser/xeno, -/obj/random/cigarettes, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"xA" = ( -/obj/random/firstaid, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"yy" = ( -/obj/structure/salvageable/autolathe, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"AS" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/random/toolbox, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"Dt" = ( -/obj/effect/shuttle_landmark/premade/aerostat/aerostat_northeast, -/turf/unsimulated/floor/sky/kara_sky, -/area/sc_away/aerostat) -"Du" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/random/cigarettes, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"DF" = ( -/obj/random/drinkbottle, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"Fg" = ( -/obj/random/firstaid, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"Gs" = ( -/obj/structure/table/standard, -/obj/random/material, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"Hl" = ( -/obj/random/tank, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"Jb" = ( -/obj/random/toy, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"JG" = ( -/obj/structure/metal_edge, -/turf/unsimulated/floor/sky/kara_sky, -/area/sc_away/aerostat) -"Lw" = ( -/obj/structure/table/standard, -/obj/random/powercell, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"Ly" = ( -/obj/random/material, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"Mj" = ( -/obj/random/contraband, -/turf/simulated/floor/bluegrid/kara, -/area/sc_away/aerostat/inside) -"ON" = ( -/obj/structure/railing{ - dir = 1; - icon_state = "railing0" - }, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat) -"Qe" = ( -/obj/structure/table/standard, -/obj/effect/decal/cleanable/cobweb2, -/obj/random/contraband, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"QE" = ( -/obj/structure/salvageable/machine, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"TR" = ( -/obj/structure/salvageable/computer, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"UC" = ( -/obj/structure/table/standard, -/obj/random/powercell, -/obj/random/toolbox, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"VR" = ( -/obj/machinery/door/airlock/external, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"Wk" = ( -/obj/random/drinkbottle, -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat/inside) -"WS" = ( -/turf/simulated/floor/plating/kara, -/area/sc_away/aerostat) -"Ym" = ( -/obj/structure/table/standard, -/obj/item/gun/energy/taser/xeno, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) -"ZK" = ( -/obj/random/plushie, -/turf/simulated/floor/tiled/techfloor/kara, -/area/sc_away/aerostat/inside) - -(1,1,1) = {" -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -"} -(2,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ac -cZ -"} -(3,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(4,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(5,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(6,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(7,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(8,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(9,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(10,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(11,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(12,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(13,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(14,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(15,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(16,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(17,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(18,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(19,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(20,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(21,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(22,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(23,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(24,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(25,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aT -aT -aT -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(26,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aT -aT -aT -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(27,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aZ -df -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(28,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -ba -dg -aD -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aZ -df -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(29,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -aD -bb -aD -aD -aD -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -ba -dg -aD -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(30,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ae -aE -aE -aE -aE -bc -aT -do -dx -dx -dx -dx -dF -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -aD -bb -aD -aD -aD -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(31,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -af -aG -aG -aG -aG -bb -aD -bb -aG -aG -aG -aG -dG -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ae -aE -aE -aE -aE -bc -aT -do -dx -dx -dx -dx -dF -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(32,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ag -aH -aH -aH -aH -bt -aD -ba -dz -dz -dz -dz -dH -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -af -aG -aG -aG -aG -bb -aD -bb -aG -aG -aG -aG -dG -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(33,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -af -aG -aG -aG -aG -bb -aD -bb -aG -aG -aG -aG -dG -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ag -aH -aH -aH -aH -bt -aD -ba -dz -dz -dz -dz -dH -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(34,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ag -aH -aH -aH -aH -bt -aD -ba -dz -dz -dz -dz -dH -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -af -aG -aG -aG -aG -bb -aD -bb -aG -aG -aG -aG -dG -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(35,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -af -aG -aG -aG -aG -bb -aD -bb -aG -aG -aG -aG -dG -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ag -aH -aH -aH -aH -bt -aD -ba -dz -dz -dz -dz -dH -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(36,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ag -aH -aH -aH -aH -bt -aD -ba -dz -dz -dz -dz -dH -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -af -aG -aG -aG -aG -bb -aD -bb -aG -aG -aG -aG -dG -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(37,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -af -aG -aG -aG -aG -bb -aD -bb -aG -aG -aG -aG -dG -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cc -cY -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ag -aH -aH -aH -aH -bt -aD -ba -dz -dz -dz -dz -dH -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(38,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ag -aH -aH -aH -aH -bt -aD -ba -dz -dz -dz -dz -dH -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -cc -cY -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -af -aG -aG -aG -aG -bb -aD -bb -aG -aG -aG -aG -dG -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(39,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -af -aG -aG -aG -aG -bb -aD -bb -aG -aG -aG -aG -dG -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -cc -cY -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ag -aH -aH -aH -aH -bt -aD -ba -dz -dz -dz -dz -dH -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(40,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ag -aH -aH -aH -aH -bt -aD -ba -dz -dz -dz -dz -dH -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -bv -cw -cw -bv -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -af -aG -aG -aG -aG -bb -aD -bb -aG -aG -aG -aG -dG -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(41,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -af -aG -aG -aG -aG -bb -aD -bb -aG -aG -aG -aG -dG -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -bK -bv -cw -cw -bv -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ag -aH -aH -aH -aH -bt -aD -ba -dz -dz -dz -dz -dH -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(42,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ag -aH -aH -aH -aH -bt -aD -ba -dz -dz -dz -dz -dH -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -bK -an -bv -cw -cw -bv -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -af -aG -aG -aG -aG -bb -aD -bb -aG -aG -aG -aG -dG -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(43,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -af -aG -aG -aG -aG -bb -aD -bb -aG -aG -aG -aG -dG -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -bK -bK -bK -bv -cw -cw -bv -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ag -aH -aH -aH -aH -bt -aD -ba -dz -dz -dz -dz -dH -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(44,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ag -aH -aH -aH -aH -bt -aD -ba -dz -dz -dz -dz -dH -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -kF -bK -bK -an -bv -cX -da -bv -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -af -aG -aG -aG -aG -bb -aD -bb -aG -aG -aG -aG -dG -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(45,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aq -aG -aG -aG -aG -bb -aD -bb -aG -aG -aG -aG -dI -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -ao -ao -ap -bK -bK -bv -cw -cw -bv -be -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ag -aH -aH -aH -aH -bt -aD -ba -dz -dz -dz -dz -dH -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(46,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -as -aS -aS -aS -aS -bu -aS -dp -aS -dD -aS -aS -dJ -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -ao -be -an -bv -cw -cw -bv -be -ao -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aq -aG -aG -aG -aG -bb -aD -bb -aG -aG -aG -aG -dI -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(47,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -aD -bb -aD -bb -aD -aD -aD -aD -JG -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -be -bK -bv -cw -cw -bv -be -be -be -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -as -aS -aS -aS -aS -bu -aS -dp -aS -aS -aS -aS -dJ -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(48,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -bb -aD -bb -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -gD -be -be -be -an -bv -be -cg -bv -bv -bK -be -be -ao -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -aD -bb -aD -bb -aD -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(49,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -cx -di -dq -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -be -be -be -be -bv -bK -bK -bK -bv -bK -bK -be -be -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -bb -aD -bb -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(50,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -dj -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -be -be -ar -be -be -bC -bK -bK -bK -bC -ad -bK -bK -be -be -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -cx -di -dq -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(51,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cy -dk -cy -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -ao -ao -ao -be -be -bv -bv -bv -bv -bv -bv -bv -bv -bK -bK -bv -an -DF -an -ZK -an -bK -be -gD -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -dj -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(52,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -bv -ds -bv -bv -bv -bv -bf -bf -bv -bv -bf -bf -bv -bv -bf -bf -bv -bv -bv -bv -bv -bv -bl -bl -bl -bl -bl -bl -bv -bJ -bJ -bJ -bJ -bJ -bJ -bv -bK -bK -bv -bv -bv -bv -bv -bv -bv -be -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aS -dk -aS -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(53,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -bv -ab -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -bz -bB -bB -bB -bB -bB -bB -bB -bB -bz -bB -bB -bB -bB -bB -bB -cd -ch -bK -bv -bJ -bJ -bJ -bJ -bJ -bv -bl -bl -bl -bl -bl -bl -bv -bv -bv -bv -bv -bv -bf -bf -bv -bv -bf -bf -bv -bv -bf -bf -bv -bv -bv -bv -ds -bv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(54,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -bv -bv -bv -bv -bv -bv -bf -bf -bv -bv -bf -bf -bv -bv -bo -bf -bv -bv -bv -bv -bn -bn -bn -bn -bn -bn -bn -bn -bv -bK -bK -bK -bK -bK -bK -bv -ci -co -cd -bB -bB -bB -bB -bB -bz -bB -bB -bB -bB -bB -bB -bB -bB -bz -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -aW -bv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(55,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -bi -bl -bl -bl -bl -bl -bl -bp -bv -UC -bK -bK -bK -bK -bJ -bv -ci -ci -bv -at -bK -QE -bK -au -bv -ah -aj -aj -aj -aj -aj -aj -al -bv -bv -bv -bv -bf -bf -bv -bv -bf -bf -bv -bv -bo -bf -bv -bv -bv -bv -bv -bv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(56,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -bj -aw -aw -aw -aw -aw -aw -bq -bv -bL -bQ -bL -bQ -bL -bL -bv -ci -ci -bv -cr -bQ -bL -bQ -bL -bv -bj -aw -aw -aw -aw -aw -aw -bq -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(57,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -bj -aw -aw -aw -aw -aw -aw -bq -bv -aF -bR -aF -bR -bK -aF -bv -ci -ci -bv -az -bR -az -bR -az -bv -bj -aw -aw -aw -aw -aw -aw -bq -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(58,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -bj -aw -aw -aw -aw -aw -aw -bq -bv -bN -bR -bN -bR -bK -bN -bv -ci -ci -bv -bN -bR -bN -bR -bN -bv -bj -aw -aw -aw -aw -aw -aw -bq -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(59,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -bj -aw -aw -aw -aw -aw -aw -bq -bv -bM -bR -bM -bR -xA -bM -bv -ci -ci -bv -bM -bR -bM -bR -bM -bv -bj -aw -aw -aw -aw -aw -aw -bq -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(60,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -be -bj -aw -aw -aw -aw -aw -aw -bq -bv -bO -bR -bO -bR -bK -bO -bv -ci -ci -bv -bO -bR -bO -bR -bO -bv -bj -aw -aw -aw -aw -aw -aw -bq -be -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(61,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -be -be -bj -aw -aw -aw -aw -aw -aw -bq -bv -aI -bR -aI -bR -bX -aI -bv -ci -ci -bv -aA -bR -aA -bR -aA -bv -bj -aw -aw -aw -aw -aw -aw -bq -be -be -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(62,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -be -be -be -bk -bn -bn -bn -bn -bn -bn -bs -bv -cL -bS -bP -bS -bP -bP -bv -ci -ci -bv -cL -bS -bP -bS -bP -bv -cS -bn -bn -bn -bn -bn -bn -bs -be -be -be -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(63,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bC -bv -bv -bv -ci -cp -bv -bv -bC -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(64,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -bv -bm -bm -bm -cB -bv -bD -bD -bD -bD -bq -be -fl -be -be -be -be -bj -bY -bY -bv -ci -ci -bv -cQ -bq -be -be -be -be -bE -Fg -bj -bD -bD -bD -bD -bv -cU -bm -bm -bm -bv -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(65,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -kD -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -be -bv -bK -bK -bK -cB -bv -bn -bn -bn -bn -bs -be -be -be -be -be -be -bj -bY -bY -bv -ci -ci -bv -bx -bq -be -be -be -be -be -be -bk -bn -bn -bn -bn -bv -cz -bK -bK -bK -bv -be -be -be -be -be -bf -bf -bf -bf -bf -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(66,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -bf -bf -bf -bf -bf -be -be -be -be -be -be -be -bv -bw -bw -bw -cB -bC -be -be -be -be -be -be -be -be -be -be -be -bj -bY -bY -bv -ci -ci -bv -bY -bq -be -be -be -be -be -be -be -be -be -be -be -bC -cz -bw -bw -bw -bv -be -be -be -be -be -be -be -be -be -bf -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(67,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ON -eL -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -bf -Wk -be -be -be -be -be -be -be -be -be -be -bv -cF -bP -bP -cC -bv -be -be -be -be -be -be -cG -bl -bl -cI -be -bj -bv -bv -bv -ci -cp -bv -bv -bv -be -be -be -be -ct -bi -bl -bl -bp -be -be -bv -cA -bP -bP -cb -bv -be -be -be -be -gD -be -be -be -be -bf -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(68,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ON -eL -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -bf -be -be -bi -bl -bl -bl -bl -bl -bl -bl -bp -bv -bK -bK -bA -bL -bv -bE -be -be -be -be -be -bj -aw -aw -bq -be -be -bv -aJ -aL -aN -aN -aL -Hl -bv -be -be -be -be -cW -bj -aw -aw -bq -be -be -bv -AS -cE -bK -bK -bv -bi -bl -bl -bl -bl -bl -bl -bl -bp -bv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(69,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ON -eL -aw -aw -aw -aw -bv -bo -bf -bv -bv -bo -bf -bv -be -be -bj -aw -aw -aw -aw -aw -aw -aw -bq -bv -bK -bK -cz -cD -bv -be -be -cG -bl -bl -bl -bF -aw -aw -bT -cI -be -bv -aK -aQ -dn -dn -dN -aR -bv -be -bi -cV -cV -cV -bF -aw -aw -cu -bp -be -bv -cD -cB -bK -yy -bv -bj -aw -aw -aw -aw -aw -aw -aw -bq -bv -bv -bo -bf -bv -bv -bo -bf -bv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(70,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ON -WS -gt -gt -gt -gt -VR -be -be -be -be -be -be -VR -be -gD -bj -aw -aw -aw -aw -aw -aw -aw -bq -bv -gX -bK -cz -cD -bv -be -be -bj -aw -aw -aw -aw -aw -aw -aw -bq -be -bv -Mj -bZ -dK -dM -dO -aL -bv -be -bj -aw -aw -aw -aw -aw -aw -aw -bq -be -bv -cD -cB -bK -bK -bv -bj -aw -aw -aw -aw -aw -aw -aw -bq -be -VR -be -be -be -be -be -be -VR -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(71,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ON -WS -gT -gT -gT -gT -VR -be -be -be -be -be -be -VR -be -be -bj -aw -aw -aw -aw -aw -aw -aw -bq -bv -fH -bK -cz -cD -bv -be -be -bj -aw -aw -aw -aw -aw -aw -aw -bq -be -bv -aM -cP -dK -dM -dN -Mj -bv -be -bj -aw -aw -aw -aw -aw -aw -aw -bq -be -bv -cD -cB -bK -TR -bv -bj -aw -aw -aw -aw -aw -aw -aw -bq -be -VR -be -be -be -be -be -be -VR -aw -bg -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(72,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ON -eL -aw -aw -aw -aw -bv -bo -bf -bv -bv -bo -bf -bv -be -be -bj -aw -aw -aw -aw -aw -aw -aw -bq -bv -bK -bK -cz -cD -bv -be -be -cH -bn -bn -bn -bG -aw -aw -bU -cJ -be -bv -aO -dh -dL -dL -dO -aR -bv -be -bk -bn -bn -bn -bG -aw -aw -bU -bs -be -bv -cD -cB -bK -TR -bv -bj -aw -aw -aw -aw -aw -aw -aw -bq -bv -bv -bo -bf -bv -bv -bo -bf -bv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(73,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ON -eL -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -bf -be -be -bk -bn -bn -bn -bn -bn -bn -bn -bs -bv -bK -bK -cA -bP -bv -be -be -be -be -be -be -bj -aw -aw -bq -be -be -bv -aP -aL -aN -aN -aL -aL -bv -be -be -be -be -be -bj -aw -aw -bq -be -be -bv -bP -cC -bK -bK -bv -bk -bn -bn -bn -bn -bn -bn -bn -bs -bv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(74,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ON -eL -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -bf -be -be -be -be -be -be -be -be -be -be -be -bv -ca -bK -bK -ad -bv -be -be -be -be -be -be -cH -bn -bn -cJ -be -bj -bv -bv -bv -ci -cp -bv -bv -bv -be -be -be -be -be -bk -bn -bn -bs -be -be -bv -hd -bK -bK -cs -bv -be -be -be -be -be -be -be -be -be -bf -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(75,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -bf -bf -bf -bf -bf -be -be -be -be -be -be -be -bv -bK -bK -bK -bK -bC -be -be -be -be -be -be -be -be -be -be -be -bj -bY -bY -bv -ci -ci -bv -eE -bq -be -be -be -be -be -be -be -be -be -be -be -bC -bK -bK -bK -bK -bv -be -be -be -be -be -be -be -be -be -bf -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(76,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -Dt -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -be -bv -bL -bL -bL -cE -bv -bl -bl -bl -bl -bp -be -be -be -be -be -be -bj -bY -bY -bv -ci -ci -bv -bx -bq -be -be -be -be -be -be -bi -bl -bl -bl -bl -bv -bA -bL -bL -bL -bv -be -be -be -be -be -bf -bf -bf -bf -bf -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(77,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -bv -cK -by -by -Du -bv -bD -bD -bD -bD -bq -be -be -dZ -be -be -be -bj -bY -bY -bv -ci -ci -bv -cR -bq -be -be -be -dZ -be -be -bj -bD -bD -bD -bD -bv -cz -by -by -by -bv -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(78,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bC -bv -bv -bv -ci -cp -bv -bv -bC -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -bv -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(79,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -be -be -be -bi -bl -bl -bl -bl -bl -bl -bp -bv -cM -bQ -bL -bQ -bL -bL -bv -ci -ci -bv -cM -bQ -bL -bQ -bL -bv -cT -bl -bl -bl -bl -bl -bl -bp -be -be -be -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(80,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -be -be -bj -aw -aw -aw -aw -aw -aw -bq -bv -aF -bR -aF -bR -bK -aF -bv -ci -ci -bv -aC -bR -az -bR -az -bv -bj -aw -aw -aw -aw -aw -aw -bq -be -be -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(81,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -be -bj -aw -aw -aw -aw -aw -aw -bq -bv -bN -bR -bN -bR -bK -bN -bv -ci -ci -bv -bN -bR -bN -bR -bN -bv -bj -aw -aw -aw -aw -aw -aw -bq -be -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(82,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -bj -aw -aw -aw -aw -aw -aw -bq -bv -bM -bR -bM -bR -bX -bM -bv -ci -ci -bv -bM -bR -bM -bR -bM -bv -bj -aw -aw -aw -aw -aw -aw -bq -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(83,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -bj -aw -aw -aw -aw -aw -aw -bq -bv -bO -bR -bO -bR -bX -bO -bv -ci -ci -bv -bO -bR -bO -bR -bO -bv -bj -aw -aw -aw -aw -aw -aw -bq -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(84,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -bj -aw -aw -aw -aw -aw -aw -bq -bv -aI -bR -aI -bR -bK -aI -bv -ci -ci -bv -aA -bR -aA -bR -aA -bv -bj -aw -aw -aw -aw -aw -aw -bq -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(85,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -bj -aw -aw -aw -aw -aw -aw -bq -bv -bP -bS -bP -bS -bP -bP -bv -ci -ci -bv -bP -bS -bP -bS -bP -bv -bj -aw -aw -aw -aw -aw -aw -bq -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(86,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -bk -bn -bn -bn -bn -bn -bn -bs -bv -uU -bK -bV -bW -bK -Gs -bv -ci -ci -bv -Gs -bK -QE -bK -Lw -bv -ai -ak -ak -ak -ak -ak -ak -am -bv -bv -bv -bv -bf -bf -bv -bv -bf -bf -bv -bv -bf -bf -bv -bv -bv -bv -bv -bv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(87,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -bv -bv -bv -bv -bv -bv -bf -bf -bv -bv -bf -bf -bv -bv -bf -bf -bv -bv -bv -bv -bl -bl -bl -bl -bl -bl -bl -bl -bv -bK -bK -bK -bK -bK -bK -bv -ci -cq -cd -bB -bB -bB -bB -bB -cd -bB -bB -bB -bB -bB -bB -bB -bB -bz -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -aX -bv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(88,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -bv -dr -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -dy -bz -bB -bB -bB -bB -bB -bB -bB -bB -bz -bB -bB -bB -bB -bB -bB -cd -cm -bK -bv -Qe -Ym -Gs -bJ -Gs -bv -bn -bn -bn -bn -bn -bn -bv -bv -bv -bv -bv -bv -bf -bf -bv -bv -bf -bf -bv -bv -bo -bf -bv -bv -bv -bv -ds -bv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(89,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -bv -ds -bv -bv -bv -bv -bf -bf -bv -bv -bf -bd -bv -bv -bo -bf -bv -bv -bv -bv -bv -bv -bn -bn -bn -bn -bn -bn -bv -cN -bJ -bJ -bJ -tZ -bJ -bv -bK -bK -bv -bv -bv -bv -bv -bv -bv -be -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aT -dl -aT -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(90,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aT -dl -aT -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -ao -ao -be -bv -bv -bv -bv -bv -bv -bv -bv -bK -bK -bv -be -be -be -be -be -be -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -dj -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(91,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -dj -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -be -be -be -be -be -bC -bK -bK -bK -bC -be -be -be -be -be -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aZ -dm -dt -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(92,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aZ -dm -dt -dA -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -be -be -be -be -bv -cn -bK -dV -bv -be -be -be -be -gD -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -bb -aD -bb -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(93,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -bb -aD -bb -aD -aD -dE -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -gD -be -be -be -bv -cO -cO -bv -bv -ao -be -ao -be -be -be -ao -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -aD -bb -aD -bb -aD -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(94,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -aD -bb -aD -bb -aD -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -be -be -bv -cw -cw -bv -Ly -be -be -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -av -aT -aT -aT -aT -db -aT -db -aT -aT -aT -aT -dQ -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(95,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -av -aT -aT -aT -aT -db -aT -db -aT -aT -aT -aT -dQ -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -be -bv -cw -cw -bv -be -be -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ax -aU -aU -aU -aU -bb -aD -bb -aU -aU -aU -aU -dR -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(96,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ax -aU -aU -aU -aU -bb -aD -bb -aU -aU -aU -aU -dR -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -be -bv -cw -cw -bv -be -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ay -aV -aV -aV -aV -dc -aD -du -dB -dB -dB -dB -dS -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(97,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ay -aV -aV -aV -aV -dc -aD -du -dB -dB -dB -dB -dS -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -be -bv -dY -cw -bv -be -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ax -aU -aU -aU -aU -bb -aD -bb -aU -aU -aU -aU -dR -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(98,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ax -aU -aU -aU -aU -bb -aD -bb -aU -aU -aU -aU -dR -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -be -bv -cw -cw -bv -be -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ay -aV -aV -aV -aV -dc -aD -du -dB -dB -dB -dB -dS -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(99,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ay -aV -aV -aV -aV -dc -aD -du -dB -dB -dB -dB -dS -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -be -bv -cw -cw -bv -be -be -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ax -aU -aU -aU -aU -bb -aD -bb -aU -aU -aU -aU -dR -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(100,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ax -aU -aU -aU -aU -bb -aD -bb -aU -aU -aU -aU -dR -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -be -bv -dW -dX -bv -Jb -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ay -aV -aV -aV -aV -dc -aD -du -dB -dB -dB -dB -dS -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(101,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ay -aV -aV -aV -aV -dc -aD -du -dB -dB -dB -dB -dS -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -bv -dP -dP -bv -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ax -aU -aU -aU -aU -bb -aD -bb -aU -aU -aU -aU -dR -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(102,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ax -aU -aU -aU -aU -bb -aD -bb -aU -aU -aU -aU -dR -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -bv -eb -ec -bv -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ay -aV -aV -aV -aV -dc -aD -du -dB -dB -dB -dB -dS -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(103,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ay -aV -aV -aV -aV -dc -aD -du -dB -dB -dB -dB -dS -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -cc -cY -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ax -aU -aU -aU -aU -bb -aD -bb -aU -aU -aU -aU -dR -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(104,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ax -aU -aU -aU -aU -bb -aD -bb -aU -aU -aU -aU -dR -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cc -cY -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ay -aV -aV -aV -aV -dc -aD -du -dB -dB -dB -dB -dS -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(105,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ay -aV -aV -aV -aV -dc -aD -du -dB -dB -dB -dB -dS -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ax -aU -aU -aU -aU -bb -aD -bb -aU -aU -aU -aU -dR -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(106,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ax -aU -aU -aU -aU -bb -aD -bb -aU -aU -aU -aU -dR -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -bh -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ay -aV -aV -aV -aV -dc -aD -du -dB -dB -dB -dB -dS -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(107,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ay -aV -aV -aV -aV -dc -aD -du -dB -dB -dB -dB -dS -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ax -aU -aU -aU -aU -bb -aD -bb -aU -aU -aU -aU -dR -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(108,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ax -aU -aU -aU -aU -bb -aD -bb -aU -aU -aU -aU -dR -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ay -aV -aV -aV -aV -dc -aD -du -dB -dB -dB -dB -dS -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(109,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ay -aV -aV -aV -aV -dc -aD -du -dB -dB -dB -dB -dS -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ax -aU -aU -aU -aU -bb -aD -bb -aU -aU -aU -aU -dR -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(110,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ax -aU -aU -aU -aU -bb -aD -bb -aU -aU -aU -aU -dR -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aB -aY -aY -aY -aY -dd -aS -dv -dC -dC -dC -dC -dT -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(111,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aB -aY -aY -aY -aY -dd -aS -dv -dC -dC -dC -dC -dT -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -aD -bb -aD -aD -aD -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(112,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -aD -bb -aD -aD -aD -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -dU -de -dg -aD -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(113,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -de -dg -aD -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -cx -df -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(114,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -cx -df -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(115,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aD -aD -aD -aD -aD -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aS -aS -aS -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(116,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aS -aS -aS -dw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(117,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(118,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(119,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(120,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(121,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(122,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(123,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(124,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(125,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(126,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(127,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(128,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(129,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(130,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(131,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(132,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(133,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(134,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(135,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(136,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(137,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(138,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(139,1,1) = {" -cZ -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cZ -"} -(140,1,1) = {" -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -cZ -"} diff --git a/maps/southern_sun/overmap/planets/kara/kara.dm b/maps/southern_sun/overmap/planets/kara/kara.dm deleted file mode 100644 index 5d31a3feaa..0000000000 --- a/maps/southern_sun/overmap/planets/kara/kara.dm +++ /dev/null @@ -1,105 +0,0 @@ -//Atmosphere properties //CHOMP Comment: I guess this Kara planetary information should go here. Kara is a gas giant, it ain't gonna be getting very many other maps. -#define KARA_ONE_ATMOSPHERE 101.5 //kPa -#define KARA_AVG_TEMP 150 //kelvin - -#define KARA_PER_N2 0.10 //percent -#define KARA_PER_O2 0.03 -#define KARA_PER_N2O 0.00 //Currently no capacity to 'start' a turf with this. See turf.dm -#define KARA_PER_CO2 0.87 -#define KARA_PER_PHORON 0.00 - -//Math only beyond this point -#define KARA_MOL_PER_TURF (KARA_ONE_ATMOSPHERE*CELL_VOLUME/(KARA_AVG_TEMP*R_IDEAL_GAS_EQUATION)) -#define KARA_MOL_N2 (KARA_MOL_PER_TURF * KARA_PER_N2) -#define KARA_MOL_O2 (KARA_MOL_PER_TURF * KARA_PER_O2) -#define KARA_MOL_N2O (KARA_MOL_PER_TURF * KARA_PER_N2O) -#define KARA_MOL_CO2 (KARA_MOL_PER_TURF * KARA_PER_CO2) -#define KARA_MOL_PHORON (KARA_MOL_PER_TURF * KARA_PER_PHORON) - -//Turfmakers -#define KARA_SET_ATMOS nitrogen=KARA_MOL_N2;oxygen=KARA_MOL_O2;carbon_dioxide=KARA_MOL_CO2;phoron=KARA_MOL_PHORON;temperature=KARA_AVG_TEMP -#define KARA_TURF_CREATE(x) x/kara/nitrogen=KARA_MOL_N2;x/kara/oxygen=KARA_MOL_O2;x/kara/carbon_dioxide=KARA_MOL_CO2;x/kara/phoron=KARA_MOL_PHORON;x/kara/temperature=KARA_AVG_TEMP;x/kara/color="#eacd7c" - -// Overmap object for Kara, hanging in the void of space -/obj/effect/overmap/visitable/planet/kara - name = "Kara" - desc = "Uninhabitable gas giant. Derelict installations present in the upper atmosphere." - scanner_desc = @{"[i]Stellar Body[/i]: Kara -[i]Registration[/i]: Vir System Authority -[i]Class[/i]: Installation -[i]Transponder[/i]: Transmitting (CIV), Vir IFF -[b]Notice[/b]: CONDEMNED! NO ENTRY! -Vir System Authority"} - - map_z = list(Z_LEVEL_AEROSTAT) // Using the aerostat as the map as it is the only z-level in the atmosphere. Located in /maps/southern_cross/overmap/planets/kara/aerostat/ - initial_generic_waypoints = list("northern_star_mine_dock", "northern_star_mine_echidna_dock", "aerostat_west","aerostat_east","aerostat_south","aerostat_northwest","aerostat_northeast") //northern_star.dm landmarks - start_x = 14 - start_y = 14 - skybox_offset_x = 128 - skybox_offset_y = 128 - surface_color = "#AD9100" // While many of these vars don't really make sense for a gas giant, they're necessary for the planet image generation we currently have. - mountain_color = "#A58A00" // Maybe we'll have a proper gas giant later. - water_color = "#A88D00" - ice_color = "#AD9100" - atmosphere_color = "#C19562" - icon_state = "chlorine" - known = 1 - - -/obj/effect/overmap/visitable/planet/kara/get_skybox_representation() - var/image/tmp = ..() - tmp.pixel_x = skybox_offset_x - tmp.pixel_y = skybox_offset_y - return tmp - -/obj/effect/overmap/visitable/planet/kara/Initialize() - atmosphere = new(CELL_VOLUME) // Necessary for the planet overmap icon to generate properly, but gas type does not seem to matter. - atmosphere.adjust_gas_temp("carbon_dioxide", KARA_MOL_CO2, KARA_AVG_TEMP) - atmosphere.adjust_gas_temp("nitrogen", KARA_MOL_N2, KARA_AVG_TEMP) - atmosphere.adjust_gas_temp("oxygen", KARA_MOL_O2, KARA_AVG_TEMP) - - . = ..() - - docking_codes = null - - -/turf/unsimulated/floor/sky/kara_sky - name = "kara atmosphere" - desc = "Be careful where you step!" - color = "#eacd7c" - KARA_SET_ATMOS - does_skyfall = FALSE - -/turf/unsimulated/floor/sky/kara_sky/Entered(atom/movable/AM, atom/oldloc) - . = ..() - if(isobserver(AM)) - return //Don't ghostport, very annoying - if(AM.throwing) - return //Being thrown over, not fallen yet - if(!(AM.can_fall())) - return // Phased shifted kin should not fall - if(istype(AM, /obj/item/projectile)) - return // pewpew should not fall out of the sky. pew. - if(istype(AM, /obj/effect/projectile)) - return // ...neither should the effects be falling - - var/mob/living/L - if(isliving(AM)) - L = AM - if(L.is_floating) - return //Flyers/nograv can ignore it - - qdel(AM) - -/turf/simulated/shuttle/wall/voidcraft/green/kara - KARA_SET_ATMOS - color = "#eacd7c" - -/turf/simulated/shuttle/wall/voidcraft/green/kara/nocol - color = null - -KARA_TURF_CREATE(/turf/unsimulated/wall/planetary) - -KARA_TURF_CREATE(/turf/simulated/wall) -KARA_TURF_CREATE(/turf/simulated/floor/plating) -KARA_TURF_CREATE(/turf/simulated/floor/bluegrid) -KARA_TURF_CREATE(/turf/simulated/floor/tiled/techfloor) diff --git a/maps/southern_sun/overmap/planets/kara/kara_OM_only.dm b/maps/southern_sun/overmap/planets/kara/kara_OM_only.dm deleted file mode 100644 index 260f56d4a2..0000000000 --- a/maps/southern_sun/overmap/planets/kara/kara_OM_only.dm +++ /dev/null @@ -1,64 +0,0 @@ -//Atmosphere properties //CHOMP Comment: I guess this Kara planetary information should go here. Kara is a gas giant, it ain't gonna be getting very many other maps. -#define KARA_ONE_ATMOSPHERE 101.5 //kPa -#define KARA_AVG_TEMP 150 //kelvin - -#define KARA_PER_N2 0.10 //percent -#define KARA_PER_O2 0.03 -#define KARA_PER_N2O 0.00 //Currently no capacity to 'start' a turf with this. See turf.dm -#define KARA_PER_CO2 0.87 -#define KARA_PER_PHORON 0.00 - -//Math only beyond this point -#define KARA_MOL_PER_TURF (KARA_ONE_ATMOSPHERE*CELL_VOLUME/(KARA_AVG_TEMP*R_IDEAL_GAS_EQUATION)) -#define KARA_MOL_N2 (KARA_MOL_PER_TURF * KARA_PER_N2) -#define KARA_MOL_O2 (KARA_MOL_PER_TURF * KARA_PER_O2) -#define KARA_MOL_N2O (KARA_MOL_PER_TURF * KARA_PER_N2O) -#define KARA_MOL_CO2 (KARA_MOL_PER_TURF * KARA_PER_CO2) -#define KARA_MOL_PHORON (KARA_MOL_PER_TURF * KARA_PER_PHORON) - -// Overmap object for Kara, hanging in the void of space -/obj/effect/overmap/visitable/planet/kara - name = "Kara" - desc = "Uninhabitable gas giant." - scanner_desc = @{"[i]Stellar Body[/i]: Kara -[i]Registration[/i]: Vir System Authority -[i]Class[/i]: Installation -[i]Transponder[/i]: Transmitting (CIV), Vir IFF -[b]Notice[/b]: CONDEMNED! NO ENTRY! -Vir System Authority"} - - map_z = list() // Using the aerostat as the map as it is the only z-level in the atmosphere. Located in /maps/southern_cross/overmap/planets/kara/aerostat/ - initial_generic_waypoints = list() //northern_star.dm landmarks - start_x = 14 - start_y = 14 - skybox_offset_x = 128 - skybox_offset_y = 128 - surface_color = "#AD9100" // While many of these vars don't really make sense for a gas giant, they're necessary for the planet image generation we currently have. - mountain_color = "#A58A00" // Maybe we'll have a proper gas giant later. - water_color = "#A88D00" - ice_color = "#AD9100" - atmosphere_color = "#C19562" - icon_state = "chlorine" - known = 1 - - -/obj/effect/overmap/visitable/planet/kara/get_skybox_representation() - var/image/tmp = ..() - tmp.pixel_x = skybox_offset_x - tmp.pixel_y = skybox_offset_y - return tmp - -/obj/effect/overmap/visitable/planet/kara/Initialize() - atmosphere = new(CELL_VOLUME) // Necessary for the planet overmap icon to generate properly, but gas type does not seem to matter. - atmosphere.adjust_gas_temp("carbon_dioxide", KARA_MOL_CO2, KARA_AVG_TEMP) - atmosphere.adjust_gas_temp("nitrogen", KARA_MOL_N2, KARA_AVG_TEMP) - atmosphere.adjust_gas_temp("oxygen", KARA_MOL_O2, KARA_AVG_TEMP) - - . = ..() - - docking_codes = null - -/obj/effect/overmap/visitable/planet/kara/find_z_levels() - return - -/obj/effect/overmap/visitable/planet/kara/register_z_levels() - return diff --git a/maps/southern_sun/overmap/planets/kara/northern_star/backup/northern_star_mine.dmm b/maps/southern_sun/overmap/planets/kara/northern_star/backup/northern_star_mine.dmm deleted file mode 100644 index 6f298cc541..0000000000 --- a/maps/southern_sun/overmap/planets/kara/northern_star/backup/northern_star_mine.dmm +++ /dev/null @@ -1,88869 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/space, -/area/space) -"ab" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/space, -/area/space) -"ac" = ( -/turf/space, -/area/syndicate_station/mining) -"ad" = ( -/turf/simulated/mineral, -/area/mine/unexplored) -"ae" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/mixing) -"af" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/hallway/toxins_hallway) -"ag" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/tox_store) -"ah" = ( -/turf/simulated/wall, -/area/outpost/research/mixing) -"ai" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"aj" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"ak" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"al" = ( -/turf/simulated/wall, -/area/outpost/research/tox_store) -"am" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/test_area) -"an" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/test_area) -"ao" = ( -/obj/machinery/vending/phoronresearch, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/mixing) -"ap" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/mixing) -"aq" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"ar" = ( -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"as" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/storage/box/lights/mixed, -/obj/item/extinguisher, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"at" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"au" = ( -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"av" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/outpost/research/test_area) -"aw" = ( -/obj/structure/dispenser, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"ax" = ( -/obj/structure/table/standard, -/obj/item/tool/wrench, -/obj/item/tool/screwdriver{ - pixel_y = 10 - }, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 0; - pixel_y = 30 - }, -/obj/item/tool/crowbar, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"ay" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"az" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 30; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"aA" = ( -/turf/simulated/wall, -/area/outpost/research/hallway/toxins_hallway) -"aB" = ( -/obj/machinery/door/airlock{ - name = "Toxins Emergency Storage" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"aC" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"aD" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"aE" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"aF" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"aG" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 8; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced{ - dir = 1; - icon_state = "phoronrwindow" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/research/mixing) -"aH" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 1; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/research/mixing) -"aI" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/powered/pump, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"aJ" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"aK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"aL" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 8; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced{ - dir = 1; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/research/mixing) -"aM" = ( -/obj/machinery/portable_atmospherics/powered/pump, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"aN" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"aO" = ( -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"aP" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access = list(8) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"aQ" = ( -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"aR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"aS" = ( -/obj/machinery/alarm{ - pixel_y = 23 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"aT" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 8; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/research/mixing) -"aU" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"aV" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 8; - icon_state = "map" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"aW" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 1; - icon_state = "map" - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"aX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"aY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"aZ" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"ba" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bd" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access = list(8) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"be" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"bf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"bg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"bh" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"bi" = ( -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bj" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Heater to Waste" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bk" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 2; - name = "Waste to Scrubbers" - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/outpost/research/mixing) -"bl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bn" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bo" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Fore"; - dir = 4 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/computer/area_atmos, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"br" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Gas Storage"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"bs" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"bt" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"bu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"bv" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"bw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 6 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = 0; - pixel_z = 33 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"by" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bA" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Heated to Waste" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bB" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bC" = ( -/obj/structure/closet/bombcloset, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8; - icon_state = "warningcorner" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bD" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bF" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bG" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"bH" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"bI" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"bJ" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"bK" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -29 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"bL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/mixing) -"bM" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bN" = ( -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/research/mixing) -"bO" = ( -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5; - icon_state = "warning" - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/research/mixing) -"bP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bQ" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bR" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Lab Fore"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bS" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bU" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bV" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"bW" = ( -/turf/simulated/wall, -/area/outpost/research/toxins_launch) -"bX" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"bY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"bZ" = ( -/obj/structure/sign/fire, -/turf/simulated/wall/r_wall, -/area/outpost/research/mixing) -"ca" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 6 - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/mixing) -"cb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/purple{ - dir = 1 - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/mixing) -"cc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 9 - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/mixing) -"cd" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"ce" = ( -/obj/machinery/atmospherics/binary/passive_gate{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"cf" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"cg" = ( -/obj/structure/closet/emcloset, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"ch" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"ci" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cj" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"ck" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm{ - pixel_y = 23 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Mid"; - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cl" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "toxinsdriver" - }, -/turf/simulated/floor/airless, -/area/outpost/research/toxins_launch) -"cm" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/airlock_sensor{ - pixel_y = 25 - }, -/turf/simulated/floor/airless, -/area/outpost/research/toxins_launch) -"cn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/outpost/research/toxins_launch) -"co" = ( -/obj/machinery/door/blast/regular{ - id = "toxinsdriver"; - name = "Toxins Launcher Bay Door" - }, -/turf/simulated/floor/airless, -/area/outpost/research/toxins_launch) -"cp" = ( -/turf/simulated/floor/airless, -/area/outpost/research/toxins_launch) -"cq" = ( -/obj/machinery/door/blast/regular{ - id = "toxinsdriver"; - name = "Toxins Launcher Bay Door" - }, -/turf/simulated/floor/airless, -/area/outpost/research/test_area) -"cr" = ( -/turf/simulated/floor/airless, -/area/outpost/research/test_area) -"cs" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Toxins Test Chamber North"; - network = list("Research","Toxins Test Area") - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"ct" = ( -/obj/machinery/door/blast/regular{ - id = "mixvent"; - name = "Mixer Room Vent" - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/mixing) -"cu" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, -/turf/simulated/floor/reinforced/airless, -/area/outpost/research/mixing) -"cv" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, -/turf/simulated/floor/reinforced/airless, -/area/outpost/research/mixing) -"cw" = ( -/obj/machinery/sparker{ - dir = 2; - id = "mixingsparker"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1443; - icon_state = "map_injector"; - id = "air_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/outpost/research/mixing) -"cx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/mixing) -"cy" = ( -/obj/machinery/airlock_sensor{ - id_tag = "tox_airlock_sensor"; - master_tag = "tox_airlock_control"; - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/mixing) -"cz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/mixing) -"cA" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "tox_airlock_control"; - pixel_x = -24; - pixel_y = 0; - tag_airpump = "tox_airlock_pump"; - tag_chamber_sensor = "tox_airlock_sensor"; - tag_exterior_door = "tox_airlock_exterior"; - tag_interior_door = "tox_airlock_interior" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/tvalve/bypass{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"cB" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"cC" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"cD" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 8; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced{ - dir = 1; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/research/mixing) -"cE" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cH" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"cK" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cL" = ( -/obj/machinery/alarm{ - pixel_y = 23 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Starboard"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cN" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/airless, -/area/outpost/research/toxins_launch) -"cO" = ( -/obj/machinery/door/window/southright{ - name = "Toxins Launcher"; - req_access = list(8) - }, -/obj/machinery/door/window/southright{ - dir = 1; - name = "Toxins Launcher"; - req_access = list(8) - }, -/obj/machinery/door/firedoor/border_only{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_launch) -"cP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_launch) -"cQ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"cR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"cS" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/turf/simulated/floor/reinforced/airless, -/area/outpost/research/mixing) -"cT" = ( -/obj/machinery/air_sensor{ - frequency = 1430; - id_tag = "toxins_mixing_exterior"; - output = 63 - }, -/turf/simulated/floor/reinforced/airless, -/area/outpost/research/mixing) -"cU" = ( -/obj/machinery/door/airlock/glass_research{ - autoclose = 0; - frequency = 1379; - glass = 1; - icon_state = "door_locked"; - id_tag = "tox_airlock_exterior"; - locked = 1; - name = "Mixing Room Exterior Airlock"; - req_access = list(7) - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/mixing) -"cV" = ( -/obj/machinery/atmospherics/binary/dp_vent_pump/high_volume{ - dir = 2; - frequency = 1379; - id = "tox_airlock_pump" - }, -/obj/machinery/air_sensor{ - frequency = 1430; - id_tag = "toxins_mixing_interior"; - output = 63; - pixel_x = -8; - pixel_y = -18 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/mixing) -"cW" = ( -/obj/machinery/door/airlock/glass_research{ - autoclose = 0; - frequency = 1379; - glass = 1; - icon_state = "door_locked"; - id_tag = "tox_airlock_interior"; - locked = 1; - name = "Mixing Room Interior Airlock"; - req_access = list(7) - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/mixing) -"cX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"cY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"cZ" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Toxins Lab"; - req_access = list(7) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"da" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"db" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"de" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"df" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dg" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dh" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"di" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room"; - req_access = list(7) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dj" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1; - icon_state = "warningcorner" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dk" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dl" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the test chamber."; - layer = 4; - name = "Test Chamber Telescreen"; - network = list("Toxins Test Area"); - pixel_x = 32; - pixel_y = 0 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4; - icon_state = "warningcorner" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_launch) -"dn" = ( -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"do" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/airless, -/area/outpost/research/test_area) -"dp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/outpost/research/test_area) -"dq" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/turf/simulated/floor/reinforced/airless, -/area/outpost/research/mixing) -"dr" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/reinforced/airless, -/area/outpost/research/mixing) -"ds" = ( -/obj/machinery/sparker{ - dir = 2; - id = "mixingsparker"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/outpost/research/mixing) -"dt" = ( -/obj/structure/sign/fire{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/mixing) -"du" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/mixing) -"dv" = ( -/obj/machinery/button/remote/blast_door{ - id = "mixvent"; - name = "Mixing Room Vent Control"; - pixel_x = -25; - pixel_y = 5; - req_access = list(7) - }, -/obj/machinery/button/ignition{ - id = "mixingsparker"; - pixel_x = -25; - pixel_y = -5 - }, -/obj/machinery/atmospherics/valve{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1; - icon_state = "warningcorner" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"dw" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"dx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dz" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dB" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dD" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dF" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Launch Room"; - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dG" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the test chamber."; - layer = 4; - name = "Test Chamber Telescreen"; - network = list("Toxins Test Area"); - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_launch) -"dJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/airless, -/area/outpost/research/test_area) -"dK" = ( -/obj/machinery/door/airlock/external{ - name = "Toxins Test Chamber" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/airless, -/area/outpost/research/test_area) -"dL" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue, -/obj/machinery/light_switch{ - pixel_x = -36; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"dM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"dN" = ( -/obj/machinery/computer/general_air_control{ - frequency = 1430; - name = "Mixing Chamber Monitor"; - sensors = list("toxins_mixing_exterior" = "Mixing Chamber - Exterior", "toxins_mixing_interior" = "Mixing Chamber - Interior") - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"dO" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/floor_decal/corner/purple/full, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dP" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dR" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dS" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light, -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dT" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/toxins_misc_lab) -"dU" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Misc Lab"; - req_access = list(8) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"dV" = ( -/obj/machinery/disposal, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -30; - pixel_y = 0 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dW" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dX" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the test chamber."; - layer = 4; - name = "Test Chamber Telescreen"; - network = list("Toxins Test Area"); - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/remote/driver{ - dir = 2; - id = "toxinsdriver"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_launch) -"dZ" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"ea" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"eb" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"ec" = ( -/obj/machinery/door/airlock/external{ - name = "Toxins Test Chamber" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/outpost/research/test_area) -"ed" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/outpost/research/test_area) -"ee" = ( -/turf/simulated/floor/tiled/dark, -/area/outpost/research/mixing) -"ef" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"eg" = ( -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"eh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4; - icon_state = "warningcorner" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"ei" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"ej" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"ek" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Lab Aft"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"el" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"em" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"en" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/clipboard, -/obj/item/pen, -/obj/machinery/alarm{ - pixel_y = 23 - }, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -30; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eo" = ( -/obj/structure/table/standard, -/obj/item/folder, -/obj/item/clothing/glasses/science, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Misc Lab"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"ep" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eq" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"er" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"es" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"et" = ( -/turf/simulated/wall, -/area/outpost/research/test_area) -"eu" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/simulated/wall, -/area/outpost/research/test_area) -"ev" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"ew" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/mixing) -"ex" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"ey" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"ez" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/obj/machinery/status_display{ - layer = 4; - pixel_x = -32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eA" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eD" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "toxins_airlock"; - name = "interior access button"; - pixel_x = 0; - pixel_y = 26; - req_one_access = list(8,13,65) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "toxins_inner"; - locked = 1; - name = "Toxins External Access" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/outpost/research/toxins_misc_lab) -"eG" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "toxins_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; - id_tag = "toxins_airlock"; - pixel_x = 0; - pixel_y = 25; - tag_airpump = "toxins_pump"; - tag_chamber_sensor = "toxins_sensor"; - tag_exterior_door = "toxins_outer"; - tag_interior_door = "toxins_inner" - }, -/obj/machinery/airlock_sensor{ - frequency = 1379; - id_tag = "toxins_sensor"; - pixel_x = 0; - pixel_y = -25 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eH" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "toxins_outer"; - locked = 1; - name = "Toxins External Access"; - req_access = list(8,10,13) - }, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_misc_lab) -"eI" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "toxins_airlock"; - name = "exterior access button"; - pixel_x = -26; - pixel_y = 26; - req_one_access = list(8,13,65) - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"eJ" = ( -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"eK" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"eL" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"eM" = ( -/obj/machinery/atmospherics/omni/mixer{ - tag_east = 2; - tag_east_con = null; - tag_north = 1; - tag_north_con = 0.5; - tag_south = 0; - tag_south_con = null; - tag_west = 1; - tag_west_con = 0.5; - use_power = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"eN" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/machinery/meter, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"eO" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 2; - tag_north = 6; - tag_south = 0; - tag_west = 1; - use_power = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"eP" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -29 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"eQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = -29; - pixel_z = 2 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"eR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"eS" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Aft"; - dir = 8 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"eT" = ( -/obj/structure/table/standard, -/obj/item/storage/box/donkpockets, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eU" = ( -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eX" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eY" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"eZ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_misc_lab) -"fb" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/purple, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"fc" = ( -/turf/simulated/floor/tiled/steel, -/area/outpost/research/toxins_misc_lab) -"fd" = ( -/turf/simulated/floor/plating, -/area/outpost/research/toxins_misc_lab) -"fe" = ( -/obj/structure/closet, -/obj/item/clothing/accessory/armband/science, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"ff" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/xenobiology) -"fg" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"fh" = ( -/obj/machinery/alarm{ - pixel_y = 23 - }, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"fi" = ( -/obj/machinery/door/airlock{ - name = "Toxins Misc Storage" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"fj" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "toxins_airlock_control"; - name = "Toxins Access Console"; - pixel_x = 0; - pixel_y = -28; - tag_exterior_door = "toxins_airlock_exterior"; - tag_interior_door = "toxins_airlock_interior" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fk" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/closet/bombcloset, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8; - icon_state = "warningcorner" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_misc_lab) -"fn" = ( -/obj/structure/closet, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"fo" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 8 - }, -/obj/item/pipe_meter, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_misc_lab) -"fp" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_misc_lab) -"fq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 10 - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/toxins_misc_lab) -"fr" = ( -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"fs" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"ft" = ( -/turf/simulated/wall, -/area/outpost/research/xenobiology) -"fu" = ( -/obj/structure/table/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/clothing/accessory/armband/science, -/obj/item/clothing/glasses/science, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/item/suit_cooling_unit, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"fv" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"fw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "toxins_airlock_interior"; - locked = 1; - name = "Toxins Internal Airlock"; - req_access = list(7) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 6 - }, -/obj/machinery/light, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_misc_lab) -"fy" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = 29 - }, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_misc_lab) -"fz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple, -/turf/simulated/wall/r_wall, -/area/outpost/research/toxins_misc_lab) -"fA" = ( -/mob/living/simple_mob/metroid/mine, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"fB" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"fC" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"fD" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/warning{ - dir = 9; - icon_state = "warning" - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "toxins_airlock_control"; - name = "Toxins Access Button"; - pixel_x = 26; - pixel_y = 26; - req_access = list(7) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Access"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fG" = ( -/obj/item/tool/wrench, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/toxins_misc_lab) -"fH" = ( -/obj/machinery/pipedispenser, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/toxins_misc_lab) -"fI" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"fJ" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"fK" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenobiology Fore Port"; - dir = 2 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobio1"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 40; - req_access = list(55) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"fL" = ( -/obj/structure/table/standard, -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"fM" = ( -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fO" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"fP" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, -/turf/space, -/area/space) -"fQ" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"fR" = ( -/obj/structure/closet/bombcloset/double, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"fS" = ( -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"fT" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio1"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"fU" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio1"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/window/brigdoor/northright{ - name = "Containment Pen"; - req_access = list(47) - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"fV" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio1"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"fW" = ( -/obj/structure/grille, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio2"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"fX" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio2"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/window/brigdoor/northright{ - name = "Containment Pen"; - req_access = list(47) - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"fY" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio2"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"fZ" = ( -/obj/machinery/camera/network/research/xenobio, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"ga" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/outpost/research/hallway/toxins_hallway) -"gb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "toxins_airlock_exterior"; - locked = 1; - name = "Toxins External Airlock"; - req_access = list(7) - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "toxins_airlock_control"; - name = "Toxins Access Button"; - pixel_x = 26; - pixel_y = 0; - req_access = list(7) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"gc" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/turf/space, -/area/space) -"gd" = ( -/obj/structure/closet/l3closet/scientist/double, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"ge" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gf" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/cable/blue, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gg" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/cable/blue, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gh" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/door/window/brigdoor/southright{ - name = "Containment Pen"; - req_access = list(47) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gi" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gj" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gk" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenobiology Fore Starboard"; - dir = 2 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobio2"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 30; - req_access = list(55) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gl" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gm" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/sink{ - pixel_y = 30 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gn" = ( -/obj/structure/table/standard, -/obj/item/clothing/suit/storage/hooded/wintercoat/science, -/obj/item/clothing/suit/storage/hooded/wintercoat/science, -/obj/item/storage/firstaid/regular, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"go" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"gp" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4; - icon_state = "warningcorner" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"gq" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"gr" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Exterior"; - dir = 2 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"gs" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"gt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"gu" = ( -/obj/structure/closet/radiation, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"gv" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gw" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gx" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gy" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gz" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gA" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gB" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gC" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gD" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 32 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobio3"; - name = "Containment Blast Doors"; - pixel_x = 24; - pixel_y = -10; - req_access = list(55) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gE" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"gF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"gG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"gH" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"gI" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/space, -/area/space) -"gJ" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/turf/space, -/area/space) -"gK" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9; - icon_state = "intact" - }, -/turf/space, -/area/space) -"gL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"gM" = ( -/obj/structure/closet/firecloset/full/double, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"gN" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 7; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gO" = ( -/obj/machinery/light, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = 0; - pixel_z = -29 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gS" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gT" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gU" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/cable/blue, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gV" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio3"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"gW" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"gX" = ( -/obj/structure/lattice, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"gY" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"gZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"ha" = ( -/obj/structure/lattice, -/turf/space, -/area/space) -"hb" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/turf/space, -/area/space) -"hc" = ( -/obj/structure/window/reinforced, -/turf/simulated/floor/airless, -/area/space) -"hd" = ( -/obj/structure/sign/biohazard, -/turf/simulated/wall/r_wall, -/area/outpost/research/xenobiology) -"he" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"hf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hg" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"hh" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"hi" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"hj" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio3"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/window/brigdoor/eastright{ - name = "Containment Pen"; - req_access = list(47) - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"hk" = ( -/obj/machinery/door/window/brigdoor/westleft{ - name = "Containment Pen"; - req_access = list(47) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/obj/structure/window/reinforced, -/turf/space, -/area/space) -"hn" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/space, -/area/space) -"ho" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenobiology Exterior"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hp" = ( -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9; - icon_state = "warning" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hq" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hr" = ( -/obj/machinery/shower{ - pixel_y = 3 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/research/xenobiology) -"hs" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = -22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"ht" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hu" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"hv" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hw" = ( -/obj/machinery/smartfridge/secure/extract, -/obj/structure/sign/deathsposal{ - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hx" = ( -/obj/machinery/processor, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hy" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"hz" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hA" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio3"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"hB" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"hC" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"hD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/space) -"hE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hG" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hH" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hI" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hJ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hK" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "xeno_airlock_exterior"; - locked = 1; - name = "Xenobiology External Airlock"; - req_access = list(55) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "xeno_airlock_control"; - name = "Xenobiology Access Button"; - pixel_x = 0; - pixel_y = -26; - req_access = list(55) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "xeno_airlock_control"; - name = "Xenobiology Access Button"; - pixel_x = 26; - pixel_y = -26; - req_access = list(55) - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "xeno_airlock_interior"; - locked = 1; - name = "Xenobiology Internal Airlock"; - req_access = list(55) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "xeno_airlock_control"; - name = "Xenobiology Access Console"; - pixel_x = -26; - pixel_y = -28; - tag_exterior_door = "xeno_airlock_exterior"; - tag_interior_door = "xeno_airlock_interior" - }, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"hT" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hU" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"hV" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/table/standard, -/obj/machinery/reagentgrinder, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hW" = ( -/obj/structure/table/standard, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hX" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"hY" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hZ" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"ia" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/obj/machinery/button/remote/blast_door{ - desc = "It controls blast doors, remotely."; - id = "xenobiodivid"; - name = "Divider Switch"; - pixel_x = 38; - pixel_y = 0; - req_access = list(55) - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"ib" = ( -/obj/machinery/door/blast/regular{ - id = "xenobiodivid" - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"ic" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/space, -/area/space) -"id" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/landmark{ - name = "bluespacerift" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"ie" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"if" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"ig" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"ih" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"ii" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4; - icon_state = "warningcorner" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"ij" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"ik" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenobiology Access"; - dir = 1 - }, -/obj/structure/closet/l3closet/scientist, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"il" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/structure/closet/l3closet/scientist, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"im" = ( -/obj/structure/table/standard, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/reagent_containers/food/snacks/monkeycube/wrapped, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"in" = ( -/obj/structure/table/standard, -/obj/item/clothing/gloves/sterile/latex, -/obj/item/hand_labeler, -/obj/item/slime_scanner, -/obj/item/slime_scanner, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"io" = ( -/obj/structure/table/standard, -/obj/item/glass_jar, -/obj/item/glass_jar, -/obj/item/storage/box/syringes, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"ip" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"iq" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"ir" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio4"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"is" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"it" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/space, -/area/space) -"iu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"iv" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"iw" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Gear Storage" - }, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"ix" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"iy" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/space, -/area/space) -"iz" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"iA" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"iB" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"iC" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio4"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/window/brigdoor/eastright{ - name = "Containment Pen"; - req_access = list(47) - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"iD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"iE" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"iF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"iG" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/pen/blue{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/pen/red{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"iH" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"iI" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/wallmed1{ - name = "Emergency NanoMed"; - pixel_x = -7; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"iJ" = ( -/obj/machinery/chemical_dispenser/full{ - density = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"iK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"iL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"iM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"iN" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"iO" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"iP" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio4"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"iQ" = ( -/obj/machinery/light/small, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"iR" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 32 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobio4"; - name = "Containment Blast Doors"; - pixel_x = 20; - pixel_y = -8; - req_access = list(55) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"iS" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenobiology Aft Port"; - dir = 1 - }, -/obj/structure/cable/blue, -/obj/machinery/button/remote/blast_door{ - id = "xenobio6"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = -25; - req_access = list(55) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"iT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"iU" = ( -/obj/structure/table/standard, -/obj/item/clipboard, -/obj/item/folder, -/obj/item/pen, -/obj/item/melee/baton/slime/loaded, -/obj/item/gun/energy/taser/xeno, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"iV" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"iW" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"iX" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"iY" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"iZ" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"ja" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"jb" = ( -/obj/structure/table/standard, -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/item/folder/blue{ - pixel_x = 5 - }, -/obj/item/reagent_containers/spray/cleaner, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"jc" = ( -/obj/structure/bed/chair/office/light, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"jd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/cable/blue, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"je" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9; - icon_state = "warning" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"jf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/northright{ - name = "Containment Pen"; - req_access = list(47) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"jg" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenobiology Aft Starboard"; - dir = 1 - }, -/obj/structure/cable/blue, -/obj/machinery/button/remote/blast_door{ - id = "xenobio5"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = -25; - req_access = list(55) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"jh" = ( -/obj/machinery/camera/network/research/xenobio{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"ji" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"jj" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"jk" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/computer/security/xenobio, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"jl" = ( -/obj/structure/table/steel, -/obj/item/clothing/glasses/science, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 0; - pixel_y = 30 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"jm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"jn" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"jo" = ( -/obj/structure/table/standard, -/obj/item/melee/baton/slime/loaded, -/obj/item/gun/energy/taser/xeno, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"jp" = ( -/obj/item/clothing/shoes/galoshes, -/obj/item/clothing/shoes/galoshes, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"jq" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio6"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"jr" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio6"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/window/brigdoor/southright{ - name = "Containment Pen"; - req_access = list(47) - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"js" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio6"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/blue, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"jt" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio5"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"ju" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio5"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/window/brigdoor/southright{ - name = "Containment Pen"; - req_access = list(47) - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"jv" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio5"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/blue, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"jw" = ( -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for a door to space."; - id = "xenobioout6"; - name = "Containment Release Switch"; - pixel_x = 0; - pixel_y = -28; - req_access = list(55) - }, -/obj/structure/sink, -/obj/structure/cable/blue, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"jx" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/extinguisher, -/obj/item/extinguisher, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"jy" = ( -/obj/structure/closet, -/obj/item/toy/figure/scientist, -/obj/item/clothing/accessory/armband/science, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"jz" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"jA" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"jB" = ( -/turf/space, -/area/mine/unexplored) -"jC" = ( -/obj/structure/sign/vacuum{ - pixel_x = 32 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"jD" = ( -/obj/machinery/door/blast/regular{ - desc = "By gods, release the hounds!"; - id = "xenobioout6"; - name = "Containment Release" - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"jE" = ( -/turf/simulated/floor/airless, -/area/space) -"jF" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"jG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"jH" = ( -/obj/item/extinguisher, -/obj/item/orion_ship, -/obj/item/spacecash/c1, -/obj/item/spacecash/c1, -/obj/item/spacecash/c1, -/obj/item/spacecash/c1, -/obj/item/spacecash/c1, -/obj/item/coin/phoron{ - desc = "A phoron coin, signifying one who incredibly lost, and found a sign."; - name = "'I got lost' award." - }, -/obj/structure/closet/crate, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/unexplored) -"jI" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"jJ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 25; - pixel_y = 0 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = 0; - pixel_z = -27 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"jK" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/medical) -"jL" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/dock) -"jM" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Catwalk Access"; - req_access = list(47) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"jN" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/outpost/research/dock) -"jO" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/dorms) -"jP" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/longtermstorage) -"jQ" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/tempstorage) -"jR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/medical) -"jS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/research/medical) -"jT" = ( -/turf/simulated/wall, -/area/outpost/research/medical) -"jU" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"jV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"jW" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"jX" = ( -/turf/simulated/wall, -/area/outpost/research/dorms) -"jY" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"jZ" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"ka" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/table/rack, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"kb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/medical) -"kc" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/storage/firstaid/toxin, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kd" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/o2{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/firstaid/fire, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"ke" = ( -/obj/structure/sign/greencross, -/turf/simulated/wall, -/area/outpost/research/medical) -"kf" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Main Exterior"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"kg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"kh" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"ki" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/research/dorms) -"kj" = ( -/obj/machinery/vending/cola, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = 0; - pixel_z = 34 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"kk" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"kl" = ( -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"km" = ( -/obj/structure/table/glass, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"kn" = ( -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"ko" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"kp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"kq" = ( -/turf/simulated/wall, -/area/outpost/research/tempstorage) -"kr" = ( -/obj/structure/table/steel, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/emergency{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tempstorage) -"ks" = ( -/turf/simulated/wall, -/area/mine/explored) -"kt" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8; - icon_state = "warningcorner" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"ku" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kw" = ( -/obj/effect/floor_decal/corner/paleblue, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/medical) -"ky" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"kz" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"kA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dorms) -"kB" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"kC" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"kD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dorms) -"kE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dorms) -"kF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dorms) -"kG" = ( -/obj/structure/table/standard, -/obj/item/storage/box/donkpockets, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"kH" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"kI" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"kJ" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"kK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"kL" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"kM" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"kN" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"kO" = ( -/obj/structure/ore_box, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"kP" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"kQ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"kR" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"kS" = ( -/obj/structure/table/standard, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/roller{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/roller, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kT" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kU" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kW" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kX" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_medical{ - req_access = newlist(); - req_one_access = newlist() - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kY" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"kZ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"la" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"lb" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Research Lounge"; - req_access = list(47) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"ld" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"le" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lf" = ( -/obj/structure/noticeboard/anomaly{ - icon_state = "nboard05"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"li" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lk" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research Toxins Test Chamber East"; - dir = 8; - network = list("Research","Toxins Test Area") - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"ll" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"ln" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lo" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lp" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"lq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"lr" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"ls" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"lt" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"lu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"lv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"lw" = ( -/obj/machinery/disposal/deliveryChute, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/outpost/research/tempstorage) -"lx" = ( -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"ly" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4; - icon_state = "warningcorner_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"lz" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"lA" = ( -/obj/effect/floor_decal/corner/paleblue, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"lB" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"lC" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"lD" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/bed/roller, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"lE" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"lF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"lG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"lH" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Research Lounge"; - req_access = list(47) - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lI" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lL" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lN" = ( -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lO" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lP" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/longtermstorage) -"lQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"lR" = ( -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = -28; - pixel_z = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"lS" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"lT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"lU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"lV" = ( -/obj/machinery/conveyor{ - dir = 3; - id = "anolongstorage" - }, -/turf/simulated/floor/plating{ - dir = 10 - }, -/area/outpost/research/tempstorage) -"lW" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "anolongstorage" - }, -/turf/simulated/floor/plating, -/area/outpost/research/tempstorage) -"lX" = ( -/obj/structure/plasticflaps/mining, -/obj/machinery/conveyor{ - dir = 4; - id = "anolongstorage" - }, -/turf/simulated/floor/plating, -/area/outpost/research/tempstorage) -"lY" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "anolongstorage" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/research/tempstorage) -"lZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/medical) -"ma" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/medical) -"mb" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_medical{ - name = "Medbay"; - req_access = newlist(); - req_one_access = newlist() - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"mc" = ( -/obj/structure/sign/greencross, -/turf/simulated/wall/r_wall, -/area/outpost/research/medical) -"md" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"me" = ( -/obj/effect/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"mf" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Main Fore"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"mg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"mh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"mi" = ( -/obj/structure/table/glass, -/obj/machinery/recharger{ - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"mj" = ( -/obj/structure/table/glass, -/obj/item/hand_labeler, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"mk" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"ml" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"mm" = ( -/obj/machinery/door/airlock{ - name = "Room 1" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/research/dorms) -"mn" = ( -/obj/machinery/door/airlock{ - name = "Room 2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/research/dorms) -"mo" = ( -/obj/machinery/door/airlock{ - name = "Toilet" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/outpost/research/dorms) -"mp" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/outpost/research/longtermstorage) -"mq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"mr" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Long Term Storage"; - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/longtermstorage) -"ms" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/longtermstorage) -"mt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall, -/area/outpost/research/tempstorage) -"mu" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/anomaly_container, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"mv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Temporary Storage"; - dir = 4 - }, -/obj/structure/anomaly_container, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"mw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"mx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"my" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4; - icon_state = "warningcee" - }, -/obj/machinery/conveyor_switch{ - id = "anolongstorage"; - name = "conveyor switch"; - pixel_x = 0; - pixel_y = 0; - req_access = list(65) - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"mz" = ( -/obj/machinery/conveyor_switch{ - id = "anolongstorage"; - name = "conveyor switch"; - pixel_x = 0; - pixel_y = 0; - req_access = list(65) - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/research/tempstorage) -"mA" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"mB" = ( -/turf/simulated/wall, -/area/outpost/research/dock) -"mC" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/outpost/research/dock) -"mD" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"mE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"mF" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"mG" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"mH" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"mI" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"mJ" = ( -/obj/machinery/computer/crew, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"mK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dock) -"mL" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Outpost Primary Access"; - req_access = list(47) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"mM" = ( -/obj/structure/bookcase/manuals/xenoarchaeology, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"mN" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/clipboard, -/obj/item/pen, -/obj/item/taperecorder, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"mO" = ( -/obj/structure/table/glass, -/obj/item/folder, -/obj/item/stamp, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"mP" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"mQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/carpet/blue, -/area/outpost/research/dorms) -"mR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/carpet/blue, -/area/outpost/research/dorms) -"mS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/research/dorms) -"mT" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"mU" = ( -/obj/machinery/shower{ - pixel_y = 3 - }, -/obj/structure/curtain/open/shower, -/obj/machinery/door/window/westright{ - name = "Shower" - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/research/dorms) -"mV" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/outpost/research/longtermstorage) -"mW" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/research{ - name = "Long Term Storage"; - req_access = list(65) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"mX" = ( -/turf/simulated/wall, -/area/outpost/research/longtermstorage) -"mY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"mZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"na" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"nb" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "anotempload" - }, -/turf/simulated/floor/plating, -/area/outpost/research/tempstorage) -"nc" = ( -/obj/structure/plasticflaps/mining, -/obj/machinery/conveyor{ - dir = 4; - id = "anotempload" - }, -/turf/simulated/floor/plating, -/area/outpost/research/tempstorage) -"nd" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "anotempload" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/research/tempstorage) -"ne" = ( -/turf/simulated/mineral/floor/ignore_mapgen, -/area/shuttle/research/outpost) -"nf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; - icon_state = "map" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"ng" = ( -/obj/structure/table/standard, -/obj/item/material/ashtray/glass, -/obj/item/reagent_containers/food/drinks/coffee, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"nh" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"ni" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"nj" = ( -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 0; - pixel_y = -27 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"nk" = ( -/obj/structure/table/glass, -/obj/item/storage/box/cups, -/obj/item/storage/box/glasses/square{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"nl" = ( -/obj/structure/table/glass, -/obj/item/camera_film{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/camera, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"nm" = ( -/obj/item/bedsheet/purple, -/obj/structure/bed/padded, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue, -/area/outpost/research/dorms) -"nn" = ( -/obj/structure/table/standard, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/carpet/blue, -/area/outpost/research/dorms) -"no" = ( -/obj/structure/sink{ - dir = 8; - icon_state = "sink"; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/research/dorms) -"np" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/research/dorms) -"nq" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/hallway/starboard) -"nr" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"ns" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"nt" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"nu" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/obj/structure/anomaly_container, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"nv" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"nw" = ( -/obj/effect/floor_decal/corner/purple, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"nx" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"ny" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"nz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/obj/machinery/conveyor_switch{ - id = "anotempload"; - name = "conveyor switch"; - pixel_x = 0; - pixel_y = 0; - req_access = list(65) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"nA" = ( -/obj/structure/sign/science{ - desc = "A warning sign which reads 'SCIENCE!'. It has fine print below it reading 'May or may not contain spiders'." - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/tempstorage) -"nB" = ( -/obj/machinery/conveyor_switch{ - id = "anotempload"; - name = "conveyor switch"; - pixel_x = 0; - pixel_y = 0; - req_access = list(65) - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/research/tempstorage) -"nC" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 1 - }, -/turf/space, -/area/outpost/research/dock) -"nD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dock) -"nE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dock) -"nF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/outpost/research/dock) -"nG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dock) -"nH" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/structure/closet/hydrant{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"nI" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"nJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"nK" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"nL" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"nM" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/structure/closet/hydrant{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"nN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"nO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"nP" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"nQ" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/item/cell/high, -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"nR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/tempstorage) -"nS" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/research{ - name = "Temporary Storage"; - req_access = list(65) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"nT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/tempstorage) -"nU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/plating, -/area/outpost/research/tempstorage) -"nV" = ( -/turf/simulated/wall, -/area/outpost/research/hallway/starboard) -"nW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/starboard) -"nX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/starboard) -"nY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dock) -"nZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "research_outpost_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9; - icon_state = "warning" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Research Dock Airlock"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"oa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; - icon_state = "map" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "research_outpost_dock"; - pixel_x = 0; - pixel_y = 30; - req_one_access = list(13,48); - tag_airpump = "research_outpost_pump"; - tag_chamber_sensor = "research_outpost_sensor"; - tag_exterior_door = "research_outpost_outer"; - tag_interior_door = "research_outpost_inner" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"ob" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8; - icon_state = "warningcorner" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oc" = ( -/obj/machinery/computer/guestpass{ - pixel_x = 0; - pixel_y = 30 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"od" = ( -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oe" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"of" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"og" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oh" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oi" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/mid) -"oj" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"ok" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"ol" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"om" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"on" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"oo" = ( -/obj/machinery/shower{ - pixel_y = 3 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/research/hallway/mid) -"op" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/hallway/mid) -"oq" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"or" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"os" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"ot" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"ou" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"ov" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled{ - pixel_x = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"ow" = ( -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"ox" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oy" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oz" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oA" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oB" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oC" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Hallway Starboard 2" - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oD" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oE" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oF" = ( -/obj/machinery/atmospherics/binary/pump/on, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/starboard) -"oH" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1379; - id_tag = "research_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; - id_tag = "research_airlock"; - pixel_x = 0; - pixel_y = 25; - tag_airpump = "research_pump"; - tag_chamber_sensor = "research_sensor"; - tag_exterior_door = "research_outer"; - tag_interior_door = "research_inner" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oI" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1379; - id_tag = "research_pump" - }, -/obj/structure/ore_box, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/starboard) -"oK" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8; - icon_state = "warningcorner_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"oL" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"oM" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "research_outpost_outer"; - locked = 1; - name = "Research Dock Airlock"; - req_access = list(10,13) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "research_outpost_dock"; - name = "exterior access button"; - pixel_x = -6; - pixel_y = -26; - req_one_access = list(13,65) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"oN" = ( -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"oO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"oP" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "research_outpost_inner"; - locked = 1; - name = "Research Outpost Dock" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"oQ" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "research_outpost_dock"; - name = "interior access button"; - pixel_x = -26; - pixel_y = 26; - req_one_access = list(13,65) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark{ - name = "bluespacerift" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oV" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Toxins Test Chamber South"; - dir = 1; - network = list("Research","Toxins Test Area") - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"oW" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oZ" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Outpost Primary Access"; - req_access = list(47) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pa" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pe" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Outpost Primary Access"; - req_access = list(47) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pg" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"ph" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pj" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Outpost Primary Access"; - req_access = list(47) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pn" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"po" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pp" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark{ - name = "bluespacerift" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pr" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"ps" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pu" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "research_airlock"; - name = "interior access button"; - pixel_x = 26; - pixel_y = 26; - req_one_access = list(13,65) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "research_inner"; - locked = 1; - name = "Research Outpost External Access" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pw" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"px" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; - icon_state = "map" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"py" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "research_outer"; - locked = 1; - name = "Research Outpost External Access"; - req_access = list(10,13) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pz" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "research_airlock"; - name = "exterior access button"; - pixel_x = -26; - pixel_y = 26; - req_one_access = list(13,65) - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"pA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dock) -"pB" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "research_outpost_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"pC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "research_outpost_sensor"; - pixel_x = 0; - pixel_y = -25 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"pD" = ( -/obj/machinery/computer/shuttle_control/research{ - name = "research elevator control console" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"pE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"pF" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"pG" = ( -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"pH" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"pI" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"pJ" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"pK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"pL" = ( -/obj/structure/closet/secure_closet/xenoarchaeologist{ - req_access = list(47) - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pM" = ( -/obj/structure/closet/secure_closet/xenoarchaeologist{ - req_access = list(47) - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pN" = ( -/obj/structure/closet/secure_closet/xenoarchaeologist{ - req_access = list(47) - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Hallway Mid 1"; - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pO" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/bio_suit/anomaly, -/obj/item/clothing/head/bio_hood/anomaly, -/obj/item/clothing/mask/breath, -/obj/item/clothing/glasses/science, -/obj/item/clothing/gloves/sterile/latex, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pP" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/bio_suit/anomaly, -/obj/item/clothing/head/bio_hood/anomaly, -/obj/item/clothing/mask/breath, -/obj/item/clothing/glasses/science, -/obj/item/clothing/gloves/sterile/latex, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pQ" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pS" = ( -/obj/effect/floor_decal/corner/purple, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pT" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Hallway Mid 2"; - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pU" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pV" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/mid) -"pX" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pY" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pZ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qa" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qb" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qd" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qe" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qf" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qh" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qi" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qj" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qk" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "research_pump" - }, -/obj/machinery/airlock_sensor{ - frequency = 1379; - id_tag = "research_sensor"; - pixel_x = 0; - pixel_y = -25 - }, -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"ql" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "research_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Expedition Airlock"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/starboard) -"qn" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1; - icon_state = "warningcorner_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"qo" = ( -/obj/structure/lattice, -/obj/machinery/light, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/outpost/research/dock) -"qp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/outpost/research/dock) -"qq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dock) -"qr" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/analysis) -"qs" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Sample Preparation"; - req_access = list(47) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"qt" = ( -/obj/effect/floor_decal/corner/purple/full, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"qu" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"qv" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"qw" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/anomaly) -"qx" = ( -/turf/simulated/wall, -/area/outpost/research/anomaly) -"qy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/anomaly) -"qz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/anomaly) -"qA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/anomaly) -"qB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/anomaly) -"qC" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Anomalous Materials"; - req_access = list(65) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"qD" = ( -/obj/effect/floor_decal/corner/purple/full, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Hallway Starboard 1"; - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qE" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qF" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qG" = ( -/obj/effect/floor_decal/corner/purple, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qH" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qI" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/eva) -"qJ" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Expedition Prep"; - req_access = list(65) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"qK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/eva) -"qL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/eva) -"qM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/starboard) -"qN" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"qO" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"qP" = ( -/obj/machinery/chemical_dispenser/full, -/obj/effect/floor_decal/corner/beige/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"qQ" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"qR" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"qS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"qT" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"qU" = ( -/obj/effect/floor_decal/corner/purple/full, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"qV" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"qW" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"qX" = ( -/obj/machinery/artifact_analyser, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"qY" = ( -/obj/machinery/artifact_scanpad, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"qZ" = ( -/obj/structure/table/rack, -/obj/item/clothing/head/welding, -/obj/item/weldingtool, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/weldingtool, -/obj/item/weldingtool, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"ra" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/item/tool/screwdriver{ - pixel_y = 15 - }, -/obj/item/melee/baton/loaded, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"rb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rc" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "anom" - }, -/turf/simulated/floor/plating, -/area/outpost/research/anomaly) -"rd" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "anom" - }, -/obj/structure/plasticflaps/mining, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/research/anomaly) -"re" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "anom" - }, -/obj/machinery/door/window, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/research/anomaly) -"rf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rh" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"ri" = ( -/obj/machinery/artifact_harvester, -/turf/simulated/floor/bluegrid, -/area/outpost/research/anomaly) -"rj" = ( -/obj/item/anodevice{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/anodevice, -/obj/structure/table/steel, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"rk" = ( -/obj/item/anobattery{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/anobattery{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/anobattery{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/anobattery{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/table/steel, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"rl" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/purple/full, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"rm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"rn" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"ro" = ( -/obj/machinery/suspension_gen, -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Expedition Prep" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"rp" = ( -/obj/machinery/suspension_gen, -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"rq" = ( -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"rr" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"rs" = ( -/obj/structure/table/rack, -/obj/item/storage/belt/archaeology, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/item/clothing/mask/breath, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/westright, -/obj/item/rig/hazmat, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/eva) -"rt" = ( -/obj/structure/sign/science{ - desc = "A warning sign which reads 'SCIENCE!'. It has fine print below it reading 'May or may not contain spiders'." - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/eva) -"ru" = ( -/obj/machinery/chem_master, -/obj/effect/floor_decal/corner/beige/full, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rv" = ( -/obj/item/stool/padded, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rx" = ( -/obj/item/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"ry" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rz" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rA" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/corner/beige/full{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rB" = ( -/obj/structure/table/standard, -/obj/item/flame/lighter/random, -/obj/item/tool/crowbar, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -30; - pixel_y = 0 - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"rC" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"rD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rF" = ( -/obj/machinery/conveyor_switch{ - id = "anom" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rG" = ( -/obj/machinery/power/emitter{ - anchored = 1; - dir = 1; - state = 2 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rH" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rJ" = ( -/obj/machinery/artifact_scanpad, -/turf/simulated/floor/bluegrid, -/area/outpost/research/anomaly) -"rK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"rL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/outpost/research/eva) -"rM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/research/eva) -"rN" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/table/steel, -/obj/item/suit_cooling_unit, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"rO" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"rP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"rQ" = ( -/obj/structure/table/rack, -/obj/item/storage/belt/archaeology, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/item/clothing/mask/breath, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/westleft, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/eva) -"rR" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/effect/floor_decal/corner/beige/full, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rS" = ( -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper{ - pixel_y = -4 - }, -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rT" = ( -/obj/item/reagent_containers/glass/bottle/toxin, -/obj/item/reagent_containers/glass/beaker/sulphuric{ - name = "beaker 'sulphuric acid'" - }, -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rU" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rV" = ( -/obj/machinery/door/window/southright{ - name = "Spectrometry Lab"; - req_access = list(65) - }, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rW" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/beige/full{ - dir = 4 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Sample Preparation"; - dir = 8 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rX" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rY" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 1; - tag_south = 2; - tag_west = 3 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rZ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sa" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/dropper{ - pixel_y = -4 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Anomalous Materials Port"; - dir = 4 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = -32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"sb" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"sc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"se" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sh" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"si" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Anomalous Materials Starboard"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"sj" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/structure/table/standard, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sl" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sm" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sn" = ( -/obj/item/storage/excavation, -/obj/item/pickaxe, -/obj/item/tool/wrench, -/obj/item/measuring_tape, -/obj/item/stack/flag/yellow, -/obj/structure/table/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"so" = ( -/obj/item/storage/excavation, -/obj/item/pickaxe, -/obj/item/tool/wrench, -/obj/item/measuring_tape, -/obj/item/stack/flag/yellow, -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sp" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sq" = ( -/obj/machinery/light/small, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"sr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/analysis) -"ss" = ( -/obj/item/stack/nanopaste, -/obj/item/stack/nanopaste, -/obj/item/stack/nanopaste, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"st" = ( -/obj/item/stool/padded, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"su" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"sv" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"sw" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"sx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"sy" = ( -/obj/machinery/door/airlock/research{ - name = "Spectrometry Lab"; - req_access = list(65) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"sz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sA" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sC" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/computer/area_atmos, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sD" = ( -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sF" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/flashlight/lamp, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sH" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/tape_roll, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sI" = ( -/obj/structure/table/standard, -/obj/machinery/computer/atmoscontrol/laptop{ - monitored_alarm_ids = list("isolation_one","isolation_two","isolation_three"); - req_one_access = list(47,24,11) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sJ" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/recharger{ - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/folder, -/obj/item/camera, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sL" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1; - icon_state = "map" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Anomalous Materials"; - req_access = list(65) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sQ" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sS" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Expedition Prep"; - req_access = list(65) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sV" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sW" = ( -/obj/effect/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sX" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/eva) -"sZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/analysis) -"ta" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/analysis) -"tb" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/structure/table/standard, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"tc" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"td" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"te" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"tf" = ( -/obj/machinery/radiocarbon_spectrometer, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"tg" = ( -/turf/simulated/wall, -/area/outpost/research/analysis) -"th" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Anomalous Materials Gas Filter"; - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"ti" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tj" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tk" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tm" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1; - icon_state = "map" - }, -/obj/effect/landmark{ - name = "bluespacerift" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"to" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tp" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tq" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "anolongstorage2" - }, -/turf/simulated/floor, -/area/outpost/research/anomaly) -"tr" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"ts" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"tt" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Expedition Prep Access"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"tu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/eva) -"tv" = ( -/obj/structure/closet/excavation, -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"tw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"tx" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"ty" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/research/eva) -"tz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/eva) -"tA" = ( -/obj/structure/reagent_dispensers/coolanttank, -/obj/effect/floor_decal/corner/lime/full, -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"tB" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = -29; - pixel_z = 2 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"tC" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"tD" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tE" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tF" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tG" = ( -/obj/machinery/atmospherics/unary/heater{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tH" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 1; - icon_state = "freezer" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tI" = ( -/obj/machinery/atmospherics/valve/digital/open, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tM" = ( -/obj/machinery/atmospherics/valve/digital/open, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tQ" = ( -/obj/machinery/atmospherics/valve/digital/open, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tR" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tS" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "anolongstorage" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tT" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "anolongstorage2" - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/outpost/research/anomaly) -"tU" = ( -/turf/simulated/wall, -/area/outpost/research/power) -"tV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - name = "Research Outpost Maintenance"; - req_one_access = list(11,24,47) - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/research/power) -"tW" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/simulated/wall, -/area/outpost/research/power) -"tX" = ( -/obj/structure/closet/excavation, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"tY" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/light, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"tZ" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 0; - pixel_y = -27 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"ua" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"ub" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"uc" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"ud" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"ue" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"uf" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly) -"ug" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/isolation_a) -"uh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/door/airlock/research{ - name = "Isolation Room 1"; - req_access = list(65) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_a) -"ui" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/research/isolation_a) -"uj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/isolation_b) -"uk" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/research{ - name = "Isolation Room 2"; - req_access = list(65) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_b) -"ul" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/research/isolation_b) -"um" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/isolation_c) -"un" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/research{ - name = "Isolation Room 3"; - req_access = list(65) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_c) -"uo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/research/isolation_c) -"up" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4; - icon_state = "warningcorner" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly) -"uq" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor, -/area/outpost/research/anomaly) -"ur" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Lounge Starboard" - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"us" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Lounge Port"; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"ut" = ( -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/outpost/research/power) -"uu" = ( -/obj/structure/closet/excavation, -/obj/effect/floor_decal/corner/purple/full, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"uv" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"uw" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"ux" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"uy" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"uz" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_a) -"uA" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_a) -"uB" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_a) -"uC" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_b) -"uD" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_b) -"uE" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_b) -"uF" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_c) -"uG" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_c) -"uH" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_c) -"uI" = ( -/obj/structure/cable/blue, -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Research"; - charge = 500000; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/turf/simulated/floor/plating, -/area/outpost/research/power) -"uJ" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/turf/simulated/floor/plating, -/area/outpost/research/power) -"uK" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/outpost/research/power) -"uL" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - use_power = 0 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Isolation Cell 1"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_a) -"uM" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_a) -"uN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8 - }, -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "isolation_one"; - dir = 8; - pixel_x = 22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_a) -"uO" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - use_power = 0 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Isolation Cell 2"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_b) -"uP" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_b) -"uQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8 - }, -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "isolation_two"; - dir = 8; - pixel_x = 22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_b) -"uR" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - use_power = 0 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Isolation Cell 3"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_c) -"uS" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_c) -"uT" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8 - }, -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "isolation_three"; - dir = 8; - pixel_x = 22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_c) -"uU" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/power) -"uV" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/research/power) -"uW" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"uX" = ( -/obj/structure/table/standard, -/obj/item/flashlight/lamp, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_a) -"uY" = ( -/obj/machinery/artifact_scanpad, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_a) -"uZ" = ( -/obj/machinery/artifact_analyser, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_a) -"va" = ( -/obj/structure/table/standard, -/obj/item/flashlight/lamp, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_b) -"vb" = ( -/obj/machinery/artifact_scanpad, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_b) -"vc" = ( -/obj/machinery/artifact_analyser, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_b) -"vd" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_c) -"ve" = ( -/obj/structure/table/standard, -/obj/item/flashlight/lamp, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_c) -"vf" = ( -/obj/structure/bed, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_c) -"vg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"vh" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"vi" = ( -/turf/simulated/wall, -/area/outpost/mining_main/north_hall) -"vj" = ( -/obj/structure/lattice, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/outpost/mining_main/north_hall) -"vk" = ( -/turf/simulated/mineral/floor/ignore_mapgen, -/area/shuttle/mining/outpost) -"vl" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/outpost/mining_main/north_hall) -"vm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 6; - icon_state = "intact-scrubbers" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"vn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 9; - icon_state = "intact-supply" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 9; - icon_state = "intact-scrubbers" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"vo" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/medbay) -"vp" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/break_room) -"vq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"vr" = ( -/obj/structure/table/standard, -/obj/item/bodybag/cryobag, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"vs" = ( -/obj/structure/table/standard, -/obj/item/roller{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/roller, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"vt" = ( -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/break_room) -"vu" = ( -/obj/machinery/vending/snack, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/break_room) -"vv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/medbay) -"vw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/medbay) -"vx" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"vy" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"vz" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/north_hall) -"vA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/north_hall) -"vB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/north_hall) -"vC" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "mining_outpost_outer"; - locked = 1; - name = "Mining Dock Airlock"; - req_access = list(13) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "mining_outpost_airlock"; - name = "exterior access button"; - pixel_x = -30; - pixel_y = 8; - req_one_access = list(13,48) - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"vD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/north_hall) -"vE" = ( -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"vF" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"vG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/break_room) -"vH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/break_room) -"vI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/medbay) -"vJ" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"vK" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"vL" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"vM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/north_hall) -"vN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "mining_outpost_sensor"; - pixel_x = -28; - pixel_y = 0 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"vO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"vP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "mining_outpost_airlock"; - pixel_x = 28; - pixel_y = 0; - req_one_access = list(13,48); - tag_airpump = "mining_outpost_pump"; - tag_chamber_sensor = "mining_outpost_sensor"; - tag_exterior_door = "mining_outpost_outer"; - tag_interior_door = "mining_outpost_inner" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"vQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/north_hall) -"vR" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/break_room) -"vS" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"vT" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"vU" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/break_room) -"vV" = ( -/obj/machinery/disposal, -/obj/structure/sign/deathsposal{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"vW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/break_room) -"vX" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"vY" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"vZ" = ( -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wa" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/north_hall) -"wc" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "mining_outpost_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/north_hall) -"wd" = ( -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"we" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "mining_outpost_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/north_hall) -"wf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/north_hall) -"wg" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/food/drinks/bottle/small/beer{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/bottle/small/beer{ - pixel_x = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/small/beer, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/break_room) -"wh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wi" = ( -/obj/structure/table/standard, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wj" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wk" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wl" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/toxin, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wm" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wr" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"ws" = ( -/obj/structure/sign/greencross, -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/north_hall) -"wt" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/north_hall) -"wu" = ( -/turf/simulated/wall/r_wall, -/area/outpost/medical/atmos) -"wv" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/north_hall) -"ww" = ( -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = 0; - pixel_z = 32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"wx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wy" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wz" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/food/drinks/bottle/small/beer, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/item/paper{ - info = "NanoTrasen and all affiliated companies are unable to be held accountable for any and all injuries obtained as a result of mining work, though injuries may be given aid on or off station."; - name = "NANOTRASEN REMINDER" - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wC" = ( -/obj/structure/table/standard, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/break_room) -"wD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"wE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"wF" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "meoutpost_main_airlock"; - name = "exterior access button"; - pixel_x = 25; - pixel_y = -25; - req_access = newlist(); - req_one_access = list(10,48,65) - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"wG" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"wH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"wI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"wJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"wK" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/o2{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/firstaid/fire, -/obj/effect/floor_decal/corner/paleblue/full, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wL" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wM" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wN" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wO" = ( -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Medical"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wP" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/obj/machinery/computer/crew, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wQ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"wR" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "mining_outpost_airlock"; - name = "interior access button"; - pixel_x = -30; - pixel_y = 25; - req_one_access = list(13,48) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"wS" = ( -/obj/machinery/computer/shuttle_control/mining, -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Elevator Airlock"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"wT" = ( -/obj/machinery/newscaster{ - pixel_x = 0; - pixel_y = -30 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wU" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"wV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wW" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"wX" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"wY" = ( -/turf/simulated/wall, -/area/outpost/engineering/mining/hallway) -"wZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/hallway) -"xa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "meoutpost_main_outer"; - locked = 1; - name = "Exterior Airlock" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"xb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"xc" = ( -/obj/structure/ore_box, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"xd" = ( -/turf/simulated/wall, -/area/outpost/mining_main/medbay) -"xe" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/medbay) -"xf" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medbay"; - req_one_access = newlist() - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"xg" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/medbay) -"xh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/medbay) -"xi" = ( -/obj/structure/sign/greencross, -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/medbay) -"xj" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xk" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xl" = ( -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Crew Area"; - dir = 8 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"xm" = ( -/turf/simulated/wall, -/area/outpost/mining_main/maintenance) -"xn" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/maintenance) -"xo" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1379; - id_tag = "meoutpost_main_pump" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"xp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"xq" = ( -/obj/machinery/mining/brace, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"xr" = ( -/obj/machinery/mining/drill, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"xs" = ( -/obj/structure/cable, -/obj/machinery/power/apc/super{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"xt" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"xu" = ( -/obj/machinery/floodlight, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/unexplored) -"xv" = ( -/turf/simulated/wall/r_wall, -/area/storage/emergency_storage) -"xw" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Main Aft"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"xx" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xy" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xz" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xB" = ( -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xC" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xD" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xE" = ( -/obj/effect/floor_decal/corner/brown/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"xF" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xG" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/brown/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"xI" = ( -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/effect/floor_decal/corner/brown/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"xJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"xK" = ( -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Mining"; - charge = 500000; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/maintenance) -"xL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; - id_tag = "meoutpost_main_airlock"; - pixel_x = -25; - pixel_y = 0; - req_access = newlist(); - req_one_access = list(10,48,65); - tag_airpump = "meoutpost_main_pump"; - tag_chamber_sensor = "meoutpost_main_sensor"; - tag_exterior_door = "meoutpost_main_outer"; - tag_interior_door = "meoutpost_main_inner" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"xM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"xN" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/airlock_sensor{ - frequency = 1379; - id_tag = "meoutpost_main_sensor"; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"xO" = ( -/turf/simulated/wall/r_wall, -/area/outpost/engineering/mining/atmospherics) -"xP" = ( -/obj/structure/closet/hydrant{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/storage/emergency_storage) -"xQ" = ( -/turf/simulated/wall, -/area/storage/emergency_storage) -"xR" = ( -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Research Medical" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"xS" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xT" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xU" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xV" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xW" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xX" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Outpost Airlock"; - req_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xY" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xZ" = ( -/obj/machinery/door/airlock/glass{ - name = "Crew Area"; - req_access = list(48) - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"ya" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/diagonal, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"yb" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/corner/brown/diagonal, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"yc" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/diagonal, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"yd" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Outpost Maintenance"; - req_one_access = list(11,24,48) - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/outpost/mining_main/maintenance) -"ye" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"yf" = ( -/obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/maintenance) -"yg" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/maintenance) -"yh" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"yi" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"yj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yk" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"ym" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yn" = ( -/obj/machinery/atmospherics/pipe/tank/phoron, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yo" = ( -/obj/machinery/atmospherics/pipe/tank/nitrous_oxide, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yp" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yq" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yr" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/storage/emergency_storage) -"ys" = ( -/obj/machinery/door/airlock{ - name = "Mining Emergency Storage" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/storage/emergency_storage) -"yt" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"yu" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"yv" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"yw" = ( -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Hallway Fore"; - dir = 1 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"yx" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"yy" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"yz" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"yA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"yB" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/break_room) -"yC" = ( -/obj/effect/floor_decal/corner/brown/diagonal, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"yD" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/corner/brown/diagonal, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"yE" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/simulated/wall, -/area/outpost/mining_main/maintenance) -"yF" = ( -/obj/machinery/light/small, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/maintenance) -"yG" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/maintenance) -"yH" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"yI" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"yJ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5; - icon_state = "warning_dust" - }, -/obj/structure/ore_box, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"yK" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"yL" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"yM" = ( -/obj/machinery/shieldwallgen, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"yN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/research/dorms) -"yO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"yP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "meoutpost_main_airlock"; - name = "interior access button"; - pixel_x = -26; - pixel_y = 25; - req_access = newlist(); - req_one_access = list(10,48,65) - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"yQ" = ( -/obj/structure/sign/vacuum{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"yR" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yT" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yW" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yX" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4; - icon_state = "map" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yY" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/dorms) -"yZ" = ( -/turf/simulated/wall, -/area/outpost/mining_main/dorms) -"za" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = 0; - pixel_z = 31 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"zb" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"zc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark{ - name = "bluespacerift" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"zd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"ze" = ( -/obj/machinery/vending/wallmed1{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"zf" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/refinery) -"zg" = ( -/turf/simulated/wall, -/area/outpost/mining_main/refinery) -"zh" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"zi" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"zj" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zk" = ( -/obj/machinery/shieldwallgen, -/obj/structure/extinguisher_cabinet{ - pixel_x = 7; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zm" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zp" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zq" = ( -/obj/machinery/door/airlock/atmos{ - req_one_access = list(10,48,65) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 9; - icon_state = "intact-supply" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zt" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zu" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zv" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 2; - tag_north = 6; - tag_south = 0; - tag_west = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zw" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 2; - tag_north = 7; - tag_west = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zx" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 2; - tag_north = 5; - tag_west = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zy" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zz" = ( -/obj/machinery/shower{ - dir = 4; - icon_state = "shower"; - pixel_x = 5 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/outpost/mining_main/dorms) -"zA" = ( -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"zB" = ( -/obj/item/bedsheet/brown, -/obj/structure/bed/padded, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"zC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"zD" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"zE" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Outpost Airlock"; - req_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"zF" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Outpost Airlock"; - req_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"zG" = ( -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"zH" = ( -/obj/machinery/mineral/input, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'MOVING PARTS'."; - name = "\improper MOVING PARTS"; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/loading{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"zI" = ( -/obj/machinery/mineral/unloading_machine, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"zJ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_internal" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"zK" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_internal" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"zL" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_internal" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"zM" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "mining_internal" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"zN" = ( -/obj/machinery/mineral/unloading_machine{ - icon_state = "unloader-corner" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"zO" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_external" - }, -/obj/machinery/mineral/input, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"zP" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_external" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"zQ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_external" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/mining_main/refinery) -"zR" = ( -/turf/simulated/wall/r_wall, -/area/outpost/engineering/mining/telecomms) -"zS" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zT" = ( -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zW" = ( -/turf/simulated/wall, -/area/outpost/medical/atmos) -"zX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 7; - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zY" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zZ" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"Aa" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"Ab" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Mining Atmospherics"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"Ac" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"Ad" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1; - start_pressure = 740 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"Ae" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/mining_main/dorms) -"Af" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/mining_main/dorms) -"Ag" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"Ah" = ( -/obj/machinery/button/remote/airlock{ - id = "miningdorm2"; - name = "Door Bolt Control"; - pixel_x = 25; - pixel_y = 0; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"Ai" = ( -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Aj" = ( -/obj/structure/table/steel, -/obj/item/cell/high, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Ak" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/dorms) -"Al" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Am" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"An" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Ao" = ( -/obj/structure/reagent_dispensers/coolanttank, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = 0; - pixel_z = -28 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"Ap" = ( -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"Aq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"Ar" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "mining_internal" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"As" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"At" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Mining Telecomm"; - dir = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/mining/telecomms) -"Au" = ( -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/mining/telecomms) -"Av" = ( -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"Aw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"Ax" = ( -/obj/machinery/door/airlock{ - name = "Toilet" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/outpost/mining_main/dorms) -"Ay" = ( -/obj/machinery/door/airlock{ - id_tag = "miningdorm2"; - name = "Room 2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"Az" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"AA" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"AB" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/dorms) -"AC" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"AD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"AE" = ( -/obj/structure/noticeboard{ - pixel_y = 27 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"AF" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"AG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"AH" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"AI" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"AJ" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"AK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"AL" = ( -/obj/structure/ore_box, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"AM" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"AN" = ( -/obj/machinery/conveyor_switch{ - id = "mining_external" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"AO" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"AP" = ( -/obj/machinery/telecomms/relay/preset/mining, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/mining/telecomms) -"AQ" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/mining/telecomms) -"AR" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Telecommunication Hub"; - req_one_access = list(10,48,65) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/mining/telecomms) -"AS" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"AT" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/vending/wallmed1{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"AU" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"AV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/dispenser/oxygen, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"AW" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"AX" = ( -/turf/simulated/wall, -/area/outpost/engineering/mining/power) -"AY" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"AZ" = ( -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Mining Engineering"; - charge = 500000; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/outpost/engineering/mining/power) -"Ba" = ( -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Bb" = ( -/obj/random/tool, -/obj/random/tool, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Bc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Bd" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Be" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Bf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Bg" = ( -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Production Room"; - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"Bh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Bi" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Bj" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Bk" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Bl" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Bm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Dorms"; - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Bn" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Production Area"; - req_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"Bo" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"Bp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"Bq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = -32 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Br" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"Bs" = ( -/obj/machinery/mineral/input, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"Bt" = ( -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"Bu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/mining/telecomms) -"Bv" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/mining/telecomms) -"Bw" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/engineering{ - name = "Generator Room"; - req_one_access = list(10,48,65) - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Bx" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"By" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"Bz" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"BA" = ( -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"BB" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BC" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BE" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BI" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BK" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"BL" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Production Area"; - req_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"BM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"BN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"BO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"BP" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "mining_internal"; - name = "mining conveyor" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"BQ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BR" = ( -/obj/machinery/mineral/processing_unit_console, -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/refinery) -"BS" = ( -/obj/machinery/mineral/processing_unit, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"BT" = ( -/obj/machinery/mining/brace, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"BU" = ( -/obj/machinery/mining/drill, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"BV" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4; - icon_state = "warning_dust" - }, -/obj/machinery/mining/brace, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"BW" = ( -/obj/machinery/cell_charger, -/obj/structure/table/steel, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Mining Power Port"; - dir = 2 - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"BX" = ( -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"BY" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"BZ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Ca" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Cb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"Cc" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Cd" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Ce" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Cf" = ( -/obj/machinery/door/airlock{ - id_tag = "miningdorm3"; - name = "Room 3" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"Cg" = ( -/obj/machinery/door/airlock{ - id_tag = "miningdorm1"; - name = "Room 1" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"Ch" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Ci" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Hallway Mid"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Cj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Ck" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"Cl" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"Cm" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"Cn" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"Co" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/standard, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"Cp" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "mining_internal" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"Cq" = ( -/obj/structure/table/steel, -/obj/item/tool/screwdriver, -/obj/item/tool/crowbar, -/obj/item/tool/wrench, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"Cr" = ( -/obj/structure/closet/crate, -/obj/item/stack/material/phoron{ - amount = 50 - }, -/obj/item/stack/material/phoron{ - amount = 50 - }, -/obj/item/stack/material/phoron{ - amount = 50 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Cs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6; - icon_state = "intact" - }, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"Ct" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Cu" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Cv" = ( -/obj/machinery/floodlight, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Mining Power Starboard"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Cw" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"Cx" = ( -/turf/simulated/wall/r_wall, -/area/outpost/medical/storage) -"Cy" = ( -/obj/machinery/button/remote/airlock{ - id = "miningdorm1"; - name = "Door Bolt Control"; - pixel_x = 25; - pixel_y = 0; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"Cz" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"CA" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Catwalk Mid"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"CB" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/hallway/catwalk) -"CC" = ( -/turf/simulated/wall/r_wall, -/area/outpost/medical/rec) -"CD" = ( -/turf/simulated/wall/r_wall, -/area/outpost/medical/dorm) -"CE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CG" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CH" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/status_display{ - pixel_z = 31 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CI" = ( -/obj/structure/bed/chair, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CJ" = ( -/obj/structure/bed/chair, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"CL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "medoutdorm1"; - name = "Door Bolt Control"; - pixel_w = -19; - pixel_x = 25; - pixel_y = 0; - pixel_z = 28; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"CM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "medoutdorm1"; - name = "Room 1" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"CN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"CO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "medoutdorm2"; - name = "Room 2" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"CP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "medoutdorm2"; - name = "Door Bolt Control"; - pixel_w = -32; - pixel_x = 25; - pixel_y = 0; - pixel_z = 29; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"CQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"CR" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"CS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"CT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CV" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CW" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CX" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"CZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/table/standard, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"Da" = ( -/obj/structure/table/standard, -/obj/machinery/light/small, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"Db" = ( -/turf/simulated/wall, -/area/outpost/medical/dorm) -"Dc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"Dd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"De" = ( -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"Df" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5; - icon_state = "intact" - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "medical_dinger"; - name = "Medical request chime"; - pixel_w = 1; - pixel_z = -29 - }, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"Dg" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"Dh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"Di" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"Dj" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Outpost"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/atmos) -"Dk" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Dl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Dm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Dn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Do" = ( -/obj/structure/table/standard, -/obj/item/radio{ - anchored = 1; - broadcasting = 0; - canhear_range = 1; - frequency = 1487; - icon = 'icons/obj/items.dmi'; - icon_state = "red_phone"; - listening = 1; - name = "Medical Emergency Phone" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Dp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/vending/wallmed1{ - pixel_w = 31 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"Dq" = ( -/turf/simulated/wall/r_wall, -/area/outpost/medical/backup_power) -"Dr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass_engineering{ - name = "Medical Outpost - generator room"; - req_access = null - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"Ds" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"Dt" = ( -/turf/simulated/wall, -/area/outpost/medical/backup_power) -"Du" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/vending/wallmed1{ - pixel_w = -30 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Dv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Dw" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Dx" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Dy" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Dz" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/table/standard, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DB" = ( -/obj/structure/table/standard, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DE" = ( -/obj/effect/shuttle_landmark/premade/northern_star/mine_dock, -/turf/space, -/area/space) -"DF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"DG" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"DH" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"DI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"DJ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"DK" = ( -/turf/simulated/wall, -/area/outpost/medical/rec) -"DL" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"DM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"DN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"DO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"DP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"DQ" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Outpost"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"DR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DV" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "medoutdorm3"; - name = "Room 3" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "medoutdorm3"; - name = "Door Bolt Control"; - pixel_w = -18; - pixel_x = 25; - pixel_y = 0; - pixel_z = -26; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"Ea" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Eb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Ec" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Ed" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Ee" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"Ef" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"Eg" = ( -/obj/machinery/power/port_gen/pacman, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"Eh" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Ei" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Ej" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Ek" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"El" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/item/storage/box/donkpockets, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Em" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"En" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Eo" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -28 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "medical_dinger"; - name = "Medical request chime"; - pixel_w = 28; - pixel_z = -29 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Ep" = ( -/turf/simulated/wall/r_wall, -/area/outpost/medical/hallway) -"Eq" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Er" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Es" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/fiftyspawner/phoron, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"Et" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"Eu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"Ev" = ( -/obj/machinery/power/port_gen/pacman, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"Ew" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/wall, -/area/outpost/medical/backup_power) -"Ex" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Outpost"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Ey" = ( -/obj/machinery/shower{ - dir = 4; - icon_state = "shower"; - pixel_x = 5 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/outpost/medical/dorm) -"Ez" = ( -/obj/structure/mirror{ - pixel_x = 30; - pixel_y = -2 - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/freezer, -/area/outpost/medical/dorm) -"EA" = ( -/turf/simulated/mineral, -/area/mine/explored) -"EB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"EC" = ( -/turf/simulated/wall/r_wall, -/area/outpost/medical/airlocks) -"ED" = ( -/turf/simulated/wall, -/area/outpost/medical/airlocks) -"EE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall, -/area/outpost/medical/airlocks) -"EF" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"EG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Outpost"; - req_access = list(5) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"EH" = ( -/turf/simulated/wall, -/area/outpost/medical/main_room) -"EI" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"EJ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"EK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"EL" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"EM" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/medical/dorm) -"EN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/button/remote/airlock{ - id = "medoutrest"; - name = "Door Bolt Control"; - pixel_w = -18; - pixel_x = 25; - pixel_y = 0; - pixel_z = -26; - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/medical/dorm) -"EO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/medical{ - id_tag = "medoutrest"; - name = "Rest Room"; - req_one_access = newlist() - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"EP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"EQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "medoutdorm4"; - name = "Room 4" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"ER" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "medoutdorm4"; - name = "Door Bolt Control"; - pixel_w = -18; - pixel_x = 25; - pixel_y = 0; - pixel_z = -26; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"ES" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"ET" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"EU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/unexplored) -"EV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"EW" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "med_outpost_airlock2_vent" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"EX" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "med_outpost_airlock2_vent" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "med_outpost_airlock2"; - pixel_x = -6; - pixel_y = -25; - pixel_z = 51; - req_one_access = list(5); - tag_airpump = "med_outpost_airlock2_vent"; - tag_chamber_sensor = "med_outpost_airlock2_sensor"; - tag_exterior_door = "med_outpost_airlock2_outer"; - tag_interior_door = "med_outpost_airlock2_inner" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "med_outpost_airlock2_sensor"; - pixel_x = 6; - pixel_y = -24; - pixel_z = 49 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"EY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"EZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fa" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fd" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/roller{ - pixel_y = 16 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Fe" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Ff" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/vending/wallmed1{ - pixel_z = 30 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Fg" = ( -/turf/simulated/mineral/floor/ignore_mapgen, -/area/outpost/medical/atmos) -"Fh" = ( -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - SMES"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/research/power) -"Fi" = ( -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - Research Outpost"; - name_tag = "Research Outpost" - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/structure/cable/blue, -/turf/simulated/floor/plating, -/area/outpost/research/power) -"Fj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Fk" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "med_outpost_airlock2_outer"; - locked = 1; - name = "Medical EVA Airlock 1"; - req_access = list(5); - req_one_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8; - icon_state = "map" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fm" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "med_outpost_airlock2_inner"; - locked = 1; - name = "Medical EVA Airlock 2"; - req_access = list(5); - req_one_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Fs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Ft" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Fu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Fv" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/closet/emcloset, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Fw" = ( -/turf/simulated/wall, -/area/outpost/medical/hallway) -"Fx" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Fy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/radio{ - frequency = 1487; - icon_state = "med_walkietalkie"; - name = "Medbay Emergency Radio Link" - }, -/obj/item/radio{ - frequency = 1487; - icon_state = "med_walkietalkie"; - name = "Medbay Emergency Radio Link" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Fz" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/closet/firecloset/full, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FA" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"FB" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "med_outpost_airlock2_vent" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"FC" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "med_outpost_airlock2_vent" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"FD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"FE" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"FF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"FG" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"FH" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"FI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"FJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"FK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"FL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"FM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/wall, -/area/outpost/medical/main_room) -"FN" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"FO" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"FP" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FQ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FT" = ( -/obj/structure/closet/hydrant{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FU" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FV" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "med_outpost_pump" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FW" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "med_outpost_pump" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FX" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FY" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "med_outpost_airlock1"; - name = "airlock 1 access button"; - pixel_w = -3; - pixel_x = 25; - pixel_y = 25; - pixel_z = -35; - req_access = list(45); - req_one_access = list(5) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "med_outpost_airlock2"; - name = "airlock 2 access button"; - pixel_w = -3; - pixel_x = 25; - pixel_y = 25; - pixel_z = -15; - req_access = list(45); - req_one_access = list(5) - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"FZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "med_outpost_airlock1"; - name = "airlock 1 access button"; - pixel_w = -48; - pixel_x = 25; - pixel_y = 25; - pixel_z = -35; - req_access = list(45); - req_one_access = list(5) - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "med_outpost_airlock2"; - name = "airlock 2 access button"; - pixel_w = -48; - pixel_x = 25; - pixel_y = 25; - pixel_z = -16; - req_access = list(45); - req_one_access = list(5) - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Ga" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Gb" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Gc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Gd" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Outpost Airlocks"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Ge" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Gf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Gg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/wall, -/area/outpost/medical/main_room) -"Gh" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/wall, -/area/outpost/medical/main_room) -"Gi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Gj" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Outpost"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Gk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Gl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Gm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Gn" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Go" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Gp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "med_outpost_inner"; - locked = 1; - name = "Medical Outpost Dock Airlock"; - req_access = list(5); - req_one_access = list(5) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Gq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Gr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Gs" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "med_outpost_outer"; - locked = 1; - name = "Medical Outpost Dock Airlock"; - req_access = list(5); - req_one_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Gt" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "med_outpost_airlock1_vent" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Gu" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "med_outpost_airlock1_vent" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Gv" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Gw" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Gx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Gy" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/item/defib_kit/loaded, -/obj/item/defib_kit/loaded, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Gz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall, -/area/outpost/medical/main_room) -"GA" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/status_display{ - pixel_z = 31 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"GB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"GC" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"GD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"GE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"GF" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"GG" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "med_outpost_airlock"; - name = "interior access button"; - pixel_w = -18; - pixel_x = 25; - pixel_y = 25; - pixel_z = -47; - req_one_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"GH" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "med_outpost_airlock"; - pixel_x = -6; - pixel_y = -25; - req_access = list(5); - tag_airpump = "med_outpost_pump"; - tag_chamber_sensor = "med_outpost_sensor"; - tag_exterior_door = "med_outpost_outer"; - tag_interior_door = "med_outpost_inner" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "med_outpost_sensor"; - pixel_x = 6; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"GI" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"GJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/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/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"GK" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "med_outpost_airlock1_outer"; - locked = 1; - name = "Medical EVA Airlock 1"; - req_access = list(5); - req_one_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"GL" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "med_outpost_airlock1_inner"; - locked = 1; - name = "Medical EVA Airlock 1"; - req_access = list(5); - req_one_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"GM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"GN" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"GO" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/computer/crew{ - dir = 4; - icon_state = "computer"; - pixel_w = -4; - pixel_z = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"GP" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - pixel_w = -13; - pixel_z = 2 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"GQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"GR" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/storage/firstaid/toxin, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"GS" = ( -/turf/simulated/wall, -/area/outpost/medical/surgery) -"GT" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/curtain/medical, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/outpost/medical/surgery) -"GU" = ( -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre 1"; - req_access = list(45) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/curtain/medical, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"GV" = ( -/obj/structure/grille, -/obj/structure/curtain/medical, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/outpost/medical/surgery) -"GW" = ( -/obj/structure/lattice, -/obj/machinery/light, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"GX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"GY" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "med_outpost_airlock1_vent" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"GZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "med_outpost_airlock1_vent" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "med_outpost_airlock1"; - pixel_x = -6; - pixel_y = -25; - req_one_access = list(5); - tag_airpump = "med_outpost_airlock1_vent"; - tag_chamber_sensor = "med_outpost_airlock1_sensor"; - tag_exterior_door = "med_outpost_airlock1_outer"; - tag_interior_door = "med_outpost_airlock1_inner" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "med_outpost_airlock1_sensor"; - pixel_x = 6; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Ha" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/vending/wallmed1{ - pixel_z = -30 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Hb" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Hc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Hd" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/closet/emcloset, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"He" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -28 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "medical_dinger"; - name = "Medical request chime"; - pixel_w = -28; - pixel_z = 3 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Hf" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/o2{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/firstaid/fire, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Hg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/vending/wallmed1{ - pixel_z = 32 - }, -/obj/structure/closet/secure_closet/medical2{ - req_access = list(45); - req_one_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Hh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Hi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Hj" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Hk" = ( -/obj/structure/mirror, -/turf/simulated/wall, -/area/outpost/medical/surgery) -"Hl" = ( -/turf/simulated/wall, -/area/outpost/medical/suit_storage) -"Hm" = ( -/turf/simulated/wall/r_wall, -/area/outpost/medical/suit_storage) -"Hn" = ( -/obj/machinery/light/small{ - brightness_color = "#DA0205"; - brightness_power = 1; - brightness_range = 5 - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"Ho" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass_engineering{ - name = "Medical Outpost - Power"; - req_access = null - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Hp" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Hq" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Hr" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Hs" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Ht" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/status_display{ - pixel_w = 0; - pixel_z = 32 - }, -/obj/structure/table/standard, -/obj/item/autopsy_scanner, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Hu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Hv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Hw" = ( -/obj/machinery/optable, -/obj/structure/curtain/medical, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Hx" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Hy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/head/radiation, -/obj/structure/table/rack, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Hz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/floodlight, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"HA" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"HB" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/simulated/wall/r_wall, -/area/outpost/medical/hallway) -"HC" = ( -/turf/simulated/wall, -/area/mine/unexplored) -"HD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HG" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HH" = ( -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Medical"; - charge = 500000; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HI" = ( -/turf/simulated/wall, -/area/outpost/medical/power) -"HJ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HK" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HL" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HM" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"HN" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Outpost"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"HO" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "medical_dinger"; - name = "Medical request chime"; - pixel_w = -28; - pixel_z = 2 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"HP" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"HQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"HR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"HS" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/item/surgical/cautery, -/obj/item/surgical/hemostat, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"HT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"HU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"HV" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"HW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6; - icon_state = "intact" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"HX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"Ia" = ( -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - Medical Outpost"; - name_tag = "Medical Outpost" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"Ib" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"Ic" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/suit_cycler/medical, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Id" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Ie" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"If" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/tank/oxygen, -/obj/item/clothing/suit/space/void/medical/emt, -/obj/item/clothing/head/helmet/space/void/medical/emt, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Ig" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/bodyscanner{ - text = "O" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Ih" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/body_scanconsole{ - text = "O" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Ii" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Ij" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/item/surgical/bonesetter, -/obj/item/surgical/bonegel, -/obj/item/surgical/circular_saw{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Ik" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/item/surgical/scalpel, -/obj/item/surgical/retractor, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Il" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/item/stack/medical/advanced/bruise_pack, -/obj/item/surgical/FixOVein, -/obj/item/surgical/surgicaldrill, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Im" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"In" = ( -/obj/structure/table/standard, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/toolbox/emergency, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Io" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Ip" = ( -/turf/simulated/wall/r_wall, -/area/outpost/medical/power) -"Iq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"Ir" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"Is" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"It" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"Iu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"Iv" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/suit_cycler/medical, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Iw" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/tank/oxygen, -/obj/item/clothing/suit/space/void/medical/emt, -/obj/item/clothing/head/helmet/space/void/medical/emt, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Ix" = ( -/obj/structure/table/standard, -/obj/item/extinguisher, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Iy" = ( -/turf/space, -/area/mine/explored) -"Iz" = ( -/obj/machinery/atmospherics/pipe/vent/high_volume{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"IA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"IB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"IC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"ID" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"IE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"IF" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"IG" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/vending/wallmed1{ - pixel_w = -29 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"II" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IK" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Outpost"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IP" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Outpost"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IS" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -28 - }, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IT" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical, -/obj/item/clothing/head/helmet/space/void/medical, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical, -/obj/item/clothing/head/helmet/space/void/medical, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IU" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical, -/obj/item/clothing/head/helmet/space/void/medical, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical, -/obj/item/clothing/head/helmet/space/void/medical, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IV" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IW" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/tank/oxygen, -/obj/item/clothing/suit/space/void/medical/emt, -/obj/item/clothing/head/helmet/space/void/medical/emt, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IZ" = ( -/obj/machinery/cell_charger, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Ja" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Jb" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "mining_outpost_inner"; - locked = 1; - name = "Mining Dock Airlock"; - req_access = list(13) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"Jc" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-06"; - pixel_y = 8 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "cargo_dinger"; - name = "Cargo request chime"; - pixel_w = -28; - pixel_z = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/break_room) -"Jd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/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/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Je" = ( -/obj/structure/table/standard, -/obj/item/storage/box/donkpockets, -/obj/machinery/alarm{ - alarms_hidden = 1; - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/break_room) -"Jf" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/storage/emergency_storage) -"Jg" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/machinery/camera/network/mining{ - c_tag = "OPM - SMES" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/maintenance) -"Jh" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/storage/emergency_storage) -"Ji" = ( -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - Mining Outpost"; - name_tag = "Mining Outpost" - }, -/obj/structure/cable/blue, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/maintenance) -"Jj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "meoutpost_main_inner"; - locked = 1; - name = "Exterior Airlock" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"Jk" = ( -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"Jl" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/storage/emergency_storage) -"Jm" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/storage/box/lights/mixed, -/obj/item/extinguisher, -/turf/simulated/floor/plating, -/area/storage/emergency_storage) -"Jn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"Jo" = ( -/obj/effect/floor_decal/corner/brown/full, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "cargo_dinger"; - name = "Cargo request chime"; - pixel_w = -29; - pixel_z = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"Jp" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/machinery/vending/wallmed1{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"Jq" = ( -/obj/structure/mirror{ - pixel_x = 30; - pixel_y = -2 - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/freezer, -/area/outpost/mining_main/dorms) -"Jr" = ( -/obj/structure/table/standard, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"Js" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Mining Main"; - dir = 8 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"Jt" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"Ju" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"Jv" = ( -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/blue, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - Engineering Outpost"; - name_tag = "Engineering Outpost" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Jw" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Jx" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - Asteroid Main Grid"; - name_tag = "Asteroid Main Grid" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Jy" = ( -/obj/machinery/button/remote/airlock{ - id = "miningdorm3"; - name = "Door Bolt Control"; - pixel_w = -1; - pixel_x = 25; - pixel_y = 0; - pixel_z = -1; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"Jz" = ( -/obj/item/clothing/under/overalls, -/obj/item/clothing/under/rank/miner, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"JA" = ( -/obj/machinery/alarm{ - alarms_hidden = 1; - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"JB" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -26 - }, -/obj/machinery/mineral/equipment_vendor, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"JC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"JD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"JE" = ( -/obj/machinery/mineral/stacking_unit_console, -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/refinery) -"JF" = ( -/obj/structure/table/steel, -/obj/item/cell/high, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"JG" = ( -/obj/structure/table/steel, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"JH" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Outpost - Main Power Unit 1"; - charge = 1.5e+007; - cur_coils = 3; - input_attempt = 1; - input_level = 750000; - input_level_max = 750000; - output_level = 750000; - output_level_max = 750000 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"JI" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"JJ" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Outpost - Main Power Unit 2"; - charge = 1.5e+007; - cur_coils = 3; - input_attempt = 1; - input_level = 750000; - input_level_max = 750000; - output_level = 750000; - output_level_max = 750000 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"JK" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"JL" = ( -/obj/structure/table/standard, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"JM" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/dorms) -"JN" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"JO" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"JP" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'MOVING PARTS'."; - name = "\improper MOVING PARTS"; - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/light, -/obj/effect/floor_decal/industrial/loading{ - dir = 8; - icon_state = "loadingarea" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"JQ" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/structure/plasticflaps, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"JR" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"JS" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"JT" = ( -/obj/machinery/mineral/stacking_machine, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"JU" = ( -/obj/machinery/conveyor{ - dir = 5; - icon_state = "conveyor0"; - id = "mining_internal" - }, -/obj/machinery/mineral/input, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"JV" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"JW" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"JX" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"JY" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"JZ" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Ka" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Kb" = ( -/obj/structure/closet/toolcloset, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Kc" = ( -/obj/structure/ore_box, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/dorms) -"Kd" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/dorms) -"Ke" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/eva) -"Kf" = ( -/turf/simulated/wall, -/area/outpost/mining_main/eva) -"Kg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Kh" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable/yellow, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Ki" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable/yellow, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Kj" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/storage) -"Kk" = ( -/obj/structure/ore_box, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Kl" = ( -/obj/structure/closet/secure_closet/miner, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Km" = ( -/obj/structure/closet/secure_closet/miner, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Kn" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Outpost Airlock"; - req_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"Ko" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Outpost Airlock"; - req_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"Kp" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Outpost Airlock"; - req_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"Kq" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/mining, -/obj/item/mining_scanner, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Kr" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/mining, -/obj/item/mining_scanner, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Ks" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Kt" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"Ku" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1377; - id_tag = "mvent" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1377; - id_tag = "mcontrol"; - pixel_x = 0; - pixel_y = 28; - tag_airpump = "mvent"; - tag_chamber_sensor = "msensor"; - tag_exterior_door = "mext"; - tag_interior_door = "mint" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Kv" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1377; - id_tag = "mvent" - }, -/obj/machinery/airlock_sensor{ - frequency = 1377; - id_tag = "msensor"; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Kw" = ( -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "cargo_dinger"; - name = "Cargo request chime"; - pixel_w = -31; - pixel_z = 1 - }, -/obj/machinery/drone_fabricator/mining, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Kx" = ( -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Ky" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/mining_scanner, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/item/rig/industrial/equipped, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Kz" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/storage) -"KA" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"KB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"KC" = ( -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"KD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"KE" = ( -/obj/structure/dispenser/oxygen, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KH" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/machinery/access_button/airlock_interior{ - frequency = 1377; - master_tag = "mcontrol"; - pixel_x = 26; - pixel_y = -26; - req_access = list(48) - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KK" = ( -/obj/machinery/door/airlock/external{ - frequency = 1377; - icon_state = "door_locked"; - id_tag = "mint"; - locked = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KL" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; - icon_state = "map" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KN" = ( -/obj/machinery/door/airlock/external{ - frequency = 1377; - icon_state = "door_locked"; - id_tag = "mext"; - locked = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KO" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4; - icon_state = "warning_dust" - }, -/obj/machinery/access_button/airlock_exterior{ - frequency = 1377; - master_tag = "mcontrol"; - pixel_x = -26; - pixel_y = 26; - req_access = list(48) - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"KP" = ( -/obj/effect/mine/stun, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"KQ" = ( -/obj/machinery/computer/drone_control{ - name = "Mining Drone Control" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"KR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"KS" = ( -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Storage Room"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"KT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/storage) -"KU" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"KV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"KW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"KX" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"KY" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining EVA"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"La" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Lb" = ( -/obj/effect/landmark{ - name = "bluespacerift" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Lc" = ( -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Ld" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1377; - id_tag = "mvent" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Le" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1377; - id_tag = "mvent" - }, -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Airlock"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Lf" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Lg" = ( -/obj/structure/table/steel, -/obj/item/suit_cooling_unit, -/obj/item/suit_cooling_unit, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Lh" = ( -/obj/structure/table/steel, -/obj/item/pickaxe, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Li" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Lj" = ( -/obj/machinery/door/airlock/mining{ - name = "Mining Station Storage"; - req_access = list(48) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Lk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"Ll" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/landmark{ - name = "bluespacerift" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"Lm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"Ln" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Station EVA"; - req_access = list(54) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Lo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Lp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Lq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Lr" = ( -/obj/machinery/suit_cycler/mining, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Ls" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"Lt" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"Lu" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Lv" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Lw" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Lx" = ( -/obj/machinery/door/airlock/mining{ - name = "Mining Station Storage"; - req_access = list(48) - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Ly" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"Lz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"LA" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"LB" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Station EVA"; - req_access = list(54) - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LC" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LE" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/structure/table/steel, -/obj/item/stack/flag/green{ - pixel_x = -4 - }, -/obj/item/stack/flag/yellow{ - pixel_x = 4 - }, -/obj/item/stack/flag/red, -/obj/item/storage/box/nifsofts_mining, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LF" = ( -/obj/structure/table/rack, -/obj/item/tool/wrench, -/obj/item/tool/crowbar, -/obj/item/shovel, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"LG" = ( -/obj/structure/table/rack, -/obj/item/pickaxe, -/obj/item/tool/wrench, -/obj/item/tool/crowbar, -/obj/item/shovel, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"LH" = ( -/turf/simulated/wall, -/area/outpost/mining_main/storage) -"LI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Hallway Aft"; - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"LJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"LK" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"LL" = ( -/obj/structure/table/steel, -/obj/item/pickaxe, -/obj/item/storage/belt/utility, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LM" = ( -/obj/structure/table/steel, -/obj/item/storage/toolbox/mechanical, -/obj/item/tool/wrench, -/obj/item/tool/crowbar, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LN" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"LO" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"LP" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -20 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"LQ" = ( -/obj/item/storage/backpack/satchel, -/obj/structure/table/steel, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "cargo_dinger"; - name = "Cargo request chime"; - pixel_w = -28; - pixel_z = 2 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LR" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/conveyor_switch{ - id = "drone_mech_travel" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LS" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "drone_mech_travel" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LT" = ( -/turf/simulated/floor, -/area/outpost/mining_main/south_hall) -"LU" = ( -/obj/machinery/mech_recharger, -/obj/machinery/light, -/turf/simulated/floor/plating, -/area/outpost/mining_main/south_hall) -"LV" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "drone_mech_travel" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LW" = ( -/turf/simulated/mineral/floor/ignore_mapgen, -/area/outpost/mining_main/eva) -"LX" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/south_hall) -"LY" = ( -/turf/simulated/wall, -/area/outpost/mining_main/south_hall) -"LZ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Ma" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Mb" = ( -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Mc" = ( -/obj/structure/ore_box, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Md" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Me" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"Mf" = ( -/obj/machinery/conveyor{ - id = "drone_mech_travel" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Mg" = ( -/obj/structure/plasticflaps/mining, -/obj/machinery/conveyor{ - id = "drone_mech_travel" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Mh" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Mi" = ( -/obj/machinery/conveyor{ - id = "drone_mech_travel" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Mj" = ( -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Exterior" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Mk" = ( -/obj/machinery/conveyor_switch{ - id = "drone_mech_travel" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Ml" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Mm" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Mn" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Mo" = ( -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/unexplored) -"Mp" = ( -/turf/space, -/area/skipjack_station/mining) -"Mq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Mr" = ( -/obj/machinery/light/small, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Ms" = ( -/obj/machinery/light, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/kitchen) -"Mt" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9; - icon_state = "warning_dust" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"Mu" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "eoutpost_main_airlock"; - name = "exterior access button"; - pixel_x = 25; - pixel_y = -25; - req_access = list(10) - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/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/asteroid_steel/airless, -/area/mine/explored) -"Mv" = ( -/obj/machinery/light, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/kitchen) -"Mw" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"Mx" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/engineering/kitchen) -"My" = ( -/turf/simulated/wall/r_wall, -/area/outpost/engineering/hallway) -"Mz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"MA" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "eoutpost_main_outer"; - locked = 1; - name = "Engineering Outpost" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"MB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"MC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"MD" = ( -/turf/simulated/wall/r_wall, -/area/outpost/engineering/storage) -"ME" = ( -/obj/machinery/cell_charger, -/obj/structure/table/steel, -/obj/structure/cable, -/obj/item/frame/apc, -/obj/item/module/power_control, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"MF" = ( -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/structure/table/steel, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"MG" = ( -/turf/simulated/wall/r_wall, -/area/outpost/engineering/kitchen) -"MH" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"MI" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/engineering/kitchen) -"MJ" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/engineering/kitchen) -"MK" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1379; - id_tag = "eoutpost_main_pump" - }, -/obj/machinery/airlock_sensor{ - frequency = 1379; - id_tag = "eoutpost_main_sensor"; - pixel_x = -25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ML" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"MM" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1379; - id_tag = "eoutpost_main_pump" - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"MN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"MO" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4; - icon_state = "warning_dust" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/engineering/kitchen) -"MP" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8; - icon_state = "warning_dust" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/engineering/kitchen) -"MQ" = ( -/turf/simulated/wall/r_wall, -/area/outpost/engineering/atmospherics) -"MR" = ( -/obj/machinery/telecomms/relay/preset/mining, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/telecomms) -"MS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/outpost/engineering/telecomms) -"MT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; - id_tag = "eoutpost_main_airlock"; - pixel_x = -25; - pixel_y = 0; - req_access = list(10); - tag_airpump = "eoutpost_main_pump"; - tag_chamber_sensor = "eoutpost_main_sensor"; - tag_exterior_door = "eoutpost_main_outer"; - tag_interior_door = "eoutpost_main_inner" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"MU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"MV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Airlock"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"MW" = ( -/obj/machinery/pipedispenser/disposal, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"MX" = ( -/obj/machinery/pipedispenser, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"MY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/storage) -"MZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/outpost/engineering/telecomms) -"Na" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/telecomms) -"Nb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost TeleCommunications"; - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/outpost/engineering/telecomms) -"Nc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "eoutpost_main_inner"; - locked = 1; - name = "Engineering Outpost" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Nd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"Ne" = ( -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Nf" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Ng" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Nh" = ( -/obj/machinery/floodlight, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Ni" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass_engineering{ - name = "Telecommunications"; - req_access = list(10) - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/outpost/engineering/telecomms) -"Nj" = ( -/obj/structure/sign/vacuum{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Nk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "eoutpost_main_airlock"; - name = "interior access button"; - pixel_x = -25; - pixel_y = 25; - req_access = list(10) - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Nl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Nm" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Nn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"No" = ( -/obj/machinery/autolathe, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Np" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Nq" = ( -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Nr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6; - icon_state = "intact" - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Ns" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Nt" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Atmospherics Fore" - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Nu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Nv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5; - icon_state = "intact-scrubbers" - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Nw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Nx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_engineering{ - name = "Atmospherics"; - req_access = list(10) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/outpost/engineering/atmospherics) -"Ny" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Nz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"NA" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"NB" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Storage"; - req_access = list(10) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"NC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"ND" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"NE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "engineering_dinger"; - name = "Engineering request chime"; - pixel_w = -29; - pixel_z = 2 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NF" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6; - icon_state = "intact" - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NH" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NJ" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"NK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"NL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"NM" = ( -/obj/structure/table/rack, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/item/pickaxe, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"NN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"NO" = ( -/obj/structure/table/rack, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/item/stack/cable_coil/yellow, -/obj/item/stack/cable_coil, -/obj/item/module/power_control, -/obj/item/module/power_control, -/obj/item/clothing/gloves/yellow, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"NP" = ( -/obj/structure/table/rack, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/item/stack/cable_coil/yellow, -/obj/item/storage/box/lights/mixed, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"NQ" = ( -/obj/machinery/suit_cycler/engineering, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"NR" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4; - icon_state = "warning_dust" - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/engineering/kitchen) -"NS" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8; - icon_state = "warning_dust" - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/engineering/kitchen) -"NT" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NV" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NW" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4; - icon_state = "map" - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NX" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"NZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Oa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Ob" = ( -/obj/item/stack/material/plasteel{ - amount = 10 - }, -/obj/item/stack/material/wood{ - amount = 30 - }, -/obj/item/stack/material/plastic{ - amount = 10 - }, -/obj/structure/table/steel, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Oc" = ( -/obj/structure/table/rack, -/obj/item/clothing/head/helmet/space/void/engineering, -/obj/item/clothing/suit/space/void/engineering, -/obj/item/clothing/shoes/magboots, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/item/storage/briefcase/inflatable, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Od" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Oe" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/alarm{ - alarms_hidden = 1; - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/atmospherics) -"Of" = ( -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Og" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Oh" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Oi" = ( -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/structure/table/steel, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Oj" = ( -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/structure/table/steel, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Storage"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Ok" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Ol" = ( -/obj/machinery/air_sensor{ - frequency = 1439; - id_tag = "outpost_o2_sensor" - }, -/turf/simulated/floor/reinforced/oxygen, -/area/outpost/engineering/atmospherics) -"Om" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - dir = 4; - frequency = 1439; - id_tag = "outpost_o2_out" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/outpost/engineering/atmospherics) -"On" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4; - icon_state = "intact" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Oo" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Op" = ( -/obj/machinery/atmospherics/omni/mixer{ - tag_east = 0; - tag_east_con = null; - tag_north = 2; - tag_south = 1; - tag_south_con = 0.79; - tag_west = 1; - tag_west_con = 0.21 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Oq" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Or" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Os" = ( -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Ot" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = 28 - }, -/obj/machinery/vending/wallmed1{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Ou" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Storage"; - req_access = list(10) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Ov" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/emitter, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/hallway) -"Ow" = ( -/turf/simulated/wall/r_wall, -/area/outpost/engineering/solars) -"Ox" = ( -/turf/simulated/floor/reinforced/oxygen, -/area/outpost/engineering/atmospherics) -"Oy" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1439; - icon_state = "map_injector"; - id = "outpost_o2_in"; - pixel_y = 1; - use_power = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/outpost/engineering/atmospherics) -"Oz" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"OA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 10 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"OB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"OC" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"OD" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"OE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/wall/r_wall, -/area/outpost/engineering/atmospherics) -"OF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4; - icon_state = "intact" - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -20 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"OG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"OH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"OI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"OJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"OK" = ( -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"OL" = ( -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "engineering_dinger"; - name = "Engineering request chime"; - pixel_z = 32 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"OM" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"ON" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"OO" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Power Supply" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"OP" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Outpost - Main"; - charge = 1.5e+007; - cur_coils = 3; - input_attempt = 1; - input_level = 750000; - input_level_max = 750000; - output_level = 750000; - output_level_max = 750000 - }, -/turf/simulated/floor, -/area/outpost/engineering/solars) -"OQ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8; - icon_state = "warning_dust" - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"OR" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"OS" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6; - icon_state = "warning_dust" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"OT" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9; - icon_state = "warning_dust" - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"OU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"OV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/outpost/engineering/atmospherics) -"OW" = ( -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Outpost Atmospherics"; - dir = 4 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'COMPRESSED GAS'."; - name = "COMPRESSED GAS"; - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"OX" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - power_rating = 15000; - tag_east = 1; - tag_north = 3; - tag_south = 4; - tag_west = 2 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"OY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"OZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Pa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/door/airlock/glass_engineering{ - name = "Atmospherics"; - req_access = list(10) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/outpost/engineering/atmospherics) -"Pb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Pc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Pd" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Pe" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Pf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Pg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Ph" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Pi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Outpost Solars"; - req_access = list(10) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Pj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Pk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Pl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Pm" = ( -/obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Pn" = ( -/obj/structure/table/reinforced, -/obj/item/stack/material/phoron{ - amount = 10 - }, -/obj/random/powercell, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/item/stack/material/phoron{ - amount = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Po" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Pp" = ( -/turf/simulated/floor/reinforced/nitrogen, -/area/outpost/engineering/atmospherics) -"Pq" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1439; - icon_state = "map_injector"; - id = "outpost_n2_in"; - pixel_y = 1; - use_power = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/outpost/engineering/atmospherics) -"Pr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Ps" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue, -/obj/machinery/meter, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Pt" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6; - icon_state = "intact" - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Pu" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Pv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Pw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Px" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Py" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Pz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"PA" = ( -/obj/item/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_x = 0; - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"PB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Hallway East"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"PC" = ( -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"PD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"PE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"PF" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"PG" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"PH" = ( -/obj/machinery/air_sensor{ - frequency = 1439; - id_tag = "outpost_n2_sensor" - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/outpost/engineering/atmospherics) -"PI" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - dir = 4; - frequency = 1439; - id_tag = "outpost_n2_out" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/outpost/engineering/atmospherics) -"PJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"PK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4; - icon_state = "intact" - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Atmospherics Aft"; - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"PL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/light, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"PM" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"PN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/landmark{ - name = "bluespacerift" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"PO" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Hallway Central"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"PP" = ( -/turf/simulated/wall/r_wall, -/area/outpost/engineering/rest) -"PQ" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Airlock" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/rest) -"PR" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/hallway) -"PS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"PT" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"PU" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable/yellow, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"PV" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"PW" = ( -/obj/machinery/computer/station_alert, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"PX" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"PY" = ( -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"PZ" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/orange, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Qa" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -20 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Qb" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qc" = ( -/obj/machinery/door/airlock/engineering{ - name = "Restrooms"; - req_access = list(10) - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qd" = ( -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qe" = ( -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qf" = ( -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "engineering_dinger"; - name = "Engineering request chime"; - pixel_z = 33 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Outpost Kitchen"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qh" = ( -/obj/machinery/computer/atmos_alert, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Qi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Qj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Qk" = ( -/obj/structure/closet, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Ql" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6; - icon_state = "intact" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Qm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Qn" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Qo" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qp" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/reagent_containers/food/drinks/bottle/small/beer, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qq" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qr" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qs" = ( -/obj/machinery/computer/shuttle_control/engineering, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Qt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Qu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-21" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Outpost Break Room"; - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Qv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Qw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 8; - icon_state = "map" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Qx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Qy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Qz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/outpost/engineering/kitchen) -"QA" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/sign/vacuum{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"QB" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"QC" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"QD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"QE" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Break Room"; - req_access = list(10) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"QF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"QG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"QH" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Airlock" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/rest) -"QI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"QJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"QK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"QL" = ( -/obj/structure/table/standard, -/obj/item/flashlight/lamp, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"QM" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "eoutpost_solar_airlock"; - name = "interior access button"; - pixel_x = 25; - pixel_y = -25; - req_access = list(10) - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"QN" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"QO" = ( -/obj/machinery/power/solar_control, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"QP" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"QQ" = ( -/obj/structure/sink{ - dir = 8; - icon_state = "sink"; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"QR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"QS" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Break Room"; - req_access = list(10) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"QT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "edock_airlock"; - name = "interior access button"; - pixel_x = -26; - pixel_y = -25; - req_access = list(10) - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"QU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"QV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"QW" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"QX" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "eoutpost_solar_inner"; - locked = 1; - name = "Solar Access" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor, -/area/outpost/engineering/solars) -"QY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/solars) -"QZ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/solars) -"Ra" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Rb" = ( -/obj/structure/table/standard, -/obj/item/storage/box/donkpockets, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -28 - }, -/obj/item/reagent_containers/food/drinks/bottle/small/beer, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Rc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"Rd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"Re" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "edock_inner"; - locked = 1; - name = "Engineering Dock Airlock" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Rf" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/o2{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/firstaid/regular, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -28 - }, -/obj/item/roller, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Rg" = ( -/obj/machinery/computer/crew, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Rh" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/solars) -"Ri" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 8; - icon_state = "map" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/outpost/engineering/solars) -"Rj" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "eoutpost_solar_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; - id_tag = "eoutpost_solar_airlock"; - pixel_x = 30; - pixel_y = 0; - req_access = list(10); - tag_airpump = "eoutpost_solar_pump"; - tag_chamber_sensor = "eoutpost_solar_sensor"; - tag_exterior_door = "eoutpost_solar_outer"; - tag_interior_door = "eoutpost_solar_inner" - }, -/obj/machinery/airlock_sensor{ - frequency = 1379; - id_tag = "eoutpost_solar_sensor"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Solar Access" - }, -/turf/simulated/floor, -/area/outpost/engineering/solars) -"Rk" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/solars) -"Rl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/kitchen) -"Rm" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Rn" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Ro" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Rp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Rq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "eoutpost_solar_sensor"; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Rr" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Rs" = ( -/obj/machinery/sleep_console, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Rt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/rest) -"Ru" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor, -/area/outpost/engineering/solars) -"Rv" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "eoutpost_solar_pump" - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 8 - }, -/turf/simulated/floor, -/area/outpost/engineering/solars) -"Rw" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/engineering/kitchen) -"Rx" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/engineering/kitchen) -"Ry" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "edock_pump" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Rz" = ( -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Elevator"; - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "edock_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "edock_airlock"; - pixel_x = 30; - pixel_y = 0; - req_access = list(10); - tag_airpump = "edock_pump"; - tag_chamber_sensor = "edock_sensor"; - tag_exterior_door = "edock_outer"; - tag_interior_door = "edock_inner" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"RA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/solars) -"RB" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "eoutpost_solar_outer"; - locked = 1; - name = "Solar Access" - }, -/turf/simulated/floor, -/area/outpost/engineering/solars) -"RC" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/solars) -"RD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"RE" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "edock_outer"; - locked = 1; - name = "Engineering Dock Airlock" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "edock_airlock"; - name = "exterior access button"; - pixel_x = -26; - pixel_y = 0; - req_access = list(10) - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"RF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"RG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"RH" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/kitchen) -"RI" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "eoutpost_solar_airlock"; - name = "exterior access button"; - pixel_x = 25; - pixel_y = 25; - req_access = list(10) - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/kitchen) -"RJ" = ( -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/kitchen) -"RK" = ( -/turf/simulated/wall, -/area/outpost/engineering/hallway) -"RL" = ( -/turf/simulated/mineral/floor/ignore_mapgen, -/area/shuttle/constructionsite/site) -"RM" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"RN" = ( -/obj/structure/grille, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"RO" = ( -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/airless{ - icon_state = "solarpanel" - }, -/area/outpost/engineering/solarsoutside/aft) -"RP" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/solarsoutside/aft) -"RQ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/solarsoutside/aft) -"RR" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/solarsoutside/aft) -"RS" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/solarsoutside/aft) -"RT" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/solarsoutside/aft) -"RU" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/solarsoutside/aft) -"RV" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/space, -/area/space) -"RW" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/kitchen) -"RX" = ( -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/airless{ - icon_state = "solarpanel" - }, -/area/outpost/engineering/solarsoutside/aft) -"RY" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/solarsoutside/aft) -"RZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - external_pressure_bound = 140; - external_pressure_bound_default = 140; - icon_state = "map_vent_out"; - pressure_checks = 1; - pressure_checks_default = 1; - use_power = 1 - }, -/turf/simulated/floor/airless, -/area/outpost/engineering/atmospherics) -"Sa" = ( -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/airless{ - icon_state = "solarpanel" - }, -/area/mine/explored) -"Sb" = ( -/obj/structure/lattice, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"Sc" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Sd" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/outpost/engineering/kitchen) -"Se" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/outpost/engineering/kitchen) -"Sf" = ( -/turf/simulated/mineral/floor/ignore_mapgen, -/area/outpost/engineering/solarsoutside/aft) -"Sg" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Sh" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Si" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Sj" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Sk" = ( -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/airless{ - icon_state = "solarpanel" - }, -/area/mine/explored) -"Sl" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"Sm" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"Sn" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/mine/explored) -"So" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"Sp" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"Sq" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"Sr" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"Ss" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"St" = ( -/obj/structure/lattice, -/turf/simulated/floor/airless, -/area/mine/explored) -"Su" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"Sv" = ( -/obj/structure/grille, -/turf/space, -/area/mine/explored) -"Sw" = ( -/obj/structure/lattice, -/turf/space, -/area/mine/explored) -"Sx" = ( -/obj/structure/lattice, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/space, -/area/mine/explored) -"Sy" = ( -/turf/simulated/floor/airless, -/area/mine/explored) -"Sz" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/space, -/area/mine/explored) -"SA" = ( -/obj/machinery/power/tracker, -/obj/structure/cable/yellow, -/turf/simulated/floor/airless, -/area/mine/explored) -"SB" = ( -/obj/effect/overmap/visitable/planet/kara, -/turf/space, -/area/space) - -(1,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(2,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -SB -aa -"} -(3,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(4,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(5,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(6,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(7,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(8,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(9,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(10,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(11,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(12,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(13,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(14,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(15,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(16,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(17,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(18,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(19,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(20,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(21,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(22,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(23,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(24,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(25,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(26,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(27,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(28,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(29,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(30,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(31,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -aa -aa -aa -aa -dn -dn -dn -dn -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(32,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(33,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -vo -vo -xv -xQ -xv -yY -yY -yZ -yZ -ad -ad -yZ -yZ -yY -yY -Kj -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(34,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -vo -vo -vo -xd -Jf -Jh -Jl -yZ -zz -Ae -yZ -yZ -yZ -yZ -Cw -zB -yZ -Kj -Kj -Kj -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(35,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -vv -vI -vo -wl -wK -xd -xP -yr -Jm -yZ -Jq -Af -Ax -An -Bm -Cf -Jy -JL -yZ -Kk -Kw -Kj -Kj -Kj -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(36,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -vo -vw -vJ -vX -wm -wL -xd -xQ -ys -xQ -yZ -yZ -yZ -yZ -AE -Bq -yZ -yZ -yZ -yZ -Kk -Kx -KQ -Lf -Kj -Kj -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(37,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -vo -vo -vx -vy -vy -wn -wM -xe -xx -xS -yt -yZ -zB -Ag -yZ -AJ -BB -yZ -Cw -zB -yZ -Kk -Kx -Kx -Kx -Lu -Kj -Kj -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(38,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -vo -vr -vy -vy -vY -wo -wN -xf -xy -xT -yu -yZ -Jr -Ah -Ay -Bc -BC -Cg -Cy -JL -yZ -Kl -Kx -Kx -Lg -Lv -LF -Kj -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(39,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -vo -vo -vs -vy -vy -vZ -wp -wO -xg -xz -xU -yv -yY -yZ -yZ -yZ -Bd -BD -yZ -yZ -yZ -yY -Km -Kx -KR -Lh -Lw -LG -Kj -Kj -ad -ad -ad -ad -ad -ad -ad -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(40,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gX -vi -vl -gX -vi -vi -vi -vK -vy -wq -wP -xh -xz -xU -yv -yY -zD -Ai -Az -Bh -BG -Ch -Ai -JM -yY -Kl -Kx -Kx -Li -Lv -Kx -LN -Kj -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(41,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -vi -vk -vk -vk -vk -vk -vz -vL -wa -wr -vo -xi -xA -xV -yw -yY -yY -Aj -AA -Bi -BH -Ai -Jz -yY -yY -Kj -Ky -KS -Li -Lv -Kx -LO -Kj -Kj -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(42,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -vj -vk -vk -vk -vk -vk -vA -vM -wb -ws -wv -xj -wd -xU -wd -Jo -yY -Ak -AB -Bj -BI -Ak -AB -yY -Kc -Kj -Kz -KT -Lj -Lx -LH -LH -LH -Kj -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(43,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -gX -vk -vk -vk -vk -vk -vB -vN -wc -wt -wQ -wd -xB -xW -yx -zb -zE -Al -AC -Bk -BJ -Ci -Al -JN -Al -Kn -KA -KU -Lk -Ly -LI -LP -LT -LX -EA -EA -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(44,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -vk -vk -vk -vk -vk -vC -vO -wd -Jb -wR -wd -xC -wv -yy -zc -zF -Am -AD -Bl -BE -Cj -Bf -Bf -Am -Ko -KB -KV -Ll -Lz -LJ -KC -LU -LY -EA -EA -EA -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(45,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -gX -vk -vk -vk -vk -vk -vz -vP -we -wt -wS -wd -wU -xF -xG -wd -xX -yz -zd -Be -BF -BQ -JA -JO -Ai -Kp -KC -KW -Lm -LA -LK -KC -LT -LX -EA -EA -EA -EA -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(46,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -vj -vk -vk -vk -vk -vk -vA -vQ -wf -wv -wv -xk -wd -xU -wd -Jp -zf -zf -AF -Bn -BL -AF -zf -zf -Kd -Ke -KD -KX -Ln -LB -Kf -Kf -Kf -Ke -EA -EA -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(47,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -vi -vk -vk -vk -vk -vk -vD -vR -wg -Jc -vp -vp -xD -xY -yA -zf -zf -Jt -AG -Bo -BM -Cl -JB -zf -Ke -Ke -KE -KY -Lo -LC -LL -LQ -Ke -Ke -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(48,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -gX -vi -vl -gX -vi -vi -vi -vS -vE -wx -wT -vp -yB -xZ -yB -zf -zH -Ap -AG -Bo -BN -Cl -Ap -JP -Ke -Kq -KF -KZ -Lp -LC -Lc -LR -Ke -Ke -Ke -Ke -Ke -Ke -Mh -Ml -ad -ad -ad -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(49,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -vp -vp -vt -vE -vE -wh -wy -vE -vE -xE -ya -yC -zf -zI -zg -AH -Bp -BO -Cm -JC -JQ -Ke -Kr -KG -La -Lq -LD -Lc -LS -LV -LS -LS -LS -Mf -Mg -Mi -Mm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(50,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -vp -vu -vE -vE -wi -wz -wV -wV -xH -yb -yC -zg -zJ -zg -AI -Bo -BP -Cn -JD -JR -Kf -Kq -KH -Lb -Lc -LC -LM -Ke -Ke -Ke -Ke -Ke -Ke -Ke -Mj -Mm -Mo -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(51,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -vF -vT -vU -vU -vV -vE -wj -wA -vE -xl -xI -yc -yD -zg -zK -zg -zG -Bg -BK -Ck -JE -JS -Kf -Ks -KI -Lc -Lc -LE -Ke -Ke -LW -LZ -Mb -Mb -Mb -Mb -Mk -Mm -Mo -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(52,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -vp -vG -vE -wk -wB -vE -xm -xm -yd -yE -zf -zL -Aq -AK -Br -BR -Aq -Br -JT -Kf -Ks -KJ -Lc -Lr -Ke -Ke -dn -dn -LZ -Mc -Mb -Mb -Mb -Mb -Mm -Mo -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(53,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -vH -vW -vp -wC -Je -xm -Jg -Ji -yF -zg -zM -Ar -Ar -Bs -BS -Cp -Ar -JU -Kf -Kt -KK -Kt -Ke -Ke -dn -dn -dn -Ma -Md -Md -Md -Md -Md -Mn -Mo -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(54,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -vp -vp -vp -xm -xK -yf -yG -zg -zN -zf -zf -zf -zf -zf -zf -zg -Kf -Ku -KL -Ld -Ls -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Mo -Mo -Mo -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(55,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -vp -xn -xn -yg -xn -zf -zO -zf -AL -AL -AL -Cq -JF -JV -Ke -Kv -KM -Le -Lt -dn -dn -eJ -eJ -eJ -eJ -eJ -eJ -dn -dn -dn -dn -Mo -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(56,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gX -mB -nC -gX -gX -gX -qo -mB -gX -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -dn -dn -dn -vq -yH -zg -zP -zg -AM -Bt -Bt -Bt -Bt -JW -Kf -Kt -KN -Kt -Kf -dn -Ea -EB -EB -EB -EB -EB -EB -EB -Er -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(57,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -mB -ne -ne -ne -ne -ne -ne -ne -mB -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -dn -dn -dn -vq -yI -zh -zQ -yI -Bt -Bt -BT -Bt -BT -zh -uW -kR -KO -qO -dn -eJ -Kg -eJ -dn -dn -dn -dn -eJ -eJ -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(58,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -gX -ne -ne -ne -ne -ne -ne -ne -gX -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -vm -vg -vg -vg -vn -yI -zh -zQ -yI -AN -Bt -BU -Bt -BU -zh -dn -eJ -eJ -eJ -eJ -Ea -Fj -ad -ad -ad -dn -Me -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(59,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bZ -ct -ct -ct -bZ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -gX -ne -ne -ne -ne -ne -ne -ne -gX -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -eJ -vq -eJ -dn -dn -dn -yJ -zi -zQ -As -AO -AO -BV -AO -BV -zi -Ea -EB -EB -EB -EB -Fj -ad -ad -ad -ad -ad -ks -dn -dn -Ed -EB -Er -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(60,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ca -cu -cS -dq -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -mC -ne -ne -ne -ne -ne -ne -ne -mC -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -eJ -vq -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -Kg -eJ -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(61,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -cb -cv -cS -dr -ae -ae -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -mB -ne -ne -ne -ne -ne -ne -ne -mB -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -dn -eJ -Jd -EB -EB -EB -EB -EB -EB -EB -EB -EB -EB -EB -EB -EB -EB -Fj -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(62,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -bL -cc -cw -cT -ds -ae -ee -ae -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -jL -jL -jL -nD -nY -oM -pA -qp -qr -qr -qr -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -dn -eJ -vq -dn -dn -dn -dn -dn -dn -dn -dn -yK -dn -dn -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(63,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aG -aT -ae -bw -bM -ae -cx -cU -cx -ae -ef -ef -ae -ae -af -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jR -kb -jK -mD -mD -nE -nZ -oN -pB -nE -qP -ru -qr -sr -sZ -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -dn -eJ -vq -dn -dn -dn -dn -yK -dn -zR -zR -zR -zR -zR -ad -ad -ad -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(64,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aH -aU -bi -bx -bN -ae -cy -cV -dt -ae -eg -eg -eL -ae -af -af -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -jK -jS -lz -ke -mE -nf -nF -oa -oO -pC -nE -qQ -rv -rR -ss -ta -qr -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -dn -dn -eJ -vq -dn -dn -dn -dn -wY -wY -zR -At -AP -Bu -zR -AX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -sq -ks -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(65,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -aI -aV -bj -by -bO -ae -cz -cW -du -ae -eh -ev -eM -ae -fg -af -af -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -jK -jK -kS -kT -lZ -mF -mF -nG -nY -oP -pA -qq -qQ -rw -rS -st -tb -qr -qr -dn -dn -dn -dn -dn -dn -aa -aa -dn -dn -dn -eJ -vq -dn -dn -dn -wY -wY -zj -zR -Au -AQ -Bv -zR -Cr -AX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -eJ -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(66,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aw -aJ -aW -bk -bz -bP -cd -cA -cX -dv -dL -ei -ev -eN -ae -ar -fu -af -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -jK -xR -kT -lA -ma -mG -mF -mF -ob -oQ -pD -qr -qR -rx -rT -su -tc -tA -qr -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -vq -dn -dn -wY -wY -yL -zk -zR -zR -AR -zR -zR -Cr -JG -AX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Ed -Er -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(67,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -ax -aJ -aX -bl -bA -bQ -ce -cB -cY -cB -dM -ej -ev -eO -ae -fh -fv -af -af -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -jR -kb -ku -kU -lB -mb -mH -mF -mF -mF -oR -pE -qs -qS -ry -rU -sv -td -Ao -qr -qr -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wD -wX -wX -wY -yh -yM -zl -zS -Av -AS -AX -BW -BA -BA -JX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(68,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ao -ay -aK -aY -bm -bB -bR -cf -cC -cY -dw -dN -ek -eg -eP -ae -aj -ar -fC -af -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -jS -kc -kv -kV -lC -lZ -mI -ng -jL -oc -oS -pF -qr -qT -rz -rV -sw -te -tC -ub -qr -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wE -wY -wZ -wY -wY -Jn -zm -zT -zT -AT -AX -BX -BA -BA -BA -AX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(69,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -ap -az -aJ -aZ -bn -bC -ae -ae -cD -cZ -cD -ae -ae -ew -ew -ae -iw -ar -fC -af -af -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -jK -jK -kd -kw -kW -lD -ma -mJ -jL -jL -od -oT -pG -qr -qr -rA -rW -sx -tf -tf -tf -qr -qr -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wE -wZ -xo -xL -wZ -yO -zn -zU -zT -AU -Bw -BY -BA -JH -JY -Kh -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -Ed -EB -EB -Er -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(70,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ah -ah -ah -aL -aT -ae -ae -ae -cg -cE -da -dx -dO -ae -ae -ae -ae -fi -af -af -af -af -go -gE -gX -gE -hD -ic -ha -aa -aa -aa -aa -aa -dn -dn -dn -aa -aa -aa -aa -gX -gE -go -jK -jT -ke -kx -kX -kx -mc -jK -jL -nH -oe -oU -pF -qt -jL -qr -qr -sy -tg -tg -tg -tg -qr -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wF -xa -xp -xM -Jj -yP -zo -zV -xp -AV -Bx -BZ -Jx -JI -JZ -Ki -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(71,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -af -ai -aq -aA -aM -ba -bo -bD -bS -ch -cF -db -dy -dP -bS -bD -eQ -eY -fj -af -fD -fM -ga -gp -gF -gY -hl -hE -gF -it -ic -ic -ic -ic -gE -gE -gE -gE -gE -ic -ic -ic -jF -hl -kf -jL -jU -mf -ky -kY -lE -md -mK -nh -nI -me -xw -pH -qu -qU -qy -rX -sz -th -tD -uc -uw -qw -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wG -wZ -xo -xN -wZ -yQ -zp -Js -Ju -AW -Bw -Ca -Ct -JJ -Ka -Kh -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(72,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -af -aj -ar -aB -aN -bb -bp -bE -bT -ci -cG -af -dz -dQ -el -ex -eR -el -fk -fw -fE -fN -gb -gq -gG -gZ -gG -hF -id -iu -iD -iT -iT -jm -iT -iT -iT -iT -iu -iT -iD -iT -iT -jG -jI -jM -jV -kg -jV -kZ -lF -jV -mL -jV -nJ -of -jL -pI -mF -qV -qz -rY -sA -sD -tE -ud -ux -qB -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wH -wY -wZ -xO -xO -xO -zq -xO -xO -AX -AX -Jw -Ct -BA -BA -AX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(73,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -af -ak -as -aA -aO -bc -bq -bF -bU -cj -cH -dc -dA -dR -em -ey -eS -eZ -fl -af -fF -wW -af -gr -gH -gH -gH -hG -ie -CA -iE -iE -iE -jn -iE -jz -iE -iE -iv -iE -iE -iE -iE -jn -kt -jN -jW -kh -kz -la -lG -me -mK -ni -nK -og -oW -pJ -me -qW -qA -rZ -sB -ti -tE -ue -uy -qw -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wH -lx -xq -xO -yj -yR -zr -zX -xO -AY -Jv -Cc -Ct -BA -Kb -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(74,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ag -al -al -al -aP -bd -ag -ag -ag -ck -cI -dd -dB -dS -dT -dT -dT -fa -fm -af -af -af -af -gs -gI -gI -hm -hH -Cz -CB -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -gs -jO -jX -ki -kA -lb -lH -jO -jO -jL -nL -oh -oX -pK -qv -jL -qw -qw -qB -tj -tF -qB -qx -qw -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wH -lx -xr -xO -yk -yS -zs -zY -xO -AZ -Bz -Cd -Cu -JK -AX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(75,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ag -ag -at -aC -aQ -be -br -bG -ag -ag -cJ -de -cJ -dT -dT -ez -eT -fb -fn -fb -fG -dT -dT -aa -aa -ha -hb -hH -if -ix -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -jO -jO -kj -kl -lc -lI -us -mM -jO -jO -ww -oY -ze -qw -qw -rB -sa -sC -sD -sD -uf -qw -qw -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wH -lx -xq -xO -Jk -yT -zt -zZ -xO -Ba -BA -Ce -Cv -AX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(76,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ag -at -at -aR -bf -aQ -bH -bH -ag -cK -df -dC -dT -en -eA -eU -eU -fc -eU -fH -dT -aa -aa -aa -aa -hb -hI -if -iy -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -ad -ad -dn -dn -dn -jO -kk -kl -ld -lJ -mg -kl -nj -jO -oi -oZ -oi -qw -qX -rC -sb -sD -sD -sD -uf -qw -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wI -xb -xs -xO -ym -yU -zu -Aa -xO -Bb -Bb -AX -AX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(77,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ag -ag -aD -aE -bg -bs -bI -bV -ag -cL -dg -dD -dT -eo -eB -eU -fc -fd -fx -fz -fz -fP -gc -gJ -aa -hb -hJ -ig -iy -aa -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -dn -dn -jO -jO -kB -lc -lI -mh -mh -mh -jO -oj -pa -pL -qw -qY -rC -sb -sD -sE -tG -qw -qw -qw -qw -qw -dn -dn -dn -dn -dn -dn -eJ -vm -wJ -lx -xt -xO -yn -yV -zv -Ab -xO -AX -AX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Ed -Er -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(78,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ag -aE -aE -aQ -aQ -bJ -bJ -al -cM -dh -dE -dU -ep -eC -eV -fd -fo -fy -fz -fP -gc -gc -gK -aa -hb -hH -if -iy -aa -aa -aa -aa -aa -dn -dn -dn -dn -dn -dn -ad -ad -dn -dn -dn -dn -jO -kC -le -lI -mi -mN -nk -jX -ok -pb -pM -qx -qZ -rC -sb -sD -sL -tH -ug -uz -uL -uX -qw -dn -dn -dn -dn -dn -vm -vg -vn -kR -mA -mA -xO -yo -yV -zw -Ac -xO -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(79,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ag -ag -aS -aQ -aQ -bK -bW -bW -bW -di -bW -bW -bW -eD -eW -fc -fp -fz -fz -fI -fQ -gc -gJ -aa -hb -hH -if -iy -aa -aa -aa -aa -aa -dn -dn -dn -dn -dn -dn -ad -dn -dn -dn -dn -dn -jO -jO -lf -lI -mj -mO -nl -kD -ol -pc -pN -qx -ra -rC -sb -sE -tk -tI -uh -uA -uM -uY -qw -dn -dn -dn -dn -eJ -vq -eJ -dn -dn -dn -dn -xO -yp -yV -zx -Aa -xO -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(80,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ag -ag -bh -bt -bh -bW -cl -cN -dj -dF -dV -bW -eE -eX -fe -fq -fz -fI -fQ -fQ -gc -gK -aa -hb -hH -if -iy -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -dn -dn -dn -dn -jO -lg -lI -mk -mk -mk -kE -om -pc -pO -qy -rb -rD -sc -sF -tl -tJ -ui -uB -uN -uZ -qw -dn -dn -dn -dn -eJ -vq -dn -dn -dn -dn -xc -xO -yq -yW -zy -Ad -xO -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(81,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ag -ag -ag -al -bW -cm -cO -dk -dG -dW -bW -eF -dT -dT -dT -ad -dn -dn -dn -aa -aa -aa -hb -hK -ih -iy -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -dn -dn -dn -dn -kD -lh -lK -ml -mP -kl -kF -on -pd -pO -qz -rc -rE -sd -sG -tl -tK -qw -qw -qw -qw -qw -dn -dn -dn -dn -eJ -vq -dn -dn -dn -xc -dn -xO -yq -yX -yX -Ad -xO -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ks -oL -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(82,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ag -ag -bW -cn -cP -dl -dH -dX -bW -eG -dT -ad -ad -ad -dn -dn -dn -dn -aa -aa -hb -hH -if -iy -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -dn -dn -kE -li -lL -jX -jX -jX -jX -oo -pc -pP -qA -rd -rF -se -sH -tl -tL -uj -uC -uO -va -qw -dn -dn -dn -dn -eJ -vq -dn -dn -dn -dn -dn -xO -xO -xO -xO -xO -xO -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(83,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bW -co -bW -dm -dI -dY -bW -eH -dT -ad -ad -ad -ad -dn -dn -dn -aa -ha -hn -hH -if -iy -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -dn -dn -kE -lj -lM -mm -mQ -nm -jO -op -pe -op -qw -re -rG -sd -sI -tm -tM -uk -uD -uP -vb -qw -dn -dn -dn -dn -eJ -vq -dn -ad -dn -dn -xu -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(84,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -cp -aa -aa -dn -dZ -eq -eI -ad -ad -ad -ad -ad -dn -dn -dn -aa -hb -hl -hL -if -iy -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -kE -li -kl -jX -mR -nn -jO -oq -pf -pQ -qB -rf -rH -sf -sJ -tl -tN -ul -uE -uQ -vc -qw -dn -dn -dn -dn -eJ -vq -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(85,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -cp -aa -aa -dn -ea -er -eJ -ad -ad -ad -ad -dn -dn -dn -dn -dn -hc -ho -hM -ii -iz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -kF -li -kl -jX -jX -jX -jX -or -pg -pR -qC -rg -rI -sg -sK -tn -tO -qw -qw -qw -qw -qw -dn -dn -dn -dn -eJ -vq -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(86,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dZ -ad -ad -ad -ad -ad -ad -ad -ff -gt -gL -hd -ff -hN -ff -hd -gt -gL -ff -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -jO -yl -lM -mn -mQ -nm -jX -os -ph -pS -qB -rh -rh -sh -sF -tl -tP -um -uF -uR -vd -qw -dn -dn -dn -dn -eJ -vq -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(87,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ad -ad -ad -ff -ff -gu -gM -ff -hp -hO -ij -ff -iG -iU -ff -ff -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -jO -jO -ur -kl -jX -mR -nn -jX -ot -ph -pT -qx -ri -rJ -sb -sL -tk -tQ -un -uG -uS -ve -qw -dn -dn -dn -dn -eJ -vq -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(88,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ad -ad -ff -ff -gd -fS -gN -ff -hq -hP -ik -ff -jk -iV -jb -ff -ff -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -jO -kG -ll -lN -jX -jX -jX -jX -ou -pi -pU -qx -rj -rC -sb -sF -to -tR -uo -uH -uT -vf -qw -dn -dn -dn -dn -eJ -vq -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(89,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ad -ff -ff -fR -fS -fS -gO -ff -hr -hQ -il -ff -iI -fS -jc -jo -ff -ff -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -jO -jO -kH -lm -lM -mo -mS -no -jO -ov -ph -pV -qw -rk -rC -sb -rZ -rZ -tS -qw -qw -qw -qw -qw -dn -dn -dn -dn -eJ -vq -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(90,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dZ -ad -ad -ad -ad -ff -fJ -fS -ge -fS -ge -ff -ff -hR -ff -ff -iJ -iV -ge -jp -jx -ff -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -jO -kl -kl -ln -kl -jX -yN -np -jO -oi -pj -pW -qw -ri -rJ -sb -sM -tp -tp -up -qw -dn -dn -dn -dn -dn -dn -dn -eJ -vq -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(91,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -eb -es -ad -ad -ff -ff -ff -ff -ff -fK -gv -gP -he -hs -hS -hi -iA -iK -hg -iS -ff -ff -ff -ff -ff -jE -aa -aa -aa -aa -dn -dn -jO -jO -km -kI -lo -lO -jX -mU -jO -jO -ow -pk -pX -qw -qw -za -si -sN -tq -tT -uq -qw -qw -dn -dn -dn -dn -dn -vm -vg -vn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -sq -ks -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(92,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ff -fr -fr -fr -fT -gf -gw -gQ -hf -ht -hT -hf -hf -iL -iW -je -jq -jj -jA -fr -jD -jE -aa -aa -aa -aa -dn -dn -jP -jP -jP -jP -jP -jP -jP -jP -nq -nM -ox -pl -pY -qD -nq -qw -qw -sO -qB -tU -tU -tU -uU -dn -dn -dn -dn -eJ -vq -eJ -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(93,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ff -fZ -fA -fr -fU -gh -gx -gR -hg -hu -hU -hi -gv -iM -gx -jf -jr -fr -fr -fr -jD -jE -aa -aa -aa -dn -dn -dn -jP -jY -lR -kJ -lp -lP -mp -mV -nr -nN -oy -pm -pZ -qE -rl -rL -sj -sP -tr -tU -Fh -uI -uU -dn -dn -dn -vm -vg -vn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(94,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ff -fr -fs -fB -fV -gi -gy -gR -gx -hv -hV -im -gx -iM -iX -jd -js -fr -jh -jC -jD -jE -aa -aa -aa -dn -dn -dn -jP -jZ -ko -kK -lq -lQ -mq -mW -ns -nO -oz -nq -qa -qF -rm -rM -sk -sQ -ts -tV -Fi -uJ -uV -vg -GJ -vg -vn -eJ -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(95,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ff -ft -ft -ft -ff -gm -gz -gS -hh -hw -ff -in -iB -iN -iY -jw -ff -ft -ft -ft -ff -jE -aa -aa -aa -dn -dn -dn -jP -ka -kp -mu -lr -kL -mr -mX -nt -nP -oA -pn -qb -qG -rn -qL -sl -sR -tt -tW -ut -uK -uU -vh -Eb -eJ -eJ -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(96,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ff -fr -fr -fr -fW -gg -gA -gR -fS -hx -hW -io -gx -iM -iB -ji -jt -jj -jA -fr -ff -ad -aa -aa -dn -dn -dn -dn -jP -ka -kn -mu -ls -nu -ms -jP -nq -nQ -ow -po -qc -qH -nq -qI -qI -sS -tu -tU -tU -tU -uU -eJ -Eb -eJ -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(97,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ff -fZ -fr -fr -fX -gh -gx -gR -fS -fS -hX -hi -hh -iM -gx -jf -ju -fr -fA -fr -ff -ad -ad -ad -ad -dn -dn -dn -jQ -jQ -kq -kq -kq -kq -mt -kq -jQ -jQ -ow -pk -qd -qI -qI -rN -sm -sT -tv -tX -uu -qI -qI -eJ -Eb -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(98,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ff -fr -fs -fB -fY -gl -gB -gR -ge -ge -hY -ge -ge -iM -iZ -gU -jv -fr -jh -fr -ff -ad -ad -ad -ad -ad -ad -ad -ad -jQ -kr -kM -lt -lS -mv -lt -tB -jQ -oB -pp -qe -qI -ro -rO -rq -sU -rq -sW -uv -qI -eJ -eJ -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(99,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ff -ff -ff -ff -ff -gk -gC -gT -hi -hy -hZ -ip -hi -iO -ja -jg -ff -ff -ff -ff -ff -ad -ad -ad -ad -ad -ad -ad -ad -jQ -jQ -kN -lu -lT -rK -mY -nv -jQ -oC -pq -qf -qI -rp -rP -sn -sV -tw -tY -qI -qI -eJ -Ea -Fj -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(100,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ad -ad -ff -fL -fS -ge -gD -iq -hk -hz -ia -iq -hk -hz -iR -ge -fS -jy -ff -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -jQ -kO -lv -lU -mw -mZ -nw -nR -oD -pr -qg -qJ -rq -rq -so -rq -sW -tZ -qI -eJ -Ea -Fj -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(101,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ad -ad -ff -ff -gj -fS -ff -gV -hj -hA -ff -ir -iC -iP -ff -fS -jJ -ff -ff -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -jQ -jQ -lw -lV -mx -na -nx -nS -ns -ps -qh -qJ -rq -rq -rq -sW -tx -qI -qI -eJ -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(102,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ad -ad -ad -ff -ff -gn -ff -fr -fr -hB -ib -is -fr -iH -ff -jl -ff -ff -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -jQ -jQ -lW -my -nb -ny -nT -oE -pt -qi -qK -rr -rr -sp -sX -ty -qI -eJ -Ea -Fj -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(103,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ad -ad -ad -ad -ff -ff -ff -gW -fr -hC -ib -is -fr -iQ -ff -ff -ff -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -kP -jQ -lX -jQ -nb -nz -nU -oF -pu -qj -qL -rs -rQ -qI -sY -tz -eJ -Ea -Fj -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -HC -oL -dn -dn -dn -Kg -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(104,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ad -ad -ad -ad -ad -ad -ff -fr -jh -hC -ib -is -jh -fr -ff -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -kP -lx -lY -jQ -nc -jQ -nV -oG -pv -oG -nV -qI -qI -qI -eJ -eJ -Ea -Fj -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Kg -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(105,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dZ -ad -ad -ad -ad -ad -ad -ad -ad -ad -ff -ff -ff -ff -ff -ff -ff -ff -ff -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -kP -lx -lY -mz -nd -nA -nq -oH -pw -qk -nq -rt -eJ -eJ -Ea -EB -EU -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -Kg -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(106,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dZ -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ks -kQ -lx -lY -lx -nd -nB -nW -oI -px -ql -nW -eJ -eJ -eJ -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Ea -Fj -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(107,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dZ -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -kR -ly -lx -lx -nd -lx -nX -oJ -py -qm -qM -eJ -eJ -eJ -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Ea -Fj -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(108,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -do -dJ -ec -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -kR -ly -lx -lx -lx -lx -oK -pz -qn -qN -eJ -eJ -dn -Eb -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Ea -Fj -eJ -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(109,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dp -cr -ed -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -kR -mA -mA -mA -mA -mA -mA -mA -qO -eJ -eJ -dn -Eb -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -eJ -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(110,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -am -am -cq -am -am -cr -cr -eu -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -eJ -eJ -eJ -dn -Ea -Eq -ks -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -eJ -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(111,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -am -am -am -au -cr -au -am -dK -am -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -eJ -eJ -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Mq -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(112,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -am -am -au -eK -bX -cr -bY -eK -au -am -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -eJ -dn -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(113,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -am -am -au -au -au -bX -cr -bY -au -au -au -am -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -eJ -eJ -dn -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(114,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -am -am -au -au -au -au -bX -cr -bY -au -au -au -au -am -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -eJ -eJ -dn -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(115,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -am -au -au -au -bu -au -bX -cr -bY -au -cQ -au -au -au -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -eJ -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(116,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -am -am -aF -au -au -au -bu -au -cr -au -cQ -au -au -au -mT -am -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -eJ -eJ -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(117,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -am -au -au -au -au -au -au -bu -cr -cQ -au -au -au -au -au -au -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -eJ -eJ -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(118,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -am -av -cs -au -au -au -au -bY -cr -bX -au -au -au -au -oV -av -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -eJ -dn -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(119,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -am -au -au -au -au -au -au -bv -av -cR -au -au -au -au -au -au -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -eJ -eJ -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(120,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -an -am -aF -au -au -au -bv -au -au -au -cR -au -au -au -mT -am -an -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -eJ -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(121,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -am -au -au -au -bv -au -au -au -au -au -cR -au -au -au -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -eJ -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(122,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -am -am -au -au -au -au -au -au -au -au -au -au -au -am -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -eJ -dn -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Kg -Mr -ks -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(123,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -am -am -au -au -au -au -au -au -au -au -au -am -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -eJ -eJ -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Kg -eJ -eJ -eJ -eJ -eJ -eJ -eJ -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(124,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -am -am -au -fO -au -lk -au -fO -au -am -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -eJ -eJ -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Ed -EB -EB -EB -EB -EB -Er -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -OT -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(125,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -am -am -am -au -av -au -am -am -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -eJ -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -ad -eJ -eJ -eJ -eJ -eJ -Kg -Mw -wX -wX -wX -wX -wX -wX -wX -wX -wX -wX -OQ -eJ -eJ -Mw -wX -wX -wX -OQ -eJ -eJ -Rw -ha -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(126,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -am -am -an -am -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -Ec -ks -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -Kg -Mx -MG -MO -mA -mA -mA -mA -NR -MG -MO -mA -qN -eJ -eJ -kP -NR -MG -MO -qN -eJ -eJ -MG -aa -ha -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(127,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -eJ -dn -Ed -Er -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ks -oL -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -Kg -kP -MH -aa -aa -aa -aa -aa -aa -aa -aa -aa -OR -eJ -eJ -PV -aa -aa -aa -OR -eJ -eJ -Rx -aa -aa -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(128,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -eJ -eJ -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -Kg -kP -MH -ha -ha -ha -ha -ha -ha -ha -ha -ha -OS -eJ -eJ -OS -ha -ha -ha -OS -eJ -eJ -OS -ha -ha -ha -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(129,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -eJ -dn -Ed -Er -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -Kg -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(130,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -Kg -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(131,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -eJ -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -Kg -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(132,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Ed -Er -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -dn -Mq -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(133,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -dn -Kg -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(134,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -eJ -dn -dn -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -dn -Kg -kP -MI -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(135,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -Kg -kP -MG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(136,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Ed -EB -Er -ks -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -Kg -kP -MJ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(137,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -Eb -uW -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -Kg -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(138,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -eJ -dn -dn -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -Kg -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(139,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ks -oL -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Eb -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -Kg -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(140,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Eb -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Kg -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -DE -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(141,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Eb -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Kg -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(142,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Eb -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Mq -kP -MH -ha -ha -ha -ha -ha -ha -ha -ha -ha -OT -eJ -eJ -OT -ha -ha -ha -OT -eJ -eJ -OT -ha -ha -ha -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(143,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -eJ -dn -Eb -eJ -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -Kg -kP -MH -aa -aa -aa -aa -aa -aa -aa -aa -aa -OR -eJ -eJ -OR -aa -aa -aa -OR -eJ -eJ -Rw -aa -aa -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(144,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Eb -eJ -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -Kg -Mx -MG -MP -wX -wX -wX -wX -NS -MG -MP -wX -qN -eJ -eJ -kP -NS -MG -MP -qN -eJ -eJ -MG -aa -ha -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(145,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -Eb -eJ -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -Kg -kR -mA -mA -mA -mA -mA -mA -mA -mA -mA -mA -qO -eJ -eJ -kR -mA -mA -mA -qO -eJ -eJ -Rx -gX -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(146,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -Eb -eJ -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -Kg -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -OS -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(147,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Eb -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -Kg -eJ -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(148,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Eb -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -ad -ad -ad -ad -Kg -eJ -ad -ad -ad -ad -ad -ad -eJ -eJ -eJ -eJ -eJ -eJ -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -ha -ha -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(149,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -ad -ad -Kg -eJ -ad -ad -ad -ad -eJ -eJ -eJ -eJ -eJ -eJ -OU -Po -Po -Po -Po -Po -Po -Po -Po -Po -Po -Po -Po -Po -Po -RV -RZ -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(150,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ks -oL -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -ad -ad -ad -Kg -eJ -ad -ad -eJ -eJ -eJ -eJ -eJ -MQ -MQ -MQ -OV -MQ -MQ -MG -ad -ad -Qx -QP -QP -QP -QP -QP -QP -QP -QP -RW -ha -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(151,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -ad -ad -ad -Kg -eJ -eJ -eJ -eJ -eJ -eJ -MQ -MQ -MQ -Ol -Ox -OV -Pp -PH -MG -MG -MG -Qy -ad -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(152,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -ad -Kg -eJ -eJ -eJ -eJ -MQ -MQ -MQ -NT -MQ -Om -Oy -OV -Pq -PI -MG -Qb -MG -Qz -MG -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(153,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -Kg -eJ -eJ -eJ -MQ -MQ -Nr -NE -NU -MQ -On -Oz -OW -Oz -PJ -MG -Qc -MG -QA -MG -MG -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(154,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -eJ -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -Kg -eJ -eJ -MQ -MQ -Nh -Ns -NF -NV -Od -Oo -OA -OX -Pr -PK -MG -Qd -Qd -Qd -QQ -MG -MG -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(155,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -ad -ad -Kg -eJ -eJ -MQ -MQ -MQ -Nt -NG -NW -Oe -Op -OB -OY -Ps -PL -MG -Qd -Qo -Qo -Qd -Ra -Rl -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(156,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -ad -ad -Kg -eJ -My -My -MZ -My -Nu -Ns -NX -MQ -Oq -OC -NV -Pt -PM -MG -Qe -Qp -QB -QR -Rb -MG -MG -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(157,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Ed -Er -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -eJ -Kg -eJ -My -MR -Na -Ni -Nv -NH -NX -MQ -Oq -OD -OZ -Pu -PM -MG -Qf -Qq -QC -Qd -Qd -Rm -MG -dn -dn -dn -dn -dn -dn -dn -Sd -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(158,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -Kg -eJ -My -MS -Nb -My -Nw -NI -NX -MQ -MQ -OE -Pa -OE -MQ -MG -Qg -Qr -QD -Qd -Qd -Rn -MG -My -RK -RH -eJ -eJ -dn -dn -ks -gX -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(159,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -eJ -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -eJ -eJ -dn -eJ -Ms -My -My -My -My -My -Nx -MQ -MQ -MQ -Or -OF -Pb -Pv -Or -MG -MG -MG -QE -QS -Rc -MN -MN -RD -RL -RL -RL -RL -RL -RL -RL -ks -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(160,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -eJ -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -eJ -eJ -eJ -eJ -eJ -Mt -Mz -MK -MT -Mz -Nj -Ny -NJ -NY -Of -Os -OG -Pc -Pw -Os -Of -NY -Qs -Ny -Os -Rd -Ro -Ry -Rd -RL -RL -RL -RL -RL -RL -RL -eJ -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(161,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -eJ -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -ad -ad -ad -ad -dn -Ea -Mu -MA -ML -MU -Nc -Nk -Nz -NK -NZ -Og -NK -OH -My -Px -PN -Og -NZ -NK -QF -QT -Re -Rp -Os -RE -RL -RL -RL -RL -RL -RL -RL -eJ -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(162,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -eJ -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -Eb -kR -MB -MM -MV -MB -Nl -NA -NL -Oa -Oh -NL -OI -Pd -Py -NL -Oh -Oa -Qt -QG -QU -MB -Rq -Rz -RF -RL -RL -RL -RL -RL -RL -RL -eJ -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(163,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -EA -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -Eb -Mv -MC -MN -MN -Nd -MD -NB -MD -MD -MD -Ot -Nl -Pe -Pz -PO -PP -PP -PP -QH -PQ -MC -MN -MN -RG -RL -RL -RL -RL -RL -RL -RL -ks -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(164,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Eb -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -Eb -eJ -MD -MD -MW -Ne -Nm -NC -NM -Ob -MD -MD -Of -Pf -Of -PP -PP -Qh -Qu -QI -PY -PY -Rr -PP -My -RK -RH -eJ -eJ -eJ -eJ -ks -gX -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(165,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Eb -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -dn -Ed -EB -ME -MD -MX -Ne -Nn -ND -NN -Ne -Oi -MD -Os -Ny -PA -PP -PW -Qi -PY -QJ -PY -PY -Rs -PP -eJ -dn -dn -dn -dn -dn -dn -Se -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(166,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Eb -dn -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -dn -eJ -eJ -MF -MD -MD -Nf -Ne -Ne -NO -Ne -Oj -MD -OJ -Ny -Os -PP -PX -Qj -Qv -QK -QV -Rf -PP -PP -eJ -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(167,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -Eb -dn -dn -dn -dn -dn -eJ -eJ -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -eJ -eJ -eJ -MY -Ng -Ne -Ne -NP -Ne -Ne -Ou -Os -Ny -Os -PQ -PY -PY -PY -PY -PY -Rg -Rt -eJ -eJ -dn -RN -RN -RN -RN -RN -gX -RN -RN -RN -RN -Sb -RN -RN -Sb -RN -RN -RN -Sv -Sx -Sv -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(168,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -Eb -eJ -dn -dn -eJ -dn -dn -dn -eJ -eJ -eJ -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -eJ -eJ -MD -MD -No -Ne -Ne -Ne -Ne -Ou -Os -Ny -Os -PQ -PY -PY -PY -PY -QW -PP -PP -eJ -dn -dn -dn -gX -dn -dn -dn -gX -dn -dn -dn -gX -dn -dn -gX -dn -Iy -Iy -St -Sw -Iy -Sv -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(169,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ks -oL -dn -eJ -Eb -eJ -eJ -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -eJ -MD -Np -Ne -Ne -Ne -Ok -MD -OK -Pg -PB -PP -PZ -PY -PZ -QL -PP -PP -ad -dn -dn -dn -RO -RP -RX -Sa -RP -RX -RO -Sg -RX -RO -RP -Sk -RO -Sl -Sk -Sa -Su -Sk -Iy -Sv -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(170,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Eb -dn -dn -dn -Hn -HC -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -dn -dn -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -eJ -eJ -MD -Nq -Ne -NQ -Oc -MD -MD -OL -Ny -Os -PP -PP -Qk -PP -PP -PP -ad -ad -dn -dn -dn -RO -RQ -RX -Sa -RQ -RX -RO -Sh -RX -RO -RQ -Sk -RO -Sm -Sk -Sa -Sm -Sk -Iy -Sv -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(171,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -eJ -dn -Eb -dn -eJ -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -dn -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -eJ -MD -MD -MD -MD -MD -MD -Ov -Os -Ph -ML -PR -PP -PP -PP -ad -ad -ad -ad -dn -dn -dn -RO -RQ -RX -Sa -RQ -RX -RO -Sh -RX -RO -RQ -Sk -RO -Sn -Sk -Sa -Sm -Sk -Iy -Sw -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(172,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -eJ -dn -Ed -EB -EB -GX -EB -Er -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -dn -ad -ad -ad -MD -Ow -Ow -Pi -Ow -Ow -PP -ad -ad -ad -ad -ad -dn -dn -dn -dn -RO -RQ -RX -Sa -RQ -RX -RO -Sh -RX -RO -RQ -Sk -RO -Sn -Sk -Sa -Sm -Sk -Iy -Sw -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(173,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -eJ -eJ -eJ -eJ -eJ -eJ -eJ -dn -Eb -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ow -OM -Pj -PC -Ow -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -RO -RQ -RX -Sa -RQ -RX -RO -Sh -RX -RO -RQ -Sk -RO -Sm -Sk -Sa -Sm -Sk -Iy -Sx -Sz -Sz -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(174,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ua -eJ -eJ -eJ -FY -eJ -eJ -eJ -ua -Eb -HW -Io -Iz -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ow -ON -Pk -PD -Ow -Ow -Ow -Ow -Ow -Ow -Rh -Rk -RA -RH -dn -dn -RR -dn -dn -Sc -Sf -dn -Sc -dn -Sf -Sc -dn -dn -So -dn -Iy -So -Iy -Iy -Sy -Sw -Iy -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(175,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Cx -Cx -EC -EV -Fk -EV -EC -EV -GK -EV -EC -HD -HX -Ip -Ip -Ip -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -KP -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ow -OO -Pl -PE -PS -Qa -Ql -Qw -QM -QX -Ri -Ru -RB -RI -RM -RM -RS -RY -RY -RS -RY -RY -RS -RY -RY -RS -RY -RY -Sp -Ss -Ss -Sp -Ss -Ss -Ss -SA -Sw -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(176,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Dq -Dq -Es -EC -EW -Fl -FB -EC -Gt -Fl -GY -ED -HE -HY -Iq -Ip -Ip -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ow -OP -Pm -PF -PT -PT -Qm -Qm -QN -QY -Rj -Rv -QY -RJ -dn -dn -RR -dn -dn -Sc -Sf -dn -Sc -dn -Sf -Sc -dn -dn -So -Iy -Iy -So -Iy -Iy -Sy -Sw -Iy -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(177,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -wu -wu -wu -Dq -Dq -Ee -Et -EC -EX -Eh -FB -EC -Gt -Eh -GZ -ED -HF -HZ -Ir -IA -Ip -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ow -Ow -Pn -PG -PU -PC -Qn -Qn -QO -QZ -Rk -Rk -RC -dn -dn -RO -RT -RX -Sa -RT -RX -RO -Si -RX -RO -RT -Sk -RO -Sq -Sk -Sa -Sq -Sk -Iy -Sw -Sz -Sz -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(178,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -wu -wu -Aw -Dd -Dr -DF -Ef -Eu -EC -EW -Eh -FC -EC -Gu -Eh -GY -ED -HG -HZ -Is -IB -Ip -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ow -Ow -Ow -Ow -Ow -Ow -Ow -Ow -Ow -ad -ad -dn -dn -dn -RO -RT -RX -Sa -RT -RX -RO -Si -RX -RO -RT -Sk -RO -Sq -Sk -Sa -Sq -Sk -Iy -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(179,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -wu -xJ -By -De -Ds -DG -Eg -Ev -ED -EY -Fm -EY -EC -EY -GL -EY -ED -HH -Ia -It -IC -Ip -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -RO -RT -RX -Sa -RT -RX -RO -Si -RX -RO -RT -Sk -RO -Sq -Sk -Sa -Sq -Sk -Iy -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(180,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -wu -zA -Cs -Df -Dt -Dt -Dt -Ew -EE -EZ -Fn -FD -FZ -Gv -Fo -Ha -ED -HI -HI -HI -ID -Ip -ad -ad -ad -ad -ad -dn -dn -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -RO -RT -RX -Sa -RT -RX -RO -Si -RX -RO -RT -Sk -RO -Sq -Sk -Sa -Sq -Sk -Iy -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(181,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -wu -ye -CR -Dg -zW -DH -DH -DH -EF -Fa -Fo -FE -Ga -FE -Fo -Hb -EF -HJ -HJ -HJ -ID -Ip -ad -ad -ad -ad -ad -dn -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -RO -RU -RX -Sa -RU -RX -RO -Sj -RX -RO -RU -Sk -RO -Sr -Sk -Sa -Sr -Sk -Iy -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(182,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -wu -yi -CR -Dh -zW -DI -Eh -Eh -EG -Fb -Fp -FF -Gb -FF -GM -Hc -Ho -HK -HK -Iu -IE -Ip -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -gX -dn -dn -dn -gX -dn -dn -dn -gX -dn -dn -gX -Iy -Iy -Iy -St -Iy -Iy -Sv -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(183,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -wu -yi -CS -Di -zW -DJ -Ei -Ei -ED -Fc -Fq -FG -Gc -FG -GN -Hd -ED -HL -Ib -Ib -IF -Ip -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -RN -RN -RN -RN -Sb -RN -RN -RN -gX -RN -RN -RN -RN -RN -RN -RN -RN -RN -Sv -Sx -Sv -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(184,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -wu -zW -zW -Dj -zW -DK -DK -DK -EH -EH -EH -FH -Gd -FH -EH -EH -EH -HI -HI -HI -HI -Ip -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(185,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CC -CE -CT -Dk -Du -DL -Ej -DK -EH -EH -Fr -FI -Ge -Gw -GO -EH -EH -Hl -Hm -Hm -Hl -Hm -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(186,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CC -CF -CU -Dl -CV -DM -Ek -DK -EH -Fd -Fs -FJ -Ge -Fe -GP -He -EH -Hl -Hl -Hl -Hl -Hl -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(187,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CC -CG -CV -Dm -CV -DM -El -DK -EI -Fe -Fs -FK -Gf -Gx -Fe -Fe -Hp -Hl -Ic -Iv -IG -IS -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(188,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CC -CH -CV -Dn -Dv -DN -Em -Dy -EJ -Fe -Ft -FL -Gg -Gy -Gx -Fe -Hq -HM -Id -HV -HV -IT -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(189,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CC -CI -CW -Do -Dw -DO -En -Ex -EK -EK -Fu -FM -Gh -Gz -GQ -EK -EK -HN -Ie -Ie -IH -IT -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(190,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CC -CI -CW -CW -Dw -DP -Em -Dy -EJ -Fe -Fe -FN -Gg -GA -GB -Fe -Hr -HM -Id -HV -II -IU -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(191,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -jH -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CC -CJ -CX -CX -Dx -DP -Eo -DK -EL -Fe -Fe -Fe -Gi -GB -Fe -Fe -Hs -Hl -If -Iw -IJ -IV -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(192,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jB -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CC -CC -CC -CC -Dy -DQ -DK -DK -EH -Ff -Fe -Fe -Ge -Fe -Fe -Hf -EH -Hl -Hl -Hl -IK -Hl -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(193,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -CK -CY -Db -Dz -DR -Db -Db -Db -EH -Fv -FO -Ge -FO -GR -EH -GS -HO -Ig -Hl -IL -IW -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(194,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -zC -CZ -Db -DA -DS -Db -Ey -EM -Db -Fw -FP -Gj -FP -EH -GS -Ht -HP -Ih -Hl -IL -IW -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(195,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -CL -Da -Db -DB -DT -Db -Ez -EN -Db -Fx -FQ -Gk -GC -GS -Hg -Hu -HQ -Ii -Hl -II -IX -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(196,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -CM -Db -Db -Db -DU -Db -Db -EO -Db -Fy -FR -Gl -GD -GT -Hh -Hv -Hv -Ij -Hl -IM -IY -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(197,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -CN -Dc -Dp -DC -DV -Dc -Dc -EP -Db -Fz -FS -Gm -GE -GU -Hi -Hw -HR -Ik -Hl -IN -IZ -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(198,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -CO -Db -Db -Db -DW -Db -Db -EQ -Db -Fw -FT -Gn -GF -GV -Hj -Hx -HS -Il -Hl -IO -Ja -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(199,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -CP -Da -Db -DB -DX -Db -DB -ER -Db -Fw -FU -Go -GG -Fw -Hk -GS -GS -GS -Hl -IP -Hl -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(200,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -Cb -CZ -Db -Co -DY -Db -Co -DY -Db -Fw -FP -Gp -FP -Fw -Hl -Hy -HT -Im -HT -IQ -Hm -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(201,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -CQ -CY -Db -DD -DZ -Db -DD -DZ -Db -Fw -FV -Gq -GH -Fw -Hl -Hz -HU -HU -HU -IR -Hm -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(202,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -CD -CD -CD -CD -CD -Db -Db -Db -Db -Fw -FW -Gr -Gn -Fw -Hl -HA -HV -In -Ix -Hm -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(203,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -CD -CD -CD -CD -Fw -FX -Gs -GI -Fw -Hm -Hm -Hm -Hm -Hm -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(204,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ep -Ep -Ep -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Hm -Hm -Hm -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(205,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ep -ES -Fg -Fg -Fg -Fg -Fg -Fg -Fg -ES -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(206,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ep -gX -Fg -Fg -Fg -Fg -Fg -Fg -Fg -gX -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(207,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ep -ET -Fg -Fg -Fg -Fg -Fg -Fg -Fg -ET -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(208,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ep -Ep -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Ep -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(209,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ep -Ep -Ep -FA -gX -gX -gX -GW -Ep -HB -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(210,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -EA -EA -EA -EA -dn -dn -dn -dn -dn -dn -dn -dn -Iy -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(211,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -EA -EA -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(212,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(213,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(214,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(215,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(216,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(217,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(218,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(219,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(220,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(221,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(222,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(223,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(224,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(225,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(226,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(227,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(228,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(229,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(230,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(231,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(232,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(233,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(234,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(235,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(236,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(237,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(238,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(239,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(240,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(241,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(242,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(243,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(244,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(245,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(246,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(247,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(248,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(249,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(250,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(251,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(252,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(253,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(254,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(255,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} diff --git a/maps/southern_sun/overmap/planets/kara/northern_star/northern_star.dm b/maps/southern_sun/overmap/planets/kara/northern_star/northern_star.dm deleted file mode 100644 index 7d886f3bb3..0000000000 --- a/maps/southern_sun/overmap/planets/kara/northern_star/northern_star.dm +++ /dev/null @@ -1,93 +0,0 @@ -// -- Datums -- // - -/datum/map_template/sc_lateload/northern_star - name = "Kara - Z1 Northern Star" - desc = "The Northern Star mines." - mappath = "maps/southern_cross/overmap/planets/kara/northern_star/northern_star_mine.dmm" - associated_map_datum = /datum/map_z_level/sc_lateload/northern_star - -/datum/map_z_level/sc_lateload/northern_star - name = "Northern Star mines" - z = Z_LEVEL_NS_MINE - -/datum/map_template/sc_lateload/northern_star/on_map_loaded(z) - . = ..() - new /datum/random_map/automata/cave_system/no_cracks(null, 1, 1, Z_LEVEL_NS_MINE, world.maxx, world.maxy) // Create caves. - new /datum/random_map/noise/ore(null, 1, 1, Z_LEVEL_NS_MINE, 64, 64) // Create the mining ore distribution map. - -// -- Overmap -- // -//This is actually in kara.dm one folder back. -// Overmap object for Kara, hanging in the void of space -/obj/effect/overmap/visitable/sector/northern_star_mines - name = "Northern Star" - icon_state = "object" - desc = "The seat of NT power in the Vir system lies in the asteroid colony orbiting Kara, the NCS Northern Star." - scanner_desc = @{"[i]Stellar Body[/i]: Kara -[i]Class[/i]: Jovian Colony -[i]Transponder[/i]: Transmitting (NT), NanoTrasen IFF -[i]Habitability[/i]: Low (High Pressure, Toxic Atmosphere). Habitats in orbit. -[b]Notice[/b]: NT security is currently restricting free flights to Northern Star."} - in_space = 1 - known = TRUE - start_x = 14 - start_y = 14 - extra_z_levels = list(Z_LEVEL_AEROSTAT) // Should inform the overmap that kara and NS are in the same sector despite being different locations. - initial_generic_waypoints = list("northern_star_mine_dock", "northern_star_mine_echidna_dock") //northern_star.dm landmarks - -/obj/effect/overmap/visitable/sector/northern_star_mines/get_space_zlevels()//These are the primary levels that our space station resides in. This also indicates what levels astronauts can drift into. - return list(Z_LEVEL_NS_MINE) //May add more later - -// -- Areas -- // - -/area/outpost/medical - icon_state = "" - -/area/outpost/medical/storage - name = "Medical Outpost Storage" - -/area/outpost/medical/hallway - name = "Medical Outpost Hallway" - -/area/outpost/medical/surgery - name = "Medical Outpost Surgery" - -/area/outpost/medical/dorm - name = "Medical Outpost Dorms" - -/area/outpost/medical/airlocks - name = "Medical Outpost Airlocks" - -/area/outpost/medical/rec - name = "Medical Outpost Recreation" - -/area/outpost/medical/suit_storage - name = "Medical Outpost Suit Storage" - -/area/outpost/medical/power - name = "Medical Outpost Power" - -/area/outpost/medical/main_room - name = "Medical Outpost Main Room" - -/area/outpost/medical/atmos - name = "Medical Outpost Atmospherics" - -/area/outpost/medical/backup_power - name = "Medical Outpost Backup Power" - - -// -- Landmarks -- // - -/obj/effect/shuttle_landmark/premade/northern_star/ns_mine_dock - name = "Northern Star Mine - Shuttle Dock" - landmark_tag = "northern_star_mine_dock" - -/obj/effect/shuttle_landmark/premade/northern_star/ns_mine_echidna_dock - name = "Northern Star Mine - Echidna Dock" - landmark_tag = "northern_star_mine_echidna_dock" - -// -- Turfs -- // -/turf/simulated/mineral/floor/ignore_mapgen/airless - oxygen = 0 - nitrogen = 0 - temperature = TCMB diff --git a/maps/southern_sun/overmap/planets/kara/northern_star/northern_star_mine.dmm b/maps/southern_sun/overmap/planets/kara/northern_star/northern_star_mine.dmm deleted file mode 100644 index 031999485c..0000000000 --- a/maps/southern_sun/overmap/planets/kara/northern_star/northern_star_mine.dmm +++ /dev/null @@ -1,88892 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/space, -/area/space) -"ab" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/space, -/area/space) -"ac" = ( -/turf/space, -/area/syndicate_station/mining) -"ad" = ( -/turf/simulated/mineral/vacuum, -/area/mine/unexplored) -"ae" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/mixing) -"af" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/hallway/toxins_hallway) -"ag" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/tox_store) -"ah" = ( -/turf/simulated/wall, -/area/outpost/research/mixing) -"ai" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"aj" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"ak" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"al" = ( -/turf/simulated/wall, -/area/outpost/research/tox_store) -"am" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/test_area) -"an" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/test_area) -"ao" = ( -/obj/machinery/vending/phoronresearch, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/mixing) -"ap" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/mixing) -"aq" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"ar" = ( -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"as" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/storage/box/lights/mixed, -/obj/item/extinguisher, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"at" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"au" = ( -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"av" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/outpost/research/test_area) -"aw" = ( -/obj/structure/dispenser, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"ax" = ( -/obj/structure/table/standard, -/obj/item/tool/wrench, -/obj/item/tool/screwdriver{ - pixel_y = 10 - }, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 0; - pixel_y = 30 - }, -/obj/item/tool/crowbar, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"ay" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"az" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 30; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"aA" = ( -/turf/simulated/wall, -/area/outpost/research/hallway/toxins_hallway) -"aB" = ( -/obj/machinery/door/airlock{ - name = "Toxins Emergency Storage" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"aC" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"aD" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"aE" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"aF" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"aG" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 8; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced{ - dir = 1; - icon_state = "phoronrwindow" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/research/mixing) -"aH" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 1; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/research/mixing) -"aI" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/powered/pump, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"aJ" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"aK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"aL" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 8; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced{ - dir = 1; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/research/mixing) -"aM" = ( -/obj/machinery/portable_atmospherics/powered/pump, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"aN" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"aO" = ( -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"aP" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access = list(8) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"aQ" = ( -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"aR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"aS" = ( -/obj/machinery/alarm{ - pixel_y = 23 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"aT" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 8; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/research/mixing) -"aU" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"aV" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 8; - icon_state = "map" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"aW" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 1; - icon_state = "map" - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"aX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"aY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"aZ" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"ba" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bd" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access = list(8) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"be" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"bf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"bg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"bh" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"bi" = ( -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bj" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Heater to Waste" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bk" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 2; - name = "Waste to Scrubbers" - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/outpost/research/mixing) -"bl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bn" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bo" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Fore"; - dir = 4 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/computer/area_atmos, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"br" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Gas Storage"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"bs" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"bt" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"bu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"bv" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"bw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 6 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = 0; - pixel_z = 33 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"by" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bA" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Heated to Waste" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bB" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bC" = ( -/obj/structure/closet/bombcloset, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8; - icon_state = "warningcorner" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bD" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bF" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bG" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"bH" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"bI" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"bJ" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"bK" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -29 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tox_store) -"bL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/mixing) -"bM" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bN" = ( -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/research/mixing) -"bO" = ( -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5; - icon_state = "warning" - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/research/mixing) -"bP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bQ" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bR" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Lab Fore"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"bS" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bU" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"bV" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tox_store) -"bW" = ( -/turf/simulated/wall, -/area/outpost/research/toxins_launch) -"bX" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"bY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"bZ" = ( -/obj/structure/sign/fire, -/turf/simulated/wall/r_wall, -/area/outpost/research/mixing) -"ca" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 6 - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/mixing) -"cb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/purple{ - dir = 1 - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/mixing) -"cc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 9 - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/mixing) -"cd" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"ce" = ( -/obj/machinery/atmospherics/binary/passive_gate{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"cf" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"cg" = ( -/obj/structure/closet/emcloset, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"ch" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"ci" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cj" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"ck" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm{ - pixel_y = 23 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Mid"; - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cl" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "toxinsdriver" - }, -/turf/simulated/floor/airless, -/area/outpost/research/toxins_launch) -"cm" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/airlock_sensor{ - pixel_y = 25 - }, -/turf/simulated/floor/airless, -/area/outpost/research/toxins_launch) -"cn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/outpost/research/toxins_launch) -"co" = ( -/obj/machinery/door/blast/regular{ - id = "toxinsdriver"; - name = "Toxins Launcher Bay Door" - }, -/turf/simulated/floor/airless, -/area/outpost/research/toxins_launch) -"cp" = ( -/turf/simulated/floor/airless, -/area/outpost/research/toxins_launch) -"cq" = ( -/obj/machinery/door/blast/regular{ - id = "toxinsdriver"; - name = "Toxins Launcher Bay Door" - }, -/turf/simulated/floor/airless, -/area/outpost/research/test_area) -"cr" = ( -/turf/simulated/floor/airless, -/area/outpost/research/test_area) -"cs" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Toxins Test Chamber North"; - network = list("Research","Toxins Test Area") - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"ct" = ( -/obj/machinery/door/blast/regular{ - id = "mixvent"; - name = "Mixer Room Vent" - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/mixing) -"cu" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, -/turf/simulated/floor/reinforced/airless, -/area/outpost/research/mixing) -"cv" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, -/turf/simulated/floor/reinforced/airless, -/area/outpost/research/mixing) -"cw" = ( -/obj/machinery/sparker{ - dir = 2; - id = "mixingsparker"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1443; - icon_state = "map_injector"; - id = "air_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/outpost/research/mixing) -"cx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/mixing) -"cy" = ( -/obj/machinery/airlock_sensor{ - id_tag = "tox_airlock_sensor"; - master_tag = "tox_airlock_control"; - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/mixing) -"cz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/mixing) -"cA" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "tox_airlock_control"; - pixel_x = -24; - pixel_y = 0; - tag_airpump = "tox_airlock_pump"; - tag_chamber_sensor = "tox_airlock_sensor"; - tag_exterior_door = "tox_airlock_exterior"; - tag_interior_door = "tox_airlock_interior" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/tvalve/bypass{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"cB" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"cC" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"cD" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 8; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced{ - dir = 1; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/outpost/research/mixing) -"cE" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cH" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"cK" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cL" = ( -/obj/machinery/alarm{ - pixel_y = 23 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Starboard"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"cN" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/airless, -/area/outpost/research/toxins_launch) -"cO" = ( -/obj/machinery/door/window/southright{ - name = "Toxins Launcher"; - req_access = list(8) - }, -/obj/machinery/door/window/southright{ - dir = 1; - name = "Toxins Launcher"; - req_access = list(8) - }, -/obj/machinery/door/firedoor/border_only{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_launch) -"cP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_launch) -"cQ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"cR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"cS" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/turf/simulated/floor/reinforced/airless, -/area/outpost/research/mixing) -"cT" = ( -/obj/machinery/air_sensor{ - frequency = 1430; - id_tag = "toxins_mixing_exterior"; - output = 63 - }, -/turf/simulated/floor/reinforced/airless, -/area/outpost/research/mixing) -"cU" = ( -/obj/machinery/door/airlock/glass_research{ - autoclose = 0; - frequency = 1379; - glass = 1; - icon_state = "door_locked"; - id_tag = "tox_airlock_exterior"; - locked = 1; - name = "Mixing Room Exterior Airlock"; - req_access = list(7) - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/mixing) -"cV" = ( -/obj/machinery/atmospherics/binary/dp_vent_pump/high_volume{ - dir = 2; - frequency = 1379; - id = "tox_airlock_pump" - }, -/obj/machinery/air_sensor{ - frequency = 1430; - id_tag = "toxins_mixing_interior"; - output = 63; - pixel_x = -8; - pixel_y = -18 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/mixing) -"cW" = ( -/obj/machinery/door/airlock/glass_research{ - autoclose = 0; - frequency = 1379; - glass = 1; - icon_state = "door_locked"; - id_tag = "tox_airlock_interior"; - locked = 1; - name = "Mixing Room Interior Airlock"; - req_access = list(7) - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/mixing) -"cX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"cY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"cZ" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Toxins Lab"; - req_access = list(7) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"da" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"db" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"de" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"df" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dg" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dh" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"di" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room"; - req_access = list(7) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dj" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1; - icon_state = "warningcorner" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dk" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dl" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the test chamber."; - layer = 4; - name = "Test Chamber Telescreen"; - network = list("Toxins Test Area"); - pixel_x = 32; - pixel_y = 0 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4; - icon_state = "warningcorner" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_launch) -"dn" = ( -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"do" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/airless, -/area/outpost/research/test_area) -"dp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/outpost/research/test_area) -"dq" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/turf/simulated/floor/reinforced/airless, -/area/outpost/research/mixing) -"dr" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/reinforced/airless, -/area/outpost/research/mixing) -"ds" = ( -/obj/machinery/sparker{ - dir = 2; - id = "mixingsparker"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/outpost/research/mixing) -"dt" = ( -/obj/structure/sign/fire{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/mixing) -"du" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/mixing) -"dv" = ( -/obj/machinery/button/remote/blast_door{ - id = "mixvent"; - name = "Mixing Room Vent Control"; - pixel_x = -25; - pixel_y = 5; - req_access = list(7) - }, -/obj/machinery/button/ignition{ - id = "mixingsparker"; - pixel_x = -25; - pixel_y = -5 - }, -/obj/machinery/atmospherics/valve{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1; - icon_state = "warningcorner" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"dw" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"dx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dz" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dB" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dD" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dF" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Launch Room"; - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dG" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the test chamber."; - layer = 4; - name = "Test Chamber Telescreen"; - network = list("Toxins Test Area"); - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_launch) -"dJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/airless, -/area/outpost/research/test_area) -"dK" = ( -/obj/machinery/door/airlock/external{ - name = "Toxins Test Chamber" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/airless, -/area/outpost/research/test_area) -"dL" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue, -/obj/machinery/light_switch{ - pixel_x = -36; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"dM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"dN" = ( -/obj/machinery/computer/general_air_control{ - frequency = 1430; - name = "Mixing Chamber Monitor"; - sensors = list("toxins_mixing_exterior" = "Mixing Chamber - Exterior", "toxins_mixing_interior" = "Mixing Chamber - Interior") - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/mixing) -"dO" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/floor_decal/corner/purple/full, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dP" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dR" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dS" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light, -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"dT" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/toxins_misc_lab) -"dU" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Misc Lab"; - req_access = list(8) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"dV" = ( -/obj/machinery/disposal, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -30; - pixel_y = 0 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dW" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dX" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the test chamber."; - layer = 4; - name = "Test Chamber Telescreen"; - network = list("Toxins Test Area"); - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/remote/driver{ - dir = 2; - id = "toxinsdriver"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_launch) -"dY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_launch) -"dZ" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"ea" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"eb" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"ec" = ( -/obj/machinery/door/airlock/external{ - name = "Toxins Test Chamber" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/outpost/research/test_area) -"ed" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/outpost/research/test_area) -"ee" = ( -/turf/simulated/floor/tiled/dark, -/area/outpost/research/mixing) -"ef" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"eg" = ( -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"eh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4; - icon_state = "warningcorner" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"ei" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"ej" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"ek" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Lab Aft"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"el" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"em" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"en" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/clipboard, -/obj/item/pen, -/obj/machinery/alarm{ - pixel_y = 23 - }, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -30; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eo" = ( -/obj/structure/table/standard, -/obj/item/folder, -/obj/item/clothing/glasses/science, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Misc Lab"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"ep" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eq" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"er" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"es" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"et" = ( -/turf/simulated/wall, -/area/outpost/research/test_area) -"eu" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/simulated/wall, -/area/outpost/research/test_area) -"ev" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"ew" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/mixing) -"ex" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"ey" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"ez" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/obj/machinery/status_display{ - layer = 4; - pixel_x = -32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eA" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eD" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "toxins_airlock"; - name = "interior access button"; - pixel_x = 0; - pixel_y = 26; - req_one_access = list(8,13,65) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "toxins_inner"; - locked = 1; - name = "Toxins External Access" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/outpost/research/toxins_misc_lab) -"eG" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "toxins_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; - id_tag = "toxins_airlock"; - pixel_x = 0; - pixel_y = 25; - tag_airpump = "toxins_pump"; - tag_chamber_sensor = "toxins_sensor"; - tag_exterior_door = "toxins_outer"; - tag_interior_door = "toxins_inner" - }, -/obj/machinery/airlock_sensor{ - frequency = 1379; - id_tag = "toxins_sensor"; - pixel_x = 0; - pixel_y = -25 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eH" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "toxins_outer"; - locked = 1; - name = "Toxins External Access"; - req_access = list(8,10,13) - }, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_misc_lab) -"eI" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "toxins_airlock"; - name = "exterior access button"; - pixel_x = -26; - pixel_y = 26; - req_one_access = list(8,13,65) - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"eJ" = ( -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"eK" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"eL" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"eM" = ( -/obj/machinery/atmospherics/omni/mixer{ - tag_east = 2; - tag_east_con = null; - tag_north = 1; - tag_north_con = 0.5; - tag_south = 0; - tag_south_con = null; - tag_west = 1; - tag_west_con = 0.5; - use_power = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"eN" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/machinery/meter, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"eO" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 2; - tag_north = 6; - tag_south = 0; - tag_west = 1; - use_power = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"eP" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -29 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/mixing) -"eQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = -29; - pixel_z = 2 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"eR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"eS" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Aft"; - dir = 8 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"eT" = ( -/obj/structure/table/standard, -/obj/item/storage/box/donkpockets, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eU" = ( -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eX" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"eY" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"eZ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_misc_lab) -"fb" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/purple, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"fc" = ( -/turf/simulated/floor/tiled/steel, -/area/outpost/research/toxins_misc_lab) -"fd" = ( -/turf/simulated/floor/plating, -/area/outpost/research/toxins_misc_lab) -"fe" = ( -/obj/structure/closet, -/obj/item/clothing/accessory/armband/science, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"ff" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/xenobiology) -"fg" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"fh" = ( -/obj/machinery/alarm{ - pixel_y = 23 - }, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"fi" = ( -/obj/machinery/door/airlock{ - name = "Toxins Misc Storage" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"fj" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "toxins_airlock_control"; - name = "Toxins Access Console"; - pixel_x = 0; - pixel_y = -28; - tag_exterior_door = "toxins_airlock_exterior"; - tag_interior_door = "toxins_airlock_interior" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fk" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/closet/bombcloset, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8; - icon_state = "warningcorner" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_misc_lab) -"fn" = ( -/obj/structure/closet, -/turf/simulated/floor/tiled, -/area/outpost/research/toxins_misc_lab) -"fo" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 8 - }, -/obj/item/pipe_meter, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_misc_lab) -"fp" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_misc_lab) -"fq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 10 - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/toxins_misc_lab) -"fr" = ( -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"fs" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"ft" = ( -/turf/simulated/wall, -/area/outpost/research/xenobiology) -"fu" = ( -/obj/structure/table/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/clothing/accessory/armband/science, -/obj/item/clothing/glasses/science, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/item/suit_cooling_unit, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"fv" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"fw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "toxins_airlock_interior"; - locked = 1; - name = "Toxins Internal Airlock"; - req_access = list(7) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 6 - }, -/obj/machinery/light, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_misc_lab) -"fy" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = 29 - }, -/turf/simulated/floor/plating, -/area/outpost/research/toxins_misc_lab) -"fz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple, -/turf/simulated/wall/r_wall, -/area/outpost/research/toxins_misc_lab) -"fA" = ( -/mob/living/simple_mob/metroid/juvenile/baby, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"fB" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"fC" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"fD" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/warning{ - dir = 9; - icon_state = "warning" - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "toxins_airlock_control"; - name = "Toxins Access Button"; - pixel_x = 26; - pixel_y = 26; - req_access = list(7) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Access"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fG" = ( -/obj/item/tool/wrench, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/toxins_misc_lab) -"fH" = ( -/obj/machinery/pipedispenser, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/toxins_misc_lab) -"fI" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"fJ" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"fK" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenobiology Fore Port"; - dir = 2 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobio1"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 40; - req_access = list(55) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"fL" = ( -/obj/structure/table/standard, -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"fM" = ( -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"fO" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"fP" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, -/turf/space, -/area/space) -"fQ" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"fR" = ( -/obj/structure/closet/bombcloset/double, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"fS" = ( -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"fT" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio1"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"fU" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio1"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/window/brigdoor/northright{ - name = "Containment Pen"; - req_access = list(47) - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"fV" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio1"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"fW" = ( -/obj/structure/grille, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio2"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"fX" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio2"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/window/brigdoor/northright{ - name = "Containment Pen"; - req_access = list(47) - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"fY" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio2"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"fZ" = ( -/obj/machinery/camera/network/research/xenobio, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"ga" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/outpost/research/hallway/toxins_hallway) -"gb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "toxins_airlock_exterior"; - locked = 1; - name = "Toxins External Airlock"; - req_access = list(7) - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "toxins_airlock_control"; - name = "Toxins Access Button"; - pixel_x = 26; - pixel_y = 0; - req_access = list(7) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"gc" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/turf/space, -/area/space) -"gd" = ( -/obj/structure/closet/l3closet/scientist/double, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"ge" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gf" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/cable/blue, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gg" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/cable/blue, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gh" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/door/window/brigdoor/southright{ - name = "Containment Pen"; - req_access = list(47) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gi" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gj" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gk" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenobiology Fore Starboard"; - dir = 2 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobio2"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 30; - req_access = list(55) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gl" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gm" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/sink{ - pixel_y = 30 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gn" = ( -/obj/structure/table/standard, -/obj/item/clothing/suit/storage/hooded/wintercoat/science, -/obj/item/clothing/suit/storage/hooded/wintercoat/science, -/obj/item/storage/firstaid/regular, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"go" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"gp" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4; - icon_state = "warningcorner" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"gq" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"gr" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Exterior"; - dir = 2 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"gs" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"gt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"gu" = ( -/obj/structure/closet/radiation, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"gv" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gw" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gx" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gy" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gz" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gA" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gB" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gC" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gD" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 32 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobio3"; - name = "Containment Blast Doors"; - pixel_x = 24; - pixel_y = -10; - req_access = list(55) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gE" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"gF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"gG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"gH" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"gI" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/space, -/area/space) -"gJ" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/turf/space, -/area/space) -"gK" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9; - icon_state = "intact" - }, -/turf/space, -/area/space) -"gL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"gM" = ( -/obj/structure/closet/firecloset/full/double, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"gN" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 7; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gO" = ( -/obj/machinery/light, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = 0; - pixel_z = -29 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"gP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gS" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gT" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gU" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/cable/blue, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"gV" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio3"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"gW" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"gX" = ( -/obj/structure/lattice, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"gY" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"gZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"ha" = ( -/obj/structure/lattice, -/turf/space, -/area/space) -"hb" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/turf/space, -/area/space) -"hc" = ( -/obj/structure/window/reinforced, -/turf/simulated/floor/airless, -/area/space) -"hd" = ( -/obj/structure/sign/biohazard, -/turf/simulated/wall/r_wall, -/area/outpost/research/xenobiology) -"he" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"hf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hg" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"hh" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"hi" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"hj" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio3"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/window/brigdoor/eastright{ - name = "Containment Pen"; - req_access = list(47) - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"hk" = ( -/obj/machinery/door/window/brigdoor/westleft{ - name = "Containment Pen"; - req_access = list(47) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/obj/structure/window/reinforced, -/turf/space, -/area/space) -"hn" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/space, -/area/space) -"ho" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenobiology Exterior"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hp" = ( -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9; - icon_state = "warning" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hq" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hr" = ( -/obj/machinery/shower{ - pixel_y = 3 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/research/xenobiology) -"hs" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = -22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"ht" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hu" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"hv" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hw" = ( -/obj/machinery/smartfridge/secure/extract, -/obj/structure/sign/deathsposal{ - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hx" = ( -/obj/machinery/processor, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hy" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"hz" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hA" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio3"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"hB" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"hC" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"hD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/space) -"hE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hG" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hH" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hI" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hJ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hK" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"hN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "xeno_airlock_exterior"; - locked = 1; - name = "Xenobiology External Airlock"; - req_access = list(55) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "xeno_airlock_control"; - name = "Xenobiology Access Button"; - pixel_x = 0; - pixel_y = -26; - req_access = list(55) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "xeno_airlock_control"; - name = "Xenobiology Access Button"; - pixel_x = 26; - pixel_y = -26; - req_access = list(55) - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "xeno_airlock_interior"; - locked = 1; - name = "Xenobiology Internal Airlock"; - req_access = list(55) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "xeno_airlock_control"; - name = "Xenobiology Access Console"; - pixel_x = -26; - pixel_y = -28; - tag_exterior_door = "xeno_airlock_exterior"; - tag_interior_door = "xeno_airlock_interior" - }, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"hT" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hU" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"hV" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/table/standard, -/obj/machinery/reagentgrinder, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hW" = ( -/obj/structure/table/standard, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hX" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"hY" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"hZ" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"ia" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/obj/machinery/button/remote/blast_door{ - desc = "It controls blast doors, remotely."; - id = "xenobiodivid"; - name = "Divider Switch"; - pixel_x = 38; - pixel_y = 0; - req_access = list(55) - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"ib" = ( -/obj/machinery/door/blast/regular{ - id = "xenobiodivid" - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"ic" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/space, -/area/space) -"id" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/landmark{ - name = "bluespacerift" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"ie" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"if" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"ig" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"ih" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"ii" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4; - icon_state = "warningcorner" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"ij" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"ik" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenobiology Access"; - dir = 1 - }, -/obj/structure/closet/l3closet/scientist, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"il" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/structure/closet/l3closet/scientist, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"im" = ( -/obj/structure/table/standard, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/reagent_containers/food/snacks/monkeycube/wrapped, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"in" = ( -/obj/structure/table/standard, -/obj/item/clothing/gloves/sterile/latex, -/obj/item/hand_labeler, -/obj/item/slime_scanner, -/obj/item/slime_scanner, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"io" = ( -/obj/structure/table/standard, -/obj/item/glass_jar, -/obj/item/glass_jar, -/obj/item/storage/box/syringes, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"ip" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"iq" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"ir" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio4"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"is" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"it" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/space, -/area/space) -"iu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"iv" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"iw" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Gear Storage" - }, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/toxins_hallway) -"ix" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"iy" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/space, -/area/space) -"iz" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"iA" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"iB" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"iC" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio4"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/window/brigdoor/eastright{ - name = "Containment Pen"; - req_access = list(47) - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"iD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"iE" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"iF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"iG" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/pen/blue{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/pen/red{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"iH" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"iI" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/wallmed1{ - name = "Emergency NanoMed"; - pixel_x = -7; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"iJ" = ( -/obj/machinery/chemical_dispenser/full{ - density = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"iK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"iL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"iM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"iN" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"iO" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"iP" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio4"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"iQ" = ( -/obj/machinery/light/small, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"iR" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 32 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobio4"; - name = "Containment Blast Doors"; - pixel_x = 20; - pixel_y = -8; - req_access = list(55) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"iS" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenobiology Aft Port"; - dir = 1 - }, -/obj/structure/cable/blue, -/obj/machinery/button/remote/blast_door{ - id = "xenobio6"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = -25; - req_access = list(55) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"iT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"iU" = ( -/obj/structure/table/standard, -/obj/item/clipboard, -/obj/item/folder, -/obj/item/pen, -/obj/item/melee/baton/slime/loaded, -/obj/item/gun/energy/taser/xeno, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"iV" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"iW" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"iX" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"iY" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"iZ" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"ja" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"jb" = ( -/obj/structure/table/standard, -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/item/folder/blue{ - pixel_x = 5 - }, -/obj/item/reagent_containers/spray/cleaner, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"jc" = ( -/obj/structure/bed/chair/office/light, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"jd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/cable/blue, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"je" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9; - icon_state = "warning" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"jf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/northright{ - name = "Containment Pen"; - req_access = list(47) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"jg" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenobiology Aft Starboard"; - dir = 1 - }, -/obj/structure/cable/blue, -/obj/machinery/button/remote/blast_door{ - id = "xenobio5"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = -25; - req_access = list(55) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"jh" = ( -/obj/machinery/camera/network/research/xenobio{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"ji" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"jj" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"jk" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/computer/security/xenobio, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"jl" = ( -/obj/structure/table/steel, -/obj/item/clothing/glasses/science, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 0; - pixel_y = 30 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"jm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"jn" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"jo" = ( -/obj/structure/table/standard, -/obj/item/melee/baton/slime/loaded, -/obj/item/gun/energy/taser/xeno, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"jp" = ( -/obj/item/clothing/shoes/galoshes, -/obj/item/clothing/shoes/galoshes, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"jq" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio6"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"jr" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio6"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/window/brigdoor/southright{ - name = "Containment Pen"; - req_access = list(47) - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"js" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio6"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/blue, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"jt" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio5"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"ju" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio5"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/window/brigdoor/southright{ - name = "Containment Pen"; - req_access = list(47) - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"jv" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobio5"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/blue, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/outpost/research/xenobiology) -"jw" = ( -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for a door to space."; - id = "xenobioout6"; - name = "Containment Release Switch"; - pixel_x = 0; - pixel_y = -28; - req_access = list(55) - }, -/obj/structure/sink, -/obj/structure/cable/blue, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/research/xenobiology) -"jx" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/extinguisher, -/obj/item/extinguisher, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"jy" = ( -/obj/structure/closet, -/obj/item/toy/figure/scientist, -/obj/item/clothing/accessory/armband/science, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/xenobiology) -"jz" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"jA" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"jB" = ( -/turf/space, -/area/mine/unexplored) -"jC" = ( -/obj/structure/sign/vacuum{ - pixel_x = 32 - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"jD" = ( -/obj/machinery/door/blast/regular{ - desc = "By gods, release the hounds!"; - id = "xenobioout6"; - name = "Containment Release" - }, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"jE" = ( -/turf/simulated/floor/airless, -/area/space) -"jF" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"jG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"jH" = ( -/obj/item/extinguisher, -/obj/item/orion_ship, -/obj/item/spacecash/c1, -/obj/item/spacecash/c1, -/obj/item/spacecash/c1, -/obj/item/spacecash/c1, -/obj/item/spacecash/c1, -/obj/item/coin/phoron{ - desc = "A phoron coin, signifying one who incredibly lost, and found a sign."; - name = "'I got lost' award." - }, -/obj/structure/closet/crate, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/unexplored) -"jI" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"jJ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 25; - pixel_y = 0 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = 0; - pixel_z = -27 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/outpost/research/xenobiology) -"jK" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/medical) -"jL" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/dock) -"jM" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Catwalk Access"; - req_access = list(47) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"jN" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/outpost/research/dock) -"jO" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/dorms) -"jP" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/longtermstorage) -"jQ" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/tempstorage) -"jR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/medical) -"jS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/research/medical) -"jT" = ( -/turf/simulated/wall, -/area/outpost/research/medical) -"jU" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"jV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"jW" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"jX" = ( -/turf/simulated/wall, -/area/outpost/research/dorms) -"jY" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"jZ" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"ka" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/table/rack, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"kb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/medical) -"kc" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/storage/firstaid/toxin, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kd" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/o2{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/firstaid/fire, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"ke" = ( -/obj/structure/sign/greencross, -/turf/simulated/wall, -/area/outpost/research/medical) -"kf" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Main Exterior"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"kg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"kh" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"ki" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/research/dorms) -"kj" = ( -/obj/machinery/vending/cola, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = 0; - pixel_z = 34 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"kk" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"kl" = ( -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"km" = ( -/obj/structure/table/glass, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"kn" = ( -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"ko" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"kp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"kq" = ( -/turf/simulated/wall, -/area/outpost/research/tempstorage) -"kr" = ( -/obj/structure/table/steel, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/emergency{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/tempstorage) -"ks" = ( -/turf/simulated/wall, -/area/mine/explored) -"kt" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8; - icon_state = "warningcorner" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"ku" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kw" = ( -/obj/effect/floor_decal/corner/paleblue, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/medical) -"ky" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"kz" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"kA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dorms) -"kB" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"kC" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"kD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dorms) -"kE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dorms) -"kF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dorms) -"kG" = ( -/obj/structure/table/standard, -/obj/item/storage/box/donkpockets, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"kH" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"kI" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"kJ" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"kK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"kL" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"kM" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"kN" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"kO" = ( -/obj/structure/ore_box, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"kP" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"kQ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"kR" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"kS" = ( -/obj/structure/table/standard, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/roller{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/roller, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kT" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kU" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kW" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kX" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_medical{ - req_access = newlist(); - req_one_access = newlist() - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"kY" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"kZ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"la" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"lb" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Research Lounge"; - req_access = list(47) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"ld" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"le" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lf" = ( -/obj/structure/noticeboard/anomaly{ - icon_state = "nboard05"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"li" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lk" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research Toxins Test Chamber East"; - dir = 8; - network = list("Research","Toxins Test Area") - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"ll" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"ln" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lo" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lp" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"lq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"lr" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"ls" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"lt" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"lu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"lv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"lw" = ( -/obj/machinery/disposal/deliveryChute, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/outpost/research/tempstorage) -"lx" = ( -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"ly" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4; - icon_state = "warningcorner_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"lz" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"lA" = ( -/obj/effect/floor_decal/corner/paleblue, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"lB" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"lC" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"lD" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/bed/roller, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"lE" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"lF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"lG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"lH" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Research Lounge"; - req_access = list(47) - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lI" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lL" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lN" = ( -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lO" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"lP" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/longtermstorage) -"lQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"lR" = ( -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = -28; - pixel_z = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"lS" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"lT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"lU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"lV" = ( -/obj/machinery/conveyor{ - dir = 3; - id = "anolongstorage" - }, -/turf/simulated/floor/plating{ - dir = 10 - }, -/area/outpost/research/tempstorage) -"lW" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "anolongstorage" - }, -/turf/simulated/floor/plating, -/area/outpost/research/tempstorage) -"lX" = ( -/obj/structure/plasticflaps/mining, -/obj/machinery/conveyor{ - dir = 4; - id = "anolongstorage" - }, -/turf/simulated/floor/plating, -/area/outpost/research/tempstorage) -"lY" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "anolongstorage" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/research/tempstorage) -"lZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/medical) -"ma" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/medical) -"mb" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_medical{ - name = "Medbay"; - req_access = newlist(); - req_one_access = newlist() - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"mc" = ( -/obj/structure/sign/greencross, -/turf/simulated/wall/r_wall, -/area/outpost/research/medical) -"md" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"me" = ( -/obj/effect/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"mf" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Main Fore"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"mg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"mh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"mi" = ( -/obj/structure/table/glass, -/obj/machinery/recharger{ - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"mj" = ( -/obj/structure/table/glass, -/obj/item/hand_labeler, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"mk" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"ml" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"mm" = ( -/obj/machinery/door/airlock{ - name = "Room 1" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/research/dorms) -"mn" = ( -/obj/machinery/door/airlock{ - name = "Room 2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/research/dorms) -"mo" = ( -/obj/machinery/door/airlock{ - name = "Toilet" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/outpost/research/dorms) -"mp" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/outpost/research/longtermstorage) -"mq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"mr" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Long Term Storage"; - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/longtermstorage) -"ms" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/longtermstorage) -"mt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall, -/area/outpost/research/tempstorage) -"mu" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/anomaly_container, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"mv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Temporary Storage"; - dir = 4 - }, -/obj/structure/anomaly_container, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"mw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"mx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"my" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4; - icon_state = "warningcee" - }, -/obj/machinery/conveyor_switch{ - id = "anolongstorage"; - name = "conveyor switch"; - pixel_x = 0; - pixel_y = 0; - req_access = list(65) - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"mz" = ( -/obj/machinery/conveyor_switch{ - id = "anolongstorage"; - name = "conveyor switch"; - pixel_x = 0; - pixel_y = 0; - req_access = list(65) - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/research/tempstorage) -"mA" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"mB" = ( -/turf/simulated/wall, -/area/outpost/research/dock) -"mC" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/outpost/research/dock) -"mD" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"mE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"mF" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"mG" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"mH" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"mI" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"mJ" = ( -/obj/machinery/computer/crew, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"mK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dock) -"mL" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Outpost Primary Access"; - req_access = list(47) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"mM" = ( -/obj/structure/bookcase/manuals/xenoarchaeology, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"mN" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/clipboard, -/obj/item/pen, -/obj/item/taperecorder, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"mO" = ( -/obj/structure/table/glass, -/obj/item/folder, -/obj/item/stamp, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"mP" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"mQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/carpet/blue, -/area/outpost/research/dorms) -"mR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/carpet/blue, -/area/outpost/research/dorms) -"mS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/research/dorms) -"mT" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"mU" = ( -/obj/machinery/shower{ - pixel_y = 3 - }, -/obj/structure/curtain/open/shower, -/obj/machinery/door/window/westright{ - name = "Shower" - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/research/dorms) -"mV" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/outpost/research/longtermstorage) -"mW" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/research{ - name = "Long Term Storage"; - req_access = list(65) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"mX" = ( -/turf/simulated/wall, -/area/outpost/research/longtermstorage) -"mY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"mZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"na" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"nb" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "anotempload" - }, -/turf/simulated/floor/plating, -/area/outpost/research/tempstorage) -"nc" = ( -/obj/structure/plasticflaps/mining, -/obj/machinery/conveyor{ - dir = 4; - id = "anotempload" - }, -/turf/simulated/floor/plating, -/area/outpost/research/tempstorage) -"nd" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "anotempload" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/research/tempstorage) -"ne" = ( -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/shuttle/research/outpost) -"nf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; - icon_state = "map" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"ng" = ( -/obj/structure/table/standard, -/obj/item/material/ashtray/glass, -/obj/item/reagent_containers/food/drinks/coffee, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"nh" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"ni" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"nj" = ( -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 0; - pixel_y = -27 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"nk" = ( -/obj/structure/table/glass, -/obj/item/storage/box/cups, -/obj/item/storage/box/glasses/square{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"nl" = ( -/obj/structure/table/glass, -/obj/item/camera_film{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/camera, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"nm" = ( -/obj/item/bedsheet/purple, -/obj/structure/bed/padded, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue, -/area/outpost/research/dorms) -"nn" = ( -/obj/structure/table/standard, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/carpet/blue, -/area/outpost/research/dorms) -"no" = ( -/obj/structure/sink{ - dir = 8; - icon_state = "sink"; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/research/dorms) -"np" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/research/dorms) -"nq" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/hallway/starboard) -"nr" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"ns" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"nt" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"nu" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/obj/structure/anomaly_container, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/longtermstorage) -"nv" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"nw" = ( -/obj/effect/floor_decal/corner/purple, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"nx" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"ny" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"nz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/obj/machinery/conveyor_switch{ - id = "anotempload"; - name = "conveyor switch"; - pixel_x = 0; - pixel_y = 0; - req_access = list(65) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"nA" = ( -/obj/structure/sign/science{ - desc = "A warning sign which reads 'SCIENCE!'. It has fine print below it reading 'May or may not contain spiders'." - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/tempstorage) -"nB" = ( -/obj/machinery/conveyor_switch{ - id = "anotempload"; - name = "conveyor switch"; - pixel_x = 0; - pixel_y = 0; - req_access = list(65) - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/research/tempstorage) -"nC" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 1 - }, -/turf/space, -/area/outpost/research/dock) -"nD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dock) -"nE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dock) -"nF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/outpost/research/dock) -"nG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dock) -"nH" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/structure/closet/hydrant{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"nI" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"nJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"nK" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"nL" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"nM" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/structure/closet/hydrant{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"nN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"nO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"nP" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"nQ" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/item/cell/high, -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"nR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/tempstorage) -"nS" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/research{ - name = "Temporary Storage"; - req_access = list(65) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"nT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/tempstorage) -"nU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/plating, -/area/outpost/research/tempstorage) -"nV" = ( -/turf/simulated/wall, -/area/outpost/research/hallway/starboard) -"nW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/starboard) -"nX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/starboard) -"nY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dock) -"nZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "research_outpost_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9; - icon_state = "warning" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Research Dock Airlock"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"oa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; - icon_state = "map" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "research_outpost_dock"; - pixel_x = 0; - pixel_y = 30; - req_one_access = list(13,48); - tag_airpump = "research_outpost_pump"; - tag_chamber_sensor = "research_outpost_sensor"; - tag_exterior_door = "research_outpost_outer"; - tag_interior_door = "research_outpost_inner" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"ob" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8; - icon_state = "warningcorner" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oc" = ( -/obj/machinery/computer/guestpass{ - pixel_x = 0; - pixel_y = 30 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"od" = ( -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oe" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"of" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"og" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oh" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oi" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/mid) -"oj" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"ok" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"ol" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"om" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"on" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"oo" = ( -/obj/machinery/shower{ - pixel_y = 3 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/research/hallway/mid) -"op" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/hallway/mid) -"oq" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"or" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"os" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"ot" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"ou" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"ov" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled{ - pixel_x = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"ow" = ( -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"ox" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oy" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oz" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oA" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oB" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oC" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Hallway Starboard 2" - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oD" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oE" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oF" = ( -/obj/machinery/atmospherics/binary/pump/on, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/starboard) -"oH" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1379; - id_tag = "research_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; - id_tag = "research_airlock"; - pixel_x = 0; - pixel_y = 25; - tag_airpump = "research_pump"; - tag_chamber_sensor = "research_sensor"; - tag_exterior_door = "research_outer"; - tag_interior_door = "research_inner" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oI" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1379; - id_tag = "research_pump" - }, -/obj/structure/ore_box, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"oJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/starboard) -"oK" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8; - icon_state = "warningcorner_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"oL" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"oM" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "research_outpost_outer"; - locked = 1; - name = "Research Dock Airlock"; - req_access = list(10,13) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "research_outpost_dock"; - name = "exterior access button"; - pixel_x = -6; - pixel_y = -26; - req_one_access = list(13,65) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"oN" = ( -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"oO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"oP" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "research_outpost_inner"; - locked = 1; - name = "Research Outpost Dock" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"oQ" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "research_outpost_dock"; - name = "interior access button"; - pixel_x = -26; - pixel_y = 26; - req_one_access = list(13,65) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark{ - name = "bluespacerift" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oV" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Toxins Test Chamber South"; - dir = 1; - network = list("Research","Toxins Test Area") - }, -/turf/simulated/floor/tiled/airless, -/area/outpost/research/test_area) -"oW" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"oZ" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Outpost Primary Access"; - req_access = list(47) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pa" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pe" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Outpost Primary Access"; - req_access = list(47) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pg" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"ph" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pj" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Outpost Primary Access"; - req_access = list(47) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pn" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"po" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pp" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark{ - name = "bluespacerift" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pr" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"ps" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pu" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "research_airlock"; - name = "interior access button"; - pixel_x = 26; - pixel_y = 26; - req_one_access = list(13,65) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "research_inner"; - locked = 1; - name = "Research Outpost External Access" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pw" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"px" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; - icon_state = "map" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"py" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "research_outer"; - locked = 1; - name = "Research Outpost External Access"; - req_access = list(10,13) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pz" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "research_airlock"; - name = "exterior access button"; - pixel_x = -26; - pixel_y = 26; - req_one_access = list(13,65) - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"pA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dock) -"pB" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "research_outpost_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"pC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "research_outpost_sensor"; - pixel_x = 0; - pixel_y = -25 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/dock) -"pD" = ( -/obj/machinery/computer/shuttle_control/research{ - name = "research elevator control console" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"pE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"pF" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"pG" = ( -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"pH" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"pI" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"pJ" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"pK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"pL" = ( -/obj/structure/closet/secure_closet/xenoarchaeologist{ - req_access = list(47) - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pM" = ( -/obj/structure/closet/secure_closet/xenoarchaeologist{ - req_access = list(47) - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pN" = ( -/obj/structure/closet/secure_closet/xenoarchaeologist{ - req_access = list(47) - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Hallway Mid 1"; - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pO" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/bio_suit/anomaly, -/obj/item/clothing/head/bio_hood/anomaly, -/obj/item/clothing/mask/breath, -/obj/item/clothing/glasses/science, -/obj/item/clothing/gloves/sterile/latex, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pP" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/bio_suit/anomaly, -/obj/item/clothing/head/bio_hood/anomaly, -/obj/item/clothing/mask/breath, -/obj/item/clothing/glasses/science, -/obj/item/clothing/gloves/sterile/latex, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pQ" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pS" = ( -/obj/effect/floor_decal/corner/purple, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pT" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Hallway Mid 2"; - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pU" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pV" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/mid) -"pW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/mid) -"pX" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pY" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"pZ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qa" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qb" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qd" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qe" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qf" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qh" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qi" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qj" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qk" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "research_pump" - }, -/obj/machinery/airlock_sensor{ - frequency = 1379; - id_tag = "research_sensor"; - pixel_x = 0; - pixel_y = -25 - }, -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"ql" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "research_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Expedition Airlock"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/starboard) -"qn" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1; - icon_state = "warningcorner_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"qo" = ( -/obj/structure/lattice, -/obj/machinery/light, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/outpost/research/dock) -"qp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/outpost/research/dock) -"qq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/dock) -"qr" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/analysis) -"qs" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Sample Preparation"; - req_access = list(47) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"qt" = ( -/obj/effect/floor_decal/corner/purple/full, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"qu" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"qv" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"qw" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/anomaly) -"qx" = ( -/turf/simulated/wall, -/area/outpost/research/anomaly) -"qy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/anomaly) -"qz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/anomaly) -"qA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/anomaly) -"qB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/anomaly) -"qC" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Anomalous Materials"; - req_access = list(65) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"qD" = ( -/obj/effect/floor_decal/corner/purple/full, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Hallway Starboard 1"; - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qE" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qF" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qG" = ( -/obj/effect/floor_decal/corner/purple, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qH" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"qI" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/eva) -"qJ" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Expedition Prep"; - req_access = list(65) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"qK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/eva) -"qL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/eva) -"qM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/hallway/starboard) -"qN" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"qO" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"qP" = ( -/obj/machinery/chemical_dispenser/full, -/obj/effect/floor_decal/corner/beige/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"qQ" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"qR" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"qS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"qT" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"qU" = ( -/obj/effect/floor_decal/corner/purple/full, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"qV" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"qW" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"qX" = ( -/obj/machinery/artifact_analyser, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"qY" = ( -/obj/machinery/artifact_scanpad, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"qZ" = ( -/obj/structure/table/rack, -/obj/item/clothing/head/welding, -/obj/item/weldingtool, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/weldingtool, -/obj/item/weldingtool, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"ra" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/item/tool/screwdriver{ - pixel_y = 15 - }, -/obj/item/melee/baton/loaded, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"rb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rc" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "anom" - }, -/turf/simulated/floor/plating, -/area/outpost/research/anomaly) -"rd" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "anom" - }, -/obj/structure/plasticflaps/mining, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/research/anomaly) -"re" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "anom" - }, -/obj/machinery/door/window, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/research/anomaly) -"rf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rh" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"ri" = ( -/obj/machinery/artifact_harvester, -/turf/simulated/floor/bluegrid, -/area/outpost/research/anomaly) -"rj" = ( -/obj/item/anodevice{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/anodevice, -/obj/structure/table/steel, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"rk" = ( -/obj/item/anobattery{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/anobattery{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/anobattery{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/anobattery{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/table/steel, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"rl" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/purple/full, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"rm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"rn" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/starboard) -"ro" = ( -/obj/machinery/suspension_gen, -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Expedition Prep" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"rp" = ( -/obj/machinery/suspension_gen, -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"rq" = ( -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"rr" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"rs" = ( -/obj/structure/table/rack, -/obj/item/storage/belt/archaeology, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/item/clothing/mask/breath, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/westright, -/obj/item/rig/hazmat, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/eva) -"rt" = ( -/obj/structure/sign/science{ - desc = "A warning sign which reads 'SCIENCE!'. It has fine print below it reading 'May or may not contain spiders'." - }, -/turf/simulated/wall/r_wall, -/area/outpost/research/eva) -"ru" = ( -/obj/machinery/chem_master, -/obj/effect/floor_decal/corner/beige/full, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rv" = ( -/obj/item/stool/padded, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rx" = ( -/obj/item/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"ry" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rz" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rA" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/corner/beige/full{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rB" = ( -/obj/structure/table/standard, -/obj/item/flame/lighter/random, -/obj/item/tool/crowbar, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -30; - pixel_y = 0 - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"rC" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"rD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rF" = ( -/obj/machinery/conveyor_switch{ - id = "anom" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rG" = ( -/obj/machinery/power/emitter{ - anchored = 1; - dir = 1; - state = 2 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rH" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rJ" = ( -/obj/machinery/artifact_scanpad, -/turf/simulated/floor/bluegrid, -/area/outpost/research/anomaly) -"rK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"rL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/outpost/research/eva) -"rM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/research/eva) -"rN" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/table/steel, -/obj/item/suit_cooling_unit, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"rO" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"rP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"rQ" = ( -/obj/structure/table/rack, -/obj/item/storage/belt/archaeology, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/item/clothing/mask/breath, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/westleft, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/eva) -"rR" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/effect/floor_decal/corner/beige/full, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rS" = ( -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper{ - pixel_y = -4 - }, -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rT" = ( -/obj/item/reagent_containers/glass/bottle/toxin, -/obj/item/reagent_containers/glass/beaker/sulphuric{ - name = "beaker 'sulphuric acid'" - }, -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rU" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rV" = ( -/obj/machinery/door/window/southright{ - name = "Spectrometry Lab"; - req_access = list(65) - }, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rW" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/beige/full{ - dir = 4 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Sample Preparation"; - dir = 8 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"rX" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rY" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 1; - tag_south = 2; - tag_west = 3 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"rZ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sa" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/dropper{ - pixel_y = -4 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Anomalous Materials Port"; - dir = 4 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = -32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"sb" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"sc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"se" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sh" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"si" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Anomalous Materials Starboard"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"sj" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/obj/structure/table/standard, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sl" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sm" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sn" = ( -/obj/item/storage/excavation, -/obj/item/pickaxe, -/obj/item/tool/wrench, -/obj/item/measuring_tape, -/obj/item/stack/flag/yellow, -/obj/structure/table/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"so" = ( -/obj/item/storage/excavation, -/obj/item/pickaxe, -/obj/item/tool/wrench, -/obj/item/measuring_tape, -/obj/item/stack/flag/yellow, -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sp" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sq" = ( -/obj/machinery/light/small, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"sr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/analysis) -"ss" = ( -/obj/item/stack/nanopaste, -/obj/item/stack/nanopaste, -/obj/item/stack/nanopaste, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"st" = ( -/obj/item/stool/padded, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"su" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"sv" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"sw" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"sx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"sy" = ( -/obj/machinery/door/airlock/research{ - name = "Spectrometry Lab"; - req_access = list(65) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"sz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sA" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sC" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/computer/area_atmos, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sD" = ( -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sF" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/flashlight/lamp, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sH" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/tape_roll, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sI" = ( -/obj/structure/table/standard, -/obj/machinery/computer/atmoscontrol/laptop{ - monitored_alarm_ids = list("isolation_one","isolation_two","isolation_three"); - req_one_access = list(47,24,11) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sJ" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/recharger{ - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/folder, -/obj/item/camera, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sL" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1; - icon_state = "map" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Anomalous Materials"; - req_access = list(65) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"sP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sQ" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sS" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Expedition Prep"; - req_access = list(65) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sV" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sW" = ( -/obj/effect/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sX" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"sY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/eva) -"sZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/analysis) -"ta" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/analysis) -"tb" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/structure/table/standard, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"tc" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"td" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"te" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"tf" = ( -/obj/machinery/radiocarbon_spectrometer, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"tg" = ( -/turf/simulated/wall, -/area/outpost/research/analysis) -"th" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Anomalous Materials Gas Filter"; - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"ti" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tj" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tk" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tm" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1; - icon_state = "map" - }, -/obj/effect/landmark{ - name = "bluespacerift" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"to" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tp" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tq" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "anolongstorage2" - }, -/turf/simulated/floor, -/area/outpost/research/anomaly) -"tr" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"ts" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"tt" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Expedition Prep Access"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"tu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/eva) -"tv" = ( -/obj/structure/closet/excavation, -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"tw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"tx" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"ty" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/research/eva) -"tz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/eva) -"tA" = ( -/obj/structure/reagent_dispensers/coolanttank, -/obj/effect/floor_decal/corner/lime/full, -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"tB" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = -29; - pixel_z = 2 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/tempstorage) -"tC" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"tD" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tE" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tF" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tG" = ( -/obj/machinery/atmospherics/unary/heater{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tH" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 1; - icon_state = "freezer" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tI" = ( -/obj/machinery/atmospherics/valve/digital/open, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tM" = ( -/obj/machinery/atmospherics/valve/digital/open, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tQ" = ( -/obj/machinery/atmospherics/valve/digital/open, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tR" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tS" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "anolongstorage" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"tT" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "anolongstorage2" - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/outpost/research/anomaly) -"tU" = ( -/turf/simulated/wall, -/area/outpost/research/power) -"tV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - name = "Research Outpost Maintenance"; - req_one_access = list(11,24,47) - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/research/power) -"tW" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/simulated/wall, -/area/outpost/research/power) -"tX" = ( -/obj/structure/closet/excavation, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"tY" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/light, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"tZ" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 0; - pixel_y = -27 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"ua" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"ub" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/analysis) -"uc" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"ud" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"ue" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"uf" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly) -"ug" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/isolation_a) -"uh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/door/airlock/research{ - name = "Isolation Room 1"; - req_access = list(65) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_a) -"ui" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/research/isolation_a) -"uj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/isolation_b) -"uk" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/research{ - name = "Isolation Room 2"; - req_access = list(65) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_b) -"ul" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/research/isolation_b) -"um" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/research/isolation_c) -"un" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/research{ - name = "Isolation Room 3"; - req_access = list(65) - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_c) -"uo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/research/isolation_c) -"up" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4; - icon_state = "warningcorner" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly) -"uq" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor, -/area/outpost/research/anomaly) -"ur" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Lounge Starboard" - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"us" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Lounge Port"; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"ut" = ( -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/outpost/research/power) -"uu" = ( -/obj/structure/closet/excavation, -/obj/effect/floor_decal/corner/purple/full, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"uv" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"uw" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"ux" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"uy" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/research/anomaly) -"uz" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_a) -"uA" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_a) -"uB" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_a) -"uC" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_b) -"uD" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_b) -"uE" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_b) -"uF" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_c) -"uG" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_c) -"uH" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_c) -"uI" = ( -/obj/structure/cable/blue, -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Research"; - charge = 500000; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/turf/simulated/floor/plating, -/area/outpost/research/power) -"uJ" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/turf/simulated/floor/plating, -/area/outpost/research/power) -"uK" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/outpost/research/power) -"uL" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - use_power = 0 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Isolation Cell 1"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_a) -"uM" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_a) -"uN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8 - }, -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "isolation_one"; - dir = 8; - pixel_x = 22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_a) -"uO" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - use_power = 0 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Isolation Cell 2"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_b) -"uP" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_b) -"uQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8 - }, -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "isolation_two"; - dir = 8; - pixel_x = 22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_b) -"uR" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - use_power = 0 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Isolation Cell 3"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_c) -"uS" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_c) -"uT" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8 - }, -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "isolation_three"; - dir = 8; - pixel_x = 22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_c) -"uU" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/power) -"uV" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/research/power) -"uW" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"uX" = ( -/obj/structure/table/standard, -/obj/item/flashlight/lamp, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_a) -"uY" = ( -/obj/machinery/artifact_scanpad, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_a) -"uZ" = ( -/obj/machinery/artifact_analyser, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_a) -"va" = ( -/obj/structure/table/standard, -/obj/item/flashlight/lamp, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_b) -"vb" = ( -/obj/machinery/artifact_scanpad, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_b) -"vc" = ( -/obj/machinery/artifact_analyser, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_b) -"vd" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_c) -"ve" = ( -/obj/structure/table/standard, -/obj/item/flashlight/lamp, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_c) -"vf" = ( -/obj/structure/bed, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/research/isolation_c) -"vg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"vh" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"vi" = ( -/turf/simulated/wall, -/area/outpost/mining_main/north_hall) -"vj" = ( -/obj/structure/lattice, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/outpost/mining_main/north_hall) -"vk" = ( -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/shuttle/mining/outpost) -"vl" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/outpost/mining_main/north_hall) -"vm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 6; - icon_state = "intact-scrubbers" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"vn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 9; - icon_state = "intact-supply" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 9; - icon_state = "intact-scrubbers" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"vo" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/medbay) -"vp" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/break_room) -"vq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"vr" = ( -/obj/structure/table/standard, -/obj/item/bodybag/cryobag, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"vs" = ( -/obj/structure/table/standard, -/obj/item/roller{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/roller, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"vt" = ( -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/break_room) -"vu" = ( -/obj/machinery/vending/snack, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/break_room) -"vv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/medbay) -"vw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/medbay) -"vx" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"vy" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"vz" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/north_hall) -"vA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/north_hall) -"vB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/north_hall) -"vC" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "mining_outpost_outer"; - locked = 1; - name = "Mining Dock Airlock"; - req_access = list(13) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "mining_outpost_airlock"; - name = "exterior access button"; - pixel_x = -30; - pixel_y = 8; - req_one_access = list(13,48) - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"vD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/north_hall) -"vE" = ( -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"vF" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"vG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/break_room) -"vH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/break_room) -"vI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/medbay) -"vJ" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"vK" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"vL" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"vM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/north_hall) -"vN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "mining_outpost_sensor"; - pixel_x = -28; - pixel_y = 0 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"vO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"vP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "mining_outpost_airlock"; - pixel_x = 28; - pixel_y = 0; - req_one_access = list(13,48); - tag_airpump = "mining_outpost_pump"; - tag_chamber_sensor = "mining_outpost_sensor"; - tag_exterior_door = "mining_outpost_outer"; - tag_interior_door = "mining_outpost_inner" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"vQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/north_hall) -"vR" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/break_room) -"vS" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"vT" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"vU" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/break_room) -"vV" = ( -/obj/machinery/disposal, -/obj/structure/sign/deathsposal{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"vW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/break_room) -"vX" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"vY" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"vZ" = ( -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wa" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/north_hall) -"wc" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "mining_outpost_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/north_hall) -"wd" = ( -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"we" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "mining_outpost_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/north_hall) -"wf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/north_hall) -"wg" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/food/drinks/bottle/small/beer{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/bottle/small/beer{ - pixel_x = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/small/beer, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/break_room) -"wh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wi" = ( -/obj/structure/table/standard, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wj" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wk" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wl" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/toxin, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wm" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wr" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"ws" = ( -/obj/structure/sign/greencross, -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/north_hall) -"wt" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/north_hall) -"wu" = ( -/turf/simulated/wall/r_wall, -/area/outpost/medical/atmos) -"wv" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/north_hall) -"ww" = ( -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = 0; - pixel_z = 32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"wx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wy" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wz" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/food/drinks/bottle/small/beer, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/item/paper{ - info = "NanoTrasen and all affiliated companies are unable to be held accountable for any and all injuries obtained as a result of mining work, though injuries may be given aid on or off station."; - name = "NANOTRASEN REMINDER" - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wC" = ( -/obj/structure/table/standard, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/break_room) -"wD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"wE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"wF" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "meoutpost_main_airlock"; - name = "exterior access button"; - pixel_x = 25; - pixel_y = -25; - req_access = newlist(); - req_one_access = list(10,48,65) - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"wG" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"wH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"wI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"wJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"wK" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/o2{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/firstaid/fire, -/obj/effect/floor_decal/corner/paleblue/full, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wL" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wM" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wN" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wO" = ( -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Medical"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wP" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/obj/machinery/computer/crew, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"wQ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"wR" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "mining_outpost_airlock"; - name = "interior access button"; - pixel_x = -30; - pixel_y = 25; - req_one_access = list(13,48) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"wS" = ( -/obj/machinery/computer/shuttle_control/mining, -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Elevator Airlock"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"wT" = ( -/obj/machinery/newscaster{ - pixel_x = 0; - pixel_y = -30 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wU" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"wV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"wW" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway/toxins_hallway) -"wX" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"wY" = ( -/turf/simulated/wall, -/area/outpost/engineering/mining/hallway) -"wZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/hallway) -"xa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "meoutpost_main_outer"; - locked = 1; - name = "Exterior Airlock" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"xb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"xc" = ( -/obj/structure/ore_box, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"xd" = ( -/turf/simulated/wall, -/area/outpost/mining_main/medbay) -"xe" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/medbay) -"xf" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medbay"; - req_one_access = newlist() - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/medbay) -"xg" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/medbay) -"xh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/medbay) -"xi" = ( -/obj/structure/sign/greencross, -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/medbay) -"xj" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xk" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xl" = ( -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Crew Area"; - dir = 8 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/break_room) -"xm" = ( -/turf/simulated/wall, -/area/outpost/mining_main/maintenance) -"xn" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/maintenance) -"xo" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1379; - id_tag = "meoutpost_main_pump" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"xp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"xq" = ( -/obj/machinery/mining/brace, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"xr" = ( -/obj/machinery/mining/drill, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"xs" = ( -/obj/structure/cable, -/obj/machinery/power/apc/super{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"xt" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"xu" = ( -/obj/machinery/floodlight, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/unexplored) -"xv" = ( -/turf/simulated/wall/r_wall, -/area/storage/emergency_storage) -"xw" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Main Aft"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"xx" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xy" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xz" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xB" = ( -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xC" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xD" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xE" = ( -/obj/effect/floor_decal/corner/brown/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"xF" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xG" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/brown/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"xI" = ( -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/effect/floor_decal/corner/brown/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"xJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"xK" = ( -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Mining"; - charge = 500000; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/maintenance) -"xL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; - id_tag = "meoutpost_main_airlock"; - pixel_x = -25; - pixel_y = 0; - req_access = newlist(); - req_one_access = list(10,48,65); - tag_airpump = "meoutpost_main_pump"; - tag_chamber_sensor = "meoutpost_main_sensor"; - tag_exterior_door = "meoutpost_main_outer"; - tag_interior_door = "meoutpost_main_inner" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"xM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"xN" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/airlock_sensor{ - frequency = 1379; - id_tag = "meoutpost_main_sensor"; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"xO" = ( -/turf/simulated/wall/r_wall, -/area/outpost/engineering/mining/atmospherics) -"xP" = ( -/obj/structure/closet/hydrant{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/storage/emergency_storage) -"xQ" = ( -/turf/simulated/wall, -/area/storage/emergency_storage) -"xR" = ( -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Research Medical" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/medical) -"xS" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xT" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xU" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xV" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xW" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xX" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Outpost Airlock"; - req_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xY" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"xZ" = ( -/obj/machinery/door/airlock/glass{ - name = "Crew Area"; - req_access = list(48) - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"ya" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/diagonal, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"yb" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/corner/brown/diagonal, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"yc" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/diagonal, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"yd" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Outpost Maintenance"; - req_one_access = list(11,24,48) - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/outpost/mining_main/maintenance) -"ye" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"yf" = ( -/obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/maintenance) -"yg" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/maintenance) -"yh" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"yi" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"yj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yk" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/outpost/research/dorms) -"ym" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yn" = ( -/obj/machinery/atmospherics/pipe/tank/phoron, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yo" = ( -/obj/machinery/atmospherics/pipe/tank/nitrous_oxide, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yp" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yq" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yr" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/storage/emergency_storage) -"ys" = ( -/obj/machinery/door/airlock{ - name = "Mining Emergency Storage" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/storage/emergency_storage) -"yt" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"yu" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"yv" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"yw" = ( -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Hallway Fore"; - dir = 1 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"yx" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"yy" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"yz" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"yA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"yB" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/break_room) -"yC" = ( -/obj/effect/floor_decal/corner/brown/diagonal, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"yD" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/corner/brown/diagonal, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/break_room) -"yE" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/simulated/wall, -/area/outpost/mining_main/maintenance) -"yF" = ( -/obj/machinery/light/small, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/maintenance) -"yG" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/maintenance) -"yH" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"yI" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"yJ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5; - icon_state = "warning_dust" - }, -/obj/structure/ore_box, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"yK" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"yL" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"yM" = ( -/obj/machinery/shieldwallgen, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"yN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/research/dorms) -"yO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"yP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "meoutpost_main_airlock"; - name = "interior access button"; - pixel_x = -26; - pixel_y = 25; - req_access = newlist(); - req_one_access = list(10,48,65) - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"yQ" = ( -/obj/structure/sign/vacuum{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"yR" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yT" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yW" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yX" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4; - icon_state = "map" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"yY" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/dorms) -"yZ" = ( -/turf/simulated/wall, -/area/outpost/mining_main/dorms) -"za" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = 0; - pixel_z = 31 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly) -"zb" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"zc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark{ - name = "bluespacerift" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"zd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"ze" = ( -/obj/machinery/vending/wallmed1{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/dock) -"zf" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/refinery) -"zg" = ( -/turf/simulated/wall, -/area/outpost/mining_main/refinery) -"zh" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"zi" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"zj" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zk" = ( -/obj/machinery/shieldwallgen, -/obj/structure/extinguisher_cabinet{ - pixel_x = 7; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zm" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zp" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zq" = ( -/obj/machinery/door/airlock/atmos{ - req_one_access = list(10,48,65) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 9; - icon_state = "intact-supply" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zt" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zu" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zv" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 2; - tag_north = 6; - tag_south = 0; - tag_west = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zw" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 2; - tag_north = 7; - tag_west = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zx" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 2; - tag_north = 5; - tag_west = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zy" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zz" = ( -/obj/machinery/shower{ - dir = 4; - icon_state = "shower"; - pixel_x = 5 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/outpost/mining_main/dorms) -"zA" = ( -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"zB" = ( -/obj/item/bedsheet/brown, -/obj/structure/bed/padded, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"zC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"zD" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"zE" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Outpost Airlock"; - req_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"zF" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Outpost Airlock"; - req_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"zG" = ( -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"zH" = ( -/obj/machinery/mineral/input, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'MOVING PARTS'."; - name = "\improper MOVING PARTS"; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/loading{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"zI" = ( -/obj/machinery/mineral/unloading_machine, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"zJ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_internal" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"zK" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_internal" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"zL" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_internal" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"zM" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "mining_internal" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"zN" = ( -/obj/machinery/mineral/unloading_machine{ - icon_state = "unloader-corner" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"zO" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_external" - }, -/obj/machinery/mineral/input, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"zP" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_external" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"zQ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_external" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/mining_main/refinery) -"zR" = ( -/turf/simulated/wall/r_wall, -/area/outpost/engineering/mining/telecomms) -"zS" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zT" = ( -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"zW" = ( -/turf/simulated/wall, -/area/outpost/medical/atmos) -"zX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 7; - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zY" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"zZ" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"Aa" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"Ab" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Mining Atmospherics"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"Ac" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"Ad" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1; - start_pressure = 740 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"Ae" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/mining_main/dorms) -"Af" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/mining_main/dorms) -"Ag" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"Ah" = ( -/obj/machinery/button/remote/airlock{ - id = "miningdorm2"; - name = "Door Bolt Control"; - pixel_x = 25; - pixel_y = 0; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"Ai" = ( -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Aj" = ( -/obj/structure/table/steel, -/obj/item/cell/high, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Ak" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/dorms) -"Al" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Am" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"An" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Ao" = ( -/obj/structure/reagent_dispensers/coolanttank, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "science_dinger"; - name = "Science request chime"; - pixel_w = 0; - pixel_z = -28 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/analysis) -"Ap" = ( -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"Aq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"Ar" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "mining_internal" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"As" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"At" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Mining Telecomm"; - dir = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/mining/telecomms) -"Au" = ( -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/mining/telecomms) -"Av" = ( -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"Aw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"Ax" = ( -/obj/machinery/door/airlock{ - name = "Toilet" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/outpost/mining_main/dorms) -"Ay" = ( -/obj/machinery/door/airlock{ - id_tag = "miningdorm2"; - name = "Room 2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"Az" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"AA" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"AB" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/dorms) -"AC" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"AD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"AE" = ( -/obj/structure/noticeboard{ - pixel_y = 27 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"AF" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"AG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"AH" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"AI" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"AJ" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"AK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"AL" = ( -/obj/structure/ore_box, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"AM" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"AN" = ( -/obj/machinery/conveyor_switch{ - id = "mining_external" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"AO" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"AP" = ( -/obj/machinery/telecomms/relay/preset/mining, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/mining/telecomms) -"AQ" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/mining/telecomms) -"AR" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Telecommunication Hub"; - req_one_access = list(10,48,65) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/mining/telecomms) -"AS" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"AT" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/vending/wallmed1{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"AU" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"AV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/dispenser/oxygen, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"AW" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"AX" = ( -/turf/simulated/wall, -/area/outpost/engineering/mining/power) -"AY" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"AZ" = ( -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Mining Engineering"; - charge = 500000; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/outpost/engineering/mining/power) -"Ba" = ( -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Bb" = ( -/obj/random/tool, -/obj/random/tool, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Bc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Bd" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Be" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Bf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Bg" = ( -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Production Room"; - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"Bh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Bi" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Bj" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Bk" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Bl" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Bm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Dorms"; - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Bn" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Production Area"; - req_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"Bo" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"Bp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"Bq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = -32 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Br" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"Bs" = ( -/obj/machinery/mineral/input, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"Bt" = ( -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"Bu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/mining/telecomms) -"Bv" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/mining/telecomms) -"Bw" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/engineering{ - name = "Generator Room"; - req_one_access = list(10,48,65) - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Bx" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"By" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"Bz" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"BA" = ( -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"BB" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BC" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BE" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BI" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BK" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"BL" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Production Area"; - req_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"BM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"BN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"BO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"BP" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "mining_internal"; - name = "mining conveyor" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"BQ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"BR" = ( -/obj/machinery/mineral/processing_unit_console, -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/refinery) -"BS" = ( -/obj/machinery/mineral/processing_unit, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"BT" = ( -/obj/machinery/mining/brace, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"BU" = ( -/obj/machinery/mining/drill, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"BV" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4; - icon_state = "warning_dust" - }, -/obj/machinery/mining/brace, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"BW" = ( -/obj/machinery/cell_charger, -/obj/structure/table/steel, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Mining Power Port"; - dir = 2 - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"BX" = ( -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"BY" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"BZ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Ca" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Cb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"Cc" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Cd" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Ce" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Cf" = ( -/obj/machinery/door/airlock{ - id_tag = "miningdorm3"; - name = "Room 3" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"Cg" = ( -/obj/machinery/door/airlock{ - id_tag = "miningdorm1"; - name = "Room 1" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"Ch" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Ci" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Hallway Mid"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Cj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"Ck" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"Cl" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"Cm" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"Cn" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"Co" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/standard, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"Cp" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "mining_internal" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"Cq" = ( -/obj/structure/table/steel, -/obj/item/tool/screwdriver, -/obj/item/tool/crowbar, -/obj/item/tool/wrench, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"Cr" = ( -/obj/structure/closet/crate, -/obj/item/stack/material/phoron{ - amount = 50 - }, -/obj/item/stack/material/phoron{ - amount = 50 - }, -/obj/item/stack/material/phoron{ - amount = 50 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Cs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6; - icon_state = "intact" - }, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"Ct" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Cu" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Cv" = ( -/obj/machinery/floodlight, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Mining Power Starboard"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Cw" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"Cx" = ( -/turf/simulated/wall/r_wall, -/area/outpost/medical/storage) -"Cy" = ( -/obj/machinery/button/remote/airlock{ - id = "miningdorm1"; - name = "Door Bolt Control"; - pixel_x = 25; - pixel_y = 0; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"Cz" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"CA" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Toxins Catwalk Mid"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/hallway/catwalk) -"CB" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/hallway/catwalk) -"CC" = ( -/turf/simulated/wall/r_wall, -/area/outpost/medical/rec) -"CD" = ( -/turf/simulated/wall/r_wall, -/area/outpost/medical/dorm) -"CE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CG" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CH" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/status_display{ - pixel_z = 31 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CI" = ( -/obj/structure/bed/chair, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CJ" = ( -/obj/structure/bed/chair, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"CL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "medoutdorm1"; - name = "Door Bolt Control"; - pixel_w = -19; - pixel_x = 25; - pixel_y = 0; - pixel_z = 28; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"CM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "medoutdorm1"; - name = "Room 1" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"CN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"CO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "medoutdorm2"; - name = "Room 2" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"CP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "medoutdorm2"; - name = "Door Bolt Control"; - pixel_w = -32; - pixel_x = 25; - pixel_y = 0; - pixel_z = 29; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"CQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"CR" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"CS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"CT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CV" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CW" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CX" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"CY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"CZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/table/standard, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"Da" = ( -/obj/structure/table/standard, -/obj/machinery/light/small, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"Db" = ( -/turf/simulated/wall, -/area/outpost/medical/dorm) -"Dc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"Dd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"De" = ( -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"Df" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5; - icon_state = "intact" - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "medical_dinger"; - name = "Medical request chime"; - pixel_w = 1; - pixel_z = -29 - }, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"Dg" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"Dh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"Di" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/medical/atmos) -"Dj" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Outpost"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/atmos) -"Dk" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Dl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Dm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Dn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Do" = ( -/obj/structure/table/standard, -/obj/item/radio{ - anchored = 1; - broadcasting = 0; - canhear_range = 1; - frequency = 1487; - icon = 'icons/obj/items.dmi'; - icon_state = "red_phone"; - listening = 1; - name = "Medical Emergency Phone" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Dp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/vending/wallmed1{ - pixel_w = 31 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"Dq" = ( -/turf/simulated/wall/r_wall, -/area/outpost/medical/backup_power) -"Dr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass_engineering{ - name = "Medical Outpost - generator room"; - req_access = null - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"Ds" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"Dt" = ( -/turf/simulated/wall, -/area/outpost/medical/backup_power) -"Du" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/vending/wallmed1{ - pixel_w = -30 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Dv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Dw" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Dx" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Dy" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Dz" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/table/standard, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DB" = ( -/obj/structure/table/standard, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DE" = ( -/obj/effect/shuttle_landmark/premade/northern_star/ns_mine_dock, -/turf/space, -/area/space) -"DF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"DG" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"DH" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"DI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"DJ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"DK" = ( -/turf/simulated/wall, -/area/outpost/medical/rec) -"DL" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"DM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"DN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"DO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"DP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"DQ" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Outpost"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"DR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DV" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "medoutdorm3"; - name = "Room 3" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "medoutdorm3"; - name = "Door Bolt Control"; - pixel_w = -18; - pixel_x = 25; - pixel_y = 0; - pixel_z = -26; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"DZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"Ea" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Eb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Ec" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Ed" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Ee" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"Ef" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"Eg" = ( -/obj/machinery/power/port_gen/pacman, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"Eh" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Ei" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Ej" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Ek" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"El" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/item/storage/box/donkpockets, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Em" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"En" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Eo" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -28 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "medical_dinger"; - name = "Medical request chime"; - pixel_w = 28; - pixel_z = -29 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Ep" = ( -/turf/simulated/wall/r_wall, -/area/outpost/medical/hallway) -"Eq" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Er" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Es" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/fiftyspawner/phoron, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"Et" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"Eu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"Ev" = ( -/obj/machinery/power/port_gen/pacman, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/backup_power) -"Ew" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/wall, -/area/outpost/medical/backup_power) -"Ex" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Outpost"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/rec) -"Ey" = ( -/obj/machinery/shower{ - dir = 4; - icon_state = "shower"; - pixel_x = 5 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/outpost/medical/dorm) -"Ez" = ( -/obj/structure/mirror{ - pixel_x = 30; - pixel_y = -2 - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/freezer, -/area/outpost/medical/dorm) -"EA" = ( -/turf/simulated/mineral/vacuum, -/area/mine/explored) -"EB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"EC" = ( -/turf/simulated/wall/r_wall, -/area/outpost/medical/airlocks) -"ED" = ( -/turf/simulated/wall, -/area/outpost/medical/airlocks) -"EE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall, -/area/outpost/medical/airlocks) -"EF" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"EG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Outpost"; - req_access = list(5) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"EH" = ( -/turf/simulated/wall, -/area/outpost/medical/main_room) -"EI" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"EJ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"EK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"EL" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"EM" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/medical/dorm) -"EN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/button/remote/airlock{ - id = "medoutrest"; - name = "Door Bolt Control"; - pixel_w = -18; - pixel_x = 25; - pixel_y = 0; - pixel_z = -26; - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/outpost/medical/dorm) -"EO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/medical{ - id_tag = "medoutrest"; - name = "Rest Room"; - req_one_access = newlist() - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"EP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"EQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock{ - id_tag = "medoutdorm4"; - name = "Room 4" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"ER" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "medoutdorm4"; - name = "Door Bolt Control"; - pixel_w = -18; - pixel_x = 25; - pixel_y = 0; - pixel_z = -26; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/medical/dorm) -"ES" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"ET" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"EU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/unexplored) -"EV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"EW" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "med_outpost_airlock2_vent" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"EX" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "med_outpost_airlock2_vent" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "med_outpost_airlock2"; - pixel_x = -6; - pixel_y = -25; - pixel_z = 51; - req_one_access = list(5); - tag_airpump = "med_outpost_airlock2_vent"; - tag_chamber_sensor = "med_outpost_airlock2_sensor"; - tag_exterior_door = "med_outpost_airlock2_outer"; - tag_interior_door = "med_outpost_airlock2_inner" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "med_outpost_airlock2_sensor"; - pixel_x = 6; - pixel_y = -24; - pixel_z = 49 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"EY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"EZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fa" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fd" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/roller{ - pixel_y = 16 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Fe" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Ff" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/vending/wallmed1{ - pixel_z = 30 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Fg" = ( -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/outpost/medical/atmos) -"Fh" = ( -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - SMES"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/research/power) -"Fi" = ( -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - Research Outpost"; - name_tag = "Research Outpost" - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/structure/cable/blue, -/turf/simulated/floor/plating, -/area/outpost/research/power) -"Fj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Fk" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "med_outpost_airlock2_outer"; - locked = 1; - name = "Medical EVA Airlock 1"; - req_access = list(5); - req_one_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8; - icon_state = "map" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fm" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "med_outpost_airlock2_inner"; - locked = 1; - name = "Medical EVA Airlock 2"; - req_access = list(5); - req_one_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Fr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Fs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Ft" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Fu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Fv" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/closet/emcloset, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Fw" = ( -/turf/simulated/wall, -/area/outpost/medical/hallway) -"Fx" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Fy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/radio{ - frequency = 1487; - icon_state = "med_walkietalkie"; - name = "Medbay Emergency Radio Link" - }, -/obj/item/radio{ - frequency = 1487; - icon_state = "med_walkietalkie"; - name = "Medbay Emergency Radio Link" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Fz" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/closet/firecloset/full, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FA" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"FB" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "med_outpost_airlock2_vent" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"FC" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "med_outpost_airlock2_vent" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"FD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"FE" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"FF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"FG" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"FH" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"FI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"FJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"FK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"FL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"FM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/wall, -/area/outpost/medical/main_room) -"FN" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"FO" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"FP" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FQ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FT" = ( -/obj/structure/closet/hydrant{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FU" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FV" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "med_outpost_pump" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FW" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "med_outpost_pump" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FX" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"FY" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "med_outpost_airlock1"; - name = "airlock 1 access button"; - pixel_w = -3; - pixel_x = 25; - pixel_y = 25; - pixel_z = -35; - req_access = list(45); - req_one_access = list(5) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "med_outpost_airlock2"; - name = "airlock 2 access button"; - pixel_w = -3; - pixel_x = 25; - pixel_y = 25; - pixel_z = -15; - req_access = list(45); - req_one_access = list(5) - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"FZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "med_outpost_airlock1"; - name = "airlock 1 access button"; - pixel_w = -48; - pixel_x = 25; - pixel_y = 25; - pixel_z = -35; - req_access = list(45); - req_one_access = list(5) - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "med_outpost_airlock2"; - name = "airlock 2 access button"; - pixel_w = -48; - pixel_x = 25; - pixel_y = 25; - pixel_z = -16; - req_access = list(45); - req_one_access = list(5) - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Ga" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Gb" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Gc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Gd" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Outpost Airlocks"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Ge" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Gf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Gg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/wall, -/area/outpost/medical/main_room) -"Gh" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/wall, -/area/outpost/medical/main_room) -"Gi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Gj" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Outpost"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Gk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Gl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Gm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Gn" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Go" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Gp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "med_outpost_inner"; - locked = 1; - name = "Medical Outpost Dock Airlock"; - req_access = list(5); - req_one_access = list(5) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Gq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Gr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Gs" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "med_outpost_outer"; - locked = 1; - name = "Medical Outpost Dock Airlock"; - req_access = list(5); - req_one_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"Gt" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "med_outpost_airlock1_vent" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Gu" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1380; - id_tag = "med_outpost_airlock1_vent" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Gv" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Gw" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Gx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Gy" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/item/defib_kit/loaded, -/obj/item/defib_kit/loaded, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Gz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall, -/area/outpost/medical/main_room) -"GA" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/status_display{ - pixel_z = 31 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"GB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"GC" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"GD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"GE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"GF" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"GG" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "med_outpost_airlock"; - name = "interior access button"; - pixel_w = -18; - pixel_x = 25; - pixel_y = 25; - pixel_z = -47; - req_one_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"GH" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "med_outpost_airlock"; - pixel_x = -6; - pixel_y = -25; - req_access = list(5); - tag_airpump = "med_outpost_pump"; - tag_chamber_sensor = "med_outpost_sensor"; - tag_exterior_door = "med_outpost_outer"; - tag_interior_door = "med_outpost_inner" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "med_outpost_sensor"; - pixel_x = 6; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"GI" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/hallway) -"GJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/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/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"GK" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "med_outpost_airlock1_outer"; - locked = 1; - name = "Medical EVA Airlock 1"; - req_access = list(5); - req_one_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"GL" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "med_outpost_airlock1_inner"; - locked = 1; - name = "Medical EVA Airlock 1"; - req_access = list(5); - req_one_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"GM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"GN" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"GO" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/computer/crew{ - dir = 4; - icon_state = "computer"; - pixel_w = -4; - pixel_z = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"GP" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - pixel_w = -13; - pixel_z = 2 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"GQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"GR" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/storage/firstaid/toxin, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"GS" = ( -/turf/simulated/wall, -/area/outpost/medical/surgery) -"GT" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/curtain/medical, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/outpost/medical/surgery) -"GU" = ( -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre 1"; - req_access = list(45) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/curtain/medical, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"GV" = ( -/obj/structure/grille, -/obj/structure/curtain/medical, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/outpost/medical/surgery) -"GW" = ( -/obj/structure/lattice, -/obj/machinery/light, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"GX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"GY" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "med_outpost_airlock1_vent" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"GZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "med_outpost_airlock1_vent" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "med_outpost_airlock1"; - pixel_x = -6; - pixel_y = -25; - req_one_access = list(5); - tag_airpump = "med_outpost_airlock1_vent"; - tag_chamber_sensor = "med_outpost_airlock1_sensor"; - tag_exterior_door = "med_outpost_airlock1_outer"; - tag_interior_door = "med_outpost_airlock1_inner" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "med_outpost_airlock1_sensor"; - pixel_x = 6; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Ha" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/vending/wallmed1{ - pixel_z = -30 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Hb" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Hc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Hd" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/structure/closet/emcloset, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"He" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -28 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "medical_dinger"; - name = "Medical request chime"; - pixel_w = -28; - pixel_z = 3 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Hf" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/o2{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/firstaid/fire, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Hg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/vending/wallmed1{ - pixel_z = 32 - }, -/obj/structure/closet/secure_closet/medical2{ - req_access = list(45); - req_one_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Hh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Hi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Hj" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Hk" = ( -/obj/structure/mirror, -/turf/simulated/wall, -/area/outpost/medical/surgery) -"Hl" = ( -/turf/simulated/wall, -/area/outpost/medical/suit_storage) -"Hm" = ( -/turf/simulated/wall/r_wall, -/area/outpost/medical/suit_storage) -"Hn" = ( -/obj/machinery/light/small{ - brightness_color = "#DA0205"; - brightness_power = 1; - brightness_range = 5 - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"Ho" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass_engineering{ - name = "Medical Outpost - Power"; - req_access = null - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/airlocks) -"Hp" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Hq" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Hr" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Hs" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/main_room) -"Ht" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/status_display{ - pixel_w = 0; - pixel_z = 32 - }, -/obj/structure/table/standard, -/obj/item/autopsy_scanner, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Hu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Hv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Hw" = ( -/obj/machinery/optable, -/obj/structure/curtain/medical, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Hx" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Hy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/head/radiation, -/obj/structure/table/rack, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Hz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/floodlight, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"HA" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"HB" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/simulated/wall/r_wall, -/area/outpost/medical/hallway) -"HC" = ( -/turf/simulated/wall, -/area/mine/unexplored) -"HD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HG" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HH" = ( -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Medical"; - charge = 500000; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HI" = ( -/turf/simulated/wall, -/area/outpost/medical/power) -"HJ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HK" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HL" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HM" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"HN" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Outpost"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"HO" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "medical_dinger"; - name = "Medical request chime"; - pixel_w = -28; - pixel_z = 2 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"HP" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"HQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"HR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"HS" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/item/surgical/cautery, -/obj/item/surgical/hemostat, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"HT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"HU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"HV" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"HW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6; - icon_state = "intact" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"HX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"HZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"Ia" = ( -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - Medical Outpost"; - name_tag = "Medical Outpost" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"Ib" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"Ic" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/suit_cycler/medical, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Id" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Ie" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"If" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/tank/oxygen, -/obj/item/clothing/suit/space/void/medical/emt, -/obj/item/clothing/head/helmet/space/void/medical/emt, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Ig" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/bodyscanner{ - text = "O" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Ih" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/machinery/body_scanconsole{ - text = "O" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Ii" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Ij" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/item/surgical/bonesetter, -/obj/item/surgical/bonegel, -/obj/item/surgical/circular_saw{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Ik" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/item/surgical/scalpel, -/obj/item/surgical/retractor, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Il" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/item/stack/medical/advanced/bruise_pack, -/obj/item/surgical/FixOVein, -/obj/item/surgical/surgicaldrill, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/surgery) -"Im" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"In" = ( -/obj/structure/table/standard, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/toolbox/emergency, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Io" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Ip" = ( -/turf/simulated/wall/r_wall, -/area/outpost/medical/power) -"Iq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"Ir" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"Is" = ( -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"It" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"Iu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"Iv" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/suit_cycler/medical, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Iw" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/tank/oxygen, -/obj/item/clothing/suit/space/void/medical/emt, -/obj/item/clothing/head/helmet/space/void/medical/emt, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Ix" = ( -/obj/structure/table/standard, -/obj/item/extinguisher, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Iy" = ( -/turf/space, -/area/mine/explored) -"Iz" = ( -/obj/machinery/atmospherics/pipe/vent/high_volume{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"IA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"IB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"IC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"ID" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"IE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"IF" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/power) -"IG" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/machinery/vending/wallmed1{ - pixel_w = -29 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"II" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IK" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Outpost"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IP" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Outpost"; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IS" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -28 - }, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IT" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical, -/obj/item/clothing/head/helmet/space/void/medical, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical, -/obj/item/clothing/head/helmet/space/void/medical, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IU" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical, -/obj/item/clothing/head/helmet/space/void/medical, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical, -/obj/item/clothing/head/helmet/space/void/medical, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IV" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IW" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/tank/oxygen, -/obj/item/clothing/suit/space/void/medical/emt, -/obj/item/clothing/head/helmet/space/void/medical/emt, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"IZ" = ( -/obj/machinery/cell_charger, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Ja" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/white, -/area/outpost/medical/suit_storage) -"Jb" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "mining_outpost_inner"; - locked = 1; - name = "Mining Dock Airlock"; - req_access = list(13) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"Jc" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-06"; - pixel_y = 8 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "cargo_dinger"; - name = "Cargo request chime"; - pixel_w = -28; - pixel_z = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/break_room) -"Jd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/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/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Je" = ( -/obj/structure/table/standard, -/obj/item/storage/box/donkpockets, -/obj/machinery/alarm{ - alarms_hidden = 1; - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/break_room) -"Jf" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/storage/emergency_storage) -"Jg" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/machinery/camera/network/mining{ - c_tag = "OPM - SMES" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/maintenance) -"Jh" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -25; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/storage/emergency_storage) -"Ji" = ( -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - Mining Outpost"; - name_tag = "Mining Outpost" - }, -/obj/structure/cable/blue, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/maintenance) -"Jj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "meoutpost_main_inner"; - locked = 1; - name = "Exterior Airlock" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"Jk" = ( -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/atmospherics) -"Jl" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/storage/emergency_storage) -"Jm" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/storage/box/lights/mixed, -/obj/item/extinguisher, -/turf/simulated/floor/plating, -/area/storage/emergency_storage) -"Jn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"Jo" = ( -/obj/effect/floor_decal/corner/brown/full, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "cargo_dinger"; - name = "Cargo request chime"; - pixel_w = -29; - pixel_z = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"Jp" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/machinery/vending/wallmed1{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/north_hall) -"Jq" = ( -/obj/structure/mirror{ - pixel_x = 30; - pixel_y = -2 - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/freezer, -/area/outpost/mining_main/dorms) -"Jr" = ( -/obj/structure/table/standard, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"Js" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Mining Main"; - dir = 8 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"Jt" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"Ju" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/mining/hallway) -"Jv" = ( -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/blue, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - Engineering Outpost"; - name_tag = "Engineering Outpost" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Jw" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Jx" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - Asteroid Main Grid"; - name_tag = "Asteroid Main Grid" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Jy" = ( -/obj/machinery/button/remote/airlock{ - id = "miningdorm3"; - name = "Door Bolt Control"; - pixel_w = -1; - pixel_x = 25; - pixel_y = 0; - pixel_z = -1; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"Jz" = ( -/obj/item/clothing/under/overalls, -/obj/item/clothing/under/rank/miner, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"JA" = ( -/obj/machinery/alarm{ - alarms_hidden = 1; - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"JB" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -26 - }, -/obj/machinery/mineral/equipment_vendor, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"JC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"JD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"JE" = ( -/obj/machinery/mineral/stacking_unit_console, -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/refinery) -"JF" = ( -/obj/structure/table/steel, -/obj/item/cell/high, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"JG" = ( -/obj/structure/table/steel, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"JH" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Outpost - Main Power Unit 1"; - charge = 1.5e+007; - cur_coils = 3; - input_attempt = 1; - input_level = 750000; - input_level_max = 750000; - output_level = 750000; - output_level_max = 750000 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"JI" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"JJ" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Outpost - Main Power Unit 2"; - charge = 1.5e+007; - cur_coils = 3; - input_attempt = 1; - input_level = 750000; - input_level_max = 750000; - output_level = 750000; - output_level_max = 750000 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"JK" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"JL" = ( -/obj/structure/table/standard, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/carpet, -/area/outpost/mining_main/dorms) -"JM" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/dorms) -"JN" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"JO" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/dorms) -"JP" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'MOVING PARTS'."; - name = "\improper MOVING PARTS"; - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/light, -/obj/effect/floor_decal/industrial/loading{ - dir = 8; - icon_state = "loadingarea" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"JQ" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/structure/plasticflaps, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"JR" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"JS" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"JT" = ( -/obj/machinery/mineral/stacking_machine, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"JU" = ( -/obj/machinery/conveyor{ - dir = 5; - icon_state = "conveyor0"; - id = "mining_internal" - }, -/obj/machinery/mineral/input, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/refinery) -"JV" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"JW" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/refinery) -"JX" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"JY" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"JZ" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Ka" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Kb" = ( -/obj/structure/closet/toolcloset, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Kc" = ( -/obj/structure/ore_box, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/dorms) -"Kd" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/dorms) -"Ke" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/eva) -"Kf" = ( -/turf/simulated/wall, -/area/outpost/mining_main/eva) -"Kg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Kh" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable/yellow, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Ki" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable/yellow, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/outpost/engineering/mining/power) -"Kj" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/storage) -"Kk" = ( -/obj/structure/ore_box, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Kl" = ( -/obj/structure/closet/secure_closet/miner, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Km" = ( -/obj/structure/closet/secure_closet/miner, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Kn" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Outpost Airlock"; - req_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"Ko" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Outpost Airlock"; - req_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"Kp" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Outpost Airlock"; - req_access = list(48) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"Kq" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/mining, -/obj/item/mining_scanner, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Kr" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/mining, -/obj/item/mining_scanner, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Ks" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Kt" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"Ku" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1377; - id_tag = "mvent" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1377; - id_tag = "mcontrol"; - pixel_x = 0; - pixel_y = 28; - tag_airpump = "mvent"; - tag_chamber_sensor = "msensor"; - tag_exterior_door = "mext"; - tag_interior_door = "mint" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Kv" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1377; - id_tag = "mvent" - }, -/obj/machinery/airlock_sensor{ - frequency = 1377; - id_tag = "msensor"; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Kw" = ( -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "cargo_dinger"; - name = "Cargo request chime"; - pixel_w = -31; - pixel_z = 1 - }, -/obj/machinery/drone_fabricator/mining, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Kx" = ( -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Ky" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/mining_scanner, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/item/rig/industrial/equipped, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Kz" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/storage) -"KA" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"KB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"KC" = ( -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"KD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"KE" = ( -/obj/structure/dispenser/oxygen, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KH" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/machinery/access_button/airlock_interior{ - frequency = 1377; - master_tag = "mcontrol"; - pixel_x = 26; - pixel_y = -26; - req_access = list(48) - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KK" = ( -/obj/machinery/door/airlock/external{ - frequency = 1377; - icon_state = "door_locked"; - id_tag = "mint"; - locked = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KL" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; - icon_state = "map" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KN" = ( -/obj/machinery/door/airlock/external{ - frequency = 1377; - icon_state = "door_locked"; - id_tag = "mext"; - locked = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KO" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4; - icon_state = "warning_dust" - }, -/obj/machinery/access_button/airlock_exterior{ - frequency = 1377; - master_tag = "mcontrol"; - pixel_x = -26; - pixel_y = 26; - req_access = list(48) - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"KP" = ( -/obj/effect/mine/stun, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"KQ" = ( -/obj/machinery/computer/drone_control{ - name = "Mining Drone Control" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"KR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"KS" = ( -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Storage Room"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"KT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/storage) -"KU" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"KV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"KW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"KX" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"KY" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining EVA"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"KZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"La" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Lb" = ( -/obj/effect/landmark{ - name = "bluespacerift" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Lc" = ( -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Ld" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1377; - id_tag = "mvent" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Le" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1377; - id_tag = "mvent" - }, -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Airlock"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Lf" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Lg" = ( -/obj/structure/table/steel, -/obj/item/suit_cooling_unit, -/obj/item/suit_cooling_unit, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Lh" = ( -/obj/structure/table/steel, -/obj/item/pickaxe, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Li" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Lj" = ( -/obj/machinery/door/airlock/mining{ - name = "Mining Station Storage"; - req_access = list(48) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Lk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"Ll" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/landmark{ - name = "bluespacerift" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"Lm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"Ln" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Station EVA"; - req_access = list(54) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Lo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Lp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Lq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Lr" = ( -/obj/machinery/suit_cycler/mining, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Ls" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"Lt" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"Lu" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Lv" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Lw" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Lx" = ( -/obj/machinery/door/airlock/mining{ - name = "Mining Station Storage"; - req_access = list(48) - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"Ly" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"Lz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"LA" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"LB" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Station EVA"; - req_access = list(54) - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LC" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LE" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/structure/table/steel, -/obj/item/stack/flag/green{ - pixel_x = -4 - }, -/obj/item/stack/flag/yellow{ - pixel_x = 4 - }, -/obj/item/stack/flag/red, -/obj/item/storage/box/nifsofts_mining, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LF" = ( -/obj/structure/table/rack, -/obj/item/tool/wrench, -/obj/item/tool/crowbar, -/obj/item/shovel, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"LG" = ( -/obj/structure/table/rack, -/obj/item/pickaxe, -/obj/item/tool/wrench, -/obj/item/tool/crowbar, -/obj/item/shovel, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"LH" = ( -/turf/simulated/wall, -/area/outpost/mining_main/storage) -"LI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Mining Hallway Aft"; - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"LJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"LK" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"LL" = ( -/obj/structure/table/steel, -/obj/item/pickaxe, -/obj/item/storage/belt/utility, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LM" = ( -/obj/structure/table/steel, -/obj/item/storage/toolbox/mechanical, -/obj/item/tool/wrench, -/obj/item/tool/crowbar, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LN" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"LO" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/storage) -"LP" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -20 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/south_hall) -"LQ" = ( -/obj/item/storage/backpack/satchel, -/obj/structure/table/steel, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "cargo_dinger"; - name = "Cargo request chime"; - pixel_w = -28; - pixel_z = 2 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LR" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/conveyor_switch{ - id = "drone_mech_travel" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LS" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "drone_mech_travel" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LT" = ( -/turf/simulated/floor, -/area/outpost/mining_main/south_hall) -"LU" = ( -/obj/machinery/mech_recharger, -/obj/machinery/light, -/turf/simulated/floor/plating, -/area/outpost/mining_main/south_hall) -"LV" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "drone_mech_travel" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"LW" = ( -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/outpost/mining_main/eva) -"LX" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/south_hall) -"LY" = ( -/turf/simulated/wall, -/area/outpost/mining_main/south_hall) -"LZ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Ma" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Mb" = ( -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Mc" = ( -/obj/structure/ore_box, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Md" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Me" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"Mf" = ( -/obj/machinery/conveyor{ - id = "drone_mech_travel" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Mg" = ( -/obj/structure/plasticflaps/mining, -/obj/machinery/conveyor{ - id = "drone_mech_travel" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"Mh" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Mi" = ( -/obj/machinery/conveyor{ - id = "drone_mech_travel" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Mj" = ( -/obj/machinery/camera/network/mining{ - c_tag = "OPM - Exterior" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Mk" = ( -/obj/machinery/conveyor_switch{ - id = "drone_mech_travel" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Ml" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Mm" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Mn" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/mining_main/eva) -"Mo" = ( -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/unexplored) -"Mp" = ( -/turf/space, -/area/skipjack_station/mining) -"Mq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Mr" = ( -/obj/machinery/light/small, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Ms" = ( -/obj/machinery/light, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/kitchen) -"Mt" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9; - icon_state = "warning_dust" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"Mu" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "eoutpost_main_airlock"; - name = "exterior access button"; - pixel_x = 25; - pixel_y = -25; - req_access = list(10) - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/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/asteroid_steel/airless, -/area/mine/explored) -"Mv" = ( -/obj/machinery/light, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/kitchen) -"Mw" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"Mx" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/engineering/kitchen) -"My" = ( -/turf/simulated/wall/r_wall, -/area/outpost/engineering/hallway) -"Mz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"MA" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "eoutpost_main_outer"; - locked = 1; - name = "Engineering Outpost" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"MB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"MC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"MD" = ( -/turf/simulated/wall/r_wall, -/area/outpost/engineering/storage) -"ME" = ( -/obj/machinery/cell_charger, -/obj/structure/table/steel, -/obj/structure/cable, -/obj/item/frame/apc, -/obj/item/module/power_control, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"MF" = ( -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/structure/table/steel, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"MG" = ( -/turf/simulated/wall/r_wall, -/area/outpost/engineering/kitchen) -"MH" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"MI" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/engineering/kitchen) -"MJ" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/engineering/kitchen) -"MK" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1379; - id_tag = "eoutpost_main_pump" - }, -/obj/machinery/airlock_sensor{ - frequency = 1379; - id_tag = "eoutpost_main_sensor"; - pixel_x = -25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"ML" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"MM" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1379; - id_tag = "eoutpost_main_pump" - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"MN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"MO" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4; - icon_state = "warning_dust" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/engineering/kitchen) -"MP" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8; - icon_state = "warning_dust" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/engineering/kitchen) -"MQ" = ( -/turf/simulated/wall/r_wall, -/area/outpost/engineering/atmospherics) -"MR" = ( -/obj/machinery/telecomms/relay/preset/mining, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/telecomms) -"MS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/outpost/engineering/telecomms) -"MT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; - id_tag = "eoutpost_main_airlock"; - pixel_x = -25; - pixel_y = 0; - req_access = list(10); - tag_airpump = "eoutpost_main_pump"; - tag_chamber_sensor = "eoutpost_main_sensor"; - tag_exterior_door = "eoutpost_main_outer"; - tag_interior_door = "eoutpost_main_inner" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"MU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"MV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Airlock"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"MW" = ( -/obj/machinery/pipedispenser/disposal, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"MX" = ( -/obj/machinery/pipedispenser, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"MY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/storage) -"MZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/outpost/engineering/telecomms) -"Na" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/telecomms) -"Nb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost TeleCommunications"; - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/outpost/engineering/telecomms) -"Nc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "eoutpost_main_inner"; - locked = 1; - name = "Engineering Outpost" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Nd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"Ne" = ( -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Nf" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Ng" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Nh" = ( -/obj/machinery/floodlight, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Ni" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass_engineering{ - name = "Telecommunications"; - req_access = list(10) - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/outpost/engineering/telecomms) -"Nj" = ( -/obj/structure/sign/vacuum{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Nk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "eoutpost_main_airlock"; - name = "interior access button"; - pixel_x = -25; - pixel_y = 25; - req_access = list(10) - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Nl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Nm" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Nn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"No" = ( -/obj/machinery/autolathe, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Np" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Nq" = ( -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Nr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6; - icon_state = "intact" - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Ns" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Nt" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Atmospherics Fore" - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Nu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Nv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5; - icon_state = "intact-scrubbers" - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Nw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Nx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_engineering{ - name = "Atmospherics"; - req_access = list(10) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/outpost/engineering/atmospherics) -"Ny" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Nz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"NA" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"NB" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Storage"; - req_access = list(10) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"NC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"ND" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"NE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "engineering_dinger"; - name = "Engineering request chime"; - pixel_w = -29; - pixel_z = 2 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NF" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6; - icon_state = "intact" - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NH" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NJ" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"NK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"NL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"NM" = ( -/obj/structure/table/rack, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/item/pickaxe, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"NN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"NO" = ( -/obj/structure/table/rack, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/item/stack/cable_coil/yellow, -/obj/item/stack/cable_coil, -/obj/item/module/power_control, -/obj/item/module/power_control, -/obj/item/clothing/gloves/yellow, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"NP" = ( -/obj/structure/table/rack, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/item/stack/cable_coil/yellow, -/obj/item/storage/box/lights/mixed, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"NQ" = ( -/obj/machinery/suit_cycler/engineering, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"NR" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4; - icon_state = "warning_dust" - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/engineering/kitchen) -"NS" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8; - icon_state = "warning_dust" - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/engineering/kitchen) -"NT" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NV" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NW" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4; - icon_state = "map" - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NX" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"NY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"NZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Oa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/alarm{ - alarms_hidden = 1; - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Ob" = ( -/obj/item/stack/material/plasteel{ - amount = 10 - }, -/obj/item/stack/material/wood{ - amount = 30 - }, -/obj/item/stack/material/plastic{ - amount = 10 - }, -/obj/structure/table/steel, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Oc" = ( -/obj/structure/table/rack, -/obj/item/clothing/head/helmet/space/void/engineering, -/obj/item/clothing/suit/space/void/engineering, -/obj/item/clothing/shoes/magboots, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/item/storage/briefcase/inflatable, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Od" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Oe" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/alarm{ - alarms_hidden = 1; - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/atmospherics) -"Of" = ( -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Og" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Oh" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Oi" = ( -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/structure/table/steel, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Oj" = ( -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/structure/table/steel, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Storage"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Ok" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Ol" = ( -/obj/machinery/air_sensor{ - frequency = 1439; - id_tag = "outpost_o2_sensor" - }, -/turf/simulated/floor/reinforced/oxygen, -/area/outpost/engineering/atmospherics) -"Om" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - dir = 4; - frequency = 1439; - id_tag = "outpost_o2_out" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/outpost/engineering/atmospherics) -"On" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4; - icon_state = "intact" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Oo" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Op" = ( -/obj/machinery/atmospherics/omni/mixer{ - tag_east = 0; - tag_east_con = null; - tag_north = 2; - tag_south = 1; - tag_south_con = 0.79; - tag_west = 1; - tag_west_con = 0.21 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Oq" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Or" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Os" = ( -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Ot" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = 28 - }, -/obj/machinery/vending/wallmed1{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Ou" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Storage"; - req_access = list(10) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/storage) -"Ov" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/emitter, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/hallway) -"Ow" = ( -/turf/simulated/wall/r_wall, -/area/outpost/engineering/solars) -"Ox" = ( -/turf/simulated/floor/reinforced/oxygen, -/area/outpost/engineering/atmospherics) -"Oy" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1439; - icon_state = "map_injector"; - id = "outpost_o2_in"; - pixel_y = 1; - use_power = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/outpost/engineering/atmospherics) -"Oz" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"OA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 10 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"OB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"OC" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"OD" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"OE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/wall/r_wall, -/area/outpost/engineering/atmospherics) -"OF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4; - icon_state = "intact" - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -20 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"OG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"OH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"OI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"OJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"OK" = ( -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"OL" = ( -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "engineering_dinger"; - name = "Engineering request chime"; - pixel_z = 32 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"OM" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"ON" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"OO" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Power Supply" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"OP" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Outpost - Main"; - charge = 1.5e+007; - cur_coils = 3; - input_attempt = 1; - input_level = 750000; - input_level_max = 750000; - output_level = 750000; - output_level_max = 750000 - }, -/turf/simulated/floor, -/area/outpost/engineering/solars) -"OQ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8; - icon_state = "warning_dust" - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"OR" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"OS" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6; - icon_state = "warning_dust" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"OT" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9; - icon_state = "warning_dust" - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"OU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"OV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/outpost/engineering/atmospherics) -"OW" = ( -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Outpost Atmospherics"; - dir = 4 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'COMPRESSED GAS'."; - name = "COMPRESSED GAS"; - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"OX" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - power_rating = 15000; - tag_east = 1; - tag_north = 3; - tag_south = 4; - tag_west = 2 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"OY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"OZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Pa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4; - icon_state = "intact-scrubbers" - }, -/obj/machinery/door/airlock/glass_engineering{ - name = "Atmospherics"; - req_access = list(10) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/outpost/engineering/atmospherics) -"Pb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Pc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Pd" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Pe" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Pf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Pg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Ph" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Pi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Outpost Solars"; - req_access = list(10) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Pj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Pk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Pl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Pm" = ( -/obj/machinery/power/terminal{ - dir = 1; - icon_state = "term" - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Pn" = ( -/obj/structure/table/reinforced, -/obj/item/stack/material/phoron{ - amount = 10 - }, -/obj/random/powercell, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/item/stack/material/phoron{ - amount = 10 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Po" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Pp" = ( -/turf/simulated/floor/reinforced/nitrogen, -/area/outpost/engineering/atmospherics) -"Pq" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1439; - icon_state = "map_injector"; - id = "outpost_n2_in"; - pixel_y = 1; - use_power = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/outpost/engineering/atmospherics) -"Pr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Ps" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue, -/obj/machinery/meter, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Pt" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6; - icon_state = "intact" - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Pu" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"Pv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Pw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Px" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Py" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Pz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"PA" = ( -/obj/item/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_x = 0; - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"PB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Hallway East"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"PC" = ( -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"PD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"PE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"PF" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"PG" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"PH" = ( -/obj/machinery/air_sensor{ - frequency = 1439; - id_tag = "outpost_n2_sensor" - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/outpost/engineering/atmospherics) -"PI" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - dir = 4; - frequency = 1439; - id_tag = "outpost_n2_out" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/outpost/engineering/atmospherics) -"PJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"PK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4; - icon_state = "intact" - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Atmospherics Aft"; - dir = 1 - }, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"PL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 9; - icon_state = "intact" - }, -/obj/machinery/light, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"PM" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor, -/area/outpost/engineering/atmospherics) -"PN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/landmark{ - name = "bluespacerift" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"PO" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Hallway Central"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"PP" = ( -/turf/simulated/wall/r_wall, -/area/outpost/engineering/rest) -"PQ" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Airlock" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/rest) -"PR" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/engineering/hallway) -"PS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"PT" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"PU" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable/yellow, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"PV" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/mine/explored) -"PW" = ( -/obj/machinery/computer/station_alert, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"PX" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"PY" = ( -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"PZ" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/orange, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Qa" = ( -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -20 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Qb" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qc" = ( -/obj/machinery/door/airlock/engineering{ - name = "Restrooms"; - req_access = list(10) - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qd" = ( -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qe" = ( -/obj/machinery/alarm{ - alarms_hidden = 1; - frequency = 1439; - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qf" = ( -/obj/machinery/doorbell_chime{ - desc = "Small wall-mounted chime triggered by a bell"; - id_tag = "engineering_dinger"; - name = "Engineering request chime"; - pixel_z = 33 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Outpost Kitchen"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qh" = ( -/obj/machinery/computer/atmos_alert, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Qi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Qj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Qk" = ( -/obj/structure/closet, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Ql" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6; - icon_state = "intact" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Qm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4; - icon_state = "intact" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Qn" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Qo" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qp" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/reagent_containers/food/drinks/bottle/small/beer, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qq" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qr" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Qs" = ( -/obj/machinery/computer/shuttle_control/engineering, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Qt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Qu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-21" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "Engineering Outpost Break Room"; - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Qv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Qw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 8; - icon_state = "map" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"Qx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Qy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Qz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/outpost/engineering/kitchen) -"QA" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/sign/vacuum{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"QB" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"QC" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"QD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"QE" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Break Room"; - req_access = list(10) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"QF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"QG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"QH" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Airlock" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/rest) -"QI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"QJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"QK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"QL" = ( -/obj/structure/table/standard, -/obj/item/flashlight/lamp, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"QM" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "eoutpost_solar_airlock"; - name = "interior access button"; - pixel_x = 25; - pixel_y = -25; - req_access = list(10) - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"QN" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"QO" = ( -/obj/machinery/power/solar_control, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/solars) -"QP" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"QQ" = ( -/obj/structure/sink{ - dir = 8; - icon_state = "sink"; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"QR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"QS" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Break Room"; - req_access = list(10) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"QT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "edock_airlock"; - name = "interior access button"; - pixel_x = -26; - pixel_y = -25; - req_access = list(10) - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"QU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"QV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"QW" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"QX" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "eoutpost_solar_inner"; - locked = 1; - name = "Solar Access" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor, -/area/outpost/engineering/solars) -"QY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/solars) -"QZ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/solars) -"Ra" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Rb" = ( -/obj/structure/table/standard, -/obj/item/storage/box/donkpockets, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -28 - }, -/obj/item/reagent_containers/food/drinks/bottle/small/beer, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Rc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"Rd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"Re" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "edock_inner"; - locked = 1; - name = "Engineering Dock Airlock" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Rf" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/o2{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/firstaid/regular, -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -28 - }, -/obj/item/roller, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Rg" = ( -/obj/machinery/computer/crew, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Rh" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/solars) -"Ri" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 8; - icon_state = "map" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/outpost/engineering/solars) -"Rj" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "eoutpost_solar_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1379; - id_tag = "eoutpost_solar_airlock"; - pixel_x = 30; - pixel_y = 0; - req_access = list(10); - tag_airpump = "eoutpost_solar_pump"; - tag_chamber_sensor = "eoutpost_solar_sensor"; - tag_exterior_door = "eoutpost_solar_outer"; - tag_interior_door = "eoutpost_solar_inner" - }, -/obj/machinery/airlock_sensor{ - frequency = 1379; - id_tag = "eoutpost_solar_sensor"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Solar Access" - }, -/turf/simulated/floor, -/area/outpost/engineering/solars) -"Rk" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/solars) -"Rl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/kitchen) -"Rm" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Rn" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled, -/area/outpost/engineering/kitchen) -"Ro" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Rp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Rq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "eoutpost_solar_sensor"; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Rr" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Rs" = ( -/obj/machinery/sleep_console, -/turf/simulated/floor/carpet/oracarpet, -/area/outpost/engineering/rest) -"Rt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/rest) -"Ru" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor, -/area/outpost/engineering/solars) -"Rv" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "eoutpost_solar_pump" - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 8 - }, -/turf/simulated/floor, -/area/outpost/engineering/solars) -"Rw" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/engineering/kitchen) -"Rx" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1; - icon_state = "warning_dust" - }, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/outpost/engineering/kitchen) -"Ry" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "edock_pump" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"Rz" = ( -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Outpost Elevator"; - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "edock_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "edock_airlock"; - pixel_x = 30; - pixel_y = 0; - req_access = list(10); - tag_airpump = "edock_pump"; - tag_chamber_sensor = "edock_sensor"; - tag_exterior_door = "edock_outer"; - tag_interior_door = "edock_inner" - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"RA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/solars) -"RB" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "eoutpost_solar_outer"; - locked = 1; - name = "Solar Access" - }, -/turf/simulated/floor, -/area/outpost/engineering/solars) -"RC" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/solars) -"RD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"RE" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "edock_outer"; - locked = 1; - name = "Engineering Dock Airlock" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "edock_airlock"; - name = "exterior access button"; - pixel_x = -26; - pixel_y = 0; - req_access = list(10) - }, -/turf/simulated/floor/tiled, -/area/outpost/engineering/hallway) -"RF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"RG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/hallway) -"RH" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/kitchen) -"RI" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "eoutpost_solar_airlock"; - name = "exterior access button"; - pixel_x = 25; - pixel_y = 25; - req_access = list(10) - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/kitchen) -"RJ" = ( -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/kitchen) -"RK" = ( -/turf/simulated/wall, -/area/outpost/engineering/hallway) -"RL" = ( -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/shuttle/constructionsite/site) -"RM" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"RN" = ( -/obj/structure/grille, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"RO" = ( -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/airless{ - icon_state = "solarpanel" - }, -/area/outpost/engineering/solarsoutside/aft) -"RP" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/solarsoutside/aft) -"RQ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/solarsoutside/aft) -"RR" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/solarsoutside/aft) -"RS" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/solarsoutside/aft) -"RT" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/solarsoutside/aft) -"RU" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/solarsoutside/aft) -"RV" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/space, -/area/space) -"RW" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/kitchen) -"RX" = ( -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/airless{ - icon_state = "solarpanel" - }, -/area/outpost/engineering/solarsoutside/aft) -"RY" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/outpost/engineering/solarsoutside/aft) -"RZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - external_pressure_bound = 140; - external_pressure_bound_default = 140; - icon_state = "map_vent_out"; - pressure_checks = 1; - pressure_checks_default = 1; - use_power = 1 - }, -/turf/simulated/floor/airless, -/area/outpost/engineering/atmospherics) -"Sa" = ( -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/airless{ - icon_state = "solarpanel" - }, -/area/mine/explored) -"Sb" = ( -/obj/structure/lattice, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"Sc" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Sd" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/outpost/engineering/kitchen) -"Se" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/outpost/engineering/kitchen) -"Sf" = ( -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/outpost/engineering/solarsoutside/aft) -"Sg" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Sh" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Si" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Sj" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating2" - }, -/area/mine/explored) -"Sk" = ( -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/airless{ - icon_state = "solarpanel" - }, -/area/mine/explored) -"Sl" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"Sm" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"Sn" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/mineral/floor/ignore_mapgen/airless, -/area/mine/explored) -"So" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"Sp" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"Sq" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"Sr" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"Ss" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"St" = ( -/obj/structure/lattice, -/turf/simulated/floor/airless, -/area/mine/explored) -"Su" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/mine/explored) -"Sv" = ( -/obj/structure/grille, -/turf/space, -/area/mine/explored) -"Sw" = ( -/obj/structure/lattice, -/turf/space, -/area/mine/explored) -"Sx" = ( -/obj/structure/lattice, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/space, -/area/mine/explored) -"Sy" = ( -/turf/simulated/floor/airless, -/area/mine/explored) -"Sz" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/space, -/area/mine/explored) -"SA" = ( -/obj/machinery/power/tracker, -/obj/structure/cable/yellow, -/turf/simulated/floor/airless, -/area/mine/explored) -"SB" = ( -/obj/effect/overmap/visitable/sector/northern_star_mines, -/turf/space, -/area/space) -"SC" = ( -/obj/effect/shuttle_landmark/premade/northern_star/ns_mine_echidna_dock, -/turf/space, -/area/space) -"Uy" = ( -/mob/living/simple_mob/metroid/juvenile/omega, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"UY" = ( -/mob/living/simple_mob/metroid/juvenile/zeta, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"Vr" = ( -/mob/living/simple_mob/metroid/juvenile/gamma, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"VH" = ( -/mob/living/simple_mob/metroid/juvenile/super, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) -"Zk" = ( -/mob/living/simple_mob/metroid/juvenile/alpha, -/turf/simulated/floor/reinforced, -/area/outpost/research/xenobiology) - -(1,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(2,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -SB -aa -"} -(3,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(4,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(5,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(6,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(7,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(8,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(9,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(10,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(11,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(12,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(13,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(14,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(15,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(16,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(17,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(18,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(19,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(20,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(21,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(22,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(23,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(24,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(25,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(26,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(27,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(28,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(29,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(30,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(31,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -aa -aa -aa -aa -dn -dn -dn -dn -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(32,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(33,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -vo -vo -xv -xQ -xv -yY -yY -yZ -yZ -ad -ad -yZ -yZ -yY -yY -Kj -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(34,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -vo -vo -vo -xd -Jf -Jh -Jl -yZ -zz -Ae -yZ -yZ -yZ -yZ -Cw -zB -yZ -Kj -Kj -Kj -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(35,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -vv -vI -vo -wl -wK -xd -xP -yr -Jm -yZ -Jq -Af -Ax -An -Bm -Cf -Jy -JL -yZ -Kk -Kw -Kj -Kj -Kj -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(36,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -vo -vw -vJ -vX -wm -wL -xd -xQ -ys -xQ -yZ -yZ -yZ -yZ -AE -Bq -yZ -yZ -yZ -yZ -Kk -Kx -KQ -Lf -Kj -Kj -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(37,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -vo -vo -vx -vy -vy -wn -wM -xe -xx -xS -yt -yZ -zB -Ag -yZ -AJ -BB -yZ -Cw -zB -yZ -Kk -Kx -Kx -Kx -Lu -Kj -Kj -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(38,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -vo -vr -vy -vy -vY -wo -wN -xf -xy -xT -yu -yZ -Jr -Ah -Ay -Bc -BC -Cg -Cy -JL -yZ -Kl -Kx -Kx -Lg -Lv -LF -Kj -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(39,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -vo -vo -vs -vy -vy -vZ -wp -wO -xg -xz -xU -yv -yY -yZ -yZ -yZ -Bd -BD -yZ -yZ -yZ -yY -Km -Kx -KR -Lh -Lw -LG -Kj -Kj -ad -ad -ad -ad -ad -ad -ad -aa -aa -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(40,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gX -vi -vl -gX -vi -vi -vi -vK -vy -wq -wP -xh -xz -xU -yv -yY -zD -Ai -Az -Bh -BG -Ch -Ai -JM -yY -Kl -Kx -Kx -Li -Lv -Kx -LN -Kj -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Mp -Mp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(41,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -vi -vk -vk -vk -vk -vk -vz -vL -wa -wr -vo -xi -xA -xV -yw -yY -yY -Aj -AA -Bi -BH -Ai -Jz -yY -yY -Kj -Ky -KS -Li -Lv -Kx -LO -Kj -Kj -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(42,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -vj -vk -vk -vk -vk -vk -vA -vM -wb -ws -wv -xj -wd -xU -wd -Jo -yY -Ak -AB -Bj -BI -Ak -AB -yY -Kc -Kj -Kz -KT -Lj -Lx -LH -LH -LH -Kj -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(43,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -gX -vk -vk -vk -vk -vk -vB -vN -wc -wt -wQ -wd -xB -xW -yx -zb -zE -Al -AC -Bk -BJ -Ci -Al -JN -Al -Kn -KA -KU -Lk -Ly -LI -LP -LT -LX -EA -EA -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(44,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -vk -vk -vk -vk -vk -vC -vO -wd -Jb -wR -wd -xC -wv -yy -zc -zF -Am -AD -Bl -BE -Cj -Bf -Bf -Am -Ko -KB -KV -Ll -Lz -LJ -KC -LU -LY -EA -EA -EA -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(45,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -gX -vk -vk -vk -vk -vk -vz -vP -we -wt -wS -wd -wU -xF -xG -wd -xX -yz -zd -Be -BF -BQ -JA -JO -Ai -Kp -KC -KW -Lm -LA -LK -KC -LT -LX -EA -EA -EA -EA -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(46,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -vj -vk -vk -vk -vk -vk -vA -vQ -wf -wv -wv -xk -wd -xU -wd -Jp -zf -zf -AF -Bn -BL -AF -zf -zf -Kd -Ke -KD -KX -Ln -LB -Kf -Kf -Kf -Ke -EA -EA -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(47,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -vi -vk -vk -vk -vk -vk -vD -vR -wg -Jc -vp -vp -xD -xY -yA -zf -zf -Jt -AG -Bo -BM -Cl -JB -zf -Ke -Ke -KE -KY -Lo -LC -LL -LQ -Ke -Ke -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(48,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -gX -vi -vl -gX -vi -vi -vi -vS -vE -wx -wT -vp -yB -xZ -yB -zf -zH -Ap -AG -Bo -BN -Cl -Ap -JP -Ke -Kq -KF -KZ -Lp -LC -Lc -LR -Ke -Ke -Ke -Ke -Ke -Ke -Mh -Ml -ad -ad -ad -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(49,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -vp -vp -vt -vE -vE -wh -wy -vE -vE -xE -ya -yC -zf -zI -zg -AH -Bp -BO -Cm -JC -JQ -Ke -Kr -KG -La -Lq -LD -Lc -LS -LV -LS -LS -LS -Mf -Mg -Mi -Mm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(50,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -vp -vu -vE -vE -wi -wz -wV -wV -xH -yb -yC -zg -zJ -zg -AI -Bo -BP -Cn -JD -JR -Kf -Kq -KH -Lb -Lc -LC -LM -Ke -Ke -Ke -Ke -Ke -Ke -Ke -Mj -Mm -Mo -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(51,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -vF -vT -vU -vU -vV -vE -wj -wA -vE -xl -xI -yc -yD -zg -zK -zg -zG -Bg -BK -Ck -JE -JS -Kf -Ks -KI -Lc -Lc -LE -Ke -Ke -LW -LZ -Mb -Mb -Mb -Mb -Mk -Mm -Mo -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(52,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -vp -vG -vE -wk -wB -vE -xm -xm -yd -yE -zf -zL -Aq -AK -Br -BR -Aq -Br -JT -Kf -Ks -KJ -Lc -Lr -Ke -Ke -dn -dn -LZ -Mc -Mb -Mb -Mb -Mb -Mm -Mo -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(53,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -vH -vW -vp -wC -Je -xm -Jg -Ji -yF -zg -zM -Ar -Ar -Bs -BS -Cp -Ar -JU -Kf -Kt -KK -Kt -Ke -Ke -dn -dn -dn -Ma -Md -Md -Md -Md -Md -Mn -Mo -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(54,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -vp -vp -vp -xm -xK -yf -yG -zg -zN -zf -zf -zf -zf -zf -zf -zg -Kf -Ku -KL -Ld -Ls -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Mo -Mo -Mo -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(55,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -vp -xn -xn -yg -xn -zf -zO -zf -AL -AL -AL -Cq -JF -JV -Ke -Kv -KM -Le -Lt -dn -dn -eJ -eJ -eJ -eJ -eJ -eJ -dn -dn -dn -dn -Mo -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(56,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gX -mB -nC -gX -gX -gX -qo -mB -gX -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -dn -dn -dn -vq -yH -zg -zP -zg -AM -Bt -Bt -Bt -Bt -JW -Kf -Kt -KN -Kt -Kf -dn -Ea -EB -EB -EB -EB -EB -EB -EB -Er -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(57,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -mB -ne -ne -ne -ne -ne -ne -ne -mB -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -dn -dn -dn -vq -yI -zh -zQ -yI -Bt -Bt -BT -Bt -BT -zh -uW -kR -KO -qO -dn -eJ -Kg -eJ -dn -dn -dn -dn -eJ -eJ -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(58,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -gX -ne -ne -ne -ne -ne -ne -ne -gX -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -vm -vg -vg -vg -vn -yI -zh -zQ -yI -AN -Bt -BU -Bt -BU -zh -dn -eJ -eJ -eJ -eJ -Ea -Fj -ad -ad -ad -dn -Me -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(59,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bZ -ct -ct -ct -bZ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -gX -ne -ne -ne -ne -ne -ne -ne -gX -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -eJ -vq -eJ -dn -dn -dn -yJ -zi -zQ -As -AO -AO -BV -AO -BV -zi -Ea -EB -EB -EB -EB -Fj -ad -ad -ad -ad -ad -ks -dn -dn -Ed -EB -Er -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(60,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ca -cu -cS -dq -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -mC -ne -ne -ne -ne -ne -ne -ne -mC -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -eJ -vq -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -Kg -eJ -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(61,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -cb -cv -cS -dr -ae -ae -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -mB -ne -ne -ne -ne -ne -ne -ne -mB -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -dn -eJ -Jd -EB -EB -EB -EB -EB -EB -EB -EB -EB -EB -EB -EB -EB -EB -Fj -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(62,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -bL -cc -cw -cT -ds -ae -ee -ae -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -jL -jL -jL -nD -nY -oM -pA -qp -qr -qr -qr -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -dn -eJ -vq -dn -dn -dn -dn -dn -dn -dn -dn -yK -dn -dn -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(63,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aG -aT -ae -bw -bM -ae -cx -cU -cx -ae -ef -ef -ae -ae -af -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jR -kb -jK -mD -mD -nE -nZ -oN -pB -nE -qP -ru -qr -sr -sZ -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -dn -eJ -vq -dn -dn -dn -dn -yK -dn -zR -zR -zR -zR -zR -ad -ad -ad -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(64,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aH -aU -bi -bx -bN -ae -cy -cV -dt -ae -eg -eg -eL -ae -af -af -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -jK -jS -lz -ke -mE -nf -nF -oa -oO -pC -nE -qQ -rv -rR -ss -ta -qr -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -dn -dn -eJ -vq -dn -dn -dn -dn -wY -wY -zR -At -AP -Bu -zR -AX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -sq -ks -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(65,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -aI -aV -bj -by -bO -ae -cz -cW -du -ae -eh -ev -eM -ae -fg -af -af -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -jK -jK -kS -kT -lZ -mF -mF -nG -nY -oP -pA -qq -qQ -rw -rS -st -tb -qr -qr -dn -dn -dn -dn -dn -dn -aa -aa -dn -dn -dn -eJ -vq -dn -dn -dn -wY -wY -zj -zR -Au -AQ -Bv -zR -Cr -AX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -eJ -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(66,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aw -aJ -aW -bk -bz -bP -cd -cA -cX -dv -dL -ei -ev -eN -ae -ar -fu -af -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -jK -xR -kT -lA -ma -mG -mF -mF -ob -oQ -pD -qr -qR -rx -rT -su -tc -tA -qr -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -vq -dn -dn -wY -wY -yL -zk -zR -zR -AR -zR -zR -Cr -JG -AX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Ed -Er -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(67,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -ax -aJ -aX -bl -bA -bQ -ce -cB -cY -cB -dM -ej -ev -eO -ae -fh -fv -af -af -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -jR -kb -ku -kU -lB -mb -mH -mF -mF -mF -oR -pE -qs -qS -ry -rU -sv -td -Ao -qr -qr -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wD -wX -wX -wY -yh -yM -zl -zS -Av -AS -AX -BW -BA -BA -JX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(68,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ao -ay -aK -aY -bm -bB -bR -cf -cC -cY -dw -dN -ek -eg -eP -ae -aj -ar -fC -af -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -jS -kc -kv -kV -lC -lZ -mI -ng -jL -oc -oS -pF -qr -qT -rz -rV -sw -te -tC -ub -qr -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wE -wY -wZ -wY -wY -Jn -zm -zT -zT -AT -AX -BX -BA -BA -BA -AX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(69,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -ap -az -aJ -aZ -bn -bC -ae -ae -cD -cZ -cD -ae -ae -ew -ew -ae -iw -ar -fC -af -af -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -jK -jK -kd -kw -kW -lD -ma -mJ -jL -jL -od -oT -pG -qr -qr -rA -rW -sx -tf -tf -tf -qr -qr -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wE -wZ -xo -xL -wZ -yO -zn -zU -zT -AU -Bw -BY -BA -JH -JY -Kh -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -Ed -EB -EB -Er -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(70,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ah -ah -ah -aL -aT -ae -ae -ae -cg -cE -da -dx -dO -ae -ae -ae -ae -fi -af -af -af -af -go -gE -gX -gE -hD -ic -ha -aa -aa -aa -aa -aa -dn -dn -dn -aa -aa -aa -aa -gX -gE -go -jK -jT -ke -kx -kX -kx -mc -jK -jL -nH -oe -oU -pF -qt -jL -qr -qr -sy -tg -tg -tg -tg -qr -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wF -xa -xp -xM -Jj -yP -zo -zV -xp -AV -Bx -BZ -Jx -JI -JZ -Ki -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(71,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -af -ai -aq -aA -aM -ba -bo -bD -bS -ch -cF -db -dy -dP -bS -bD -eQ -eY -fj -af -fD -fM -ga -gp -gF -gY -hl -hE -gF -it -ic -ic -ic -ic -gE -gE -gE -gE -gE -ic -ic -ic -jF -hl -kf -jL -jU -mf -ky -kY -lE -md -mK -nh -nI -me -xw -pH -qu -qU -qy -rX -sz -th -tD -uc -uw -qw -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wG -wZ -xo -xN -wZ -yQ -zp -Js -Ju -AW -Bw -Ca -Ct -JJ -Ka -Kh -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(72,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -af -aj -ar -aB -aN -bb -bp -bE -bT -ci -cG -af -dz -dQ -el -ex -eR -el -fk -fw -fE -fN -gb -gq -gG -gZ -gG -hF -id -iu -iD -iT -iT -jm -iT -iT -iT -iT -iu -iT -iD -iT -iT -jG -jI -jM -jV -kg -jV -kZ -lF -jV -mL -jV -nJ -of -jL -pI -mF -qV -qz -rY -sA -sD -tE -ud -ux -qB -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wH -wY -wZ -xO -xO -xO -zq -xO -xO -AX -AX -Jw -Ct -BA -BA -AX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(73,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -af -ak -as -aA -aO -bc -bq -bF -bU -cj -cH -dc -dA -dR -em -ey -eS -eZ -fl -af -fF -wW -af -gr -gH -gH -gH -hG -ie -CA -iE -iE -iE -jn -iE -jz -iE -iE -iv -iE -iE -iE -iE -jn -kt -jN -jW -kh -kz -la -lG -me -mK -ni -nK -og -oW -pJ -me -qW -qA -rZ -sB -ti -tE -ue -uy -qw -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wH -lx -xq -xO -yj -yR -zr -zX -xO -AY -Jv -Cc -Ct -BA -Kb -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(74,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ag -al -al -al -aP -bd -ag -ag -ag -ck -cI -dd -dB -dS -dT -dT -dT -fa -fm -af -af -af -af -gs -gI -gI -hm -hH -Cz -CB -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -gs -jO -jX -ki -kA -lb -lH -jO -jO -jL -nL -oh -oX -pK -qv -jL -qw -qw -qB -tj -tF -qB -qx -qw -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wH -lx -xr -xO -yk -yS -zs -zY -xO -AZ -Bz -Cd -Cu -JK -AX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(75,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ag -ag -at -aC -aQ -be -br -bG -ag -ag -cJ -de -cJ -dT -dT -ez -eT -fb -fn -fb -fG -dT -dT -aa -aa -ha -hb -hH -if -ix -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -jO -jO -kj -kl -lc -lI -us -mM -jO -jO -ww -oY -ze -qw -qw -rB -sa -sC -sD -sD -uf -qw -qw -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wH -lx -xq -xO -Jk -yT -zt -zZ -xO -Ba -BA -Ce -Cv -AX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(76,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ag -at -at -aR -bf -aQ -bH -bH -ag -cK -df -dC -dT -en -eA -eU -eU -fc -eU -fH -dT -aa -aa -aa -aa -hb -hI -if -iy -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -ad -ad -dn -dn -dn -jO -kk -kl -ld -lJ -mg -kl -nj -jO -oi -oZ -oi -qw -qX -rC -sb -sD -sD -sD -uf -qw -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -wI -xb -xs -xO -ym -yU -zu -Aa -xO -Bb -Bb -AX -AX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(77,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ag -ag -aD -aE -bg -bs -bI -bV -ag -cL -dg -dD -dT -eo -eB -eU -fc -fd -fx -fz -fz -fP -gc -gJ -aa -hb -hJ -ig -iy -aa -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -dn -dn -jO -jO -kB -lc -lI -mh -mh -mh -jO -oj -pa -pL -qw -qY -rC -sb -sD -sE -tG -qw -qw -qw -qw -qw -dn -dn -dn -dn -dn -dn -eJ -vm -wJ -lx -xt -xO -yn -yV -zv -Ab -xO -AX -AX -AX -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Ed -Er -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(78,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ag -aE -aE -aQ -aQ -bJ -bJ -al -cM -dh -dE -dU -ep -eC -eV -fd -fo -fy -fz -fP -gc -gc -gK -aa -hb -hH -if -iy -aa -aa -aa -aa -aa -dn -dn -dn -dn -dn -dn -ad -ad -dn -dn -dn -dn -jO -kC -le -lI -mi -mN -nk -jX -ok -pb -pM -qx -qZ -rC -sb -sD -sL -tH -ug -uz -uL -uX -qw -dn -dn -dn -dn -dn -vm -vg -vn -kR -mA -mA -xO -yo -yV -zw -Ac -xO -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(79,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ag -ag -aS -aQ -aQ -bK -bW -bW -bW -di -bW -bW -bW -eD -eW -fc -fp -fz -fz -fI -fQ -gc -gJ -aa -hb -hH -if -iy -aa -aa -aa -aa -aa -dn -dn -dn -dn -dn -dn -ad -dn -dn -dn -dn -dn -jO -jO -lf -lI -mj -mO -nl -kD -ol -pc -pN -qx -ra -rC -sb -sE -tk -tI -uh -uA -uM -uY -qw -dn -dn -dn -dn -eJ -vq -eJ -dn -dn -dn -dn -xO -yp -yV -zx -Aa -xO -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(80,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ag -ag -bh -bt -bh -bW -cl -cN -dj -dF -dV -bW -eE -eX -fe -fq -fz -fI -fQ -fQ -gc -gK -aa -hb -hH -if -iy -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -dn -dn -dn -dn -jO -lg -lI -mk -mk -mk -kE -om -pc -pO -qy -rb -rD -sc -sF -tl -tJ -ui -uB -uN -uZ -qw -dn -dn -dn -dn -eJ -vq -dn -dn -dn -dn -xc -xO -yq -yW -zy -Ad -xO -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(81,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ag -ag -ag -al -bW -cm -cO -dk -dG -dW -bW -eF -dT -dT -dT -ad -dn -dn -dn -aa -aa -aa -hb -hK -ih -iy -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -dn -dn -dn -dn -kD -lh -lK -ml -mP -kl -kF -on -pd -pO -qz -rc -rE -sd -sG -tl -tK -qw -qw -qw -qw -qw -dn -dn -dn -dn -eJ -vq -dn -dn -dn -xc -dn -xO -yq -yX -yX -Ad -xO -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ks -oL -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(82,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ag -ag -bW -cn -cP -dl -dH -dX -bW -eG -dT -ad -ad -ad -dn -dn -dn -dn -aa -aa -hb -hH -if -iy -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -dn -dn -kE -li -lL -jX -jX -jX -jX -oo -pc -pP -qA -rd -rF -se -sH -tl -tL -uj -uC -uO -va -qw -dn -dn -dn -dn -eJ -vq -dn -dn -dn -dn -dn -xO -xO -xO -xO -xO -xO -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(83,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bW -co -bW -dm -dI -dY -bW -eH -dT -ad -ad -ad -ad -dn -dn -dn -aa -ha -hn -hH -if -iy -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -dn -dn -dn -kE -lj -lM -mm -mQ -nm -jO -op -pe -op -qw -re -rG -sd -sI -tm -tM -uk -uD -uP -vb -qw -dn -dn -dn -dn -eJ -vq -dn -ad -dn -dn -xu -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(84,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -cp -aa -aa -dn -dZ -eq -eI -ad -ad -ad -ad -ad -dn -dn -dn -aa -hb -hl -hL -if -iy -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -kE -li -kl -jX -mR -nn -jO -oq -pf -pQ -qB -rf -rH -sf -sJ -tl -tN -ul -uE -uQ -vc -qw -dn -dn -dn -dn -eJ -vq -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(85,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -cp -aa -aa -dn -ea -er -eJ -ad -ad -ad -ad -dn -dn -dn -dn -dn -hc -ho -hM -ii -iz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -kF -li -kl -jX -jX -jX -jX -or -pg -pR -qC -rg -rI -sg -sK -tn -tO -qw -qw -qw -qw -qw -dn -dn -dn -dn -eJ -vq -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(86,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dZ -ad -ad -ad -ad -ad -ad -ad -ff -gt -gL -hd -ff -hN -ff -hd -gt -gL -ff -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -jO -yl -lM -mn -mQ -nm -jX -os -ph -pS -qB -rh -rh -sh -sF -tl -tP -um -uF -uR -vd -qw -dn -dn -dn -dn -eJ -vq -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(87,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ad -ad -ad -ff -ff -gu -gM -ff -hp -hO -ij -ff -iG -iU -ff -ff -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -jO -jO -ur -kl -jX -mR -nn -jX -ot -ph -pT -qx -ri -rJ -sb -sL -tk -tQ -un -uG -uS -ve -qw -dn -dn -dn -dn -eJ -vq -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(88,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ad -ad -ff -ff -gd -fS -gN -ff -hq -hP -ik -ff -jk -iV -jb -ff -ff -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -jO -kG -ll -lN -jX -jX -jX -jX -ou -pi -pU -qx -rj -rC -sb -sF -to -tR -uo -uH -uT -vf -qw -dn -dn -dn -dn -eJ -vq -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(89,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ad -ff -ff -fR -fS -fS -gO -ff -hr -hQ -il -ff -iI -fS -jc -jo -ff -ff -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -jO -jO -kH -lm -lM -mo -mS -no -jO -ov -ph -pV -qw -rk -rC -sb -rZ -rZ -tS -qw -qw -qw -qw -qw -dn -dn -dn -dn -eJ -vq -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(90,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dZ -ad -ad -ad -ad -ff -fJ -fS -ge -fS -ge -ff -ff -hR -ff -ff -iJ -iV -ge -jp -jx -ff -aa -aa -aa -aa -aa -aa -aa -dn -dn -dn -jO -kl -kl -ln -kl -jX -yN -np -jO -oi -pj -pW -qw -ri -rJ -sb -sM -tp -tp -up -qw -dn -dn -dn -dn -dn -dn -dn -eJ -vq -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(91,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -eb -es -ad -ad -ff -ff -ff -ff -ff -fK -gv -gP -he -hs -hS -hi -iA -iK -hg -iS -ff -ff -ff -ff -ff -jE -aa -aa -aa -aa -dn -dn -jO -jO -km -kI -lo -lO -jX -mU -jO -jO -ow -pk -pX -qw -qw -za -si -sN -tq -tT -uq -qw -qw -dn -dn -dn -dn -dn -vm -vg -vn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -sq -ks -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(92,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ff -fr -fr -fr -fT -gf -gw -gQ -hf -ht -hT -hf -hf -iL -iW -je -jq -jj -jA -fr -jD -jE -aa -aa -aa -aa -dn -dn -jP -jP -jP -jP -jP -jP -jP -jP -nq -nM -ox -pl -pY -qD -nq -qw -qw -sO -qB -tU -tU -tU -uU -dn -dn -dn -dn -eJ -vq -eJ -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(93,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ff -fZ -fA -fr -fU -gh -gx -gR -hg -hu -hU -hi -gv -iM -gx -jf -jr -fr -Zk -fr -jD -jE -aa -aa -aa -dn -dn -dn -jP -jY -lR -kJ -lp -lP -mp -mV -nr -nN -oy -pm -pZ -qE -rl -rL -sj -sP -tr -tU -Fh -uI -uU -dn -dn -dn -vm -vg -vn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(94,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ff -fr -fs -fB -fV -gi -gy -gR -gx -hv -hV -im -gx -iM -iX -jd -js -fr -jh -jC -jD -jE -aa -aa -aa -dn -dn -dn -jP -jZ -ko -kK -lq -lQ -mq -mW -ns -nO -oz -nq -qa -qF -rm -rM -sk -sQ -ts -tV -Fi -uJ -uV -vg -GJ -vg -vn -eJ -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(95,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ff -ft -ft -ft -ff -gm -gz -gS -hh -hw -ff -in -iB -iN -iY -jw -ff -ft -ft -ft -ff -jE -aa -aa -aa -dn -dn -dn -jP -ka -kp -mu -lr -kL -mr -mX -nt -nP -oA -pn -qb -qG -rn -qL -sl -sR -tt -tW -ut -uK -uU -vh -Eb -eJ -eJ -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(96,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ff -fr -fr -fr -fW -gg -gA -gR -fS -hx -hW -io -gx -iM -iB -ji -jt -jj -jA -fr -ff -ad -aa -aa -dn -dn -dn -dn -jP -ka -kn -mu -ls -nu -ms -jP -nq -nQ -ow -po -qc -qH -nq -qI -qI -sS -tu -tU -tU -tU -uU -eJ -Eb -eJ -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(97,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ff -fZ -VH -fr -fX -gh -gx -gR -fS -fS -hX -hi -hh -iM -gx -jf -ju -fr -Vr -fr -ff -ad -ad -ad -ad -dn -dn -dn -jQ -jQ -kq -kq -kq -kq -mt -kq -jQ -jQ -ow -pk -qd -qI -qI -rN -sm -sT -tv -tX -uu -qI -qI -eJ -Eb -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(98,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ff -fr -fs -fB -fY -gl -gB -gR -ge -ge -hY -ge -ge -iM -iZ -gU -jv -fr -jh -fr -ff -ad -ad -ad -ad -ad -ad -ad -ad -jQ -kr -kM -lt -lS -mv -lt -tB -jQ -oB -pp -qe -qI -ro -rO -rq -sU -rq -sW -uv -qI -eJ -eJ -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(99,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ff -ff -ff -ff -ff -gk -gC -gT -hi -hy -hZ -ip -hi -iO -ja -jg -ff -ff -ff -ff -ff -ad -ad -ad -ad -ad -ad -ad -ad -jQ -jQ -kN -lu -lT -rK -mY -nv -jQ -oC -pq -qf -qI -rp -rP -sn -sV -tw -tY -qI -qI -eJ -Ea -Fj -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(100,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ad -ad -ff -fL -fS -ge -gD -iq -hk -hz -ia -iq -hk -hz -iR -ge -fS -jy -ff -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -jQ -kO -lv -lU -mw -mZ -nw -nR -oD -pr -qg -qJ -rq -rq -so -rq -sW -tZ -qI -eJ -Ea -Fj -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(101,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ad -ad -ff -ff -gj -fS -ff -gV -hj -hA -ff -ir -iC -iP -ff -fS -jJ -ff -ff -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -jQ -jQ -lw -lV -mx -na -nx -nS -ns -ps -qh -qJ -rq -rq -rq -sW -tx -qI -qI -eJ -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -Kg -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(102,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ad -ad -ad -ff -ff -gn -ff -fr -fr -hB -ib -is -fr -iH -ff -jl -ff -ff -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -jQ -jQ -lW -my -nb -ny -nT -oE -pt -qi -qK -rr -rr -sp -sX -ty -qI -eJ -Ea -Fj -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(103,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ad -ad -ad -ad -ff -ff -ff -gW -UY -hC -ib -is -Uy -iQ -ff -ff -ff -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -kP -jQ -lX -jQ -nb -nz -nU -oF -pu -qj -qL -rs -rQ -qI -sY -tz -eJ -Ea -Fj -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -HC -oL -dn -dn -dn -Kg -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(104,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dZ -ad -ad -ad -ad -ad -ad -ad -ad -ad -ff -fr -jh -hC -ib -is -jh -fr -ff -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -kP -lx -lY -jQ -nc -jQ -nV -oG -pv -oG -nV -qI -qI -qI -eJ -eJ -Ea -Fj -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Kg -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(105,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dZ -ad -ad -ad -ad -ad -ad -ad -ad -ad -ff -ff -ff -ff -ff -ff -ff -ff -ff -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -kP -lx -lY -mz -nd -nA -nq -oH -pw -qk -nq -rt -eJ -eJ -Ea -EB -EU -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -Kg -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(106,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dZ -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ks -kQ -lx -lY -lx -nd -nB -nW -oI -px -ql -nW -eJ -eJ -eJ -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Ea -Fj -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(107,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -dn -dn -dZ -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -kR -ly -lx -lx -nd -lx -nX -oJ -py -qm -qM -eJ -eJ -eJ -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Ea -Fj -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(108,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -do -dJ -ec -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -kR -ly -lx -lx -lx -lx -oK -pz -qn -qN -eJ -eJ -dn -Eb -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Ea -Fj -eJ -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(109,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dp -cr -ed -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -kR -mA -mA -mA -mA -mA -mA -mA -qO -eJ -eJ -dn -Eb -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -eJ -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(110,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -am -am -cq -am -am -cr -cr -eu -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -eJ -eJ -eJ -dn -Ea -Eq -ks -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -eJ -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(111,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -am -am -am -au -cr -au -am -dK -am -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -eJ -eJ -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Mq -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(112,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -am -am -au -eK -bX -cr -bY -eK -au -am -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -eJ -dn -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(113,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -am -am -au -au -au -bX -cr -bY -au -au -au -am -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -eJ -eJ -dn -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(114,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -am -am -au -au -au -au -bX -cr -bY -au -au -au -au -am -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -eJ -eJ -dn -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(115,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -am -au -au -au -bu -au -bX -cr -bY -au -cQ -au -au -au -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -eJ -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(116,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -am -am -aF -au -au -au -bu -au -cr -au -cQ -au -au -au -mT -am -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -eJ -eJ -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(117,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -am -au -au -au -au -au -au -bu -cr -cQ -au -au -au -au -au -au -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -eJ -eJ -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(118,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -am -av -cs -au -au -au -au -bY -cr -bX -au -au -au -au -oV -av -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -eJ -dn -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(119,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -am -au -au -au -au -au -au -bv -av -cR -au -au -au -au -au -au -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -eJ -eJ -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(120,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -an -am -aF -au -au -au -bv -au -au -au -cR -au -au -au -mT -am -an -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -eJ -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(121,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -am -au -au -au -bv -au -au -au -au -au -cR -au -au -au -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -eJ -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Kg -eJ -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(122,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -am -am -au -au -au -au -au -au -au -au -au -au -au -am -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -eJ -dn -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Kg -Mr -ks -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(123,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -am -am -au -au -au -au -au -au -au -au -au -am -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -eJ -eJ -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Kg -eJ -eJ -eJ -eJ -eJ -eJ -eJ -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(124,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -am -am -au -fO -au -lk -au -fO -au -am -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -eJ -eJ -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Ed -EB -EB -EB -EB -EB -Er -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -OT -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(125,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -am -am -am -au -av -au -am -am -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -eJ -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -ad -eJ -eJ -eJ -eJ -eJ -Kg -Mw -wX -wX -wX -wX -wX -wX -wX -wX -wX -wX -OQ -eJ -eJ -Mw -wX -wX -wX -OQ -eJ -eJ -Rw -ha -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(126,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -am -am -an -am -am -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -Ec -ks -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -Kg -Mx -MG -MO -mA -mA -mA -mA -NR -MG -MO -mA -qN -eJ -eJ -kP -NR -MG -MO -qN -eJ -eJ -MG -aa -ha -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(127,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -eJ -dn -Ed -Er -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ks -oL -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -Kg -kP -MH -aa -aa -aa -aa -aa -aa -aa -aa -aa -OR -eJ -eJ -PV -aa -aa -aa -OR -eJ -eJ -Rx -aa -aa -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(128,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -eJ -eJ -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -Kg -kP -MH -ha -ha -ha -ha -ha -ha -ha -ha -ha -OS -eJ -eJ -OS -ha -ha -ha -OS -eJ -eJ -OS -ha -ha -ha -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(129,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -eJ -dn -Ed -Er -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -Kg -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(130,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -Kg -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(131,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -eJ -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -Kg -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(132,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Ed -Er -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -dn -Mq -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(133,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -dn -Kg -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(134,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -eJ -dn -dn -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -dn -Kg -kP -MI -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(135,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Eb -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -Kg -kP -MG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(136,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Ed -EB -Er -ks -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -Kg -kP -MJ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(137,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -eJ -Eb -uW -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -Kg -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(138,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -eJ -dn -dn -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -Kg -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(139,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ks -oL -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Eb -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -Kg -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(140,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Eb -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Kg -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -DE -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(141,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Eb -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Kg -kP -qN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(142,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Eb -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Mq -kP -MH -ha -ha -ha -ha -ha -ha -ha -ha -ha -OT -eJ -eJ -OT -ha -ha -ha -OT -eJ -eJ -OT -ha -ha -ha -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(143,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -eJ -dn -Eb -eJ -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -Kg -kP -MH -aa -aa -aa -aa -aa -aa -aa -aa -aa -OR -eJ -eJ -OR -aa -aa -aa -OR -eJ -eJ -Rw -aa -aa -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(144,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -Eb -eJ -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -Kg -Mx -MG -MP -wX -wX -wX -wX -NS -MG -MP -wX -qN -eJ -eJ -kP -NS -MG -MP -qN -eJ -eJ -MG -aa -ha -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(145,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -Eb -eJ -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -Kg -kR -mA -mA -mA -mA -mA -mA -mA -mA -mA -mA -qO -eJ -eJ -kR -mA -mA -mA -qO -eJ -eJ -Rx -gX -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(146,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -Eb -eJ -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -Kg -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -eJ -OS -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(147,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Eb -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -Kg -eJ -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(148,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Eb -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -ad -ad -ad -ad -Kg -eJ -ad -ad -ad -ad -ad -ad -eJ -eJ -eJ -eJ -eJ -eJ -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -ha -ha -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(149,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -ad -ad -Kg -eJ -ad -ad -ad -ad -eJ -eJ -eJ -eJ -eJ -eJ -OU -Po -Po -Po -Po -Po -Po -Po -Po -Po -Po -Po -Po -Po -Po -RV -RZ -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(150,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ks -oL -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -ad -ad -ad -Kg -eJ -ad -ad -eJ -eJ -eJ -eJ -eJ -MQ -MQ -MQ -OV -MQ -MQ -MG -ad -ad -Qx -QP -QP -QP -QP -QP -QP -QP -QP -RW -ha -ha -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(151,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -ad -ad -ad -Kg -eJ -eJ -eJ -eJ -eJ -eJ -MQ -MQ -MQ -Ol -Ox -OV -Pp -PH -MG -MG -MG -Qy -ad -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(152,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -ad -Kg -eJ -eJ -eJ -eJ -MQ -MQ -MQ -NT -MQ -Om -Oy -OV -Pq -PI -MG -Qb -MG -Qz -MG -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(153,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -Kg -eJ -eJ -eJ -MQ -MQ -Nr -NE -NU -MQ -On -Oz -OW -Oz -PJ -MG -Qc -MG -QA -MG -MG -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(154,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -eJ -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -Kg -eJ -eJ -MQ -MQ -Nh -Ns -NF -NV -Od -Oo -OA -OX -Pr -PK -MG -Qd -Qd -Qd -QQ -MG -MG -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(155,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -ad -ad -Kg -eJ -eJ -MQ -MQ -MQ -Nt -NG -NW -Oe -Op -OB -OY -Ps -PL -MG -Qd -Qo -Qo -Qd -Ra -Rl -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(156,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -ad -ad -Kg -eJ -My -My -MZ -My -Nu -Ns -NX -MQ -Oq -OC -NV -Pt -PM -MG -Qe -Qp -QB -QR -Rb -MG -MG -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(157,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -Ed -Er -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -eJ -Kg -eJ -My -MR -Na -Ni -Nv -NH -NX -MQ -Oq -OD -OZ -Pu -PM -MG -Qf -Qq -QC -Qd -Qd -Rm -MG -dn -dn -dn -dn -dn -dn -dn -Sd -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(158,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -Kg -eJ -My -MS -Nb -My -Nw -NI -NX -MQ -MQ -OE -Pa -OE -MQ -MG -Qg -Qr -QD -Qd -Qd -Rn -MG -My -RK -RH -eJ -eJ -dn -dn -ks -gX -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(159,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -eJ -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -eJ -eJ -dn -eJ -Ms -My -My -My -My -My -Nx -MQ -MQ -MQ -Or -OF -Pb -Pv -Or -MG -MG -MG -QE -QS -Rc -MN -MN -RD -RL -RL -RL -RL -RL -RL -RL -ks -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(160,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -eJ -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -eJ -eJ -eJ -eJ -eJ -Mt -Mz -MK -MT -Mz -Nj -Ny -NJ -NY -Of -Os -OG -Pc -Pw -Os -Of -NY -Qs -Ny -Os -Rd -Ro -Ry -Rd -RL -RL -RL -RL -RL -RL -RL -eJ -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(161,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -eJ -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -ad -ad -ad -ad -dn -Ea -Mu -MA -ML -MU -Nc -Nk -Nz -NK -NZ -Og -NK -OH -My -Px -PN -Og -NZ -NK -QF -QT -Re -Rp -Os -RE -RL -RL -RL -RL -RL -RL -RL -eJ -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(162,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -eJ -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -Eb -kR -MB -MM -MV -MB -Nl -NA -NL -Oa -Oh -NL -OI -Pd -Py -NL -Oh -Oa -Qt -QG -QU -MB -Rq -Rz -RF -RL -RL -RL -RL -RL -RL -RL -eJ -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(163,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Eb -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -EA -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -Eb -Mv -MC -MN -MN -Nd -MD -NB -MD -MD -MD -Ot -Nl -Pe -Pz -PO -PP -PP -PP -QH -PQ -MC -MN -MN -RG -RL -RL -RL -RL -RL -RL -RL -ks -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(164,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Eb -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -Eb -eJ -MD -MD -MW -Ne -Nm -NC -NM -Ob -MD -MD -Of -Pf -Of -PP -PP -Qh -Qu -QI -PY -PY -Rr -PP -My -RK -RH -eJ -eJ -eJ -eJ -ks -gX -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(165,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -Eb -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -dn -Ed -EB -ME -MD -MX -Ne -Nn -ND -NN -Ne -Oi -MD -Os -Ny -PA -PP -PW -Qi -PY -QJ -PY -PY -Rs -PP -eJ -dn -dn -dn -dn -dn -dn -Se -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(166,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Eb -dn -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -dn -eJ -eJ -MF -MD -MD -Nf -Ne -Ne -NO -Ne -Oj -MD -OJ -Ny -Os -PP -PX -Qj -Qv -QK -QV -Rf -PP -PP -eJ -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(167,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -Eb -dn -dn -dn -dn -dn -eJ -eJ -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -eJ -eJ -eJ -MY -Ng -Ne -Ne -NP -Ne -Ne -Ou -Os -Ny -Os -PQ -PY -PY -PY -PY -PY -Rg -Rt -eJ -eJ -dn -RN -RN -RN -RN -RN -gX -RN -RN -RN -RN -Sb -RN -RN -Sb -RN -RN -RN -Sv -Sx -Sv -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(168,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -Eb -eJ -dn -dn -eJ -dn -dn -dn -eJ -eJ -eJ -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -eJ -eJ -MD -MD -No -Ne -Ne -Ne -Ne -Ou -Os -Ny -Os -PQ -PY -PY -PY -PY -QW -PP -PP -eJ -dn -dn -dn -gX -dn -dn -dn -gX -dn -dn -dn -gX -dn -dn -gX -dn -Iy -Iy -St -Sw -Iy -Sv -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(169,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ks -oL -dn -eJ -Eb -eJ -eJ -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -eJ -MD -Np -Ne -Ne -Ne -Ok -MD -OK -Pg -PB -PP -PZ -PY -PZ -QL -PP -PP -ad -dn -dn -dn -RO -RP -RX -Sa -RP -RX -RO -Sg -RX -RO -RP -Sk -RO -Sl -Sk -Sa -Su -Sk -Iy -Sv -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(170,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -Eb -dn -dn -dn -Hn -HC -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -dn -dn -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -eJ -eJ -MD -Nq -Ne -NQ -Oc -MD -MD -OL -Ny -Os -PP -PP -Qk -PP -PP -PP -ad -ad -dn -dn -dn -RO -RQ -RX -Sa -RQ -RX -RO -Sh -RX -RO -RQ -Sk -RO -Sm -Sk -Sa -Sm -Sk -Iy -Sv -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(171,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -eJ -dn -Eb -dn -eJ -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -dn -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -eJ -MD -MD -MD -MD -MD -MD -Ov -Os -Ph -ML -PR -PP -PP -PP -ad -ad -ad -ad -dn -dn -dn -RO -RQ -RX -Sa -RQ -RX -RO -Sh -RX -RO -RQ -Sk -RO -Sn -Sk -Sa -Sm -Sk -Iy -Sw -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(172,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -eJ -dn -Ed -EB -EB -GX -EB -Er -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -eJ -dn -ad -ad -ad -MD -Ow -Ow -Pi -Ow -Ow -PP -ad -ad -ad -ad -ad -dn -dn -dn -dn -RO -RQ -RX -Sa -RQ -RX -RO -Sh -RX -RO -RQ -Sk -RO -Sn -Sk -Sa -Sm -Sk -Iy -Sw -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(173,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -eJ -eJ -eJ -eJ -eJ -eJ -eJ -dn -Eb -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ow -OM -Pj -PC -Ow -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -RO -RQ -RX -Sa -RQ -RX -RO -Sh -RX -RO -RQ -Sk -RO -Sm -Sk -Sa -Sm -Sk -Iy -Sx -Sz -Sz -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(174,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ua -eJ -eJ -eJ -FY -eJ -eJ -eJ -ua -Eb -HW -Io -Iz -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ow -ON -Pk -PD -Ow -Ow -Ow -Ow -Ow -Ow -Rh -Rk -RA -RH -dn -dn -RR -dn -dn -Sc -Sf -dn -Sc -dn -Sf -Sc -dn -dn -So -dn -Iy -So -Iy -Iy -Sy -Sw -Iy -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(175,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Cx -Cx -EC -EV -Fk -EV -EC -EV -GK -EV -EC -HD -HX -Ip -Ip -Ip -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -KP -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ow -OO -Pl -PE -PS -Qa -Ql -Qw -QM -QX -Ri -Ru -RB -RI -RM -RM -RS -RY -RY -RS -RY -RY -RS -RY -RY -RS -RY -RY -Sp -Ss -Ss -Sp -Ss -Ss -Ss -SA -Sw -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(176,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Dq -Dq -Es -EC -EW -Fl -FB -EC -Gt -Fl -GY -ED -HE -HY -Iq -Ip -Ip -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ow -OP -Pm -PF -PT -PT -Qm -Qm -QN -QY -Rj -Rv -QY -RJ -dn -dn -RR -dn -dn -Sc -Sf -dn -Sc -dn -Sf -Sc -dn -dn -So -Iy -Iy -So -Iy -Iy -Sy -Sw -Iy -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(177,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -wu -wu -wu -Dq -Dq -Ee -Et -EC -EX -Eh -FB -EC -Gt -Eh -GZ -ED -HF -HZ -Ir -IA -Ip -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ow -Ow -Pn -PG -PU -PC -Qn -Qn -QO -QZ -Rk -Rk -RC -dn -dn -RO -RT -RX -Sa -RT -RX -RO -Si -RX -RO -RT -Sk -RO -Sq -Sk -Sa -Sq -Sk -Iy -Sw -Sz -Sz -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(178,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -wu -wu -Aw -Dd -Dr -DF -Ef -Eu -EC -EW -Eh -FC -EC -Gu -Eh -GY -ED -HG -HZ -Is -IB -Ip -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ow -Ow -Ow -Ow -Ow -Ow -Ow -Ow -Ow -ad -ad -dn -dn -dn -RO -RT -RX -Sa -RT -RX -RO -Si -RX -RO -RT -Sk -RO -Sq -Sk -Sa -Sq -Sk -Iy -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(179,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -wu -xJ -By -De -Ds -DG -Eg -Ev -ED -EY -Fm -EY -EC -EY -GL -EY -ED -HH -Ia -It -IC -Ip -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -RO -RT -RX -Sa -RT -RX -RO -Si -RX -RO -RT -Sk -RO -Sq -Sk -Sa -Sq -Sk -Iy -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(180,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -wu -zA -Cs -Df -Dt -Dt -Dt -Ew -EE -EZ -Fn -FD -FZ -Gv -Fo -Ha -ED -HI -HI -HI -ID -Ip -ad -ad -ad -ad -ad -dn -dn -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -RO -RT -RX -Sa -RT -RX -RO -Si -RX -RO -RT -Sk -RO -Sq -Sk -Sa -Sq -Sk -Iy -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(181,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -wu -ye -CR -Dg -zW -DH -DH -DH -EF -Fa -Fo -FE -Ga -FE -Fo -Hb -EF -HJ -HJ -HJ -ID -Ip -ad -ad -ad -ad -ad -dn -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -RO -RU -RX -Sa -RU -RX -RO -Sj -RX -RO -RU -Sk -RO -Sr -Sk -Sa -Sr -Sk -Iy -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(182,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -wu -yi -CR -Dh -zW -DI -Eh -Eh -EG -Fb -Fp -FF -Gb -FF -GM -Hc -Ho -HK -HK -Iu -IE -Ip -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -gX -dn -dn -dn -gX -dn -dn -dn -gX -dn -dn -gX -Iy -Iy -Iy -St -Iy -Iy -Sv -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(183,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -wu -yi -CS -Di -zW -DJ -Ei -Ei -ED -Fc -Fq -FG -Gc -FG -GN -Hd -ED -HL -Ib -Ib -IF -Ip -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -RN -RN -RN -RN -Sb -RN -RN -RN -gX -RN -RN -RN -RN -RN -RN -RN -RN -RN -Sv -Sx -Sv -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(184,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -wu -zW -zW -Dj -zW -DK -DK -DK -EH -EH -EH -FH -Gd -FH -EH -EH -EH -HI -HI -HI -HI -Ip -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(185,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CC -CE -CT -Dk -Du -DL -Ej -DK -EH -EH -Fr -FI -Ge -Gw -GO -EH -EH -Hl -Hm -Hm -Hl -Hm -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(186,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CC -CF -CU -Dl -CV -DM -Ek -DK -EH -Fd -Fs -FJ -Ge -Fe -GP -He -EH -Hl -Hl -Hl -Hl -Hl -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -SC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(187,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CC -CG -CV -Dm -CV -DM -El -DK -EI -Fe -Fs -FK -Gf -Gx -Fe -Fe -Hp -Hl -Ic -Iv -IG -IS -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(188,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CC -CH -CV -Dn -Dv -DN -Em -Dy -EJ -Fe -Ft -FL -Gg -Gy -Gx -Fe -Hq -HM -Id -HV -HV -IT -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(189,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CC -CI -CW -Do -Dw -DO -En -Ex -EK -EK -Fu -FM -Gh -Gz -GQ -EK -EK -HN -Ie -Ie -IH -IT -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(190,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CC -CI -CW -CW -Dw -DP -Em -Dy -EJ -Fe -Fe -FN -Gg -GA -GB -Fe -Hr -HM -Id -HV -II -IU -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(191,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -jH -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CC -CJ -CX -CX -Dx -DP -Eo -DK -EL -Fe -Fe -Fe -Gi -GB -Fe -Fe -Hs -Hl -If -Iw -IJ -IV -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(192,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jB -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CC -CC -CC -CC -Dy -DQ -DK -DK -EH -Ff -Fe -Fe -Ge -Fe -Fe -Hf -EH -Hl -Hl -Hl -IK -Hl -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(193,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -CK -CY -Db -Dz -DR -Db -Db -Db -EH -Fv -FO -Ge -FO -GR -EH -GS -HO -Ig -Hl -IL -IW -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(194,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -zC -CZ -Db -DA -DS -Db -Ey -EM -Db -Fw -FP -Gj -FP -EH -GS -Ht -HP -Ih -Hl -IL -IW -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(195,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -CL -Da -Db -DB -DT -Db -Ez -EN -Db -Fx -FQ -Gk -GC -GS -Hg -Hu -HQ -Ii -Hl -II -IX -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(196,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -CM -Db -Db -Db -DU -Db -Db -EO -Db -Fy -FR -Gl -GD -GT -Hh -Hv -Hv -Ij -Hl -IM -IY -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(197,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -CN -Dc -Dp -DC -DV -Dc -Dc -EP -Db -Fz -FS -Gm -GE -GU -Hi -Hw -HR -Ik -Hl -IN -IZ -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(198,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -CO -Db -Db -Db -DW -Db -Db -EQ -Db -Fw -FT -Gn -GF -GV -Hj -Hx -HS -Il -Hl -IO -Ja -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(199,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -CP -Da -Db -DB -DX -Db -DB -ER -Db -Fw -FU -Go -GG -Fw -Hk -GS -GS -GS -Hl -IP -Hl -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(200,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -Cb -CZ -Db -Co -DY -Db -Co -DY -Db -Fw -FP -Gp -FP -Fw -Hl -Hy -HT -Im -HT -IQ -Hm -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(201,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -CQ -CY -Db -DD -DZ -Db -DD -DZ -Db -Fw -FV -Gq -GH -Fw -Hl -Hz -HU -HU -HU -IR -Hm -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(202,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -CD -CD -CD -CD -CD -Db -Db -Db -Db -Fw -FW -Gr -Gn -Fw -Hl -HA -HV -In -Ix -Hm -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(203,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -CD -CD -CD -CD -CD -Fw -FX -Gs -GI -Fw -Hm -Hm -Hm -Hm -Hm -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(204,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ep -Ep -Ep -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Hm -Hm -Hm -Hm -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(205,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ep -ES -Fg -Fg -Fg -Fg -Fg -Fg -Fg -ES -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(206,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ep -gX -Fg -Fg -Fg -Fg -Fg -Fg -Fg -gX -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(207,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ep -ET -Fg -Fg -Fg -Fg -Fg -Fg -Fg -ET -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(208,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ep -Ep -Fg -Fg -Fg -Fg -Fg -Fg -Fg -Ep -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(209,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -Ep -Ep -Ep -FA -gX -gX -gX -GW -Ep -HB -dn -dn -dn -dn -dn -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(210,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -EA -EA -EA -EA -dn -dn -dn -dn -dn -dn -dn -dn -Iy -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(211,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -EA -EA -dn -dn -dn -dn -dn -dn -dn -dn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(212,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(213,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(214,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(215,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(216,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(217,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(218,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(219,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(220,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(221,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(222,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(223,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(224,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(225,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(226,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(227,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(228,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(229,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(230,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(231,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(232,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(233,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(234,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(235,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(236,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(237,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(238,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(239,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(240,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(241,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(242,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(243,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(244,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(245,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(246,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(247,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(248,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(249,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(250,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(251,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(252,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(253,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(254,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(255,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} diff --git a/maps/southern_sun/overmap/planets/thor/thor.dm b/maps/southern_sun/overmap/planets/thor/thor.dm deleted file mode 100644 index d02b715b6f..0000000000 --- a/maps/southern_sun/overmap/planets/thor/thor.dm +++ /dev/null @@ -1,297 +0,0 @@ -//Atmosphere properties //CHOMP Comment: I guess this THOR planetary information should go here. THOR is a gas giant, it ain't gonna be getting very many other maps. -#define THOR_ONE_ATMOSPHERE 101.5 //kPa -#define THOR_AVG_TEMP 313 //kelvin - -#define THOR_PER_N2 0.65 //percent -#define THOR_PER_O2 0.35 -#define THOR_PER_N2O 0.00 //Currently no capacity to 'start' a turf with this. See turf.dm -#define THOR_PER_CO2 0.00 -#define THOR_PER_PHORON 0.00 - -//Math only beyond this point -#define THOR_MOL_PER_TURF (THOR_ONE_ATMOSPHERE*CELL_VOLUME/(THOR_AVG_TEMP*R_IDEAL_GAS_EQUATION)) -#define THOR_MOL_N2 (THOR_MOL_PER_TURF * THOR_PER_N2) -#define THOR_MOL_O2 (THOR_MOL_PER_TURF * THOR_PER_O2) -#define THOR_MOL_N2O (THOR_MOL_PER_TURF * THOR_PER_N2O) -#define THOR_MOL_CO2 (THOR_MOL_PER_TURF * THOR_PER_CO2) -#define THOR_MOL_PHORON (THOR_MOL_PER_TURF * THOR_PER_PHORON) - -//Turfmakers -#define THOR_SET_ATMOS nitrogen=THOR_MOL_N2;oxygen=THOR_MOL_O2;carbon_dioxide=THOR_MOL_CO2;phoron=THOR_MOL_PHORON;temperature=THOR_AVG_TEMP -#define THOR_TURF_CREATE(x) x/THOR/nitrogen=THOR_MOL_N2;x/THOR/oxygen=THOR_MOL_O2;x/THOR/carbon_dioxide=THOR_MOL_CO2;x/THOR/phoron=THOR_MOL_PHORON;x/THOR/temperature=THOR_AVG_TEMP;x/THOR/color="#eacd7c" - -/obj/effect/overmap/visitable/planet/thor - name = "Thor" - desc = "Inhabited terrestrial natural saterlite of Sif" - scanner_desc = @{"[i]Stellar Body[/i]: Thor -[i]Registration[/i]: Vir System Authority -[i]Class[/i]: Installation -[i]Transponder[/i]: Transmitting (CIV), Vir IFF -[b]Notice[/b]: The Vir government welcomes you to this world."} - - map_z = list(Z_LEVEL_JUNGLE) - initial_generic_waypoints = list("thor_nw","thor_e","spacebus_jungle") - start_x = 11 - start_y = 17 - known = TRUE - skybox_offset_x = 128 - skybox_offset_y = 128 - surface_color = "#176422" - mountain_color = "#093314" - water_color = "#086dcc" - ice_color = "#f5ffff" - atmosphere_color = "#54c0ce" - icon_state = "lush" - - -/obj/effect/overmap/visitable/planet/thor/get_skybox_representation() - var/image/tmp = ..() - tmp.pixel_x = skybox_offset_x - tmp.pixel_y = skybox_offset_y - return tmp - -/obj/effect/overmap/visitable/planet/thor/Initialize() - atmosphere = new(CELL_VOLUME) // Necessary for the planet overmap icon to generate properly, but gas type does not seem to matter. - atmosphere.adjust_gas_temp("carbon_dioxide", THOR_MOL_CO2, THOR_AVG_TEMP) - atmosphere.adjust_gas_temp("nitrogen", THOR_MOL_N2, THOR_AVG_TEMP) - atmosphere.adjust_gas_temp("oxygen", THOR_MOL_O2, THOR_AVG_TEMP) - - . = ..() - - docking_codes = null - -//AREAS -/area/surface/thor/med - name = "Jungle Outpost Medical" - icon_state = "medbay" - -/area/surface/thor/engi - name = "Jungle Outpost Solars" - icon_state = "engineering" - -/area/surface/thor/janitor - name = "Jungle Outpost Custodions" - icon_state = "janitor" - -/area/surface/thor/kitchen - name = "Jungle Outpost Kitchen" - icon_state = "cafeteria" - -/area/surface/thor/bar - name = "Jungle Outpost Bar" - icon_state = "cafeteria" - -/area/surface/thor/dorms - name = "Jungle Outpost Generic Dorms" - icon_state = "Sleep" - soundproofed = TRUE - limit_mob_size = FALSE - block_suit_sensors = TRUE - flags = RAD_SHIELDED - block_tracking = TRUE - -/area/surface/thor/dorms/pool1 - name = "Jungle Outpost Pool Shack 1" - -/area/surface/thor/dorms/pool2 - name = "Jungle Outpost Pool Shack 2" - -/area/surface/thor/dorms/pool3 - name = "Jungle Outpost Pool Shack 3" -/area/surface/outside/thor/pool - name = "Jungle Swimming Pool" - icon_state = "bluenew" - always_unpowered = FALSE - -/area/surface/outside/thor/landingpad - name = "Space Bus Landing Pad" - icon_state = "bluenew" - -/area/surface/outside/thor/outpost - name = "Jungle Outpost Perimiter" - icon_state = "green" -/area/surface/outside/thor/jungle - name = "Jungle" - icon_state = "green" -/area/surface/outside/thor/jungle/deep - name = "Untamed Jungles" - icon_state = "green" - -/area/surface/outside/thor/beach - name = "Tropical Beach" - icon_state = "away" -/area/surface/outside/thor/ocean - name = "Tropical Ocean" - icon_state = "bluenew" - -/area/surface/thor/caves - name = "Tropical Caves" - icon_state = "darkred" - always_unpowered = TRUE - -/area/surface/thor/abandonedhouse - name = "Jungle Abandoned House" - icon_state = "away1" - -/area/surface/thor/commstower - name = "Jungle Comms Tower" - icon_state = "away1" -//TURFS (mostly existing turfs with armos changes) - -/turf/unsimulated/wall/planetary/normal/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/mineral/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP -/turf/simulated/floor/outdoors/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/floor/outdoors/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/floor/water/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/shuttle/floor/alienplating/external/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/shuttle/floor/voidcraft/external/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/shuttle/floor/voidcraft/external/dark/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/shuttle/floor/voidcraft/external/light/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/floor/plating/external/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/floor/tiled/external/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/floor/outdoors/mud/thor/planetuse - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/floor/outdoors/rocks/thor/planetuse - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/floor/tiled/thor/planetuse - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - outdoors = OUTDOORS_YES - -/turf/simulated/floor/tiled/steel/thor/planetuse - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - outdoors = OUTDOORS_YES - -/turf/simulated/floor/plating/thor/planetuse - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - outdoors = OUTDOORS_YES - -/turf/simulated/floor/outdoors/grass/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - var/tree_chance = 5 - -/turf/simulated/floor/outdoors/grass/heavy/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - var/tree_chance = 10 - -/turf/simulated/floor/outdoors/grass/forest/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - var/tree_chance = 10 - -/turf/simulated/floor/outdoors/dirt/thor/planetuse - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/floor/reinforced/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/floor/concrete/outdoors/thor - outdoors = TRUE - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/floor/beach/sand/desert/outdoors/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/floor/outdoors/desert_planet/gravel/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/floor/outdoors/desert_planet/sand/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/mineral/floor/cave/thor - oxygen = THOR_MOL_O2 - nitrogen = THOR_MOL_N2 - temperature = THOR_AVG_TEMP - -/turf/simulated/floor/outdoors/grass/thor/Initialize() - if(tree_chance && prob(tree_chance) && !check_density()) - new /obj/structure/flora/tree/jungle(src) - . = ..() - -/turf/simulated/floor/outdoors/grass/heavy/thor/Initialize() - if(tree_chance && prob(tree_chance) && !check_density()) - new /obj/structure/flora/tree/jungle(src) - . = ..() - -/turf/simulated/floor/outdoors/grass/forest/thor/Initialize() - if(tree_chance && prob(tree_chance) && !check_density()) - new /obj/structure/flora/tree/jungle(src) - - grass = "thor" - . = ..() diff --git a/maps/southern_sun/overmap/planets/thor/thor.dmm b/maps/southern_sun/overmap/planets/thor/thor.dmm deleted file mode 100644 index 1189571fe4..0000000000 --- a/maps/southern_sun/overmap/planets/thor/thor.dmm +++ /dev/null @@ -1,71201 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ao" = ( -/obj/structure/bonfire, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/beach) -"ap" = ( -/obj/structure/shuttle/engine/heater, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 8 - }, -/turf/simulated/wall/iron, -/area/shuttle/junker) -"au" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/outpost) -"az" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"aK" = ( -/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/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/outpost) -"aN" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/water/deep/pool{ - outdoors = 1; - temperature = 313 - }, -/area/surface/outside/thor/pool) -"aO" = ( -/obj/structure/closet/cabinet{ - density = 0; - pixel_y = 20; - wall_mounted = 1 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/alarms_hidden{ - dir = 8; - pixel_x = -27 - }, -/turf/simulated/floor/wood, -/area/surface/thor/dorms/pool2) -"aP" = ( -/obj/machinery/light/small/poi{ - dir = 1 - }, -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/outdoors/dirt/thor/planetuse, -/area/surface/thor/abandonedhouse) -"aR" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"aS" = ( -/obj/structure/prop/desert_planet160x160/tallboulder, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/ocean) -"aZ" = ( -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle) -"bc" = ( -/turf/simulated/floor/outdoors/mud/thor/planetuse, -/area/surface/outside/thor/jungle) -"bh" = ( -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/ocean) -"bi" = ( -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/beach) -"bj" = ( -/obj/structure/flora/underwater/grass3, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle) -"bn" = ( -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 0 - }, -/area/surface/outside/thor/beach) -"bq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/surface/thor/abandonedhouse) -"br" = ( -/obj/item/material/shard{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/jungle) -"by" = ( -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/landingpad) -"bC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/turf/simulated/wall/iron, -/area/shuttle/junker) -"bE" = ( -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"bF" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/turf/simulated/floor/concrete/outdoors/thor, -/area/surface/outside/thor/landingpad) -"bG" = ( -/obj/effect/catwalk_plated/dark, -/obj/machinery/shipsensors/weak, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"bK" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/obj/effect/shuttle_landmark{ - base_area = /area/surface/outside/thor/jungle/deep; - base_turf = /turf/simulated/floor/outdoors/grass/heavy/thor; - landmark_tag = "junkspawn"; - name = "???" - }, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"bV" = ( -/obj/structure/flora/tree/jungle_small, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"bW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -28; - pixel_y = -29 - }, -/turf/simulated/floor/wood, -/area/surface/thor/dorms/pool3) -"bX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/pool) -"bZ" = ( -/obj/structure/table/steel, -/obj/item/material/knife/machete/hatchet, -/obj/item/material/knife/machete/hatchet, -/obj/item/material/knife/machete/hatchet, -/obj/item/material/knife/machete/hatchet, -/obj/item/shovel, -/obj/item/shovel, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/landingpad) -"ci" = ( -/obj/structure/table/steel_reinforced, -/obj/random/powercell/device, -/obj/random/powercell/device, -/turf/simulated/floor/plating, -/area/surface/thor/engi) -"cl" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/jungle) -"cp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/yellow{ - icon_state = "hydrofloor" - }, -/area/surface/thor/abandonedhouse) -"cq" = ( -/turf/simulated/mineral/floor/cave/thor{ - icon_state = "sand-icey"; - color = "#B32981" - }, -/area/surface/thor/caves) -"cx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/wood, -/area/surface/thor/abandonedhouse) -"cA" = ( -/obj/machinery/door/airlock/sandstone, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/alt, -/area/surface/thor/kitchen) -"cB" = ( -/obj/structure/girder, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/abandonedhouse) -"cD" = ( -/obj/structure/flora/tree/desert_planet/desert_tree, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle) -"cE" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/simulated/floor/concrete/outdoors/thor, -/area/surface/outside/thor/landingpad) -"cQ" = ( -/turf/simulated/floor/water/beach{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 6 - }, -/area/surface/outside/thor/jungle) -"cS" = ( -/obj/machinery/vending/loadout/clothing, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor{ - outdoors = 0 - }, -/area/surface/outside/thor/pool) -"cU" = ( -/turf/simulated/floor/water/beach/corner{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 4 - }, -/area/surface/outside/thor/ocean) -"cW" = ( -/turf/simulated/floor/water/beach/corner{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 1 - }, -/area/surface/outside/thor/jungle) -"db" = ( -/obj/vehicle/boat, -/turf/simulated/floor/water/beach, -/area/surface/outside/thor/ocean) -"dn" = ( -/turf/simulated/floor/tiled/yellow, -/area/surface/thor/abandonedhouse) -"dx" = ( -/obj/structure/girder, -/obj/item/material/shard, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/abandonedhouse) -"dz" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/jungle) -"dB" = ( -/obj/item/binoculars/spyglass, -/turf/simulated/mineral/floor/cave/thor, -/area/surface/thor/caves) -"dE" = ( -/turf/simulated/floor/water/beach/corner{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 2 - }, -/area/surface/outside/thor/beach) -"dF" = ( -/obj/machinery/door/airlock/sandstone{ - id_tag = "thorpool3" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/dorms/pool3) -"dJ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/janitor) -"dK" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"dL" = ( -/obj/item/stool/padded, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"dS" = ( -/obj/structure/cliff/automatic{ - dir = 4 - }, -/turf/simulated/floor/lava, -/area/surface/thor/caves) -"dV" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"dW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/surface/thor/abandonedhouse) -"dZ" = ( -/mob/living/simple_mob/vore/pitcher_plant, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle) -"ec" = ( -/turf/simulated/floor/beach/sand/desert/outdoors/thor, -/area/surface/outside/thor/ocean) -"eh" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"ek" = ( -/obj/item/stool/padded{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"er" = ( -/obj/structure/cliff/automatic{ - dir = 9 - }, -/turf/simulated/floor/outdoors/desert_planet/gravel/thor, -/area/surface/outside/thor/beach) -"es" = ( -/obj/machinery/computer/ship/engines{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"eB" = ( -/obj/structure/table/woodentable, -/obj/structure/prop/machine/random_radio, -/turf/simulated/floor/lino, -/area/surface/thor/abandonedhouse) -"eD" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/vending/dinnerware{ - req_log_access = null; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"eG" = ( -/obj/machinery/door/airlock/sandstone{ - id_tag = "thorpool2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/dorms/pool2) -"eH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/concrete, -/area/surface/thor/abandonedhouse) -"eN" = ( -/turf/simulated/wall/wood, -/area/surface/outside/thor/landingpad) -"eP" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_y = 16 - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/item/reagent_containers/glass/beaker/measuring_cup, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"eV" = ( -/obj/structure/girder, -/turf/simulated/floor, -/area/surface/thor/abandonedhouse) -"eY" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"fa" = ( -/obj/item/bedsheet/brown, -/obj/machinery/button/remote/airlock{ - id = "thorpool2"; - name = "Door Bolt Control"; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/structure/bed/padded, -/turf/simulated/floor/wood, -/area/surface/thor/dorms/pool2) -"fb" = ( -/obj/structure/flora/ausbushes/fernybush, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/jungle) -"fo" = ( -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"fq" = ( -/obj/structure/flora/tree/jungle, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"fw" = ( -/obj/structure/flora/underwater/grass4, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle) -"fx" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/clown, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor{ - outdoors = 0 - }, -/area/surface/outside/thor/pool) -"fy" = ( -/obj/machinery/media/jukebox, -/turf/simulated/floor/wood/alt, -/area/surface/thor/kitchen) -"fA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/yellow{ - icon_state = "hydrofloor" - }, -/area/surface/thor/abandonedhouse) -"fI" = ( -/turf/simulated/floor/tiled/thor/planetuse, -/area/surface/outside/thor/jungle) -"fL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/landingpad) -"fM" = ( -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/pool) -"fY" = ( -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"ge" = ( -/obj/structure/cliff/automatic/corner, -/turf/simulated/floor/beach/sand/desert/outdoors/thor, -/area/surface/outside/thor/beach) -"gg" = ( -/turf/simulated/floor/plating, -/area/surface/thor/engi) -"gk" = ( -/turf/simulated/floor/outdoors/grass/heavy/thor{ - grass_chance = 5; - tree_chance = 0 - }, -/area/surface/thor/abandonedhouse) -"gl" = ( -/turf/simulated/wall/wood, -/area/surface/thor/abandonedhouse) -"gm" = ( -/obj/effect/overmap/visitable/planet/thor, -/turf/unsimulated/wall/planetary/normal/thor, -/area/surface/outside/thor/ocean) -"gr" = ( -/turf/simulated/floor/lino, -/area/surface/thor/abandonedhouse) -"gy" = ( -/obj/structure/flora/underwater/grass2, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle) -"gA" = ( -/obj/structure/bonfire, -/turf/simulated/mineral/floor/cave/thor, -/area/surface/thor/caves) -"gD" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"gF" = ( -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/tiled/yellow, -/area/surface/thor/abandonedhouse) -"gH" = ( -/obj/structure/flora/tree/desert_planet/mpalmtree1, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/jungle) -"gI" = ( -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"gN" = ( -/obj/structure/flora/tree/jungle_small, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle/deep) -"gP" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_coffee/full{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"gR" = ( -/turf/simulated/floor/water/deep/ocean{ - temperature = 313; - oxygen = 34.1451 - }, -/area/surface/outside/thor/ocean) -"gS" = ( -/obj/structure/cliff/automatic, -/turf/simulated/floor/beach/sand/desert/outdoors/thor, -/area/surface/outside/thor/beach) -"gX" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/lino, -/area/surface/thor/abandonedhouse) -"hb" = ( -/obj/structure/bed/chair/sofa/left/brown{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/carpet/green, -/area/surface/thor/kitchen) -"hh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"hj" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle) -"hk" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/reagent_containers/glass/rag, -/obj/item/book/manual/barman_recipes, -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"hp" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/turf/simulated/floor/concrete/outdoors/thor, -/area/surface/outside/thor/landingpad) -"ht" = ( -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/outdoors/mud/thor/planetuse, -/area/surface/outside/thor/jungle) -"hv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/yellow, -/area/surface/thor/abandonedhouse) -"hy" = ( -/obj/machinery/appliance/cooker/grill, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"hz" = ( -/turf/simulated/floor/concrete/outdoors/thor, -/area/surface/outside/thor/landingpad) -"hC" = ( -/turf/simulated/wall/wood, -/area/surface/thor/dorms/pool3) -"hD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/concrete/outdoors/thor, -/area/surface/outside/thor/jungle) -"hE" = ( -/obj/structure/table/marble, -/obj/structure/sink/countertop{ - pixel_y = 4; - dir = 8 - }, -/obj/item/trash/plate{ - pixel_y = -2 - }, -/obj/item/trash/plate, -/obj/item/trash/plate{ - pixel_y = 2 - }, -/obj/item/trash/plate{ - pixel_y = 4 - }, -/turf/simulated/floor/wood, -/area/surface/thor/abandonedhouse) -"hN" = ( -/obj/machinery/vending/hydronutrients{ - dir = 8; - pixel_x = 6 - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/thor/kitchen) -"ia" = ( -/turf/simulated/floor/water/beach/corner{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 4 - }, -/area/surface/outside/thor/beach) -"ib" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/table/steel_reinforced, -/obj/random/powercell, -/obj/random/powercell, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/thor/engi) -"ic" = ( -/obj/structure/prop/desert_planet64x64/lrock3, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/ocean) -"id" = ( -/obj/structure/prop/desert_planet64x64/lribs, -/obj/item/bone/leg, -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"ih" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/outdoors/grass/heavy/thor{ - grass_chance = 5; - tree_chance = 0 - }, -/area/surface/outside/thor/jungle/deep) -"ij" = ( -/obj/structure/table/bench/wooden, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/beach) -"io" = ( -/obj/machinery/computer/ship/helm{ - req_one_access = null - }, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"iq" = ( -/turf/simulated/floor/water/deep/ocean{ - temperature = 313; - oxygen = 34.1451; - nitrogen = 63.4124 - }, -/area/surface/outside/thor/ocean) -"is" = ( -/obj/structure/flora/tree/jungle, -/mob/living/simple_mob/animal/passive/bird/parrot, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"it" = ( -/obj/structure/flora/tree/jungle_small, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"iv" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/outpost) -"iy" = ( -/obj/structure/flora/tree/desert_planet/desert_tree, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle) -"iB" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor{ - outdoors = 0 - }, -/area/surface/outside/thor/pool) -"iH" = ( -/obj/effect/floor_decal/borderfloorblack, -/turf/simulated/floor/concrete/outdoors/thor, -/area/surface/outside/thor/landingpad) -"iL" = ( -/obj/structure/prop/desert_planet64x64/lribs, -/obj/item/bone/skull/unathi, -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"iM" = ( -/obj/structure/flora/underwater/plant1, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle) -"iU" = ( -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/thor/kitchen) -"iZ" = ( -/obj/structure/flora/tree/desert_planet/palmtree, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"jd" = ( -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/pool) -"jj" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/bottle/jager{ - pixel_y = 11; - pixel_x = 16 - }, -/obj/item/reagent_containers/food/drinks/bottle/gin{ - pixel_y = 3; - pixel_x = 13 - }, -/obj/item/reagent_containers/food/drinks/bottle/cognac{ - pixel_y = 7; - pixel_x = -8 - }, -/obj/item/reagent_containers/food/drinks/bottle/patron{ - pixel_y = 11; - pixel_x = 2 - }, -/obj/item/reagent_containers/food/drinks/bottle/bluecuracao{ - pixel_y = 1; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/drinks/bottle/whitewine{ - pixel_y = 2; - pixel_x = 6 - }, -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"jk" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/outpost) -"jt" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/browndouble, -/turf/simulated/floor/lino{ - oxygen = 34.1451; - nitrogen = 63.4124; - temperature = 313 - }, -/area/surface/thor/abandonedhouse) -"ju" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "junglekitchen"; - layer = 3.3; - name = "Kitchen Shutters" - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"jw" = ( -/obj/effect/decal/remains, -/obj/effect/decal/cleanable/greenglow, -/obj/item/clothing/head/caphat/formal/fedcover/fedcoversec, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/caves) -"jx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/marble, -/turf/simulated/floor/tiled/white, -/area/surface/thor/abandonedhouse) -"jC" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/thor/bar) -"jE" = ( -/obj/machinery/computer/ship/sensors, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"jF" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/outpost) -"jI" = ( -/turf/unsimulated/wall/planetary/normal/thor, -/area/surface/outside/thor/ocean) -"jU" = ( -/turf/simulated/floor/wood, -/area/surface/thor/abandonedhouse) -"ka" = ( -/obj/structure/grille/rustic, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/surface/thor/kitchen) -"kd" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor{ - outdoors = 0 - }, -/area/surface/outside/thor/pool) -"ke" = ( -/obj/structure/flora/tree/desert_planet/spalmtree3, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"kh" = ( -/turf/simulated/floor/lava, -/area/surface/thor/caves) -"kl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"km" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/water/deep/pool{ - outdoors = 1; - temperature = 313 - }, -/area/surface/outside/thor/pool) -"kn" = ( -/obj/item/bone, -/obj/item/digestion_remains/skull/tajaran, -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"ku" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -28; - pixel_y = -29 - }, -/turf/simulated/floor/wood, -/area/surface/thor/dorms/pool2) -"ky" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/cryopod, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"kI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/poi{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/thor/abandonedhouse) -"kK" = ( -/obj/structure/prop/desert_planet160x160/largeboulder, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/ocean) -"kL" = ( -/obj/item/bone, -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"kQ" = ( -/turf/simulated/floor/water/beach{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 10 - }, -/area/surface/outside/thor/ocean) -"kR" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/item/solar_assembly, -/turf/simulated/floor{ - outdoors = 1 - }, -/area/surface/outside/thor/jungle) -"kS" = ( -/turf/simulated/floor/beach/sand/desert/outdoors/thor, -/area/surface/outside/thor/jungle) -"kT" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/concrete, -/area/surface/thor/abandonedhouse) -"kY" = ( -/obj/structure/closet/crate{ - name = "survival supplies" - }, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/landingpad) -"lc" = ( -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle/deep) -"ln" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 4; - pixel_x = 5; - pixel_y = -1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/abandonedhouse) -"lu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/jungle) -"lz" = ( -/obj/structure/prop/desert_planet64x64/lskull, -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"lA" = ( -/turf/simulated/floor/outdoors/rocks/thor/planetuse, -/area/surface/outside/thor/jungle/deep) -"lG" = ( -/turf/simulated/floor/water/beach{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 9 - }, -/area/surface/outside/thor/jungle) -"lH" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/janitor) -"lM" = ( -/turf/simulated/floor/water/beach{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 10 - }, -/area/surface/outside/thor/jungle) -"lX" = ( -/obj/structure/table/woodentable, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"lY" = ( -/obj/machinery/door/airlock/sandstone{ - id_tag = "thorpool1" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/dorms/pool1) -"mb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/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{ - outdoors = 1 - }, -/area/surface/outside/thor/jungle) -"mj" = ( -/obj/structure/flora/underwater/plant2, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle) -"mv" = ( -/obj/structure/table/woodentable, -/obj/item/material/fishing_rod/modern/strong, -/obj/item/material/fishing_rod/modern/strong, -/obj/item/material/fishing_rod/modern/strong, -/obj/item/material/fishing_rod/modern/strong, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/beach) -"my" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/outpost) -"mA" = ( -/turf/simulated/wall/wood, -/area/surface/thor/med) -"mF" = ( -/obj/item/reagent_containers/food/drinks/bottle/specialwhiskey{ - pixel_y = 8; - pixel_x = 10 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_y = 13 - }, -/obj/item/reagent_containers/food/drinks/bottle/wine{ - pixel_y = 2; - pixel_x = 4 - }, -/obj/item/reagent_containers/food/drinks/bottle/sake{ - pixel_y = 1; - pixel_x = -6 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_y = 3; - pixel_x = 14 - }, -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"mH" = ( -/obj/item/bedsheet/rainbow, -/obj/machinery/button/remote/airlock{ - id = "thorpool1"; - name = "Door Bolt Control"; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/structure/bed/padded, -/turf/simulated/floor/wood, -/area/surface/thor/dorms/pool1) -"mJ" = ( -/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{ - outdoors = 1 - }, -/area/surface/outside/thor/jungle) -"mK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/yellow, -/area/surface/thor/abandonedhouse) -"mX" = ( -/obj/structure/cliff/automatic{ - dir = 5 - }, -/turf/simulated/floor/outdoors/desert_planet/gravel/thor, -/area/surface/outside/thor/beach) -"nb" = ( -/mob/living/simple_mob/animal/space/bats, -/turf/simulated/mineral/floor/cave/thor{ - icon_state = "sand-icey"; - color = "#B32981" - }, -/area/surface/thor/caves) -"nc" = ( -/turf/simulated/floor/water/beach{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 6 - }, -/area/surface/outside/thor/ocean) -"nk" = ( -/obj/machinery/power/apc/alarms_hidden{ - dir = 8; - pixel_x = -27 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"nl" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - pixel_x = -26 - }, -/obj/structure/table/rack/steel, -/obj/item/reagent_containers/spray/cleaner, -/obj/random/soap, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/janitor) -"nm" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/water/pool{ - outdoors = 1 - }, -/area/surface/outside/thor/pool) -"nn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"ns" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/egg_smudge, -/turf/simulated/floor/wood, -/area/surface/thor/abandonedhouse) -"nu" = ( -/turf/simulated/floor/plating/external/thor{ - icon_state = "dmg2" - }, -/area/surface/outside/thor/jungle) -"nx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/item/solar_assembly, -/turf/simulated/floor{ - outdoors = 1 - }, -/area/surface/outside/thor/jungle) -"nE" = ( -/turf/simulated/floor/water/deep/ocean{ - temperature = 313; - oxygen = 34.1451; - nitrogen = 63.4124 - }, -/area/surface/outside/thor/jungle/deep) -"nH" = ( -/obj/machinery/door/airlock/sandstone, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"nJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/table/rack/shelf/steel, -/obj/item/stack/material/wood{ - amount = 50; - color = "#824B28" - }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/turf/simulated/floor/concrete, -/area/surface/thor/abandonedhouse) -"nK" = ( -/mob/living/simple_mob/vore/jelly, -/turf/simulated/mineral/floor/cave/thor, -/area/surface/thor/caves) -"nN" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/outpost) -"nP" = ( -/obj/structure/flora/tree/jungle, -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"nY" = ( -/turf/simulated/floor/outdoors/ice/dark_smooth{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - outdoors = 0 - }, -/area/surface/thor/caves) -"ob" = ( -/obj/machinery/door/window/southright{ - dir = 2 - }, -/obj/machinery/door/window/southright{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"oc" = ( -/obj/structure/undies_wardrobe{ - density = 0; - pixel_y = 18 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/surface/thor/dorms/pool2) -"od" = ( -/obj/structure/cliff/automatic{ - dir = 8 - }, -/turf/simulated/floor/lava, -/area/surface/thor/caves) -"oh" = ( -/obj/item/clothing/head/fedora/brown, -/obj/item/melee/chainofcommand/curator_whip, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/caves) -"oq" = ( -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/jungle) -"ou" = ( -/obj/machinery/vending/loadout, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor{ - outdoors = 0 - }, -/area/surface/outside/thor/pool) -"oy" = ( -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"oB" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/solar_control, -/turf/simulated/floor/plating, -/area/surface/thor/engi) -"oH" = ( -/obj/structure/mirror{ - dir = 4; - pixel_x = -27 - }, -/turf/simulated/floor/wood, -/area/surface/thor/dorms/pool1) -"oL" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"oP" = ( -/obj/machinery/appliance/cooker/oven, -/obj/machinery/microwave{ - pixel_y = 2; - pixel_x = 28 - }, -/turf/simulated/floor/wood, -/area/surface/thor/abandonedhouse) -"oR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/jungle) -"oS" = ( -/obj/random/firstaid, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 0 - }, -/area/surface/outside/thor/beach) -"oT" = ( -/obj/structure/prop/desert_planet64x64/palmuria, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"oU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/random/pottedplant, -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"oW" = ( -/obj/machinery/vending/fishing, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 0 - }, -/area/surface/outside/thor/beach) -"pa" = ( -/mob/living/simple_mob/animal/space/bats, -/turf/simulated/mineral/floor/cave/thor, -/area/surface/thor/caves) -"pc" = ( -/obj/random/outcrop, -/turf/simulated/mineral/floor/cave/thor{ - icon_state = "sand-icey"; - color = "#B32981" - }, -/area/surface/thor/caves) -"pd" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/light/bigfloorlamp, -/obj/structure/railing, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"pe" = ( -/obj/machinery/biogenerator, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/thor/kitchen) -"ph" = ( -/obj/structure/prop/desert_planet64x64/palmuria1, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/outpost) -"pk" = ( -/obj/random/junk, -/turf/simulated/floor/tiled/yellow, -/area/surface/thor/abandonedhouse) -"pm" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/fruitspawner/banana, -/obj/fruitspawner/banana, -/obj/fruitspawner/banana, -/obj/fruitspawner/banana, -/obj/fruitspawner/banana, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"po" = ( -/turf/simulated/floor/water/beach/corner{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 8 - }, -/area/surface/outside/thor/ocean) -"pp" = ( -/obj/structure/flora/log1, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle/deep) -"pq" = ( -/obj/structure/table/marble, -/obj/machinery/reagentgrinder, -/obj/item/reagent_containers/glass/beaker, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"pw" = ( -/obj/structure/flora/log2, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle/deep) -"pA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"pC" = ( -/obj/structure/cliff/automatic{ - dir = 6 - }, -/turf/simulated/floor/lava, -/area/surface/thor/caves) -"pE" = ( -/obj/item/material/shard{ - icon_state = "small" - }, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"pH" = ( -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = -13 - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"pJ" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"pK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/surface/thor/engi) -"pN" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/jungle) -"pO" = ( -/turf/simulated/floor/concrete, -/area/surface/thor/abandonedhouse) -"pP" = ( -/obj/structure/bed/roller, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"qb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/material/wood{ - amount = 24; - color = "#824B28" - }, -/turf/simulated/floor/tiled/yellow, -/area/surface/thor/abandonedhouse) -"qe" = ( -/obj/structure/closet/secure_closet/bar, -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"qf" = ( -/obj/structure/flora/ausbushes, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"qh" = ( -/obj/structure/flora/pottedplant/large, -/turf/simulated/floor/wood/alt, -/area/surface/thor/kitchen) -"qj" = ( -/obj/structure/outcrop/phoron, -/turf/simulated/mineral/floor/cave/thor, -/area/surface/thor/caves) -"ql" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/frame{ - anchored = 1 - }, -/obj/item/stock_parts/manipulator, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"qm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/tiled/yellow, -/area/surface/thor/abandonedhouse) -"qo" = ( -/obj/structure/table/marble, -/turf/simulated/floor/wood, -/area/surface/thor/abandonedhouse) -"qq" = ( -/turf/simulated/floor/water/pool{ - outdoors = 1 - }, -/area/surface/outside/thor/pool) -"qz" = ( -/turf/simulated/mineral/crystal{ - color = "#9E0862" - }, -/area/surface/thor/caves) -"qI" = ( -/obj/structure/prop/desert_planet64x64/palmuria, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/outpost) -"qL" = ( -/obj/structure/table/fancyblack, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/item/radio/subspace, -/turf/simulated/floor/carpet/green, -/area/surface/thor/kitchen) -"qP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/janitor) -"qQ" = ( -/turf/simulated/floor/water/beach{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 9 - }, -/area/surface/outside/thor/beach) -"qR" = ( -/obj/structure/flora/ausbushes/stalkybush, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle) -"qT" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/surface/outside/thor/landingpad; - base_turf = /turf/simulated/floor/reinforced; - landmark_tag = "spacebus_jungle"; - name = "Jungle Outpost Space Bus Landing Pad"; - docking_controller = "spacebus_jungle" - }, -/turf/simulated/floor/reinforced/thor, -/area/surface/outside/thor/landingpad) -"qV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/wall/iron, -/area/shuttle/junker) -"qW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/jungle) -"rf" = ( -/turf/simulated/wall/wood, -/area/surface/thor/kitchen) -"ri" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"rj" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/ocean) -"rk" = ( -/mob/living/simple_mob/vore/aggressive/frog, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle/deep) -"rq" = ( -/obj/item/stool/padded{ - dir = 8 - }, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"rs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/alt, -/area/surface/thor/kitchen) -"ru" = ( -/turf/simulated/floor/beach/sand/desert/outdoors/thor, -/area/surface/outside/thor/beach) -"ry" = ( -/obj/random/pottedplant, -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"rz" = ( -/turf/simulated/floor/outdoors/desert_planet/gravel/thor, -/area/surface/outside/thor/outpost) -"rC" = ( -/turf/simulated/wall/iron, -/area/shuttle/junker) -"rD" = ( -/obj/structure/flora/underwater/plant4, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle) -"rH" = ( -/turf/simulated/floor/water/beach/corner{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 2 - }, -/area/surface/outside/thor/ocean) -"rI" = ( -/obj/item/material/shard{ - icon_state = "small" - }, -/turf/simulated/floor/tiled/thor/planetuse, -/area/surface/outside/thor/jungle) -"rM" = ( -/turf/simulated/floor/water/beach{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 6 - }, -/area/surface/outside/thor/beach) -"rS" = ( -/obj/effect/decal/cleanable/greenglow, -/obj/item/clothing/shoes/boots/jackboots, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/caves) -"rW" = ( -/obj/structure/flora/tree/jungle, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"rX" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/thor/engi) -"rY" = ( -/obj/effect/decal/remains, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"sm" = ( -/obj/structure/closet/secure_closet/freezer/kitchen{ - req_access = null - }, -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"so" = ( -/obj/structure/prop/rock/crystal{ - color = "#E995CA" - }, -/turf/simulated/mineral/floor/cave/thor{ - icon_state = "sand-icey"; - color = "#B32981" - }, -/area/surface/thor/caves) -"sB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/machinery/light/small/poi{ - dir = 4 - }, -/obj/machinery/washing_machine, -/turf/simulated/floor/concrete, -/area/surface/thor/abandonedhouse) -"sE" = ( -/obj/item/bone/arm, -/obj/item/bone/ribs, -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"sF" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/outpost) -"sH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"sQ" = ( -/turf/simulated/floor/lava{ - nitrogen = 63.4124 - }, -/area/surface/thor/caves) -"sT" = ( -/turf/simulated/floor/tiled/asteroid_steel{ - outdoors = 1; - temperature = 313; - oxygen = 34.1451; - nitrogen = 63.4124 - }, -/area/surface/outside/thor/pool) -"sX" = ( -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/jungle/deep) -"sZ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/water/pool{ - outdoors = 1 - }, -/area/surface/outside/thor/pool) -"ta" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/water/pool{ - outdoors = 1 - }, -/area/surface/outside/thor/pool) -"tg" = ( -/obj/structure/cliff/automatic/corner{ - dir = 6 - }, -/turf/simulated/floor/lava, -/area/surface/thor/caves) -"tl" = ( -/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/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/jungle) -"tp" = ( -/obj/machinery/vending/wallmed1{ - dir = 1; - name = "NanoMed Wall"; - pixel_y = -30 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"tq" = ( -/obj/structure/flora/tree/desert_planet/spalmtree3, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/jungle) -"ts" = ( -/obj/item/bone/skull/unknown, -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"tv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/pool) -"tA" = ( -/mob/living/simple_mob/vore/aggressive/panther{ - dir = 4 - }, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"tF" = ( -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/caves) -"tI" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/panic_button{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"tK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"tW" = ( -/obj/structure/bed/chair/sofa/left/brown{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/green, -/area/surface/thor/kitchen) -"uf" = ( -/obj/structure/flora/tree/desert_planet/spalmtree, -/turf/simulated/floor/beach/sand/desert/outdoors/thor, -/area/surface/outside/thor/beach) -"uj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/jungle) -"uq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/stock_parts/subspace/sub_filter, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"ux" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/item/material/shard{ - icon_state = "medium" - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"uy" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/reagent_containers/food/snacks/meat, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"uA" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood/alt, -/area/surface/thor/kitchen) -"uP" = ( -/turf/simulated/wall/concrete, -/area/surface/outside/thor/pool) -"uU" = ( -/obj/machinery/sleep_console{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"uY" = ( -/obj/machinery/light/bigfloorlamp, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/pool) -"uZ" = ( -/obj/item/oar, -/turf/simulated/floor/beach/sand/desert/outdoors/thor, -/area/surface/outside/thor/beach) -"ve" = ( -/turf/simulated/floor/wood/broken{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313 - }, -/area/surface/outside/thor/jungle/deep) -"vm" = ( -/turf/simulated/floor/water/beach/corner{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 4 - }, -/area/surface/outside/thor/jungle) -"vn" = ( -/turf/simulated/floor/tiled/yellow{ - icon_state = "hydrofloor" - }, -/area/surface/thor/abandonedhouse) -"vr" = ( -/obj/structure/flora/ausbushes/reedbush, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/jungle) -"vv" = ( -/obj/structure/closet/crate{ - name = "survival supplies" - }, -/obj/item/material/knife/tacknife/survival, -/obj/item/material/knife/tacknife/survival, -/obj/item/material/knife/tacknife/survival, -/obj/item/material/knife/tacknife/survival, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/landingpad) -"vV" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/outdoors/dirt/thor/planetuse, -/area/surface/thor/abandonedhouse) -"vW" = ( -/obj/item/material/minihoe, -/obj/item/material/knife/machete/hatchet, -/obj/structure/table/woodentable, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/thor/kitchen) -"vX" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood/alt, -/area/surface/thor/kitchen) -"vZ" = ( -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/beach) -"wc" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/vore/otie/friendly/chubby, -/turf/simulated/floor/tiled/yellow, -/area/surface/thor/abandonedhouse) -"wd" = ( -/obj/structure/flora/tree/desert_planet/mpalmtree1, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/outpost) -"wg" = ( -/obj/structure/bed/chair/sofa/right/brown{ - dir = 4 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/green, -/area/surface/thor/kitchen) -"wh" = ( -/obj/effect/decal/cleanable/greenglow, -/obj/item/clothing/shoes/boots/jackboots, -/obj/item/clothing/suit/storage/trench/fluff/octaviouscoat, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/caves) -"wi" = ( -/obj/structure/flora/tree/desert_planet/spalmtree4, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"wq" = ( -/turf/simulated/floor/outdoors/mud/thor/planetuse, -/area/surface/outside/thor/jungle/deep) -"wu" = ( -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/pool) -"ww" = ( -/obj/structure/flora/ausbushes/stalkybush, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle/deep) -"wy" = ( -/turf/simulated/mineral/floor/cave/thor, -/area/surface/thor/caves) -"wC" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/water/pool{ - outdoors = 1 - }, -/area/surface/outside/thor/pool) -"wE" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/surface/outside/thor/jungle/deep; - base_turf = /turf/simulated/floor/outdoors/grass/heavy/thor; - landmark_tag = "thor_e"; - name = "Thor Jungle Caves" - }, -/turf/simulated/floor/outdoors/grass/heavy/thor{ - grass_chance = 5; - tree_chance = 0 - }, -/area/surface/outside/thor/jungle/deep) -"wM" = ( -/obj/structure/railing{ - dir = 8; - icon_state = "railing0" - }, -/obj/structure/railing, -/obj/machinery/light/bigfloorlamp, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"wP" = ( -/turf/simulated/mineral/alt, -/area/surface/outside/thor/jungle) -"wR" = ( -/obj/machinery/computer/shuttle_control/explore/junker{ - dir = 1 - }, -/obj/structure/cable/blue, -/obj/machinery/power/terminal, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"wX" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 4; - pixel_x = 26 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/landingpad) -"wY" = ( -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/janitor) -"xb" = ( -/obj/structure/railing{ - dir = 8; - icon_state = "railing0" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/light/bigfloorlamp, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"xj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/woodentable, -/obj/item/module/power_control, -/turf/simulated/floor/lino, -/area/surface/thor/abandonedhouse) -"xs" = ( -/turf/simulated/wall/wood, -/area/surface/thor/bar) -"xu" = ( -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"xy" = ( -/obj/structure/table/glass, -/obj/item/radio{ - frequency = 1487; - icon_state = "med_walkietalkie"; - name = "Medbay Emergency Radio Link" - }, -/obj/item/radio{ - frequency = 1487; - icon_state = "med_walkietalkie"; - name = "Medbay Emergency Radio Link" - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"xC" = ( -/turf/simulated/wall/r_wall, -/area/surface/outside/thor/landingpad) -"xD" = ( -/obj/structure/salvageable/autolathe, -/turf/simulated/floor/tiled/thor/planetuse, -/area/surface/outside/thor/jungle) -"xF" = ( -/turf/simulated/floor/water/beach/corner, -/area/surface/outside/thor/jungle) -"xK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/asteroid_steel{ - outdoors = 1; - temperature = 313; - oxygen = 34.1451; - nitrogen = 63.4124 - }, -/area/surface/outside/thor/pool) -"xP" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/landingpad) -"xT" = ( -/obj/machinery/power/apc/alarms_hidden{ - dir = 8; - pixel_x = -27 - }, -/obj/structure/cable, -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"yb" = ( -/turf/unsimulated/wall/planetary/normal/thor, -/area/surface/outside/thor/beach) -"yu" = ( -/obj/structure/flora/ausbushes/stalkybush, -/turf/simulated/floor/outdoors/grass/heavy/thor{ - grass_chance = 5; - tree_chance = 0 - }, -/area/surface/outside/thor/jungle/deep) -"yx" = ( -/obj/effect/decal/remains, -/turf/simulated/mineral/floor/cave/thor, -/area/surface/thor/caves) -"yB" = ( -/obj/structure/mirror{ - dir = 4; - pixel_x = -27 - }, -/turf/simulated/floor/wood, -/area/surface/thor/dorms/pool3) -"yC" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"yF" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"yO" = ( -/obj/effect/decal/remains, -/turf/simulated/floor/outdoors/rocks/thor/planetuse, -/area/surface/outside/thor/jungle/deep) -"yQ" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled/white, -/area/surface/thor/abandonedhouse) -"yS" = ( -/obj/item/material/shard{ - pixel_x = 6 - }, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"yX" = ( -/turf/simulated/floor/lava{ - oxygen = 34.1451 - }, -/area/surface/thor/caves) -"yZ" = ( -/obj/structure/grille/rustic, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/surface/thor/abandonedhouse) -"zc" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/janitor) -"ze" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/outpost) -"zf" = ( -/obj/structure/table/glass, -/obj/item/backup_implanter{ - pixel_y = 9 - }, -/obj/item/backup_implanter{ - pixel_y = 2 - }, -/obj/item/backup_implanter{ - pixel_y = -5 - }, -/obj/item/backup_implanter{ - pixel_y = -12 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"zh" = ( -/obj/structure/railing, -/obj/random/pottedplant, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"zi" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water/beach, -/area/surface/outside/thor/ocean) -"zs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/floortube, -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/tiled/yellow, -/area/surface/thor/abandonedhouse) -"zt" = ( -/obj/item/digestion_remains/variant3, -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"zv" = ( -/obj/structure/closet/cabinet{ - density = 0; - pixel_y = 20; - wall_mounted = 1 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/alarms_hidden{ - dir = 8; - pixel_x = -27 - }, -/turf/simulated/floor/wood, -/area/surface/thor/dorms/pool3) -"zy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/port_gen/pacman, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"zz" = ( -/obj/structure/flora/tree/jungle_small, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/outpost) -"zL" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor{ - outdoors = 0 - }, -/area/surface/outside/thor/pool) -"zU" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"zW" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/cash_register{ - req_access = null; - dir = 2 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "junglekitchen"; - layer = 3.3; - name = "Kitchen Shutters" - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"Af" = ( -/obj/structure/salvageable/console_broken_os, -/turf/simulated/floor/tiled/thor/planetuse, -/area/surface/outside/thor/jungle) -"Ao" = ( -/obj/structure/grille/broken, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/item/material/shard, -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"Aw" = ( -/turf/simulated/floor/water/beach/corner{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 1 - }, -/area/surface/outside/thor/beach) -"Az" = ( -/obj/item/bone/ribs, -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"AB" = ( -/obj/structure/flora/ausbushes/reedbush, -/turf/simulated/floor/outdoors/mud/thor/planetuse, -/area/surface/outside/thor/jungle) -"AD" = ( -/obj/item/stool/padded, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/pool) -"AF" = ( -/obj/item/melee/umbrella/random, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle) -"AH" = ( -/obj/structure/bed/chair/sofa/left/brown{ - dir = 4 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/carpet/green, -/area/surface/thor/kitchen) -"AI" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/landingpad) -"AX" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/turf/simulated/floor/concrete/outdoors/thor, -/area/surface/outside/thor/landingpad) -"Bc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/thor/engi) -"Bn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"Bp" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/jungle) -"Bt" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/machinery/space_heater, -/turf/simulated/floor/concrete, -/area/surface/thor/abandonedhouse) -"Bw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/power/smes/batteryrack, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/item/cell/high, -/obj/item/cell/high, -/obj/item/cell/high, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"Bz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/material/shard{ - icon_state = "small" - }, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"BC" = ( -/obj/structure/table/woodentable, -/obj/item/clothing/glasses/sunglasses, -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"BE" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/outpost) -"BI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/drinks/bottle/specialwhiskey{ - pixel_y = 0; - pixel_x = -5 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_y = 0; - pixel_x = 5 - }, -/turf/simulated/floor/tiled/yellow{ - icon_state = "hydrofloor" - }, -/area/surface/thor/abandonedhouse) -"BM" = ( -/obj/machinery/door/airlock/sandstone, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/alt, -/area/surface/thor/kitchen) -"BR" = ( -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/outpost) -"BU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/jungle) -"BV" = ( -/obj/machinery/computer/ship/engines, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"BY" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/water/pool{ - outdoors = 1 - }, -/area/surface/outside/thor/pool) -"Cb" = ( -/obj/structure/table/fancyblack, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/green, -/area/surface/thor/kitchen) -"Ci" = ( -/turf/simulated/wall/wood, -/area/surface/thor/janitor) -"Ck" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled/yellow, -/area/surface/thor/abandonedhouse) -"Cn" = ( -/obj/item/stack/material/steel{ - amount = 30 - }, -/turf/simulated/floor/outdoors/dirt/thor/planetuse, -/area/surface/thor/abandonedhouse) -"Co" = ( -/obj/structure/flora/tree/desert_planet/spalmtree1, -/turf/simulated/floor/outdoors/grass/heavy/thor{ - grass_chance = 5; - tree_chance = 0 - }, -/area/surface/outside/thor/beach) -"Cx" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"CD" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"CG" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lantern, -/turf/simulated/floor/lino{ - oxygen = 34.1451; - nitrogen = 63.4124; - temperature = 313 - }, -/area/surface/thor/abandonedhouse) -"CJ" = ( -/obj/structure/closet/coffin{ - pixel_y = 13 - }, -/obj/structure/table/marble, -/obj/effect/decal/cleanable/mucus/mapped, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/caves) -"CN" = ( -/obj/structure/table/glass, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/mob/living/simple_mob/animal/passive/bird/parrot/white_cockatoo, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"CQ" = ( -/obj/item/material/shard, -/turf/simulated/floor/lino{ - oxygen = 34.1451; - nitrogen = 63.4124; - temperature = 313 - }, -/area/surface/thor/abandonedhouse) -"CR" = ( -/turf/simulated/mineral/alt, -/area/surface/thor/caves) -"CU" = ( -/turf/simulated/floor/water/beach{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 4 - }, -/area/surface/outside/thor/jungle) -"CW" = ( -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/beach) -"CY" = ( -/turf/simulated/floor/concrete/outdoors/thor, -/area/surface/outside/thor/jungle/deep) -"CZ" = ( -/obj/structure/prop/desert_planet64x64/palmuria1, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"Dd" = ( -/obj/structure/table/woodentable, -/obj/random/drinkbottle, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/surface/thor/dorms/pool1) -"De" = ( -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"Dg" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"Dh" = ( -/obj/structure/bed/chair/sofa/beige{ - dir = 1 - }, -/turf/simulated/floor/tiled/yellow, -/area/surface/thor/abandonedhouse) -"Di" = ( -/obj/item/stack/material/phoron{ - amount = 25 - }, -/obj/structure/table/woodentable, -/obj/item/bone/skull/tajaran, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"Dj" = ( -/obj/structure/flora/tree/jungle, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/jungle) -"Dl" = ( -/mob/living/simple_mob/animal/passive/bird/parrot, -/turf/simulated/floor/outdoors/grass/heavy/thor{ - grass_chance = 5; - tree_chance = 0 - }, -/area/surface/outside/thor/jungle/deep) -"Dn" = ( -/obj/structure/flora/tree/jungle, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"Dp" = ( -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/ocean) -"Dw" = ( -/obj/structure/bed/chair/sofa/left/beige{ - dir = 1 - }, -/turf/simulated/floor/tiled/yellow, -/area/surface/thor/abandonedhouse) -"Dy" = ( -/obj/effect/decal/remains/mummy1{ - color = "#ff0000" - }, -/turf/simulated/mineral/floor/cave/thor, -/area/surface/thor/caves) -"DA" = ( -/obj/machinery/light/small/poi{ - dir = 1 - }, -/turf/simulated/floor/lino{ - oxygen = 34.1451; - nitrogen = 63.4124; - temperature = 313 - }, -/area/surface/thor/abandonedhouse) -"DC" = ( -/obj/machinery/computer/cryopod, -/turf/simulated/wall/wood, -/area/surface/thor/med) -"DG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/outpost) -"DH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/asteroid_steel{ - outdoors = 1; - temperature = 313; - oxygen = 34.1451; - nitrogen = 63.4124 - }, -/area/surface/outside/thor/pool) -"DJ" = ( -/obj/effect/decal/remains, -/obj/effect/decal/cleanable/greenglow, -/obj/item/clothing/head/collectable/beret, -/obj/item/clothing/mask/smokable/cigarette/cigar, -/obj/item/clothing/gloves/black, -/obj/item/clothing/suit/storage/bomber/alt, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/caves) -"DL" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor{ - outdoors = 1 - }, -/area/surface/outside/thor/jungle) -"DM" = ( -/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/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/jungle) -"DN" = ( -/obj/structure/grille/rustic, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/surface/thor/bar) -"DU" = ( -/turf/simulated/wall/wood, -/area/surface/outside/thor/jungle/deep) -"DV" = ( -/obj/structure/table/woodentable, -/obj/item/modular_computer/laptop/preset/custom_loadout/rugged, -/turf/simulated/floor/lino, -/area/surface/thor/abandonedhouse) -"DW" = ( -/mob/living/simple_mob/animal/passive/bird/parrot, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"Eb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/surface/thor/abandonedhouse) -"Ec" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/item/stack/material/glass{ - amount = 25; - pixel_x = -7; - pixel_y = 7 - }, -/turf/simulated/floor/concrete, -/area/surface/thor/abandonedhouse) -"Ed" = ( -/obj/machinery/power/apc/alarms_hidden{ - pixel_y = -20 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/pool) -"Ei" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/woodentable, -/turf/simulated/floor/lino, -/area/surface/thor/abandonedhouse) -"Em" = ( -/obj/structure/closet/secure_closet/medical_wall{ - name = "defibrillator closet"; - pixel_x = -31 - }, -/obj/item/defib_kit/loaded, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"Es" = ( -/obj/structure/flora/ausbushes/reedbush, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle/deep) -"Ev" = ( -/obj/structure/flora/tree/jungle_small, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/jungle) -"Ex" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete, -/area/surface/thor/abandonedhouse) -"EA" = ( -/mob/living/simple_mob/vore/fennec, -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"EB" = ( -/mob/living/simple_mob/vore/pitcher_plant, -/turf/simulated/floor/outdoors/mud/thor/planetuse, -/area/surface/outside/thor/jungle) -"EE" = ( -/obj/machinery/atmospherics/unary/engine{ - dir = 1 - }, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/junker) -"EH" = ( -/obj/structure/table/bench/wooden, -/turf/simulated/floor/outdoors/grass/heavy/thor{ - grass_chance = 5; - tree_chance = 0 - }, -/area/surface/outside/thor/beach) -"EJ" = ( -/obj/structure/outcrop/phoron, -/turf/simulated/mineral/floor/cave/thor{ - icon_state = "sand-icey"; - color = "#B32981" - }, -/area/surface/thor/caves) -"EM" = ( -/obj/item/material/shard{ - pixel_x = 6 - }, -/turf/simulated/floor/outdoors/dirt/thor/planetuse, -/area/surface/thor/abandonedhouse) -"ER" = ( -/obj/structure/railing{ - dir = 8; - icon_state = "railing0" - }, -/turf/simulated/floor/water/beach, -/area/surface/outside/thor/ocean) -"EW" = ( -/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/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/jungle) -"EX" = ( -/obj/random/outcrop, -/turf/simulated/mineral/alt, -/area/surface/thor/caves) -"EZ" = ( -/turf/simulated/floor/outdoors/desert_planet/gravel/thor, -/area/surface/outside/thor/jungle) -"Fl" = ( -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor/lino{ - oxygen = 34.1451; - nitrogen = 63.4124; - temperature = 313 - }, -/area/surface/thor/abandonedhouse) -"Fp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"Fu" = ( -/obj/structure/flora/bush, -/turf/simulated/floor/outdoors/mud/thor/planetuse, -/area/surface/outside/thor/jungle) -"FC" = ( -/turf/simulated/floor/reinforced/thor, -/area/surface/outside/thor/landingpad) -"FT" = ( -/turf/simulated/floor/water/beach, -/area/surface/outside/thor/jungle) -"FU" = ( -/obj/structure/mirror{ - dir = 4; - pixel_x = -27 - }, -/turf/simulated/floor/wood, -/area/surface/thor/dorms/pool2) -"FX" = ( -/obj/machinery/door/airlock, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"Ga" = ( -/obj/structure/prop/desert_planet64x64/lrock, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/ocean) -"Gb" = ( -/mob/living/simple_mob/animal/passive/bird/parrot/eclectus, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"Gc" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"Gh" = ( -/obj/random/outcrop, -/turf/simulated/mineral/floor/cave/thor, -/area/surface/thor/caves) -"Gk" = ( -/obj/structure/prop/desert_planet64x64/lrock4, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/ocean) -"Gl" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/power/apc/high{ - pixel_y = 0; - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"GB" = ( -/obj/structure/cliff/automatic/corner{ - dir = 10 - }, -/turf/simulated/floor/lava, -/area/surface/thor/caves) -"GH" = ( -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"GU" = ( -/obj/structure/flora/tree/jungle_small, -/turf/simulated/floor/concrete/outdoors/thor, -/area/surface/outside/thor/jungle/deep) -"GV" = ( -/obj/structure/flora/tree/desert_planet/mpalmtree1, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"GW" = ( -/obj/structure/cliff/automatic{ - dir = 8 - }, -/turf/simulated/floor/outdoors/desert_planet/gravel/thor, -/area/surface/outside/thor/beach) -"Ha" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"Hc" = ( -/obj/machinery/light/floortube, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"He" = ( -/obj/structure/railing{ - dir = 8; - icon_state = "railing0" - }, -/turf/simulated/floor/water/deep/ocean{ - temperature = 313; - oxygen = 34.1451; - nitrogen = 63.4124 - }, -/area/surface/outside/thor/ocean) -"Hi" = ( -/obj/structure/cliff/automatic{ - dir = 10 - }, -/turf/simulated/floor/lava, -/area/surface/thor/caves) -"Hl" = ( -/obj/structure/flora/tree/jungle_small, -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"Hm" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/janitor) -"Ho" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"Hs" = ( -/obj/structure/prop/desert_planet64x64/lrock3, -/turf/simulated/floor/water/beach{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 8 - }, -/area/surface/outside/thor/ocean) -"Hz" = ( -/turf/simulated/floor/water/beach, -/area/surface/outside/thor/ocean) -"HA" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/water/deep/pool{ - outdoors = 1; - temperature = 313 - }, -/area/surface/outside/thor/pool) -"HE" = ( -/obj/structure/table/woodentable, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/random/plushie, -/obj/item/reagent_containers/food/snacks/pastatomato, -/turf/simulated/floor/wood, -/area/surface/thor/dorms/pool2) -"HI" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"HQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/woodentable, -/obj/item/storage/box/glasses/coffeecup, -/turf/simulated/floor/wood, -/area/surface/thor/abandonedhouse) -"HS" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"HU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/toilet{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/abandonedhouse) -"HV" = ( -/obj/item/bedsheet/brown, -/obj/machinery/button/remote/airlock{ - id = "thorpool3"; - name = "Door Bolt Control"; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/structure/bed/padded, -/turf/simulated/floor/wood, -/area/surface/thor/dorms/pool3) -"HX" = ( -/obj/structure/bed/chair/sofa/right/beige{ - dir = 1 - }, -/turf/simulated/floor/tiled/yellow, -/area/surface/thor/abandonedhouse) -"If" = ( -/turf/simulated/floor/water/beach{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 9 - }, -/area/surface/outside/thor/ocean) -"Il" = ( -/obj/structure/flora/ausbushes/genericbush, -/turf/simulated/floor/outdoors/grass/heavy/thor{ - grass_chance = 5; - tree_chance = 0 - }, -/area/surface/outside/thor/jungle/deep) -"Iq" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood/alt, -/area/surface/thor/kitchen) -"It" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/alt, -/area/surface/thor/kitchen) -"Ix" = ( -/obj/structure/railing{ - dir = 8; - icon_state = "railing0" - }, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/ocean) -"Iz" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "First-Aid Station"; - req_one_access = null - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"IA" = ( -/turf/simulated/floor/water/beach{ - dir = 10 - }, -/area/surface/outside/thor/ocean) -"II" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/outdoors/grass/heavy/thor{ - grass_chance = 5; - tree_chance = 0 - }, -/area/surface/outside/thor/jungle/deep) -"IJ" = ( -/obj/structure/shuttle/engine/heater, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/turf/simulated/wall/iron, -/area/shuttle/junker) -"IL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/rack/steel, -/obj/item/stack/material/wood{ - amount = 50; - color = "#824B28" - }, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/concrete, -/turf/simulated/floor/plating, -/area/surface/thor/engi) -"IO" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/caves) -"IQ" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"IR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/poi{ - dir = 8 - }, -/obj/structure/table/woodentable, -/obj/item/frame/apc, -/turf/simulated/floor/lino, -/area/surface/thor/abandonedhouse) -"IV" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/power/apc/alarms_hidden{ - dir = 8; - pixel_x = -27 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"IW" = ( -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle) -"IX" = ( -/obj/structure/prop/desert_planet64x64/lrock2, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/ocean) -"Je" = ( -/turf/simulated/floor/water/beach{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 4 - }, -/area/surface/outside/thor/ocean) -"Jg" = ( -/obj/structure/table/glass, -/obj/item/storage/pill_bottle/spaceacillin{ - pixel_y = 6; - pixel_x = -7 - }, -/obj/item/storage/pill_bottle/spaceacillin{ - pixel_y = -4; - pixel_x = -7 - }, -/obj/item/storage/pill_bottle/spaceacillin{ - pixel_y = 1; - pixel_x = -7 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"Jh" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/turf/simulated/floor/concrete/outdoors/thor, -/area/surface/outside/thor/landingpad) -"Jt" = ( -/obj/structure/cliff/automatic, -/turf/simulated/floor/outdoors/desert_planet/gravel/thor, -/area/surface/outside/thor/beach) -"Jv" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/prop/machine/comm_tower, -/turf/simulated/floor/concrete/outdoors/thor, -/area/surface/outside/thor/jungle/deep) -"JG" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/thor/engi) -"JI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/smes/batteryrack, -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"JJ" = ( -/turf/simulated/floor/outdoors/grass/heavy/thor{ - grass_chance = 5; - tree_chance = 0 - }, -/area/surface/outside/thor/jungle/deep) -"JL" = ( -/obj/structure/closet/crate/bin{ - anchored = 1; - opened = 1 - }, -/obj/item/material/fishing_rod/modern/strong, -/obj/item/material/fishing_rod/modern/strong, -/obj/item/material/fishing_rod/modern/strong, -/turf/simulated/floor/outdoors/grass/heavy/thor{ - grass_chance = 5; - tree_chance = 0 - }, -/area/surface/outside/thor/beach) -"JP" = ( -/turf/simulated/floor/water/pool{ - outdoors = 1; - temperature = 313 - }, -/area/surface/outside/thor/pool) -"JQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/item/material/shard{ - icon_state = "small" - }, -/turf/simulated/floor/plating/external/thor{ - icon_state = "dmg3" - }, -/area/surface/outside/thor/jungle) -"JU" = ( -/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/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/outpost) -"JV" = ( -/obj/structure/undies_wardrobe{ - density = 0; - pixel_y = 18 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/surface/thor/dorms/pool3) -"Kh" = ( -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle/deep) -"Kl" = ( -/obj/item/stock_parts/manipulator, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"Ko" = ( -/obj/structure/flora/bush, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/jungle) -"Kx" = ( -/turf/simulated/floor/water/beach{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313 - }, -/area/surface/outside/thor/ocean) -"KF" = ( -/obj/structure/bed/chair/sofa/left/brown{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/carpet/green, -/area/surface/thor/kitchen) -"KM" = ( -/obj/structure/bed/chair/sofa/right/brown{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/carpet/green, -/area/surface/thor/kitchen) -"KQ" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/yellow, -/area/surface/thor/abandonedhouse) -"KR" = ( -/obj/structure/flora/ausbushes/fernybush, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"KU" = ( -/turf/simulated/floor/outdoors/grass/heavy/thor{ - grass_chance = 5; - tree_chance = 0 - }, -/area/surface/outside/thor/beach) -"KX" = ( -/turf/simulated/floor/water/beach/corner, -/area/surface/outside/thor/ocean) -"Lg" = ( -/obj/structure/closet/crate, -/obj/item/circuitboard/airalarm, -/obj/item/circuitboard/airalarm, -/obj/item/module/power_control, -/obj/item/module/power_control, -/obj/item/module/power_control, -/obj/item/module/power_control, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/simulated/floor/plating, -/area/surface/thor/engi) -"Lh" = ( -/obj/structure/closet/secure_closet/freezer/kitchen{ - req_access = null - }, -/turf/simulated/floor/wood, -/area/surface/thor/abandonedhouse) -"Lj" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/outpost) -"Ll" = ( -/turf/simulated/floor/lino{ - oxygen = 34.1451; - nitrogen = 63.4124; - temperature = 313 - }, -/area/surface/thor/abandonedhouse) -"Lq" = ( -/obj/item/stool/padded{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"LR" = ( -/turf/simulated/floor/outdoors/dirt/thor/planetuse, -/area/surface/outside/thor/jungle/deep) -"LS" = ( -/obj/structure/flora/tree/desert_planet/palmtreeb1, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"LU" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/outdoors/mud/thor/planetuse, -/area/surface/outside/thor/jungle/deep) -"LV" = ( -/obj/structure/cliff/automatic, -/turf/unsimulated/wall/planetary/normal/thor, -/area/surface/outside/thor/beach) -"Ma" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/melee/umbrella/random, -/obj/item/melee/umbrella/random, -/obj/item/melee/umbrella/random, -/obj/item/melee/umbrella/random, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/landingpad) -"Me" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"Mn" = ( -/turf/simulated/floor/concrete/outdoors/thor, -/area/surface/outside/thor/jungle) -"Mq" = ( -/turf/simulated/floor/water/beach{ - dir = 1 - }, -/area/surface/outside/thor/jungle) -"Mv" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/simulated/floor/wood, -/area/surface/thor/abandonedhouse) -"Mz" = ( -/obj/structure/prop/rock/crystal{ - color = "#E995CA" - }, -/obj/effect/map_effect/perma_light{ - light_color = "#E995CA" - }, -/turf/simulated/mineral/floor/cave/thor{ - icon_state = "sand-icey"; - color = "#B32981" - }, -/area/surface/thor/caves) -"MB" = ( -/obj/item/reagent_containers/food/snacks/meat, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"MJ" = ( -/mob/living/simple_mob/vore/fennec, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle) -"MR" = ( -/obj/structure/cliff/automatic{ - dir = 2 - }, -/turf/simulated/floor/lava, -/area/surface/thor/caves) -"MX" = ( -/obj/structure/table/woodentable, -/obj/machinery/cash_register/civilian, -/turf/simulated/floor/wood/alt, -/area/surface/thor/kitchen) -"Na" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/plating/external/thor{ - icon_state = "dmg3" - }, -/area/surface/outside/thor/jungle) -"Nb" = ( -/obj/structure/sink/puddle, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/outpost) -"Nk" = ( -/obj/item/material/shard, -/obj/structure/grille/rustic, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/abandonedhouse) -"Nl" = ( -/turf/simulated/floor/water/beach{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 5 - }, -/area/surface/outside/thor/ocean) -"Nm" = ( -/obj/machinery/smartfridge/drying_rack{ - pixel_y = 0; - pixel_x = 6 - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/thor/kitchen) -"Np" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/landingpad) -"Ny" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_alc/full{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"Nz" = ( -/obj/structure/prop/desert_planet64x64/lribs1, -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"NB" = ( -/obj/structure/prop/desert_planet64x64/lrock1, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/ocean) -"NC" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/light/floortube, -/obj/structure/fuel_port, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"NE" = ( -/obj/structure/closet/gmcloset{ - name = "formal wardrobe" - }, -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"NN" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/thor/engi) -"NS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains, -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/tiled/yellow, -/area/surface/thor/abandonedhouse) -"NT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/jungle) -"NV" = ( -/obj/structure/table/fancyblack, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_y = 5; - pixel_x = -5 - }, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_y = 5 - }, -/obj/item/flame/candle/candelabra{ - pixel_y = -10 - }, -/turf/simulated/floor/carpet/green, -/area/surface/thor/kitchen) -"NW" = ( -/obj/structure/table/marble, -/obj/item/storage/pill_bottle/paracetamol{ - pixel_y = -4; - pixel_x = -7 - }, -/obj/item/storage/pill_bottle/phenethylamine{ - pixel_y = 4; - pixel_x = 9 - }, -/turf/simulated/floor/wood, -/area/surface/thor/abandonedhouse) -"NZ" = ( -/obj/structure/flora/tree/jungle_small, -/mob/living/simple_mob/animal/passive/bird/parrot, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"Oa" = ( -/obj/structure/prop/desert_planet64x64/lribs, -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"Of" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/turf/simulated/floor/concrete/outdoors/thor, -/area/surface/outside/thor/landingpad) -"Oh" = ( -/obj/structure/undies_wardrobe{ - density = 0; - pixel_y = 18 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/surface/thor/dorms/pool1) -"Om" = ( -/obj/machinery/light/floortube, -/turf/simulated/floor/concrete/outdoors/thor, -/area/surface/outside/thor/landingpad) -"Oo" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"Op" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water/deep/ocean{ - temperature = 313; - oxygen = 34.1451; - nitrogen = 63.4124 - }, -/area/surface/outside/thor/ocean) -"Oq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/flour, -/turf/simulated/floor/wood, -/area/surface/thor/abandonedhouse) -"Ox" = ( -/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/asteroid_steel{ - outdoors = 1; - temperature = 313; - oxygen = 34.1451; - nitrogen = 63.4124 - }, -/area/surface/outside/thor/pool) -"Oy" = ( -/obj/structure/flora/tree/desert_planet/spalmtree1, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"OH" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/button/remote/blast_door{ - id = "junglekitchen"; - name = "Kitchen Shutters Control"; - dir = 8; - pixel_y = 24 - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"OT" = ( -/obj/structure/flora/underwater/grass1, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle) -"OU" = ( -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/landingpad) -"Pc" = ( -/turf/simulated/floor/water/deep/pool{ - outdoors = 1; - temperature = 313 - }, -/area/surface/outside/thor/pool) -"Pg" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green, -/turf/simulated/floor/tiled/yellow, -/area/surface/thor/abandonedhouse) -"Pj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"Pu" = ( -/obj/structure/flora/tree/desert_planet/palmtree, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/outpost) -"Pz" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp, -/turf/simulated/floor/lino, -/area/surface/thor/abandonedhouse) -"PA" = ( -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/outpost) -"PE" = ( -/obj/machinery/power/apc{ - dir = 8; - pixel_x = -26 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"PF" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/appliance/cooker/oven, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"PH" = ( -/obj/structure/girder, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"PI" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"PK" = ( -/obj/structure/table/marble, -/obj/item/whetstone, -/obj/item/material/knife/butch, -/obj/item/material/kitchen/rollingpin, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"PN" = ( -/obj/structure/closet/cabinet{ - density = 0; - pixel_y = 20; - wall_mounted = 1 - }, -/obj/machinery/power/apc/alarms_hidden{ - dir = 8; - pixel_x = -27 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/wood, -/area/surface/thor/dorms/pool1) -"Qa" = ( -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"Qc" = ( -/obj/machinery/seed_storage/garden{ - dir = 8; - pixel_x = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/thor/kitchen) -"Qe" = ( -/turf/simulated/wall/wood, -/area/surface/thor/dorms/pool1) -"Ql" = ( -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"Qn" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor{ - outdoors = 0 - }, -/area/surface/outside/thor/pool) -"Qq" = ( -/obj/item/roller, -/obj/item/roller, -/obj/structure/closet/crate/medical, -/obj/item/tool/crowbar, -/obj/item/tool/crowbar, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"Qr" = ( -/mob/living/simple_mob/vore/hippo{ - dir = 2 - }, -/turf/simulated/floor/water/deep/ocean{ - temperature = 313; - oxygen = 34.1451; - nitrogen = 63.4124 - }, -/area/surface/outside/thor/jungle/deep) -"Qs" = ( -/obj/random/meat, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"Qt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/tiled/yellow, -/area/surface/thor/abandonedhouse) -"Qv" = ( -/obj/machinery/power/smes/buildable/offmap_spawn/empty, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/surface/thor/engi) -"Qz" = ( -/obj/effect/decal/mecha_wreckage/shuttlecraft, -/turf/simulated/floor/outdoors/rocks/thor/planetuse, -/area/surface/outside/thor/jungle/deep) -"QH" = ( -/obj/structure/flora/underwater/plant3, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle) -"QJ" = ( -/obj/structure/table/marble, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"QK" = ( -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/outpost) -"QM" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle) -"QP" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/light/bigfloorlamp, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"QQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"QS" = ( -/obj/structure/bed/chair/sofa/right/brown{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/carpet/green, -/area/surface/thor/kitchen) -"QU" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/flora/skeleton, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"QW" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/obj/effect/decal/remains, -/obj/effect/overmap/visitable/ship/landable/junker, -/obj/structure/bed/chair/bay/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/junker) -"QZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/jungle) -"Re" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle) -"Rg" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"Ri" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/adv{ - pixel_y = -8; - pixel_x = -4 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/item/storage/firstaid/adv{ - pixel_y = -8; - pixel_x = 6 - }, -/obj/item/storage/firstaid/regular{ - pixel_y = -1; - pixel_x = 7 - }, -/obj/item/storage/firstaid/regular{ - pixel_y = -1; - pixel_x = -5 - }, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"Rs" = ( -/obj/structure/flora/ausbushes/genericbush, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"Rx" = ( -/turf/simulated/wall/sandstone, -/area/surface/thor/caves) -"Ry" = ( -/obj/machinery/vending/boozeomat{ - emagged = 1; - req_access = newlist() - }, -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"Rz" = ( -/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/asteroid_steel{ - outdoors = 1; - temperature = 313; - oxygen = 34.1451; - nitrogen = 63.4124 - }, -/area/surface/outside/thor/pool) -"RB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/outpost) -"RG" = ( -/obj/structure/bonfire, -/turf/simulated/floor/outdoors/grass/heavy/thor{ - grass_chance = 5; - tree_chance = 0 - }, -/area/surface/outside/thor/jungle/deep) -"RS" = ( -/obj/structure/table/rack, -/obj/item/storage/toolbox/emergency, -/obj/random/medical/lite, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"RU" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/outpost) -"RX" = ( -/obj/structure/boulder, -/turf/simulated/mineral/floor/cave/thor, -/area/surface/thor/caves) -"Sj" = ( -/obj/structure/table/woodentable, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/random/plushie, -/obj/item/reagent_containers/food/snacks/pastatomato, -/turf/simulated/floor/wood, -/area/surface/thor/dorms/pool3) -"Sk" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/random/pottedplant, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"Sl" = ( -/obj/structure/cliff/automatic{ - dir = 4 - }, -/turf/simulated/floor/beach/sand/desert/outdoors/thor, -/area/surface/outside/thor/beach) -"Sr" = ( -/obj/structure/simple_door/sandstone, -/turf/simulated/floor/tiled/asteroid_steel, -/area/surface/thor/caves) -"Sw" = ( -/obj/structure/cliff/automatic/corner{ - dir = 9 - }, -/turf/simulated/floor/beach/sand/desert/outdoors/thor, -/area/surface/outside/thor/beach) -"Sz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bookcase/manuals, -/turf/simulated/floor/lino, -/area/surface/thor/abandonedhouse) -"SD" = ( -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor{ - outdoors = 0 - }, -/area/surface/outside/thor/pool) -"SN" = ( -/obj/item/stool/padded, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/pool) -"SP" = ( -/turf/simulated/floor/water/beach/corner{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 8 - }, -/area/surface/outside/thor/jungle) -"SQ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/old_tile/white, -/area/surface/thor/med) -"SU" = ( -/turf/simulated/wall/wood, -/area/surface/thor/dorms/pool2) -"Tf" = ( -/obj/structure/prop/desert_planet64x64/lribs, -/obj/item/digestion_remains/variant1, -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"Tn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil, -/obj/structure/table/woodentable, -/mob/living/simple_mob/animal/passive/bird/parrot/poly, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"Ts" = ( -/obj/machinery/vending/loadout/costume, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor{ - outdoors = 0 - }, -/area/surface/outside/thor/pool) -"Tv" = ( -/obj/item/stock_parts/subspace/sub_filter, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/jungle) -"Ty" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor{ - outdoors = 1 - }, -/area/surface/outside/thor/jungle) -"TJ" = ( -/turf/simulated/wall, -/area/surface/thor/commstower) -"TO" = ( -/mob/living/simple_mob/animal/passive/bird/parrot, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"TQ" = ( -/obj/item/stool/padded{ - dir = 1 - }, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"TV" = ( -/obj/structure/flora/tree/desert_planet/spalmtree1, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/outpost) -"TY" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"Ud" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/rack, -/obj/item/towel{ - color = "#3fc0ea"; - name = "light blue towel"; - pixel_x = 2; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/abandonedhouse) -"Ue" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/jungle) -"Uk" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/outpost) -"Uq" = ( -/obj/structure/flora/tree/desert_planet/spalmtree3, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/outpost) -"Ur" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/hatch{ - id_tag = "junker_outer"; - req_one_access = null - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "junker"; - pixel_y = -25 - }, -/obj/effect/map_helper/airlock/door/simple, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"Uu" = ( -/obj/structure/flora/tree/desert_planet/spalmtree4, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/outpost) -"Uy" = ( -/turf/simulated/floor/water/beach{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 5 - }, -/area/surface/outside/thor/jungle) -"UD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/wood/alt, -/area/surface/thor/kitchen) -"UI" = ( -/turf/simulated/floor/water/beach{ - dir = 1 - }, -/area/surface/outside/thor/ocean) -"UN" = ( -/obj/structure/bookcase/manuals, -/turf/simulated/floor/lino, -/area/surface/thor/abandonedhouse) -"UV" = ( -/obj/item/digestion_remains/variant2, -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"UW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/white, -/area/surface/thor/abandonedhouse) -"UX" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/surface/outside/thor/jungle/deep; - base_turf = /turf/simulated/floor/outdoors/grass/heavy/thor; - landmark_tag = "thor_nw"; - name = "Thor Jungle Northwest" - }, -/turf/simulated/floor/outdoors/grass/heavy/thor{ - grass_chance = 5; - tree_chance = 0 - }, -/area/surface/outside/thor/jungle/deep) -"UY" = ( -/obj/machinery/appliance/cooker/fryer, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"Vf" = ( -/obj/structure/prop/desert_planet64x64/lribs, -/obj/item/bone/skull, -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"Vk" = ( -/obj/item/bone/skull, -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"Vo" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"Vx" = ( -/obj/item/stool/padded, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"Vy" = ( -/obj/effect/decal/remains, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/desert_planet/sand/thor, -/area/surface/outside/thor/jungle) -"VC" = ( -/obj/structure/prop/rock/crystal{ - color = "#E995CA" - }, -/obj/effect/map_effect/perma_light{ - light_color = "#E995CA" - }, -/turf/simulated/floor/outdoors/ice/dark_smooth{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - outdoors = 0 - }, -/area/surface/thor/caves) -"VG" = ( -/obj/item/stool/padded{ - dir = 4 - }, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"VM" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_y = 14; - pixel_x = 3 - }, -/obj/item/reagent_containers/food/drinks/bottle/kahlua{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/lemonadeschnapps{ - pixel_y = 5; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/drinks/bottle/goldschlager{ - pixel_y = 13; - pixel_x = -9 - }, -/obj/item/reagent_containers/food/drinks/bottle/absinthe{ - pixel_y = 3; - pixel_x = -8 - }, -/turf/simulated/floor/wood, -/area/surface/thor/bar) -"VN" = ( -/turf/simulated/wall/log, -/area/surface/outside/thor/beach) -"VO" = ( -/turf/simulated/floor/water/beach{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 8 - }, -/area/surface/outside/thor/ocean) -"VS" = ( -/obj/structure/flora/tree/desert_planet/palmtreeb, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"VT" = ( -/turf/simulated/floor/outdoors/dirt/thor/planetuse, -/area/surface/thor/abandonedhouse) -"VV" = ( -/turf/simulated/floor/outdoors/rocks/thor/planetuse, -/area/surface/outside/thor/jungle) -"Wb" = ( -/turf/simulated/wall/concrete, -/area/surface/outside/thor/jungle) -"Wj" = ( -/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/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/outpost) -"Wm" = ( -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"Wo" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/table/steel_reinforced, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = -3 - }, -/turf/simulated/floor/plating, -/area/surface/thor/engi) -"WE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"WF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/poi{ - dir = 8 - }, -/obj/structure/table/woodentable, -/obj/machinery/chemical_dispenser/bar_coffee/full{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/surface/thor/abandonedhouse) -"WG" = ( -/turf/simulated/floor/water/beach/corner{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 1 - }, -/area/surface/outside/thor/ocean) -"WN" = ( -/obj/machinery/shower{ - dir = 8; - pixel_x = -2 - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/pool) -"WR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor, -/area/surface/outside/thor/outpost) -"WS" = ( -/obj/structure/flora/underwater/seaweed3, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle) -"Xa" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/condiment/enzyme{ - layer = 5; - pixel_x = 10 - }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3 - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/thor/kitchen) -"Xe" = ( -/obj/structure/fans/tiny, -/turf/simulated/mineral/floor/cave/thor, -/area/surface/thor/caves) -"Xm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -28; - pixel_y = -29 - }, -/turf/simulated/floor/wood, -/area/surface/thor/dorms/pool1) -"Xo" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/turf/simulated/floor/concrete/outdoors/thor, -/area/surface/outside/thor/landingpad) -"Xr" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"Xw" = ( -/turf/simulated/floor/water/beach{ - nitrogen = 63.4124; - oxygen = 34.1451; - temperature = 313; - dir = 8 - }, -/area/surface/outside/thor/jungle) -"XH" = ( -/turf/unsimulated/wall/planetary/normal/thor, -/area/surface/outside/thor/jungle) -"XJ" = ( -/turf/simulated/floor/lava{ - temperature = 313 - }, -/area/surface/thor/caves) -"XR" = ( -/obj/machinery/door/airlock/sandstone, -/turf/simulated/floor/wood/alt, -/area/surface/thor/kitchen) -"XT" = ( -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/outpost) -"XY" = ( -/turf/simulated/floor/water/deep/ocean{ - temperature = 313; - oxygen = 34.1451; - nitrogen = 63.4124 - }, -/area/surface/outside/thor/jungle) -"Yc" = ( -/obj/structure/railing{ - dir = 8; - icon_state = "railing0" - }, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"Yl" = ( -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle/deep) -"Yn" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/water/deep/pool{ - outdoors = 1; - temperature = 313 - }, -/area/surface/outside/thor/pool) -"Yo" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/water/deep/pool{ - outdoors = 1; - temperature = 313 - }, -/area/surface/outside/thor/pool) -"Yq" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/shuttle/junker) -"Yv" = ( -/turf/simulated/floor/plating/external/thor{ - icon_state = "dmg4" - }, -/area/surface/outside/thor/jungle) -"YJ" = ( -/obj/structure/table/woodentable, -/obj/item/pen, -/obj/item/paper_bin, -/obj/item/storage/box/matches, -/turf/simulated/floor/wood/alt, -/area/surface/thor/kitchen) -"YN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/item/circuitboard/telecomms/relay, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/commstower) -"YO" = ( -/turf/simulated/floor/wood/alt, -/area/surface/thor/kitchen) -"YR" = ( -/obj/structure/flora/underwater/seaweed2, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle) -"YS" = ( -/obj/structure/grille/rustic, -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor/plating/thor/planetuse{ - outdoors = 0 - }, -/area/surface/thor/abandonedhouse) -"YT" = ( -/mob/living/simple_mob/vore/pitcher_plant, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) -"YX" = ( -/obj/structure/table/woodentable, -/obj/item/material/kitchen/utensil/fork{ - pixel_x = -2 - }, -/obj/item/material/kitchen/utensil/fork{ - pixel_x = -11 - }, -/obj/item/material/kitchen/utensil/fork{ - pixel_x = -8 - }, -/obj/item/material/kitchen/utensil/fork{ - pixel_x = -5 - }, -/obj/item/material/knife{ - pixel_x = 3 - }, -/obj/item/material/knife{ - pixel_x = 12 - }, -/obj/item/material/knife{ - pixel_x = 9 - }, -/obj/item/material/knife{ - pixel_x = 6 - }, -/turf/simulated/floor/wood/alt, -/area/surface/thor/kitchen) -"Za" = ( -/obj/random/pottedplant, -/turf/simulated/floor/wood{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451; - outdoors = 1 - }, -/area/surface/thor/kitchen) -"Zd" = ( -/obj/structure/flora/ausbushes/reedbush, -/turf/simulated/floor/water/ocean{ - temperature = 313; - nitrogen = 63.4124; - oxygen = 34.1451 - }, -/area/surface/outside/thor/jungle) -"Zf" = ( -/obj/structure/bed/chair/sofa/right/brown{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/carpet/green, -/area/surface/thor/kitchen) -"Zr" = ( -/obj/machinery/vending/loadout/accessory, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel/outdoors/thor{ - outdoors = 0 - }, -/area/surface/outside/thor/pool) -"Zw" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/surface/thor/engi) -"ZD" = ( -/turf/unsimulated/wall/planetary/normal/thor, -/area/surface/outside/thor/jungle/deep) -"ZF" = ( -/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{ - outdoors = 1 - }, -/area/surface/outside/thor/jungle) -"ZG" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "spacebus_jungle"; - name = "shuttle bay controller"; - pixel_y = 26 - }, -/turf/simulated/floor/outdoors/grass/forest/thor{ - tree_chance = 0; - grass_chance = 2 - }, -/area/surface/outside/thor/landingpad) -"ZQ" = ( -/turf/simulated/wall/wood, -/area/surface/thor/engi) -"ZS" = ( -/mob/living/simple_mob/vore/aggressive/giant_snake, -/turf/simulated/floor/outdoors/grass/heavy/thor, -/area/surface/outside/thor/jungle/deep) -"ZU" = ( -/mob/living/simple_mob/animal/passive/bird/parrot/eclectus, -/turf/simulated/floor/outdoors/grass/forest/thor, -/area/surface/outside/thor/jungle) - -(1,1,1) = {" -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -ZD -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -XH -LV -yb -yb -yb -yb -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -gm -"} -(2,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -EZ -Jt -ru -ru -ru -ru -WG -kQ -Dp -Dp -aS -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(3,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -EZ -Jt -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -ic -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(4,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Gk -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(5,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(6,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -Oy -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -IX -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(7,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -gR -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(8,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -it -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bV -fo -eY -Xr -Xr -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -ru -ru -WG -kQ -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(9,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -it -it -fY -fY -fY -Dn -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -fo -Xr -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -iZ -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -ru -ru -ru -WG -kQ -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(10,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -lc -lc -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -aR -eY -fo -gD -fo -fo -bV -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -mX -ge -ru -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Gk -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(11,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -lc -lc -lc -lc -fY -it -fY -fY -fY -it -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -Xr -fo -fo -Xr -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -wi -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(12,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -it -fY -fY -lc -Dn -fY -fY -fY -fY -fY -fY -fY -fo -fq -fo -fo -fo -fo -fo -fo -fo -gD -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bV -fo -fo -fo -bV -aR -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -ke -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(13,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -ri -rC -rC -rC -bC -ap -EE -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -bV -fo -eY -Xr -Xr -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -GH -fo -gD -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -LS -fo -fo -EZ -EZ -mX -Sl -ge -ru -ru -ru -ru -WG -kQ -Dp -ic -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(14,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -ux -BV -HI -wR -Bw -qV -fY -fY -fY -bV -fo -fo -fo -fo -gD -fo -Xr -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -gD -fo -fo -aR -Xr -Xr -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -EZ -Jt -ru -ru -ru -ru -ru -WG -kQ -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(15,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -it -fY -qf -KR -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -it -fY -TY -io -QW -NC -Dg -WE -fY -fY -fY -fo -fo -fo -fo -eY -fo -aR -eY -fo -gD -fo -fo -bV -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -Xr -fo -fo -aR -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -GV -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -ru -ru -ru -WG -kQ -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(16,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -KR -fY -Rg -Rg -fY -Dn -fY -qf -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -Ha -jE -bK -es -Gl -qV -bG -fY -fY -fo -bV -fo -fo -fo -fo -fo -Xr -fo -fo -Xr -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -DW -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -mX -ge -ru -ru -ru -ru -ru -ru -Kx -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -iq -iq -iq -iq -iq -iq -iq -jI -"} -(17,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -eh -Rg -Rg -Oo -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Yq -rC -Ur -rC -rC -IJ -EE -fY -fY -fo -fo -fo -fo -fo -bV -fo -fo -fo -bV -aR -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -ru -ru -rH -nc -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -ec -ec -ec -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -iq -ec -ec -ec -iq -iq -iq -iq -iq -jI -"} -(18,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -TO -De -Oo -fY -De -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -lc -JJ -JJ -fY -fo -fo -fo -fo -fo -gD -GH -fo -gD -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -VS -fo -oT -fo -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -ru -dE -nc -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -iq -iq -iq -iq -jI -"} -(19,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -fY -fY -De -nP -fY -KR -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -it -fY -fY -fY -fY -it -fY -lc -lc -JJ -JJ -fY -fo -fq -fo -fo -gD -gD -fo -fo -aR -Xr -Xr -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bV -fo -eY -Xr -Xr -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -mX -ge -ru -ru -ru -Aw -kQ -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -iq -iq -iq -jI -"} -(20,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -KR -fY -Rg -fY -fY -fY -lA -yO -LR -LR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -fY -fY -fY -lc -gN -lc -JJ -JJ -fY -fo -fo -fo -fo -fo -fo -eY -Xr -fo -fo -aR -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -gD -fo -Xr -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -ZU -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oT -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -iq -iq -iq -jI -"} -(21,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -it -KR -tA -Rg -De -fY -fY -it -fY -lA -lA -Qz -LR -LR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -fY -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -aR -eY -fo -gD -fo -fo -bV -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -Oy -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -iq -iq -jI -"} -(22,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -De -De -fY -Rg -fY -fY -fY -fY -lA -lA -lA -LR -LR -LR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -bc -bc -fo -fo -fo -bc -bc -bc -fo -fo -fo -fo -fo -fo -fo -fo -Xr -fo -fo -Xr -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oT -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -Dp -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -iq -iq -jI -"} -(23,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -KR -Rg -fY -De -fY -fY -fY -fY -LR -LR -LR -LR -LR -LR -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -bc -bc -aZ -fo -EB -bc -bc -bc -bc -fo -fo -fo -fo -fo -bV -fo -fo -fo -bV -aR -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Gk -iq -iq -iq -iq -iq -iq -iq -Dp -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -iq -jI -"} -(24,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -KR -fY -fY -yC -MB -fY -fY -fY -fY -LR -LR -LR -LR -LR -LR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -bc -bc -fo -aZ -aZ -aZ -aZ -aZ -Fu -bc -fo -fo -bc -fo -fo -gD -GH -fo -gD -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -iZ -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -mX -ge -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -iq -iq -iq -iq -Dp -Dp -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -iq -jI -"} -(25,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -KR -Rg -Rg -fY -fY -fY -yC -uy -fY -fY -fY -fY -fY -De -LR -LR -LR -LR -LR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -bc -bc -bc -YT -qR -aZ -dZ -XY -aZ -qR -bc -bc -bc -fo -fo -gD -gD -fo -fo -aR -Xr -Xr -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -CZ -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -Dp -Dp -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -iq -jI -"} -(26,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -rY -fY -fY -fY -fY -fY -fY -fY -LR -LR -LR -LR -LR -LR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -bc -bc -fo -aZ -aZ -XY -aZ -XY -XY -aZ -bc -bc -bc -fo -fo -fo -fo -eY -Xr -fo -fo -aR -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -wi -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -iq -jI -"} -(27,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -LR -LR -LR -LR -LR -LR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -bc -fo -aZ -XY -XY -XY -XY -XY -aZ -bc -aZ -bc -bc -fo -fo -fo -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -ke -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -ec -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -iq -jI -"} -(28,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -De -fY -De -KR -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -LR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -bc -fo -aZ -aZ -XY -XY -XY -XY -dZ -bc -aZ -bc -bc -bc -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -ec -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -iq -jI -"} -(29,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -Dn -De -Rs -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -bc -fo -fo -aZ -aZ -XY -XY -XY -aZ -aZ -bc -aZ -bc -bc -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -iq -jI -"} -(30,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -aZ -aZ -aZ -aZ -qR -aZ -aZ -AB -bc -bc -bc -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oT -fo -fo -fo -fo -fo -fo -fo -CZ -fo -fo -fo -GV -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -iq -jI -"} -(31,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -it -fY -qf -KR -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -fY -fY -KR -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -qR -aZ -bE -ht -Fu -bc -aZ -bc -bc -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -CZ -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -Dp -ec -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -iq -jI -"} -(32,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -KR -fY -Rg -Rg -fY -Dn -fY -qf -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rs -Rg -fY -it -Rs -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -bc -fo -fo -fo -YT -aZ -bc -bc -bc -bc -bc -bc -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bV -fo -eY -Xr -Xr -eY -fo -fo -fo -fo -fo -fo -fo -oq -oq -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -CZ -fo -fo -fo -fo -oT -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -ec -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -iq -jI -"} -(33,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -eh -Rg -Rg -Oo -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -Oo -fY -ZS -Rs -Rg -fY -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -bc -bc -aZ -fo -aZ -fo -bc -bc -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -fo -Xr -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oT -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -ec -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -iq -jI -"} -(34,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -Oo -fY -De -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -Oo -Rg -fY -Wm -fY -fY -Rg -Rg -fY -Rg -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -aR -eY -fo -gD -fo -fo -bV -fo -fo -fo -fo -fo -oq -oq -oq -fo -fo -oq -oq -oq -oq -oq -oq -fo -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -Dp -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -iq -jI -"} -(35,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -Rg -fY -fY -De -nP -fY -KR -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -Rg -Rs -KR -fY -Rg -rW -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bc -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -Xr -fo -fo -Xr -fo -fo -fo -fo -fo -fo -fo -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oT -fo -fo -fo -CZ -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -ec -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -iq -jI -"} -(36,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -KR -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -fY -fY -fY -Oo -Rg -it -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -De -fY -De -KR -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -bc -bc -fo -bc -bc -fo -fo -fo -fo -fo -fo -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bV -fo -fo -fo -bV -aR -gD -fo -fo -fo -fo -fo -fo -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oT -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -iq -iq -jI -"} -(37,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -it -KR -fY -Rg -De -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -De -fY -KR -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -Dn -De -Rs -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -GH -fo -gD -fo -fo -eY -fo -fo -fo -fo -fo -fo -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -iq -iq -jI -"} -(38,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -De -De -De -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -fY -fY -De -Rg -Rg -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -gD -fo -fo -aR -Xr -Xr -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -fo -fo -fo -fo -fo -fo -oq -oq -fo -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -iq -iq -iq -jI -"} -(39,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -KR -Rg -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -fY -fY -it -fY -Rg -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -fY -fY -KR -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bV -fo -eY -Xr -Xr -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -Xr -fo -fo -aR -fo -fo -eY -fo -fo -fo -fo -oq -oq -oq -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -ec -iq -iq -iq -iq -jI -"} -(40,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -fY -fY -fY -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rs -Rg -fY -it -Rs -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -fo -Xr -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oT -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -ec -ec -ec -iq -iq -iq -iq -iq -jI -"} -(41,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -KR -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -Oo -fY -fY -Rs -Rg -fY -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -aR -eY -fo -gD -fo -fo -bV -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -ec -ec -ec -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -ec -ec -ec -iq -iq -iq -iq -iq -iq -jI -"} -(42,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -fY -fY -fY -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -Oo -Rg -fY -Wm -fY -fY -Rg -Rg -fY -Rg -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -Xr -fo -fo -Xr -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(43,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -Rg -Rs -KR -fY -Rg -rW -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bV -fo -fo -fo -bV -aR -gD -fo -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -Kx -Dp -Gk -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -ec -ec -ec -ec -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(44,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -it -fY -qf -KR -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -fY -fY -fY -Oo -Rg -it -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -GH -fo -gD -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(45,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -KR -fY -Rg -Rg -fY -Dn -fY -qf -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -De -fY -KR -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -gD -fo -fo -aR -Xr -Xr -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -fo -fo -fo -fo -oq -oq -fo -fo -fo -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -er -Sw -ru -ru -ru -Kx -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(46,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -eh -Rg -Rg -Oo -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -fY -fY -De -Rg -Rg -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -Xr -fo -fo -aR -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -fo -fo -fo -fo -oq -oq -fo -fo -fo -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(47,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -Oo -fY -De -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -fY -fY -it -fY -Rg -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -fo -fo -fo -fo -oq -oq -oq -fo -fo -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -Oy -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(48,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -fY -fY -De -nP -fY -KR -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -fY -fY -fY -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(49,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -KR -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -fo -fo -oq -oq -fo -fo -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -er -Sw -ru -ru -ru -rH -nc -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(50,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -it -KR -fY -Rg -De -fY -fY -it -fY -fY -fY -De -fY -fY -fY -fY -De -fY -De -fY -fY -fY -fY -fY -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -oq -fo -fo -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -iZ -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(51,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -De -De -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -De -fY -De -fY -fY -fY -fY -fY -De -De -De -De -fY -fY -De -fY -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -oq -fo -fo -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -rH -nc -Dp -Dp -ic -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(52,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -UX -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -KR -Rg -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -De -fY -De -fY -fY -De -fY -De -fY -HS -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bV -fo -eY -Xr -Xr -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -oq -fo -fo -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -wi -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(53,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -HS -De -LR -LR -LR -LR -LR -LR -LR -LR -LR -LR -LR -LR -LR -fY -De -fY -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -fo -Xr -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -oq -fo -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -ke -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(54,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -KR -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -fY -gI -LR -wq -wq -wq -wq -wq -wq -wq -wq -wq -LR -LR -LR -HS -De -fY -HS -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -aR -eY -fo -gD -fo -fo -bV -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -oq -fo -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -er -Sw -ru -ru -rH -nc -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(55,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -De -LR -LR -LR -LR -wq -lc -lc -lc -lc -lc -wq -wq -wq -wq -wq -LR -LR -LR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -Xr -fo -fo -Xr -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(56,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -gI -LR -wq -wq -wq -lc -lc -lc -lc -lc -lc -wq -wq -wq -wq -wq -wq -LR -LR -LR -fY -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bV -fo -fo -fo -bV -aR -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -kR -oq -kR -oq -kR -oq -kR -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -GV -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(57,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -fY -LR -LR -wq -lc -lc -lc -lc -lc -lc -lc -lc -lc -wq -Es -lc -lc -wq -wq -LR -LR -HS -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -GH -fo -gD -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -gD -fo -fo -fo -oq -oq -oq -nx -oq -nx -oq -nx -oq -nx -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -er -Sw -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(58,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -Dl -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -gI -LR -LR -wq -lc -lc -wq -wq -wq -Es -Es -Es -wq -wq -wq -Es -lc -lc -wq -LR -LR -fY -De -fY -HS -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Kh -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -gD -fo -fo -aR -Xr -Xr -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -fo -aR -fo -fo -fo -oq -oq -oq -nx -oq -nx -oq -nx -oq -nx -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(59,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -LR -LR -wq -lc -lc -wq -wq -wq -wq -wq -wq -wq -wq -wq -lc -lc -wq -wq -LR -LR -fY -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -Xr -fo -fo -aR -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bV -fo -eY -Xr -Xr -eY -fo -oq -oq -oq -mJ -Ty -mb -DL -mb -Ty -ZF -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -er -Sw -ru -ru -ru -rH -nc -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(60,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -HS -LR -LR -wq -lc -lc -Es -wq -LR -wq -wq -wq -wq -wq -wq -wq -wq -wq -wq -wq -LR -fY -HS -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -fo -Xr -fo -gD -fo -fo -fo -fo -fo -oq -oq -oq -nx -oq -nx -oq -nx -oq -nx -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oT -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Gk -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(61,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -LR -LR -wq -lc -lc -Es -wq -LR -LR -wq -Es -Es -Es -Es -lc -lc -lc -wq -wq -LR -HS -HS -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -aR -eY -fo -gD -fo -fo -bV -fo -fo -oq -oq -oq -nx -oq -nx -oq -nx -oq -nx -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -CZ -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(62,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -LR -LR -wq -lc -lc -wq -wq -LR -LR -wq -lc -lc -lc -lc -lc -lc -lc -wq -LR -LR -fY -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -Xr -fo -fo -Xr -fo -fo -fo -fo -oq -oq -oq -nx -oq -nx -oq -nx -oq -nx -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -CZ -fo -fo -fo -fo -oT -fo -fo -fo -fo -fo -EZ -er -Sw -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(63,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -LR -LR -wq -wq -wq -wq -wq -LR -LR -wq -wq -wq -lc -lc -lc -lc -wq -wq -LR -LR -De -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bV -fo -fo -fo -bV -aR -gD -fo -fo -fo -oq -oq -oq -cl -QZ -DM -tl -EW -QZ -NT -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oT -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -ru -rH -nc -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(64,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -LR -LR -LR -wq -wq -wq -LR -LR -LR -LR -LR -wq -wq -wq -wq -wq -wq -LR -LR -De -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -is -TO -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -GH -fo -gD -fo -fo -eY -fo -fo -fo -oq -oq -oq -oq -oq -oq -qW -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(65,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -LR -LR -LR -LR -LR -LR -LR -LR -LR -LR -LR -LR -LR -LR -LR -LR -LR -LR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -gD -fo -fo -fo -fo -fo -fo -fo -gD -gD -fo -fo -aR -Xr -Xr -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -cl -QZ -QZ -QZ -QZ -QZ -QZ -uj -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oT -fo -fo -fo -CZ -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Gk -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(66,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -LR -LR -LR -LR -LR -fY -HS -De -De -fY -LR -LR -LR -LR -LR -LR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -Xr -fo -fo -aR -fo -fo -eY -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -qW -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oT -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(67,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -De -fY -De -De -De -gI -fY -De -fY -fY -De -fY -fY -De -fY -De -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bV -fo -eY -Xr -Xr -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -qW -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -rH -nc -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(68,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -De -fY -De -KR -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -De -De -fY -fY -fY -fY -fY -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -fo -Xr -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -qW -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(69,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -Dn -De -Rs -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -fY -fY -fY -fY -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -it -fY -qf -KR -Rg -Rg -fY -qf -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -aR -eY -fo -gD -fo -fo -bV -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -qW -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -er -Sw -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(70,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -De -fY -De -KR -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -KR -fY -Rg -Rg -fY -Dn -fY -qf -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -Xr -fo -fo -Xr -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -qW -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oT -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(71,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -fY -fY -KR -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -Dn -De -Rs -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -fY -fY -fY -eh -Rg -Rg -Oo -fY -KR -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bV -fo -fo -fo -bV -aR -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -qW -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -aS -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(72,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rs -Rg -fY -it -Rs -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -Oo -fY -De -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -GH -fo -gD -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -qW -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(73,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -Oo -fY -fY -Rs -Rg -fY -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -fY -fY -KR -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -fY -fY -De -nP -fY -KR -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -gD -fo -fo -aR -Xr -Xr -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -qW -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(74,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -Oo -Rg -fY -Wm -fY -fY -Rg -Rg -fY -Rg -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rs -Rg -fY -it -Rs -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -KR -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -Xr -fo -fo -aR -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -qW -oq -oq -oq -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(75,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -Rg -Rs -KR -fY -Rg -rW -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -Oo -fY -fY -Rs -Rg -fY -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -it -KR -fY -Rg -De -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -rH -nc -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(76,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -fY -fY -fY -Oo -Rg -it -fY -Rg -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -wq -wq -wq -wq -JJ -Il -Il -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -Oo -Rg -fY -Wm -fY -fY -Rg -Rg -fY -Rg -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -De -De -fY -Rg -fY -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(77,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -De -fY -KR -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -JJ -JJ -II -lc -lc -lc -lc -wq -wq -Il -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -Rg -Rs -KR -fY -Rg -rW -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -KR -Rg -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -XT -XT -PA -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -rz -gS -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(78,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -fY -fY -De -Rg -Rg -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -JJ -JJ -JJ -II -lc -lc -lc -lc -lc -lc -lc -lc -Il -Il -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -fY -fY -fY -Oo -Rg -it -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -KR -fY -fY -Rs -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -ZQ -ZQ -ZQ -ZQ -ZQ -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -TV -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -er -GW -Sw -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(79,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -fY -fY -it -fY -Rg -fY -fY -fY -Dn -fY -fY -fY -fY -JJ -fY -II -II -II -lc -lc -lc -lc -lc -lc -lc -lc -lc -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -De -fY -KR -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -KR -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -ZQ -oB -gg -Lg -rX -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -Jt -ru -ru -ru -ru -ru -Kx -Dp -ic -ic -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(80,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -fY -fY -fY -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -II -lc -lc -lc -lc -lc -lc -Es -lc -lc -lc -Es -lc -JJ -JJ -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -fY -fY -De -Rg -Rg -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -De -fY -De -KR -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -ZQ -IL -gg -gg -ZQ -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -Jt -ru -ru -ru -ru -rH -nc -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Gk -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(81,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -II -lc -lc -lc -lc -lc -lc -lc -lc -lc -lc -lc -lc -lc -JJ -JJ -fY -fY -fY -fY -fY -fY -Oo -Oo -fY -fY -it -fY -Rg -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -Dn -De -Rs -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -ZQ -ib -Bc -pK -JG -ze -PA -Ci -Ci -Ci -Ci -PA -PA -PA -PA -PA -PA -Pu -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(82,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -lc -Es -lc -lc -pw -lc -lc -lc -lc -lc -lc -lc -lc -lc -JJ -JJ -fY -fY -fY -fY -fY -fY -Oo -fY -fY -fY -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -ZQ -ci -gg -Qv -ZQ -BR -PA -Ci -wY -nl -Ci -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(83,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -II -lc -Es -lc -lc -lc -lc -lc -lc -lc -lc -lc -lc -lc -lc -ih -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -fY -fY -KR -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -ZQ -Wo -Bc -Zw -NN -Wj -RB -zc -qP -dJ -Ci -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -Uu -PA -PA -PA -PA -PA -PA -PA -PA -rz -er -Sw -ru -ru -ru -rH -nc -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(84,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -II -lc -pw -lc -rk -lc -lc -nE -nE -nE -lc -lc -lc -lc -lc -ih -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rs -Rg -fY -it -Rs -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -DW -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -PA -PA -PA -PA -PA -hz -Xo -cE -cE -cE -cE -cE -cE -cE -cE -cE -cE -cE -cE -cE -cE -hp -hz -by -by -PA -ZQ -ZQ -ZQ -ZQ -ZQ -DG -PA -Ci -lH -Hm -Ci -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(85,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -II -lc -lc -lc -lc -lc -nE -nE -nE -nE -lc -lc -Es -lc -lc -ih -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -Oo -fY -fY -Rs -Rg -fY -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -PA -PA -PA -PA -PA -Om -iH -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -bF -Om -by -by -PA -PA -PA -PA -PA -PA -DG -PA -Ci -Ci -Ci -Ci -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(86,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -II -Es -lc -lc -lc -lc -nE -nE -nE -nE -nE -lc -lc -lc -lc -ih -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -Oo -Rg -fY -Wm -fY -fY -Rg -Rg -fY -Rg -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -PA -PA -PA -PA -PA -PA -PA -hz -iH -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -bF -hz -by -by -PA -PA -PA -PA -PA -PA -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -rH -Je -nc -Dp -Dp -Dp -Dp -Dp -Dp -ic -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(87,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -II -Es -lc -lc -lc -lc -nE -nE -nE -nE -nE -lc -lc -lc -lc -ih -ih -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -Rg -Rs -KR -fY -Rg -rW -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -PA -PA -PA -PA -PA -PA -PA -hz -iH -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -bF -hz -by -by -PA -PA -PA -PA -PA -PA -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Gk -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(88,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -II -lc -lc -lc -lc -nE -nE -nE -nE -nE -nE -lc -lc -lc -lc -ih -ih -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -fY -fY -fY -Oo -Rg -it -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -PA -PA -PA -PA -PA -PA -PA -hz -iH -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -bF -hz -by -by -PA -PA -PA -PA -PA -PA -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(89,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -yu -lc -lc -lc -lc -nE -nE -nE -nE -nE -nE -lc -lc -Es -lc -ih -ih -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -TO -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -De -fY -KR -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -PA -PA -PA -PA -PA -PA -PA -hz -iH -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -qT -FC -FC -FC -bF -hz -OU -OU -BR -BR -BR -BE -RB -RB -aK -RB -RB -WR -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -er -Sw -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -IX -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(90,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -De -fY -De -KR -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -II -lc -lc -lc -lc -nE -nE -nE -nE -nE -nE -lc -lc -lc -lc -wq -wq -LR -LR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -fY -fY -De -Rg -Rg -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -PA -PA -PA -PA -PA -PA -PA -hz -iH -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -bF -hz -OU -OU -BR -BR -BR -DG -BR -BR -BR -BR -BR -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(91,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -Dn -De -Rs -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -II -Es -lc -lc -lc -nE -nE -nE -nE -nE -nE -lc -lc -rk -ve -ve -ve -LR -LR -LR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -fY -fY -it -fY -Rg -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -PA -PA -PA -PA -PA -PA -PA -hz -iH -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -bF -hz -xC -ZG -PA -BR -BR -DG -PA -PA -PA -PA -BR -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Gk -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(92,1,1) = {" -ZD -fY -fY -fY -fY -fY -Dn -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -II -Es -lc -lc -lc -nE -nE -nE -nE -nE -nE -lc -lc -ve -ve -ve -ve -LR -LR -LR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -fY -fY -fY -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -PA -PA -PA -PA -PA -PA -PA -hz -iH -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -bF -hz -by -by -eN -OU -OU -Np -eN -PA -PA -PA -BR -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -rH -nc -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(93,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -Rg -fY -fY -KR -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -II -lc -lc -lc -pp -nE -nE -nE -nE -Qr -nE -lc -rk -lc -lc -LR -LR -LR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -fY -fY -Oo -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -PA -PA -PA -PA -PA -PA -PA -hz -iH -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -bF -hz -by -by -OU -kY -OU -vv -fL -PA -PA -PA -BR -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -er -Sw -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Gk -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -If -VO -VO -VO -VO -VO -VO -VO -VO -VO -IA -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(94,1,1) = {" -ZD -fY -fY -fY -fY -fY -Rs -Rg -fY -it -Rs -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -yu -lc -lc -lc -lc -nE -nE -nE -nE -nE -lc -lc -Es -lc -lc -wq -wq -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -PA -PA -PA -PA -PA -PA -PA -hz -iH -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -bF -hz -by -by -OU -OU -OU -OU -Np -PA -PA -PA -BR -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -If -VO -VO -cU -ec -ec -ec -ec -ec -ec -ec -ec -ec -WG -VO -IA -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(95,1,1) = {" -ZD -fY -fY -fY -fY -fY -Rg -Rg -Oo -fY -fY -Rs -Rg -fY -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -yu -lc -lc -lc -nE -nE -nE -nE -nE -lc -lc -lc -Es -lc -wq -wq -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -PA -PA -PA -PA -PA -PA -PA -Om -iH -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -FC -bF -Om -by -by -AI -Ma -bZ -xP -wX -PA -PA -PA -BR -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -If -cU -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -WG -VO -IA -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(96,1,1) = {" -ZD -fY -fY -fY -De -Oo -Rg -fY -Wm -fY -fY -Rg -Rg -fY -Rg -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -wq -lc -lc -lc -nE -nE -nE -nE -nE -pp -lc -lc -lc -lc -wq -wq -fY -fY -fY -fY -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -PA -PA -PA -PA -PA -PA -PA -hz -Jh -Of -Of -Of -Of -Of -Of -Of -Of -Of -Of -Of -Of -Of -Of -AX -hz -by -by -eN -OU -OU -OU -eN -PA -PA -PA -BR -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -If -cU -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(97,1,1) = {" -ZD -fY -fY -fY -fY -Dn -Rg -Rs -KR -fY -Rg -rW -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -wq -lc -lc -lc -nE -nE -nE -nE -lc -lc -lc -lc -lc -LU -wq -wq -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -qI -PA -BR -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -er -Sw -ru -ru -rH -nc -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -If -cU -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -WG -IA -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(98,1,1) = {" -ZD -fY -fY -fY -Oo -Oo -Rg -KR -fY -fY -fY -fY -Oo -Rg -it -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -wq -wq -Es -lc -lc -nE -nE -nE -lc -Es -lc -pw -wq -wq -wq -fY -fY -fY -it -fY -qf -KR -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -ph -PA -BR -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Gk -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -If -cU -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(99,1,1) = {" -ZD -fY -fY -fY -Oo -Oo -Rg -KR -fY -De -fY -KR -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -wq -Es -lc -lc -lc -lc -lc -ww -lc -ww -lc -wq -wq -wq -fY -fY -KR -fY -Rg -Rg -fY -Dn -fY -qf -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -ph -PA -PA -PA -PA -BR -iv -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -RB -WR -PA -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -ic -Dp -Dp -Dp -Dp -If -cU -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -WG -IA -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(100,1,1) = {" -ZD -fY -fY -Oo -Oo -Rg -fY -fY -De -Rg -Rg -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -wq -Es -lc -lc -lc -lc -lc -lc -lc -ww -wq -JJ -fY -fY -fY -fY -fY -eh -Rg -Rg -Oo -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -TO -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -qI -PA -qI -BR -DG -PA -PA -PA -PA -PA -PA -PA -Uk -PA -Uk -PA -Uk -PA -PA -PA -PA -DG -PA -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -UI -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -WG -IA -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(101,1,1) = {" -ZD -fY -fY -Oo -Oo -fY -fY -it -fY -Rg -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -wq -wq -lc -lc -lc -Es -lc -lc -lc -wq -wq -JJ -fY -fY -fY -fY -fY -fY -fY -De -Oo -fY -De -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -BR -DG -xb -Yc -Yc -Yc -Yc -Yc -wM -Uk -PA -Uk -Nb -Uk -PA -PA -PA -PA -DG -PA -PA -PA -rz -er -Sw -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -If -cU -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(102,1,1) = {" -ZD -fY -fY -Oo -fY -fY -fY -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -wq -wq -lc -lc -Es -Es -lc -lc -wq -JJ -fY -fY -fY -Rg -fY -fY -De -nP -fY -KR -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -qI -PA -PA -PA -ph -BR -DG -Sk -oy -oy -oy -oy -VG -zh -iU -iU -iU -iU -iU -iU -iU -rf -rf -BM -rf -rf -rf -rf -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -If -cU -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(103,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -it -fY -qf -KR -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -wq -wq -wq -wq -wq -wq -wq -wq -JJ -fY -fY -fY -fY -fY -fY -KR -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -qI -PA -PA -PA -PA -BR -DG -pJ -oy -VG -oy -dL -oL -ek -iU -Nm -Qc -hN -vW -pe -iU -rf -qh -It -YO -hb -KM -rf -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -UI -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(104,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -KR -fY -Rg -Rg -fY -Dn -fY -qf -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -wq -wq -wq -JJ -lA -Yl -DU -DU -fY -fY -it -KR -fY -Rg -De -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -eY -fo -gD -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -BR -DG -pJ -dL -oL -TQ -oy -rq -oy -rf -rf -rf -rf -rf -rf -nH -rf -YX -It -YO -NV -Cb -ka -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -If -cU -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(105,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -eh -Rg -Rg -Oo -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -DU -lA -Yl -ve -DU -fY -fY -De -De -De -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -De -fY -De -KR -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -gD -fo -aR -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -mA -mA -mA -mA -mA -mA -mA -BR -DG -oy -oy -rq -Hc -oy -oy -oy -ju -nk -pH -pm -sm -PI -Vo -rf -vX -It -YO -QS -tW -rf -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -If -cU -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(106,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -Oo -fY -De -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -DU -lA -ve -ve -DU -fY -fY -fY -Rg -Rg -KR -Rg -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -Dn -De -Rs -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -bV -fo -eY -Xr -Xr -eY -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -mA -pP -tI -IV -Em -uU -mA -BR -DG -oy -oy -oy -VG -oy -oy -oy -ju -hh -Vo -Vo -Vo -Vo -Vo -ob -YO -It -YO -AH -wg -rf -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Gk -Dp -Dp -UI -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(107,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -fY -fY -De -nP -fY -KR -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -DU -lA -ve -Yl -DU -fY -fY -fY -Rg -Rg -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -gD -fo -Xr -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -mA -xy -Me -QQ -Me -CD -mA -BR -DG -oy -oy -dL -oL -TQ -oy -oy -ju -hh -Vo -QJ -eP -Vo -Vo -ka -MX -It -YO -NV -qL -ka -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -UI -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(108,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -KR -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -DU -DU -lA -DU -DU -fY -fY -KR -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -fY -fY -KR -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -eY -fo -aR -eY -fo -gD -fo -fo -bV -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -mA -zf -Me -QQ -Me -tp -mA -BR -DG -oy -oy -oy -rq -oy -oy -oy -ju -hh -Vo -PK -Xa -Vo -Vo -ka -YJ -It -YO -QS -tW -rf -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -If -cU -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(109,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -it -KR -fY -Rg -De -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rs -Rg -fY -it -Rs -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -Xr -fo -fo -Xr -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -mA -CN -Me -SQ -pA -pA -Iz -RB -JU -oy -VG -oy -Hc -oy -oy -oy -zW -hh -Vo -dV -pq -Vo -Vo -rf -uA -It -YO -AH -wg -rf -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -UI -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(110,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -De -De -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -Oo -fY -fY -Rs -Rg -fY -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -bV -fo -fo -fo -bV -aR -gD -fo -fo -fo -fo -fo -fo -fo -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -mA -RS -Me -Me -Me -QU -mA -BR -DG -Vx -oL -TQ -oy -oy -oy -oy -rf -OH -kl -kl -kl -kl -kl -cA -rs -UD -YO -NV -Cb -ka -Jt -ru -ru -ru -rH -nc -Dp -Gk -Dp -Dp -Dp -Dp -If -cU -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -KX -nc -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(111,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -KR -Rg -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -Oo -Rg -fY -Wm -fY -fY -Rg -Rg -fY -Rg -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -De -fY -De -KR -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -gD -GH -fo -gD -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -mA -Qq -Me -Me -Me -Jg -mA -BR -DG -pJ -rq -oy -oy -VG -oy -oy -rf -Vo -PF -eD -zU -hy -UY -rf -fy -YO -Iq -Zf -KF -rf -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -UI -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(112,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -Rg -Rs -KR -fY -Rg -rW -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -Dn -De -Rs -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -gD -gD -fo -fo -aR -Xr -Xr -fo -fo -fo -fo -fo -fo -fo -fo -PA -PA -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -mA -ky -Me -Me -Me -Ri -mA -BR -DG -Sk -oy -oy -dL -oL -TQ -Za -rf -rf -rf -rf -rf -rf -rf -rf -rf -XR -rf -rf -rf -rf -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -UI -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(113,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -KR -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -fY -fY -fY -Oo -Rg -it -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -eY -Xr -fo -fo -aR -fo -fo -eY -fo -fo -fo -fo -fo -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -mA -DC -mA -mA -mA -mA -mA -BR -DG -QP -Ho -Ho -Ho -Lq -Ho -pd -PA -PA -PA -PA -PA -PA -PA -PA -PA -BR -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -UI -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -KX -nc -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(114,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -De -fY -De -KR -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -De -fY -KR -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -fY -fY -KR -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -XT -XT -XT -XT -XT -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -BR -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -BR -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -UI -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(115,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -Dn -De -Rs -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -fY -fY -De -Rg -Rg -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rs -Rg -fY -it -Rs -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -XT -XT -XT -XT -XT -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -BR -DG -BR -BR -BR -BR -BR -BR -BR -BR -BR -BR -BR -BR -BR -BR -BR -BR -BR -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -UI -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(116,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -fY -fY -it -fY -Rg -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -Oo -fY -fY -Rs -Rg -fY -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -XT -XT -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -TV -PA -PA -PA -PA -PA -BR -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Gk -Dp -Dp -Dp -UI -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -KX -nc -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(117,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -fY -fY -KR -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -fY -fY -fY -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -Oo -Rg -fY -Wm -fY -fY -Rg -Rg -fY -Rg -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -XT -XT -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -BR -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Nl -po -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(118,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rs -Rg -fY -it -Rs -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -Rg -Rs -KR -fY -Rg -rW -fY -fY -Rg -fY -fY -TO -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -au -PA -PA -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -BR -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -UI -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(119,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -Oo -fY -fY -Rs -Rg -fY -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -fY -fY -fY -Oo -Rg -it -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -XT -PA -my -PA -jF -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -Pu -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -BR -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -UI -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(120,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -Oo -Rg -fY -Wm -fY -fY -Rg -Rg -fY -Rg -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -De -fY -KR -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -XT -PA -jF -PA -au -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -BR -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Gk -Dp -Dp -Dp -Dp -UI -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -KX -nc -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(121,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -Rg -Rs -KR -fY -Rg -rW -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -fY -fY -De -Rg -Rg -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -XT -zz -PA -my -sF -sF -jk -XT -XT -XT -XT -PA -PA -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -Uu -PA -PA -PA -PA -BR -DG -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Nl -po -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -KX -nc -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(122,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -fY -fY -fY -Oo -Rg -it -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -fY -fY -it -fY -Rg -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -PA -RU -PA -jF -PA -PA -PA -XT -XT -XT -XT -XT -PA -PA -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -Uq -PA -PA -PA -PA -PA -PA -PA -PA -uY -wu -bX -wu -wu -wu -wu -wu -wu -wu -wu -wu -wu -wu -wu -wu -uY -jC -xs -Gc -xs -xs -xs -xs -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -UI -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(123,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -De -fY -KR -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -fY -fY -fY -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -au -jk -PA -jF -PA -PA -zz -XT -XT -XT -XT -XT -PA -PA -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -Qe -Qe -Qe -Qe -wu -Rz -xK -xK -xK -xK -xK -xK -xK -xK -xK -xK -xK -xK -xK -tv -AD -lX -Fp -oU -xT -NE -DN -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -UI -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(124,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -fY -fY -De -Rg -Rg -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -RU -PA -PA -sF -PA -PA -XT -XT -XT -XT -XT -PA -PA -PA -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -Qe -PN -oH -Qe -wu -DH -Yn -km -km -km -nm -nm -nm -nm -nm -nm -nm -sZ -sT -wu -SN -IQ -xu -xu -xu -qe -DN -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Nl -po -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -KX -nc -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(125,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -fY -fY -it -fY -Rg -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bV -PA -PA -PA -zz -au -jF -PA -PA -PA -XT -XT -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -wd -PA -PA -Qe -Oh -Xm -lY -tv -Ox -HA -Pc -Pc -Pc -qq -qq -qq -qq -qq -qq -qq -ta -sT -wu -SN -IQ -xu -xu -xu -Ny -xs -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Nl -po -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -KX -nc -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(126,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -fY -fY -fY -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -QK -PA -nN -PA -PA -my -PA -PA -PA -XT -XT -XT -XT -XT -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -Qe -Dd -mH -Qe -wu -DH -HA -Pc -Pc -Pc -qq -qq -qq -qq -qq -qq -qq -ta -sT -wu -SN -IQ -xu -xu -xu -jj -DN -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -UI -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(127,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -De -fY -De -KR -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -gD -PA -PA -Lj -sF -sF -PA -PA -PA -PA -XT -XT -XT -XT -XT -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -SU -SU -SU -SU -wu -DH -HA -Pc -Pc -Pc -qq -qq -JP -qq -qq -qq -qq -ta -sT -wu -SN -IQ -xu -xu -xu -mF -DN -Jt -ru -ru -ru -WG -kQ -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Nl -po -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -KX -nc -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(128,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -Dn -De -Rs -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -my -sF -XT -PA -au -PA -PA -my -XT -XT -XT -XT -XT -XT -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -SU -aO -FU -SU -wu -DH -HA -Pc -Pc -Pc -qq -qq -qq -qq -qq -qq -qq -ta -sT -wu -SN -BC -xu -xu -xu -VM -DN -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Nl -po -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -Kx -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(129,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -Gb -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -XT -jk -XT -XT -PA -PA -PA -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -SU -oc -ku -eG -tv -Ox -HA -Pc -Pc -Pc -qq -qq -qq -qq -qq -qq -qq -ta -sT -wu -SN -IQ -xu -xu -xu -Cx -xs -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -kK -Dp -Dp -Dp -Dp -Nl -po -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -KX -nc -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(130,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -fY -fY -KR -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -fY -fY -fY -fY -it -fY -qf -KR -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -PA -XT -XT -XT -XT -PA -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -SU -HE -fa -SU -wu -DH -Yo -aN -aN -aN -wC -wC -wC -wC -wC -wC -wC -BY -sT -wu -SN -IQ -xu -xu -xu -hk -DN -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Gk -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Nl -Je -po -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -KX -Je -nc -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(131,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rs -Rg -fY -it -Rs -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -KR -fY -Rg -Rg -fY -Dn -fY -qf -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -PA -XT -XT -XT -PA -PA -PA -PA -PA -PA -hC -hC -hC -hC -wu -DH -sT -sT -sT -sT -sT -sT -sT -sT -sT -sT -sT -sT -sT -wu -SN -IQ -xu -ry -gP -Ry -DN -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Nl -Je -Je -po -ec -ec -ec -ec -KX -Je -Je -nc -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(132,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -Oo -fY -fY -Rs -Rg -fY -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -eh -Rg -Rg -Oo -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -XT -PA -XT -XT -XT -PA -PA -PA -PA -PA -PA -hC -zv -yB -hC -wu -bX -wu -wu -wu -wu -wu -wu -WN -wu -WN -wu -WN -wu -WN -wu -jC -xs -Gc -xs -xs -xs -xs -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Nl -Je -Je -Je -Je -nc -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(133,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -Oo -Rg -fY -Wm -fY -fY -Rg -Rg -fY -Rg -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -De -Oo -fY -De -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -hC -JV -bW -dF -tv -Ox -uP -cS -SD -SD -SD -kd -uP -uP -uP -SD -uP -uP -uP -wu -wu -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(134,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -Rg -Rs -KR -fY -Rg -rW -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -VT -gl -gl -gl -gl -yZ -yZ -gl -gl -gl -gl -yZ -gl -gl -VT -fY -fY -Rg -fY -fY -De -nP -fY -KR -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -hC -Sj -HV -hC -wu -Ed -uP -ou -SD -SD -SD -kd -uP -iB -SD -SD -SD -Qn -uP -wu -wu -PA -PA -PA -PA -rz -rz -mX -ge -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(135,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -fY -fY -fY -Oo -Rg -it -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -VT -gl -Mv -jU -kI -dW -dW -WF -HQ -gl -dn -pk -Pg -gl -VT -fY -fY -fY -fY -fY -KR -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -hC -hC -hC -hC -uY -wu -uP -Zr -SD -SD -SD -kd -uP -uP -uP -SD -uP -uP -uP -uY -wu -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Gk -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(136,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -De -fY -KR -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -VT -gl -jU -jU -dW -ns -Oq -Oq -dW -cx -mK -gF -HX -gl -VT -fY -fY -it -KR -fY -Rg -De -fY -fY -NZ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -jd -fM -uP -Ts -SD -zL -kd -fx -uP -iB -SD -SD -SD -Qn -uP -jd -jd -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(137,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -fY -fY -De -Rg -Rg -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -VT -gl -jU -Lh -qo -hE -qo -oP -NW -gl -NS -Qt -Dh -yZ -vV -fY -fY -De -De -De -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -XT -PA -PA -PA -PA -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -jd -fM -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -uP -jd -jd -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Gk -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(138,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -fY -fY -it -fY -Rg -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -VT -gl -pO -gl -gl -gl -gl -gl -eV -gl -wc -zs -Dw -gl -vV -fY -fY -fY -Rg -Rg -KR -Rg -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -PA -PA -PA -PA -PA -qI -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -rz -rz -Jt -ru -ru -ru -WG -kQ -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(139,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -fY -fY -fY -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -TO -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -VT -gl -Ex -Ex -eH -nJ -gl -qb -mK -gl -qm -cp -KQ -gl -vV -fY -fY -fY -Rg -Rg -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -PA -PA -PA -PA -PA -ph -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -rz -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -ic -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -ic -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(140,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -VT -kT -pO -sB -Ec -Bt -eV -hv -mK -gl -cp -cp -cp -Ck -gk -fY -fY -KR -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -PA -ph -PA -PA -PA -PA -qI -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -rz -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(141,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -RG -JJ -JJ -VT -gl -gl -gl -gl -gl -eV -mK -dn -vn -cp -BI -fA -gl -aP -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -XT -XT -XT -PA -PA -PA -qI -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -rz -mX -ge -ru -ru -ru -WG -kQ -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(142,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -VT -gl -ln -HU -jx -Ud -gl -dn -gl -gl -gl -gl -gl -gl -vV -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -TV -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -rz -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(143,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -VT -gl -UW -Eb -Eb -Eb -yQ -dn -gX -Ll -Ll -CG -jt -gl -vV -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bV -fo -eY -Xr -Xr -eY -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -qI -PA -PA -PA -ph -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -rz -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(144,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -VT -gl -gl -gl -gl -gl -gl -gX -gl -Ll -Ll -Ll -Ll -dx -VT -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -fo -Xr -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -qI -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -ic -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(145,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -tA -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -De -fY -De -KR -Rg -fY -fY -fY -fY -fY -JJ -VT -yZ -gr -bq -IR -xj -Ei -bq -gl -Ll -Ll -Ll -CQ -YS -VT -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -aR -eY -fo -gD -fo -fo -bV -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -PA -PA -PA -PA -Pu -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -EZ -Jt -ru -ru -ru -ru -WG -kQ -Dp -Dp -Dp -Dp -Dp -Gk -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(146,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -Qs -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -Dn -De -Rs -fY -Rg -fY -fY -fY -fY -JJ -VT -gl -Pz -bq -bq -bq -bq -bq -gl -DA -Ll -VT -Fl -gl -VT -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -Xr -fo -fo -Xr -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -EZ -mX -ge -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(147,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -rY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -Rg -fY -fY -fY -fY -JJ -VT -gl -DV -bq -bq -bq -bq -bq -gl -Ll -Cn -VT -VT -VT -VT -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bV -fo -fo -fo -bV -aR -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -XT -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -PA -Uu -PA -PA -PA -PA -PA -PA -PA -XT -XT -XT -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -IX -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(148,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -fY -fY -KR -fY -fY -it -fY -fY -fY -fY -fY -fY -JJ -VT -gl -eB -bq -gr -gr -Sz -UN -gl -VT -EM -VT -gk -gk -gk -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -GH -fo -gD -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oT -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -fo -oq -oq -oq -oq -oq -oq -tq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(149,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rs -Rg -fY -it -Rs -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -JJ -VT -gl -gl -gl -yZ -gl -gl -gl -gl -cB -cB -Nk -gk -gk -gk -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -IW -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -gD -fo -fo -aR -Xr -Xr -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(150,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -Oo -fY -fY -Rs -Rg -fY -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -yS -Qa -fY -Rg -De -fY -De -KR -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -Xr -fo -fo -aR -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -EZ -EZ -mX -ge -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(151,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -Oo -Rg -fY -Wm -fY -fY -Rg -Rg -fY -Rg -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -Dn -De -Rs -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -ZU -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -gH -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Gk -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(152,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -Rg -Rs -KR -fY -Rg -rW -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -WG -kQ -Dp -Dp -Gk -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(153,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -fY -fY -fY -Oo -Rg -it -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -fY -fY -KR -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -DW -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -oq -oq -oq -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -fo -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(154,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -De -fY -KR -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rs -Rg -fY -it -Rs -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -fo -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -oq -EZ -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(155,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -fY -fY -De -Rg -Rg -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -Oo -fY -fY -Rs -Rg -fY -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -fo -fo -oq -EZ -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(156,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -fY -fY -it -fY -Rg -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -Oo -Rg -fY -Wm -fY -fY -Rg -Rg -fY -Rg -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oq -oq -fo -oq -oq -EZ -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(157,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -fY -fY -fY -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -Rg -Rs -KR -fY -Rg -rW -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -fo -fo -fo -fo -oq -oq -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -ic -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(158,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -fY -fY -fY -Oo -Rg -it -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -DW -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -fo -fo -fo -fo -oq -fo -oq -oq -fo -EZ -EZ -EZ -mX -ge -ru -ru -ru -WG -kQ -Dp -Dp -Dp -aS -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(159,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -fY -fY -KR -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -De -fY -KR -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -EZ -Jt -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(160,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rs -Rg -fY -it -Rs -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -fY -fY -De -Rg -Rg -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -fo -fo -fo -EZ -EZ -EZ -EZ -Jt -ru -ru -ru -ru -WG -kQ -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(161,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -Oo -fY -fY -Rs -Rg -fY -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -fY -fY -it -fY -Rg -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -EZ -EZ -EZ -Jt -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(162,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -Oo -Rg -fY -Wm -fY -fY -Rg -Rg -fY -Rg -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -fY -fY -fY -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -EZ -Jt -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(163,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -Rg -Rs -KR -fY -Rg -rW -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(164,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -fY -fY -fY -Oo -Rg -it -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fq -fo -fo -fo -bV -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Gk -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(165,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -De -fY -KR -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -pE -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -DW -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(166,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -fY -fY -De -Rg -Rg -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -Wb -Wb -Wb -JQ -Na -Wb -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(167,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -fY -fY -it -fY -Rg -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -Na -Af -fI -rI -fI -Wb -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(168,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -fY -fY -fY -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -Wb -fI -VV -nu -rI -Wb -fo -bV -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -ru -WG -kQ -Dp -Dp -IX -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(169,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -lc -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -VV -VV -Yv -fI -fI -VV -Wb -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(170,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -lc -lc -lc -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -VV -VV -VV -xD -nu -Wb -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oT -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(171,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -lc -lc -lc -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fq -VV -VV -VV -Wb -Wb -Wb -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -CZ -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(172,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -it -fY -qf -KR -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -lc -lc -lc -lc -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -VV -fo -VV -fo -fo -fo -fo -fo -fq -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -CZ -fo -fo -fo -fo -oT -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -DW -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(173,1,1) = {" -ZD -fY -fY -fY -fY -fY -KR -fY -Rg -Rg -fY -Dn -fY -qf -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -lc -lc -lc -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oT -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -kS -kS -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -WG -kQ -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(174,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -eh -Rg -Rg -Oo -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -lc -lc -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -ic -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(175,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -ZS -De -Oo -fY -De -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oT -fo -fo -fo -CZ -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -ru -Kx -Dp -Dp -Gk -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(176,1,1) = {" -ZD -fY -fY -fY -Rg -fY -fY -De -nP -fY -KR -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oT -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -xF -CU -CU -CU -SP -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(177,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -KR -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -xF -CU -CU -cQ -aZ -aZ -aZ -Uy -CU -CU -CU -CU -CU -CU -CU -CU -CU -SP -kS -kS -kS -kS -kS -kS -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -IX -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(178,1,1) = {" -ZD -fY -fY -fY -it -KR -fY -Rg -De -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -xF -cQ -aZ -aZ -aZ -bj -aZ -aZ -aZ -fw -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Uy -CU -CU -CU -SP -kS -kS -kS -kS -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(179,1,1) = {" -ZD -fY -fY -fY -De -De -De -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -aZ -mj -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Uy -SP -kS -kS -kS -kS -kS -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(180,1,1) = {" -ZD -fY -fY -fY -fY -Rg -Rg -KR -Rg -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -oT -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -xF -CU -CU -CU -cQ -aZ -aZ -aZ -aZ -aZ -aZ -gy -QH -aZ -OT -fw -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Uy -SP -kS -kS -kS -kS -kS -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(181,1,1) = {" -ZD -fY -fY -fY -fY -Rg -Rg -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -xF -cQ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -bj -aZ -aZ -rD -aZ -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Uy -SP -kS -kS -kS -kS -kS -kS -wP -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Gk -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(182,1,1) = {" -ZD -fY -fY -fY -KR -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -De -fY -De -KR -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -xF -cQ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -iM -aZ -aZ -mj -aZ -iM -aZ -QH -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Uy -CU -CU -SP -kS -kS -kS -kS -wP -wP -wP -wP -wP -wP -wP -wP -wP -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(183,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -Dn -De -Rs -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -YR -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Uy -CU -SP -kS -kS -kS -kS -kS -wP -wP -wP -wP -wP -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(184,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -gy -aZ -OT -aZ -iM -gy -aZ -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -bj -aZ -aZ -aZ -fw -aZ -aZ -aZ -aZ -Uy -SP -kS -kS -kS -kS -kS -kS -kS -kS -kS -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(185,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -fY -fY -KR -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -EZ -EZ -EZ -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -xF -cQ -aZ -aZ -aZ -aZ -WS -aZ -aZ -aZ -aZ -WS -aZ -iM -aZ -aZ -gy -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -mj -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Uy -CU -SP -kS -kS -kS -kS -kS -kS -kS -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(186,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rs -Rg -fY -it -Rs -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bV -fo -eY -Xr -Xr -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -xF -cQ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -YR -aZ -aZ -aZ -aZ -aZ -aZ -gy -rD -mj -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -gy -QH -aZ -OT -fw -aZ -aZ -aZ -aZ -aZ -Mq -kS -kS -kS -kS -kS -kS -kS -ru -ru -ru -ru -Kx -Dp -Ga -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(187,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -Oo -fY -fY -Rs -Rg -fY -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -fo -Xr -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -YR -aZ -aZ -aZ -aZ -aZ -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -bj -aZ -aZ -rD -aZ -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Uy -CU -SP -kS -kS -kS -kS -kS -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(188,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -Oo -Rg -fY -Wm -fY -fY -Rg -Rg -fY -Rg -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -aR -eY -fo -gD -fo -fo -bV -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -xF -CU -CU -cQ -aZ -aZ -aZ -aZ -YR -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -iM -aZ -aZ -mj -aZ -iM -aZ -QH -aZ -aZ -aZ -aZ -aZ -aZ -Mq -kS -kS -kS -kS -kS -ru -ru -ru -dE -nc -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(189,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Dn -Rg -Rs -KR -fY -Rg -rW -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -Xr -fo -fo -Xr -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -FT -bj -aZ -aZ -aZ -fw -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Uy -CU -SP -kS -kS -kS -kS -ru -dE -rM -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(190,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -fY -fY -fY -Oo -Rg -it -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -bV -fo -fo -fo -bV -aR -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -FT -aZ -mj -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -WS -aZ -aZ -aZ -aZ -kS -kS -kS -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -aZ -aZ -aZ -gy -aZ -OT -aZ -iM -gy -aZ -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Uy -CU -CU -CU -CU -CU -cQ -aZ -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(191,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -KR -fY -De -fY -KR -fY -fY -fY -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -GH -fo -gD -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -xF -cQ -aZ -aZ -gy -QH -aZ -OT -fw -aZ -aZ -aZ -aZ -aZ -aZ -aZ -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -aZ -iM -aZ -aZ -gy -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(192,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -Rg -fY -fY -De -Rg -Rg -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -gD -gD -fo -fo -aR -Xr -Xr -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -FT -bj -aZ -aZ -rD -aZ -OT -aZ -aZ -YR -aZ -aZ -aZ -aZ -aZ -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -aZ -aZ -aZ -gy -rD -mj -aZ -aZ -aZ -aZ -aZ -aZ -YR -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -qQ -VO -kQ -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(193,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -fY -fY -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -Oo -fY -fY -it -fY -Rg -fY -fY -fY -Dn -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -Xr -fo -fo -aR -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -xF -cQ -aZ -iM -aZ -aZ -mj -aZ -iM -aZ -QH -aZ -aZ -aZ -aZ -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -aZ -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -lG -Xw -Xw -ia -ru -WG -kQ -Dp -NB -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(194,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -fY -fY -JJ -fY -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Oo -fY -fY -fY -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -kS -kS -kS -kS -kS -kS -kS -fo -fo -fo -fo -fo -kS -kS -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -lG -vm -ru -ru -ru -ru -ru -WG -kQ -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(195,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -FT -aZ -aZ -gy -aZ -OT -aZ -iM -gy -aZ -OT -aZ -aZ -kS -kS -kS -kS -kS -kS -kS -fo -fo -fo -fo -fo -fo -fo -kS -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -lG -vm -kS -ru -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(196,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -iM -aZ -aZ -gy -aZ -aZ -aZ -aZ -aZ -kS -kS -kS -kS -kS -kS -fo -fo -IW -IW -IW -Re -IW -fo -fo -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Mq -kS -kS -ru -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(197,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -aZ -aZ -gy -rD -mj -aZ -aZ -aZ -kS -kS -kS -kS -kS -fo -fo -IW -IW -IW -IW -cD -IW -IW -fo -fo -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Mq -kS -kS -ru -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(198,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -xF -cQ -aZ -aZ -aZ -aZ -aZ -OT -aZ -aZ -aZ -aZ -aZ -kS -kS -kS -kS -kS -kS -fo -IW -IW -IW -IW -IW -IW -MJ -IW -IW -fo -fo -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Mq -kS -kS -ru -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(199,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -kS -kS -kS -kS -kS -fo -fo -IW -IW -hj -IW -hj -IW -IW -Re -IW -IW -fo -fo -kS -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -aZ -aZ -aZ -YR -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Mq -kS -kS -ru -ru -ru -ru -ru -ru -WG -kQ -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(200,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -kS -kS -kS -kS -kS -fo -fo -IW -IW -IW -IW -QM -Re -MJ -MJ -IW -hj -IW -fo -fo -kS -kS -kS -kS -kS -aZ -aZ -bj -aZ -aZ -aZ -fw -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Mq -kS -kS -ru -ru -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(201,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -kS -kS -kS -kS -kS -kS -fo -fo -IW -IW -IW -iy -IW -Re -IW -Re -Re -IW -IW -fo -fo -kS -kS -kS -kS -aZ -aZ -aZ -aZ -mj -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Mq -kS -kS -kS -CR -CR -ru -ru -ru -ru -Kx -Dp -Dp -Gk -Dp -iq -Dp -iq -iq -iq -Dp -iq -iq -iq -iq -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(202,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -it -fY -qf -KR -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -kS -kS -kS -kS -kS -kS -kS -fo -fo -IW -IW -IW -IW -AF -QM -IW -IW -cD -IW -fo -fo -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -aZ -gy -QH -aZ -OT -fw -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Mq -kS -kS -CR -CR -CR -CR -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(203,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -KR -fY -Rg -Rg -fY -Dn -fY -qf -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -kS -kS -kS -kS -kS -kS -kS -fo -fo -IW -IW -IW -IW -IW -IW -IW -IW -IW -fo -kS -kS -kS -kS -kS -aZ -aZ -aZ -bj -aZ -aZ -rD -aZ -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -lG -vm -kS -kS -CR -CR -CR -CR -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(204,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -eh -Rg -Rg -Oo -fY -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -kS -kS -kS -kS -kS -kS -fo -fo -IW -hj -IW -Re -IW -IW -IW -fo -fo -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -iM -aZ -aZ -mj -aZ -iM -aZ -QH -aZ -aZ -aZ -aZ -lG -vm -kS -kS -CR -CR -CR -CR -CR -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(205,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -De -Oo -fY -De -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -kS -kS -kS -kS -kS -kS -fo -fo -IW -IW -IW -IW -fo -fo -fo -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -aZ -aZ -aZ -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Mq -kS -kS -kS -CR -CR -CR -CR -CR -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -If -VO -VO -VO -VO -VO -VO -VO -VO -kQ -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(206,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -Rg -fY -fY -De -nP -fY -KR -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -ZU -ZU -ZU -ZU -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -cW -lM -aZ -aZ -aZ -aZ -aZ -aZ -aZ -WS -aZ -aZ -aZ -aZ -kS -kS -kS -kS -kS -kS -kS -fo -fo -fo -fo -fo -fo -kS -kS -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -aZ -gy -aZ -OT -aZ -iM -gy -aZ -OT -aZ -aZ -aZ -lG -vm -kS -kS -kS -CR -CR -CR -CR -CR -ru -ru -ru -Kx -Dp -If -VO -Hs -VO -cU -ru -ru -ru -ru -ru -ru -ru -ru -WG -kQ -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(207,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -wE -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -KR -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -eY -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -ZU -ZU -ZU -ZU -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -kS -kS -kS -kS -kS -kS -kS -fo -fo -fo -fo -kS -kS -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -aZ -aZ -aZ -iM -aZ -aZ -gy -aZ -aZ -aZ -aZ -aZ -aZ -Mq -kS -kS -kS -kS -CR -CR -CR -CR -CR -ru -ru -ru -WG -VO -cU -ru -ru -ru -ru -ru -ru -ru -ru -ru -ru -ru -ru -ru -Hz -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(208,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -it -KR -fY -Rg -De -fY -fY -it -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -gD -fo -aR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -ZU -ZU -ZU -ZU -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -aZ -aZ -bj -aZ -aZ -aZ -fw -aZ -aZ -aZ -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -gy -rD -mj -aZ -aZ -aZ -lG -vm -kS -kS -kS -kS -CR -CR -CR -CR -CR -ru -ru -ru -ru -ru -ru -ru -ru -ru -ru -VN -VN -VN -VN -VN -VN -ru -ru -ru -WG -kQ -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(209,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -De -De -De -fY -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -fo -fo -fo -bV -fo -eY -Xr -Xr -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -ZU -ZU -ZU -ZU -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -FT -aZ -aZ -WS -aZ -aZ -aZ -aZ -mj -OT -aZ -aZ -aZ -aZ -aZ -aZ -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -OT -aZ -aZ -YR -aZ -aZ -aZ -Mq -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -ru -ru -ru -ru -ru -ru -ru -CW -CW -CW -VN -oS -bn -bn -bn -VN -uf -ru -ru -ru -Hz -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(210,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -KR -Rg -fY -De -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -fo -gD -fo -Xr -fo -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -ZU -ZU -ZU -ZU -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -gy -QH -aZ -OT -fw -aZ -aZ -aZ -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -lG -vm -kS -kS -kS -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -ru -ru -CW -KU -KU -KU -KU -VN -oW -bn -bn -bn -VN -ru -ru -ru -ru -Hz -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(211,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -Rg -Rg -KR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -fo -fo -eY -fo -aR -eY -fo -gD -fo -fo -bV -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -ZU -ZU -ZU -ZU -fo -EZ -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -aZ -bj -aZ -aZ -rD -aZ -OT -aZ -aZ -aZ -aZ -aZ -aZ -kS -kS -kS -kS -kS -kS -kS -kS -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Mq -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -CR -ru -ru -CW -CW -KU -ru -KU -KU -ru -KU -VN -VN -VN -VN -bn -VN -ru -uZ -ru -ru -Hz -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(212,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -KR -Rg -Rg -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -aZ -fo -fo -fo -fo -fo -Xr -fo -fo -Xr -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Bn -Bn -Bn -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -aZ -aZ -iM -aZ -aZ -mj -aZ -iM -aZ -QH -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -YR -YR -aZ -aZ -aZ -aZ -aZ -lG -vm -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -CW -KU -ru -ru -ru -ru -ru -KU -KU -KU -KU -KU -mv -ru -ru -ru -ru -db -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(213,1,1) = {" -ZD -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -Zd -fo -fo -bV -fo -fo -fo -bV -aR -gD -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Bn -Vy -Bn -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -cW -lM -aZ -aZ -aZ -aZ -aZ -aZ -aZ -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -YR -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Mq -kS -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -CW -KU -KU -ru -ru -ru -ru -ru -ru -ru -KU -KU -KU -CW -ru -ru -ru -zi -rj -rj -rj -rj -Op -Op -Op -Op -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(214,1,1) = {" -CR -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fo -Zd -fo -fo -gD -GH -fo -gD -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Bn -Bn -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -cW -lM -aZ -aZ -aZ -aZ -gy -aZ -OT -aZ -iM -gy -aZ -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Mq -kS -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -ru -ru -CW -KU -vZ -KU -KU -KU -ru -ru -ru -ru -ru -ru -bi -bi -bi -bh -bh -bh -bh -bh -bh -bh -bh -bh -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(215,1,1) = {" -CR -CR -CR -CR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -JJ -fY -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -GU -CY -CY -oq -oq -oq -gD -gD -fo -fo -aR -Xr -Xr -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -FT -aZ -aZ -aZ -aZ -aZ -iM -aZ -aZ -gy -aZ -aZ -aZ -aZ -fw -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -bj -aZ -aZ -aZ -fw -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -lG -vm -kS -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -ru -ru -ru -ru -ru -ru -CW -KU -ru -KU -KU -KU -KU -KU -KU -KU -CW -ru -bi -bi -bi -bh -bh -bh -bh -bh -bh -bh -bh -bh -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(216,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -JJ -JJ -JJ -JJ -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -CY -Jv -hD -Ue -Ue -oR -aZ -aZ -eY -Xr -fo -fo -aR -fo -fo -eY -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -EA -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -cW -lM -aZ -aZ -aZ -aZ -aZ -aZ -aZ -gy -rD -mj -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -mj -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -lG -vm -kS -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -ru -ru -ru -CW -KU -KU -KU -KU -KU -KU -KU -JL -KU -CW -ru -ru -ru -ru -ER -Ix -Ix -Ix -Ix -He -He -He -He -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(217,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -CY -CY -Mn -fo -aZ -sH -oq -Ev -fb -Zd -eY -aZ -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -cW -lM -aZ -aZ -WS -aZ -aZ -OT -aZ -aZ -aZ -aZ -aZ -iM -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -gy -QH -aZ -OT -fw -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -lG -vm -kS -kS -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -ru -ru -ru -CW -KU -KU -Co -KU -KU -KU -KU -EH -KU -ao -ru -ru -ru -ru -Hz -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(218,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -lA -lA -lA -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -sX -oq -oq -Dj -oq -BU -Dj -fb -fb -fb -pN -pN -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -cW -lM -aZ -aZ -aZ -aZ -aZ -aZ -aZ -fw -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -YR -aZ -aZ -bj -aZ -aZ -rD -aZ -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -lG -Xw -vm -kS -kS -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -ru -ru -ru -CW -KU -KU -KU -KU -KU -KU -KU -EH -CW -ru -ru -ru -ru -ru -Hz -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(219,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -lA -lA -lA -lA -lA -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -sX -oq -oq -oq -Ev -lu -Bp -oq -Ev -Bp -pN -pN -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -cW -lM -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -WS -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -iM -aZ -aZ -mj -aZ -iM -aZ -QH -aZ -aZ -aZ -aZ -aZ -lG -Xw -vm -kS -kS -kS -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -ru -ru -CW -CW -KU -KU -KU -KU -KU -KU -ij -CW -ru -ru -ru -ru -ru -Hz -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(220,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -lA -lA -lA -fY -fY -lA -fY -lA -lA -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -sX -oq -Ev -TJ -yF -FX -yF -TJ -TJ -oq -oq -oq -fq -aZ -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -cW -Xw -lM -aZ -aZ -aZ -aZ -aZ -bj -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -YR -aZ -aZ -aZ -aZ -OT -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -Mq -kS -kS -kS -kS -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -rH -po -ru -ru -ru -CW -CW -CW -KU -CW -CW -CW -CW -ru -ru -ru -ru -ru -ru -Hz -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(221,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -lA -lA -lA -lA -lA -lA -lA -lA -lA -lA -lA -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -sX -Dj -Ko -TJ -Tn -dK -Pj -PE -TJ -Bp -oq -oq -Hl -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -fo -fo -fo -fo -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -cW -lM -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -gy -aZ -OT -aZ -iM -gy -aZ -OT -aZ -aZ -lG -Xw -Xw -vm -kS -kS -kS -kS -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -Kx -Nl -po -ru -ru -ru -ru -CW -CW -CW -CW -CW -CW -ru -ru -ru -ru -ru -rH -nc -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(222,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -lA -lA -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -sX -Dj -Ko -yF -Di -nn -Kl -az -Ao -Tv -Zd -oq -oq -fo -fo -fo -fo -fo -fo -fo -fo -fo -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -fo -fo -fo -fo -fo -fo -EZ -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -cW -Xw -Xw -lM -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -iM -aZ -aZ -gy -aZ -aZ -aZ -aZ -lG -vm -kS -kS -kS -kS -kS -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -Kx -Dp -Nl -po -ru -ru -ru -ru -ru -ru -ru -ru -ru -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(223,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -sX -oq -oq -TJ -nn -ql -nn -uq -PH -br -oq -oq -oq -fq -fq -fo -fo -fo -fo -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -fo -fo -fo -fo -fo -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -kS -kS -cW -Xw -Xw -lM -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -aZ -gy -rD -mj -lG -Xw -vm -kS -kS -kS -kS -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -Kx -Dp -Dp -Nl -po -ru -ru -ru -ru -ru -ru -ru -ru -ru -ru -ru -ru -rH -nc -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(224,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -sX -oq -Ev -yF -nn -nn -nn -JI -Bz -br -oq -Dj -oq -fo -fo -fo -fo -fo -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -Gh -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -fo -fo -fo -fo -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -cW -Xw -Xw -lM -aZ -aZ -aZ -aZ -lG -Xw -Xw -Xw -Xw -lM -OT -lG -Xw -Xw -vm -kS -kS -kS -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -rH -nc -Dp -Dp -Dp -Nl -Je -po -ru -ru -ru -ru -ru -ru -ru -ru -ru -rH -nc -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(225,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -oq -oq -Dj -TJ -zy -nn -YN -tK -TJ -oq -oq -Ev -oq -fo -fo -fo -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -Gh -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -Gh -CR -CR -CR -CR -CR -CR -CR -CR -CR -fo -fo -fo -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -cW -Xw -Xw -Xw -Xw -vm -kS -kS -kS -kS -cW -Xw -vm -kS -kS -kS -kS -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Nl -po -ru -ru -ru -ru -ru -ru -ru -rH -nc -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(226,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -oq -oq -vr -TJ -TJ -TJ -TJ -TJ -TJ -oq -Ev -aZ -aZ -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -Gh -CR -CR -CR -CR -CR -CR -CR -fo -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -rH -nc -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Nl -Je -Je -Je -Je -Je -Je -Je -nc -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(227,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -fY -oq -oq -oq -dz -oq -Zd -oq -oq -oq -Dj -oq -oq -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -Gh -wy -wy -wy -wy -wy -wy -wy -wy -wy -Gh -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -kK -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(228,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -Gh -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -EZ -EZ -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -CR -CR -CR -CR -CR -CR -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -rH -nc -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(229,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -Gh -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -Rx -Rx -Rx -Rx -Rx -Rx -Rx -Rx -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(230,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -Gh -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -Gh -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -Rx -tF -DJ -rS -tF -tF -tF -Rx -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -Dp -iq -Dp -Dp -iq -iq -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(231,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -pa -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -Gh -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -CR -CR -CR -CR -gA -wy -Rx -tF -IO -tF -tF -tF -tF -Rx -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -rH -nc -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(232,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -Gh -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -CR -wy -wy -wy -wy -wy -wy -wy -Sr -tF -tF -tF -CJ -tF -tF -Rx -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -Kx -Dp -Gk -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(233,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -wy -Rx -oh -tF -tF -tF -tF -tF -Rx -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -rH -nc -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(234,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -qz -qz -qz -qz -qz -qz -qz -qz -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -Gh -wy -wy -wy -CR -CR -CR -CR -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -Gh -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -CR -CR -CR -CR -CR -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -Rx -tF -tF -tF -jw -wh -tF -Rx -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(235,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -qz -qz -qz -qz -qz -qz -qz -qz -qz -qz -qz -qz -qz -qz -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -CR -CR -CR -RX -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -Gh -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -Gh -CR -CR -CR -CR -CR -CR -CR -CR -CR -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Nz -Ql -Ql -Nz -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -CR -CR -CR -CR -wy -wy -CR -CR -CR -CR -CR -wy -wy -CR -CR -wy -Rx -Rx -Rx -Rx -Rx -Rx -Rx -Rx -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(236,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -cq -qz -qz -qz -qz -nY -nY -nY -nY -qz -qz -qz -qz -qz -qz -qz -qz -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -CR -CR -CR -CR -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Nz -Ql -kL -zt -Vf -Ql -sE -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -CR -CR -wy -wy -CR -CR -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(237,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -cq -wy -cq -cq -cq -EJ -cq -cq -nY -nY -nY -VC -nY -nY -nY -nY -nY -so -cq -qz -qz -CR -CR -CR -CR -CR -CR -CR -CR -CR -Gh -wy -wy -wy -wy -CR -CR -CR -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -Gh -nK -wy -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -CR -CR -CR -CR -CR -CR -Gh -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -Ql -Ql -Ql -Nz -Ql -Oa -Ql -Ql -Ql -id -Ql -Ql -Ql -Ql -Oa -kn -Ql -Nz -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -lz -Ql -Ql -Ql -CR -CR -wy -wy -CR -CR -wy -wy -CR -CR -CR -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -ru -rH -nc -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(238,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -pa -wy -wy -wy -wy -wy -wy -wy -wy -wy -cq -wy -wy -cq -cq -cq -cq -cq -cq -cq -cq -nb -EJ -nY -nY -nY -nY -cq -EJ -qz -qz -qz -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -CR -CR -CR -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -Gh -CR -CR -CR -CR -CR -CR -wy -wy -wy -Gh -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -nK -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Tf -ts -Ql -Ql -Ql -Ql -Nz -Ql -Ql -Ql -Ql -Ql -Ql -Ql -CR -CR -wy -wy -CR -CR -CR -wy -CR -CR -CR -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(239,1,1) = {" -CR -CR -CR -CR -CR -kh -kh -kh -kh -kh -kh -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -cq -wy -cq -wy -cq -wy -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -qz -qz -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -CR -CR -CR -wy -wy -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -Gh -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Nz -Ql -UV -Ql -iL -Ql -Ql -Ql -Ql -Ql -Ql -CR -CR -wy -wy -CR -CR -CR -wy -wy -CR -CR -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -ru -ru -Kx -Dp -Dp -ic -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(240,1,1) = {" -CR -CR -CR -CR -kh -kh -kh -kh -kh -kh -kh -kh -kh -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -cq -cq -cq -cq -cq -EJ -cq -cq -EJ -cq -cq -cq -cq -cq -cq -cq -cq -cq -Mz -qz -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -CR -CR -CR -wy -wy -wy -CR -EX -Gh -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Az -zt -Vk -Ql -Ql -Ql -Ql -Ql -Ql -Ql -CR -CR -CR -wy -wy -wy -CR -CR -wy -wy -CR -CR -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(241,1,1) = {" -CR -CR -CR -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -cq -wy -wy -cq -wy -cq -cq -cq -cq -cq -cq -cq -cq -cq -EJ -cq -cq -cq -cq -EJ -cq -cq -cq -cq -wy -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -Gh -CR -CR -wy -wy -wy -CR -CR -CR -CR -CR -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -Gh -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Oa -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -CR -CR -CR -CR -CR -CR -wy -CR -CR -CR -wy -CR -CR -wy -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(242,1,1) = {" -CR -CR -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -cq -wy -wy -cq -wy -wy -cq -wy -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -EJ -cq -cq -cq -cq -cq -cq -cq -cq -wy -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -wy -wy -wy -RX -CR -CR -CR -CR -CR -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -CR -CR -CR -CR -CR -CR -CR -wy -CR -CR -CR -wy -CR -CR -wy -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(243,1,1) = {" -CR -CR -kh -kh -kh -kh -kh -yX -kh -kh -kh -kh -kh -kh -kh -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -cq -wy -wy -wy -wy -wy -cq -cq -cq -cq -cq -EJ -cq -cq -Mz -qz -qz -so -cq -EJ -cq -cq -EJ -cq -EJ -cq -cq -cq -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -CR -CR -CR -wy -wy -wy -wy -wy -Gh -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -CR -CR -CR -CR -CR -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -RX -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -CR -CR -wy -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(244,1,1) = {" -CR -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -MR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -cq -wy -cq -cq -cq -cq -cq -cq -cq -cq -cq -qz -qz -qz -qz -cq -cq -so -cq -cq -cq -cq -cq -cq -wy -qj -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -CR -CR -CR -CR -nK -wy -RX -wy -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -Gh -CR -CR -CR -CR -CR -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -RX -wy -wy -Gh -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -nK -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -ru -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Gk -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(245,1,1) = {" -CR -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -tg -dS -pC -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -cq -wy -wy -wy -cq -cq -cq -cq -cq -cq -cq -EJ -cq -qz -qz -qz -nY -nY -cq -cq -cq -cq -cq -cq -cq -cq -wy -cq -wy -CR -CR -CR -wy -Gh -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -CR -CR -CR -CR -CR -CR -Gh -wy -nK -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -nK -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(246,1,1) = {" -CR -kh -kh -kh -kh -kh -kh -tg -dS -dS -dS -dS -dS -pC -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -cq -wy -cq -cq -cq -cq -cq -EJ -cq -cq -cq -nY -nY -VC -nY -cq -EJ -cq -cq -cq -cq -cq -cq -wy -cq -cq -cq -CR -CR -CR -CR -CR -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -Gh -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(247,1,1) = {" -CR -kh -kh -kh -kh -kh -kh -MR -yx -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -cq -EJ -cq -cq -cq -cq -cq -cq -so -nY -nY -nY -nY -nY -EJ -cq -cq -cq -cq -cq -cq -cq -cq -wy -cq -wy -wy -cq -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(248,1,1) = {" -CR -kh -kh -kh -kh -kh -kh -GB -od -od -od -od -od -od -Hi -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -qj -cq -cq -cq -cq -cq -cq -cq -EJ -cq -nY -nb -cq -cq -cq -cq -cq -EJ -cq -cq -cq -cq -cq -cq -wy -wy -wy -wy -wy -CR -CR -CR -CR -Gh -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -Gh -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -ru -ru -ru -WG -kQ -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(249,1,1) = {" -CR -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -GB -od -Hi -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -qz -qz -cq -cq -cq -cq -cq -EJ -cq -EJ -cq -EJ -cq -cq -cq -cq -cq -EJ -cq -wy -wy -cq -cq -wy -cq -wy -wy -CR -CR -CR -wy -wy -wy -Gh -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -Gh -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -Gh -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -ru -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(250,1,1) = {" -CR -CR -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -MR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -qz -qz -qz -qz -qz -Mz -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -Gh -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -Gh -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -Xe -CR -CR -CR -wy -wy -wy -CR -CR -CR -CR -wy -Gh -wy -wy -Gh -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(251,1,1) = {" -CR -CR -kh -kh -kh -XJ -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -qz -qz -qz -qz -qz -qz -qz -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -cq -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -CR -wy -wy -CR -CR -CR -CR -Gh -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -Gh -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -WG -kQ -Dp -Gk -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(252,1,1) = {" -CR -CR -kh -kh -kh -kh -kh -kh -kh -kh -kh -sQ -kh -kh -kh -kh -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -qz -qz -qz -qz -qz -qz -qz -qz -cq -pc -cq -cq -cq -cq -wy -cq -wy -wy -cq -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -dB -Dy -wy -CR -CR -CR -CR -CR -wy -wy -RX -RX -RX -wy -wy -Gh -Gh -wy -wy -nK -wy -CR -CR -CR -Gh -wy -wy -wy -wy -wy -wy -wy -wy -Gh -wy -wy -wy -Gh -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -Gh -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -aS -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(253,1,1) = {" -CR -CR -CR -CR -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -kh -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -qz -qz -qz -qz -qz -qz -qz -qz -qz -qz -cq -cq -EJ -cq -wy -cq -wy -pa -wy -wy -cq -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -Gh -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -WG -kQ -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(254,1,1) = {" -CR -CR -CR -CR -CR -CR -kh -kh -kh -kh -kh -kh -kh -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -Gh -wy -Gh -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -wy -wy -Gh -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(255,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -Gh -wy -wy -wy -CR -CR -wy -wy -wy -wy -wy -wy -wy -wy -Gh -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -wy -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -ru -ru -ru -Kx -Dp -Dp -Dp -Dp -Dp -Dp -Dp -Dp -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -iq -jI -"} -(256,1,1) = {" -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -CR -XH -XH -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -jI -"} diff --git a/maps/southern_sun/overmap/planets/tyr/tyr.dm b/maps/southern_sun/overmap/planets/tyr/tyr.dm deleted file mode 100644 index ab57afd06a..0000000000 --- a/maps/southern_sun/overmap/planets/tyr/tyr.dm +++ /dev/null @@ -1,216 +0,0 @@ -//Atmosphere properties //CHOMP Comment: Tyr. A toasty planet. More so in lore but with the purpose of this project lessing it. Also something something anomalous site -#define TYR_ONE_ATMOSPHERE 101.5 //kPa -#define TYR_AVG_TEMP 323 //kelvin - -#define TYR_PER_N2 0.65 //percent -#define TYR_PER_O2 0.35 -#define TYR_PER_N2O 0.00 //Currently no capacity to 'start' a turf with this. See turf.dm -#define TYR_PER_CO2 0.00 -#define TYR_PER_PHORON 0.00 - -//Math only beyond this point -#define TYR_MOL_PER_TURF (TYR_ONE_ATMOSPHERE*CELL_VOLUME/(TYR_AVG_TEMP*R_IDEAL_GAS_EQUATION)) -#define TYR_MOL_N2 (TYR_MOL_PER_TURF * TYR_PER_N2) -#define TYR_MOL_O2 (TYR_MOL_PER_TURF * TYR_PER_O2) -#define TYR_MOL_N2O (TYR_MOL_PER_TURF * TYR_PER_N2O) -#define TYR_MOL_CO2 (TYR_MOL_PER_TURF * TYR_PER_CO2) -#define TYR_MOL_PHORON (TYR_MOL_PER_TURF * TYR_PER_PHORON) - -//Turfmakers -#define TYR_SET_ATMOS nitrogen=TYR_MOL_N2;oxygen=TYR_MOL_O2;carbon_dioxide=TYR_MOL_CO2;phoron=TYR_MOL_PHORON;temperature=TYR_AVG_TEMP -#define TYR_TURF_CREATE(x) x/TYR/nitrogen=TYR_MOL_N2;x/TYR/oxygen=TYR_MOL_O2;x/TYR/carbon_dioxide=TYR_MOL_CO2;x/TYR/phoron=TYR_MOL_PHORON;x/TYR/temperature=TYR_AVG_TEMP;x/TYR/color="#eacd7c" - -/obj/effect/overmap/visitable/planet/tyr - name = "Tyr" - desc = "A planet with a high amount of minerals" - scanner_desc = @{"[i]Stellar Body[/i]: Tyr"} - - map_z = list(Z_LEVEL_DEATH_VALLEY) - initial_generic_waypoints = list("valley_e", "valley_w") - start_x = 3 - start_y = 5 - known = TRUE - skybox_offset_x = 128 - skybox_offset_y = 128 - surface_color = "#E5A76E" - mountain_color = "#C48C65" - water_color = "#51323E" - ice_color = "#E5A76E" - atmosphere_color = "#54c0ce" - icon_state = "desert" - -/obj/effect/overmap/visitable/planet/tyr/get_skybox_representation() - var/image/tmp = ..() - tmp.pixel_x = skybox_offset_x - tmp.pixel_y = skybox_offset_y - return tmp - -/obj/effect/overmap/visitable/planet/tyr/Initialize() - atmosphere = new(CELL_VOLUME) // Necessary for the planet overmap icon to generate properly, but gas type does not seem to matter. - atmosphere.adjust_gas_temp("carbon_dioxide", TYR_MOL_CO2, TYR_AVG_TEMP) - atmosphere.adjust_gas_temp("nitrogen", TYR_MOL_N2, TYR_AVG_TEMP) - atmosphere.adjust_gas_temp("oxygen", TYR_MOL_O2, TYR_AVG_TEMP) - - . = ..() - - docking_codes = null - -//AREAS -/area/surface/tyr/town - name = "Lost Town" - icon_state = "green" - outdoors = OUTDOORS_NO - -/area/surface/tyr/medical_center - name = "Lost Toww Medical Center" - icon_state = "away" - outdoors = OUTDOORS_NO - -/area/surface/tyr/mining_depot - name = "Lost Town Mining Depot" - icon_state = "away" - outdoors = OUTDOORS_NO - -/area/surface/tyr/town_hall - name = "Lost Town Grand Hall" - icon_state = "away" - outdoors = OUTDOORS_NO - -/area/surface/tyr/huntery - name = "Lost Town Hunter Lodge" - icon_state = "away" - outdoors = OUTDOORS_NO - -/area/surface/tyr/northern_wilderness - name = "Tyr Wilderness" - icon_state = "green" - -/area/surface/tyr/southern_wilderness - name = "Tyr Wilderness" - icon_state = "green" - -/area/surface/tyr/tar_lake - name = "Tar Lake" - icon_state = "bluenew" - -/area/surface/tyr/ancient_ruins - name = "Ancient Ruins" - icon_state = "red" - requires_power = FALSE - outdoors = OUTDOORS_NO - -/area/surface/tyr/ancient_ruins/puzzlea - -/area/surface/tyr/ancient_ruins/puzzleb - -/area/surface/tyr/ancient_ruins/puzzlec - -/area/surface/tyr/ancient_ruins/puzzled - -/area/surface/tyr/north_caverns - name = "Tyr Caverns" - icon_state = "away" - outdoors = OUTDOORS_NO - -/area/surface/tyr/south_caverns - name = "Tyr Caverns" - icon_state = "away" - outdoors = OUTDOORS_NO - -/area/surface/tyr/eclipse_stronghold - name = "Base Neon - Hallways" - 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 - name = "Base Neon - Docks" - -/area/surface/tyr/eclipse_stronghold/sectorb - name = "Base Neon - Security" - -/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" - -/area/surface/tyr/precursorruins - icon_state = "bluenew" - requires_power = FALSE - outdoors = OUTDOORS_NO - -/area/surface/tyr/precursorruins/finale - name = "Training Final Assesment Chamber" - -/area/surface/tyr/precursorruins/southeast - name = "Relax Training Chamber" - -/area/surface/tyr/precursorruins/northwest - name = "Perception Training Chamber" - -/area/surface/tyr/precursorruins/cliffchamber - -/area/surface/tyr/precursorruins/airmaze - -/area/surface/tyr/precursorruins/spotthediffrence - -/turf/unsimulated/wall/planetary/normal/tyr - oxygen = TYR_MOL_O2 - nitrogen = TYR_MOL_N2 - temperature = TYR_AVG_TEMP - -/turf/simulated/mineral/light/tyr - oxygen = TYR_MOL_O2 - nitrogen = TYR_MOL_N2 - temperature = TYR_AVG_TEMP - outdoors = OUTDOORS_AREA - -/turf/simulated/floor/water/tyr - color = "#505564" - oxygen = TYR_MOL_O2 - nitrogen = TYR_MOL_N2 - temperature = TYR_AVG_TEMP - outdoors = OUTDOORS_AREA - -/turf/simulated/floor/outdoors/desert_planet/sand/tyr - oxygen = TYR_MOL_O2 - nitrogen = TYR_MOL_N2 - temperature = TYR_AVG_TEMP - outdoors = OUTDOORS_AREA - -/turf/simulated/floor/outdoors/desert_planet/deep_sand/tyr - oxygen = TYR_MOL_O2 - nitrogen = TYR_MOL_N2 - temperature = TYR_AVG_TEMP - outdoors = OUTDOORS_AREA - -/turf/simulated/floor/outdoors/desert_planet/grass/tyr - oxygen = TYR_MOL_O2 - nitrogen = TYR_MOL_N2 - temperature = TYR_AVG_TEMP - outdoors = OUTDOORS_AREA - -/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr - oxygen = TYR_MOL_O2 - nitrogen = TYR_MOL_N2 - temperature = TYR_AVG_TEMP - outdoors = OUTDOORS_AREA - -/turf/simulated/floor/outdoors/desert_planet/gravel/tyr - oxygen = TYR_MOL_O2 - nitrogen = TYR_MOL_N2 - temperature = TYR_AVG_TEMP - outdoors = OUTDOORS_AREA - -/turf/simulated/floor/outdoors/desert_planet/mud/tyr - oxygen = TYR_MOL_O2 - nitrogen = TYR_MOL_N2 - temperature = TYR_AVG_TEMP - outdoors = OUTDOORS_AREA diff --git a/maps/southern_sun/overmap/planets/tyr/tyr.dmm b/maps/southern_sun/overmap/planets/tyr/tyr.dmm deleted file mode 100644 index 554e8ef331..0000000000 --- a/maps/southern_sun/overmap/planets/tyr/tyr.dmm +++ /dev/null @@ -1,851 +0,0 @@ -"af" = (/turf/simulated/wall/solidrock,/area/surface/tyr/eclipse_stronghold/sectorfinale) -"aj" = (/obj/structure/prop/tyr_elevator,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/eclipse_stronghold/sectorfinale) -"al" = (/obj/effect/simple_portal/linked{portal_id = "supersecertbossportal"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/eclipse_stronghold/sectorfinale) -"am" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/precursorruins/airmaze) -"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/floor/alienplating,/area/surface/tyr/precursorruins/spotthediffrence) -"aw" = (/turf/simulated/floor/lava,/area/surface/tyr/precursorruins/spotthediffrence) -"aI" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/southeast) -"aN" = (/obj/machinery/door/blast/puzzle/tyrdoor/finale,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/eclipse_stronghold/sectorfinale) -"aS" = (/mob/living/simple_mob/mechanical/mecha/eclipse/darkmatter_assualt,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/eclipse_stronghold/sectorfinale) -"ba" = (/turf/simulated/floor/lava/harmless,/area/surface/tyr/precursorruins/spotthediffrence) -"bd" = (/turf/simulated/floor/reinforced/n20,/area/surface/tyr/precursorruins/airmaze) -"bz" = (/obj/structure/bed/pillowpile/orange,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"bE" = (/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/north_caverns) -"bG" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/spotthediffrence) -"bI" = (/turf/simulated/floor/reinforced/airless,/area/surface/tyr/precursorruins/airmaze) -"bK" = (/obj/structure/prop/alien/computer/camera{dir = 1},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"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) -"bZ" = (/obj/machinery/button/remote/blast_door{id = "tyrbonuspuzzlefour"},/obj/structure/table/gold,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/airmaze) -"ce" = (/obj/structure/table/standard,/obj/machinery/button/remote/blast_door{id = "tyrbonuspuzzlethree"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/spotthediffrence) -"ci" = (/turf/simulated/floor/reinforced/phoron{phoron = 2000},/area/surface/tyr/precursorruins/airmaze) -"cj" = (/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/north_caverns) -"co" = (/obj/structure/flora/tyr/flowers,/mob/living/simple_mob/humanoid/eclipse/solar/teslanoodle,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/north_caverns) -"cp" = (/mob/living/simple_mob/humanoid/eclipse/solar/nuclear,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/north_caverns) -"cr" = (/obj/structure/flora/tyr/flowers,/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/north_caverns) -"ct" = (/obj/structure/table/gold,/obj/machinery/button/remote/blast_door{id = "tyrbonuspuzzleone"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/southeast) -"cz" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/spotthediffrence) -"cG" = (/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/north_caverns) -"cP" = (/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/southern_wilderness) -"cQ" = (/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorc) -"cY" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/airmaze) -"cZ" = (/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"db" = (/obj/structure/bed/chair/bay/chair/padded/red/bignest,/obj/effect/landmark{name = "JoinLateTyrVillage"},/turf/simulated/floor,/area/surface/tyr/huntery) -"de" = (/obj/structure/bed/pillowpile/black,/obj/random/plushie,/obj/item/slow_sizegun,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"df" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/obj/machinery/door/airlock/silver,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"dh" = (/obj/machinery/cryopod/robot/door/gateway/quiet,/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/town) -"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) -"dk" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/ancient_ruins/puzzleb) -"dv" = (/obj/structure/bed/pillowpile/red,/obj/random/plushie,/obj/item/mindbinder,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"dw" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/airmaze) -"dH" = (/obj/effect/landmark{name = "JoinLateTyrVillage"},/turf/simulated/floor,/area/surface/tyr/huntery) -"dM" = (/obj/machinery/seed_extractor,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"dW" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/eclipse_stronghold/sectorfinale) -"dY" = (/obj/structure/flora/tyr/flowers,/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/north_caverns) -"eb" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/north_caverns) -"ee" = (/turf/simulated/mineral/light/tyr,/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) -"ei" = (/obj/structure/flora/tyr/flowers,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"ej" = (/obj/structure/cable/orange{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"ek" = (/obj/machinery/door/blast/regular{id = "tyrslimepit"},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"ey" = (/obj/machinery/light/small,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"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/door/blast/regular{id = "tyrslimepit"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"eM" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/sectorb) -"eU" = (/mob/living/simple_mob/slime/xenobio,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"eW" = (/obj/effect/simple_portal/linked{portal_id = "supersecertbossportal"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/northern_wilderness) -"eX" = (/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"eY" = (/mob/living/simple_mob/humanoid/eclipse/solar/radiation,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"eZ" = (/mob/living/simple_mob/slime/xenobio/sepia{faction = "eclipse"; unity = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"fe" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"fh" = (/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"fk" = (/obj/structure/table/marble,/obj/item/storage/box/monkeycubes,/obj/item/flashlight/slime,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"fp" = (/obj/structure/largecrate/animal/teppi,/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"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) -"fu" = (/obj/structure/prop/alien/computer/hybrid{dir = 1},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"fx" = (/obj/structure/table/gold,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"fI" = (/obj/machinery/smartfridge/secure/extract,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"fJ" = (/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold/sectorc) -"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/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"fP" = (/mob/living/simple_mob/humanoid/eclipse/solar/radiation,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold/sectorc) -"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) -"gf" = (/obj/structure/bed/pillowpile/black,/obj/random/plushie,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"gk" = (/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold/sectorc) -"gm" = (/obj/structure/bed/pillowpile/red,/obj/random/plushie,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"gt" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectora) -"gy" = (/obj/structure/prop/alien/computer,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"gA" = (/obj/machinery/processor,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"gH" = (/obj/structure/bed/pillowpile/yellow,/obj/random/plushie,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"gN" = (/obj/structure/toilet/prison,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"gX" = (/obj/structure/bed/pillowpile/black,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"ha" = (/obj/structure/bed/pillowpile/red,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"hd" = (/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/north_caverns) -"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) -"hv" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold/sectorc) -"hG" = (/obj/structure/bed/pillowpile/yellow,/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/machinery/recharge_station,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"hV" = (/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/obj/machinery/light/small,/turf/simulated/floor/bmarble,/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/sectorb) -"ik" = (/obj/structure/cable/orange{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"in" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/northwest) -"ir" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/surface/tyr/huntery) -"iv" = (/obj/structure/table/marble,/obj/machinery/button/remote/blast_door{id = "tyrslimepit"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"iA" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"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) -"iI" = (/obj/structure/grille,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"iJ" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"iS" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"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) -"iX" = (/obj/structure/mob_spawner/beetle_hill,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"iY" = (/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/wood,/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) -"jh" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"jk" = (/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/mob/living/simple_mob/humanoid/eclipse/solar/radiation,/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"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/sectorb) -"jp" = (/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectora) -"jt" = (/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/wmarble,/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) -"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" = (/mob/living/simple_mob/slime/xenobio/sepia{faction = "eclipse"; unity = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"jN" = (/obj/machinery/mech_recharger,/turf/simulated/floor/bmarble,/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) -"kh" = (/obj/machinery/door/blast/puzzle{id = "tyrpuzzlecheckB"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"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,/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/sectorb) -"kI" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"kJ" = (/obj/structure/table/marble,/obj/item/gun/energy/taser/xeno,/obj/item/melee/baton/slime,/turf/simulated/floor/wmarble,/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) -"kW" = (/obj/machinery/vending/hydroseeds,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"lf" = (/turf/simulated/wall/solidrock,/area/surface/tyr/south_caverns) -"lk" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"ll" = (/turf/simulated/shuttle/floor/alienplating,/area/surface/tyr/precursorruins/finale) -"lm" = (/obj/structure/table/marble,/obj/item/slime_scanner,/obj/item/reagent_containers/glass/beaker/bluespace,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"lr" = (/obj/structure/bed/pillowpile/orange,/obj/random/plushie,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"lC" = (/obj/structure/toilet/prison{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"lD" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/cliffchamber) -"lG" = (/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"lJ" = (/obj/structure/bed/pillowpile/green,/obj/random/plushie,/obj/item/bodysnatcher,/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/sectorb) -"lT" = (/obj/structure/curtain/black,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"me" = (/obj/structure/bed/pillowpile/teal,/obj/random/plushie,/obj/item/capture_crystal,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"mf" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = list(1,5)},/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,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"mo" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"ms" = (/obj/structure/bed/pillowpile/white,/obj/random/plushie,/obj/item/gun/energy/sizegun,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"mt" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"mu" = (/turf/simulated/floor/outdoors/ice/dark,/area/surface/tyr/precursorruins/southeast) -"mv" = (/obj/effect/zone_divider,/turf/simulated/mineral/light/tyr,/area/surface/tyr/south_caverns) -"mD" = (/obj/machinery/optable,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"mE" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"mF" = (/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"mI" = (/obj/structure/bed,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"mO" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = list(1,5)},/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,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"mR" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = list(1,5)},/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,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"mU" = (/turf/simulated/floor/reinforced,/area/surface/tyr/eclipse_stronghold/sectora) -"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/sectorb) -"nb" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"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) -"nd" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/sectora) -"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) -"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) -"nq" = (/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"ns" = (/obj/machinery/light/small,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"nv" = (/obj/structure/prop/alien/computer/camera,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"nx" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = list(1,5)},/obj/item/virusdish/random,/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,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"nz" = (/obj/machinery/light/small{dir = 1},/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) -"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) -"oc" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"od" = (/obj/structure/closet/crate,/obj/random/material/refined,/obj/random/material,/obj/random/material,/obj/random/material,/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"oh" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = list(1,5)},/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},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"oi" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"on" = (/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"oy" = (/obj/machinery/light/small,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"oz" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = list(1,5)},/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},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"oA" = (/obj/machinery/atmospherics/unary/engine{dir = 1},/turf/simulated/shuttle/plating/airless/carry,/area/surface/tyr/eclipse_stronghold/sectora) -"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/grille,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 4},/obj/structure/curtain,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"oR" = (/obj/structure/table/rack/shelf,/obj/item/pickaxe/diamonddrill/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzlea) -"oU" = (/obj/machinery/door/airlock/silver,/obj/structure/curtain,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"oV" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/wmarble,/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) -"pp" = (/obj/structure/grille,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 8},/obj/structure/curtain,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"ps" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/surface/tyr/huntery) -"pz" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"pA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 1},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/sectora) -"pK" = (/obj/structure/flora/tyr/flowers,/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/north_caverns) -"pN" = (/obj/random/multiple/corp_crate/no_weapons,/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"pR" = (/obj/structure/largecrate/animal/sheep,/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"pS" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"pU" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"pV" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/ancient_ruins) -"pW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 4},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/sectora) -"qk" = (/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"qn" = (/obj/structure/bed/chair/bay/chair/padded{dir = 1},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"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) -"qF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/sectora) -"qI" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/northern_wilderness) -"qQ" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = list(1,5)},/obj/item/virusdish/random,/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,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"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) -"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/sectorb) -"rd" = (/obj/effect/zone_divider,/turf/simulated/wall/r_lead,/area/surface/tyr/huntery) -"rp" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/town) -"rr" = (/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/wmarble,/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/sectorb) -"rH" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"rL" = (/obj/structure/bed,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"rU" = (/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/town) -"rV" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = list(1,5)},/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,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"rW" = (/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"rX" = (/obj/structure/bed/pillowpile,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"sa" = (/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"sb" = (/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"sh" = (/obj/machinery/mech_recharger,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"sm" = (/obj/structure/bed/pillowpile/green,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"so" = (/obj/effect/zone_divider,/turf/unsimulated/wall/planetary/normal/tyr,/area/surface/tyr/town) -"sp" = (/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"sA" = (/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"sC" = (/obj/machinery/biogenerator,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"sH" = (/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"sM" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"sQ" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"sZ" = (/obj/structure/largecrate/animal/catslug,/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"th" = (/obj/structure/closet/crate,/obj/random/material,/obj/random/material,/obj/random/material,/obj/structure/closet/crate,/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"tk" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = list(1,5)},/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,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"ts" = (/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"tv" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/lime/diagonal,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/hydro,/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) -"tJ" = (/obj/structure/table/rack/shelf,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzlea) -"tL" = (/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"tR" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"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/structure/closet/secure_closet/guncabinet{req_one_access = list(1,5)},/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,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"tY" = (/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"uh" = (/obj/item/stack/material/flint,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"uC" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/sectora) -"uF" = (/obj/structure/table/gold,/obj/item/prop/alien/prototype,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"uJ" = (/obj/structure/table/standard,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"uK" = (/obj/structure/cliff/automatic{dir = 2},/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"uO" = (/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/obj/machinery/light/small,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"uT" = (/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/north_caverns) -"uV" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold/sectorc) -"uX" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = list(1,5)},/obj/item/virusdish/random,/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},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"va" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = list(1,5)},/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},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"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/light/small{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"vf" = (/obj/item/shovel/spade,/obj/item/shovel/spade,/obj/structure/table/standard,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"vh" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/sectora) -"vJ" = (/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/north_caverns) -"vK" = (/obj/structure/inflatable,/turf/simulated/floor,/area/surface/tyr/huntery) -"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/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/sectora) -"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/machinery/door/airlock/silver,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"wb" = (/obj/structure/grille,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"wd" = (/turf/simulated/floor/lava/harmless,/area/surface/tyr/precursorruins/finale) -"wm" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"wu" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"wA" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"wC" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"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/machinery/door/airlock/alien/blue/locked,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/airmaze) -"wI" = (/obj/structure/largecrate/animal/bugsect,/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"wM" = (/obj/structure/bed/chair/bar_stool,/turf/simulated/floor/wmarble,/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) -"wW" = (/obj/structure/bed/chair/bar_stool,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"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) -"xi" = (/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/north_caverns) -"xm" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/precursorruins/southeast) -"xr" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"xu" = (/obj/machinery/door/blast/puzzle{id = "tyrpuzzlecheckB"},/turf/simulated/floor/lava/harmless,/area/surface/tyr/precursorruins/finale) -"xx" = (/obj/effect/simple_portal/linked{portal_id = "tyrpuzzleportalC"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/northwest) -"xD" = (/obj/structure/largecrate/birds,/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"xE" = (/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/town_hall) -"xJ" = (/obj/structure/bed/pillowpile/teal,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"xR" = (/obj/structure/bed/pillowpile/white,/turf/simulated/floor/wood,/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) -"yh" = (/obj/structure/closet/crate,/obj/random/material,/obj/random/material,/obj/random/material,/obj/random/material/precious,/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"yi" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = list(1,5)},/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,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"yo" = (/obj/machinery/computer/cryopod/gateway{pixel_x = 32},/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/town) -"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) -"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) -"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/machinery/light/small{dir = 8},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"yF" = (/obj/machinery/recharge_station,/turf/simulated/floor/wmarble,/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) -"yS" = (/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"yT" = (/obj/structure/grille,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"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/sectorb) -"zh" = (/obj/effect/zone_divider,/turf/unsimulated/wall/planetary/normal/tyr,/area/surface/tyr/northern_wilderness) -"zi" = (/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"zl" = (/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/area/surface/tyr/eclipse_stronghold/sectore) -"zq" = (/obj/machinery/door/blast/gate,/turf/simulated/floor/wmarble,/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) -"zA" = (/mob/living/simple_mob/mechanical/mecha/eclipse/antipersonal_unit,/turf/simulated/floor/bmarble,/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) -"zJ" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"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) -"Ac" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = list(1,5)},/obj/item/virusdish/random,/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,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"Ae" = (/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"Ao" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"As" = (/obj/structure/bed/pillowpile,/obj/random/plushie,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"Au" = (/obj/structure/bed/pillowpile/green,/obj/random/plushie,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"AJ" = (/obj/structure/table/standard,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"AO" = (/obj/structure/bed/pillowpile/teal,/obj/random/plushie,/turf/simulated/floor/wood,/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/sectorb) -"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) -"Ba" = (/obj/machinery/door/blast/gate,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Bb" = (/obj/structure/bed/pillowpile/white,/obj/random/plushie,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"Bd" = (/obj/random/obstruction,/turf/simulated/floor/wmarble,/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) -"By" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"BC" = (/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckA"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzled) -"BE" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold/sectorc) -"BF" = (/obj/structure/largecrate/animal/pred,/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"BI" = (/obj/machinery/light/small{dir = 8},/obj/structure/table/standard,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"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) -"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/grille,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Ce" = (/obj/structure/grille,/obj/structure/window/plastitanium,/obj/structure/window/plastitanium{dir = 1},/obj/structure/window/plastitanium{dir = 8},/turf/simulated/floor/bmarble,/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) -"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) -"Cq" = (/obj/machinery/light/small{dir = 4},/obj/structure/table/standard,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"Cr" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/north_caverns) -"Cs" = (/obj/structure/closet/secure_closet/guncabinet{req_one_access = list(1,5)},/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,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"Cu" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"CD" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"CH" = (/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"CK" = (/obj/structure/table/standard,/obj/item/stack/cable_coil/maroon,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"CW" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/eclipse_stronghold/sectorfinale) -"Db" = (/obj/effect/overmap/visitable/planet/tyr,/turf/simulated/wall/solidrock,/area/surface/tyr/south_caverns) -"Dh" = (/mob/living/simple_mob/humanoid/eclipse/lunar/titanhunter,/turf/simulated/floor/bmarble,/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) -"Dm" = (/obj/structure/bed/chair/bar_stool,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"Dp" = (/obj/structure/toilet/prison{dir = 8},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"Dq" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/southern_wilderness) -"Dz" = (/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) -"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) -"DE" = (/obj/structure/table/rack/shelf,/obj/item/reagent_containers/food/snacks/phorondragonmeat,/obj/item/reagent_containers/food/snacks/phorondragonmeat,/obj/item/reagent_containers/food/snacks/phorondragonmeat,/obj/item/reagent_containers/food/snacks/phorondragonmeat,/obj/item/reagent_containers/food/snacks/phorondragonmeat,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"DI" = (/obj/structure/toilet/prison{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"DM" = (/mob/living/simple_mob/humanoid/eclipse/solar/froststalker,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"DO" = (/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/southern_wilderness) -"DW" = (/obj/machinery/door/blast/puzzle{id = "tyrgroupcheckC"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzled) -"DX" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"DY" = (/mob/living/simple_mob/vore/spacecritter/solarray/galaxyray,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"Ed" = (/mob/living/simple_mob/vore/spacecritter/livingice/iceberg,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"Ei" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"Eo" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/ancient_ruins/puzzled) -"Ep" = (/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/obj/machinery/light/small,/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"EA" = (/obj/structure/table/gold,/obj/machinery/button/remote/blast_door{id = "tyrgroupcheckB"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"EH" = (/obj/structure/closet/crate,/obj/random/material,/obj/random/material,/obj/random/material,/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"ET" = (/obj/machinery/light/small,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"EV" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/southern_wilderness) -"EX" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium,/obj/structure/curtain,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"Fd" = (/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/sectora) -"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/rack/shelf,/obj/item/reagent_containers/food/snacks/meat/worm,/obj/item/reagent_containers/food/snacks/meat/worm,/obj/item/reagent_containers/food/snacks/meat/worm,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"FE" = (/obj/structure/table/standard,/obj/item/storage/toolbox/syndicate/powertools,/turf/simulated/floor/wmarble,/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) -"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) -"FV" = (/turf/simulated/floor/lava/harmless,/area/surface/tyr/eclipse_stronghold/sectorfinale) -"FW" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 4},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"Ge" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Gk" = (/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Gv" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/town) -"Gy" = (/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"GL" = (/obj/structure/flora/tyr/lilly,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/town) -"GR" = (/obj/structure/bookcase,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"GW" = (/obj/structure/prop/alien/power,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/southeast) -"Hf" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/town) -"Hp" = (/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/sectora) -"Ht" = (/obj/machinery/door/airlock/hatch,/obj/structure/curtain,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"Hu" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/ancient_ruins/puzzlec) -"HK" = (/obj/machinery/button/remote/blast_door{id = "tyrbonuspuzzletwo"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/cliffchamber) -"Ii" = (/turf/simulated/wall/wood,/area/surface/tyr/town) -"Ik" = (/obj/structure/prop/alien/computer{dir = 4},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/southeast) -"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) -"It" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"Iu" = (/obj/structure/table/standard,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"IJ" = (/obj/machinery/power/generator{anchored = 1},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"IK" = (/obj/structure/inflatable/door,/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/mining_depot) -"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) -"Je" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium{dir = 1},/obj/structure/curtain,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"Jg" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 8},/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"Jr" = (/obj/structure/flora/tyr/flowers,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/north_caverns) -"Ju" = (/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/north_caverns) -"JH" = (/obj/machinery/light/small,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"JJ" = (/obj/effect/forcefield/mime,/turf/simulated/shuttle/floor/alienplating/blue,/area/surface/tyr/precursorruins/northwest) -"JR" = (/obj/structure/table/gold,/obj/machinery/button/remote/blast_door{id = "tyrgroupcheckD"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"JV" = (/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"Kw" = (/obj/machinery/clonepod,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"KG" = (/obj/machinery/computer/cloning,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"KU" = (/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectore) -"La" = (/obj/structure/cable/orange,/obj/item/stack/material/tritium{amount = 50},/obj/structure/closet,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"Lb" = (/obj/machinery/light/small,/turf/simulated/floor/wmarble,/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) -"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) -"Ly" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"LB" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/northern_wilderness) -"LI" = (/obj/structure/largecrate/tits,/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"LU" = (/mob/living/simple_mob/animal/tyr/mineral_ants/queen,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"LW" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle,/turf/simulated/floor/concrete,/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/power/port_gen/pacman/mrs,/obj/structure/cable/orange,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"LZ" = (/obj/structure/bed/chair/bay/chair/padded,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"Me" = (/turf/simulated/wall/r_concrete,/area/surface/tyr/eclipse_stronghold/sectorc) -"Mi" = (/turf/unsimulated/wall/planetary/normal/tyr,/area/surface/tyr/northern_wilderness) -"Mn" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzlec) -"Mo" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/wall/plastihull,/area/surface/tyr/eclipse_stronghold/sectora) -"My" = (/mob/living/simple_mob/humanoid/eclipse/solar/radiation,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Mz" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/precursorruins/finale) -"MB" = (/obj/structure/bed/chair/bay/chair/padded,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"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) -"MP" = (/mob/living/simple_mob/mechanical/mecha/eclipse/mining_guard,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"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) -"MZ" = (/obj/item/stack/material/flint,/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/town) -"Na" = (/obj/structure/table/rack/shelf,/obj/item/reagent_containers/food/snacks/meat/worm,/obj/item/reagent_containers/food/snacks/meat/worm,/obj/item/reagent_containers/food/snacks/meat/worm,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Nb" = (/obj/machinery/optable,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"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) -"Ni" = (/obj/machinery/appliance/cooker/oven,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"Nm" = (/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"Nn" = (/obj/effect/zone_divider,/obj/effect/zone_divider,/turf/simulated/mineral/light/tyr,/area/surface/tyr/south_caverns) -"Nq" = (/mob/living/simple_mob/humanoid/eclipse/solar/plant,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"Ns" = (/obj/structure/bookcase,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"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) -"Nx" = (/obj/structure/table/rack/shelf,/obj/item/tool/wrench/hybrid/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins) -"NA" = (/obj/structure/bookcase,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"NB" = (/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectora) -"NK" = (/turf/unsimulated/wall/planetary/normal/tyr,/area/surface/tyr/town) -"NL" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"NQ" = (/obj/structure/table/rack/shelf,/obj/item/cell/device/weapon/empproof,/obj/item/cell/device/weapon/empproof,/obj/item/cell/device/weapon/empproof,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"NY" = (/obj/structure/flora/tyr/stonetree,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"Ob" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/solar/radiation,/turf/simulated/floor/concrete,/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) -"OF" = (/turf/simulated/floor/outdoors/desert_planet/gravel/tyr,/area/surface/tyr/mining_depot) -"OQ" = (/turf/simulated/mineral/light/tyr,/area/surface/tyr/south_caverns) -"OR" = (/obj/structure/grille,/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"OU" = (/obj/structure/table/standard,/obj/item/storage/firstaid/surgery,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"OV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/zone_divider,/turf/simulated/floor,/area/surface/tyr/huntery) -"OW" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 4},/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"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) -"Pq" = (/turf/simulated/wall/stonelogs,/area/surface/tyr/town_hall) -"Pu" = (/obj/structure/grille,/obj/structure/window/plastitanium{dir = 8},/obj/structure/window/plastitanium,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectorc) -"Py" = (/turf/simulated/wall/r_lead,/area/surface/tyr/huntery) -"PE" = (/obj/structure/table/standard,/obj/machinery/chemical_dispenser/bar_alc/full,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/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) -"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) -"PZ" = (/obj/structure/closet/crate,/obj/item/holosign_creator/forcewand,/obj/item/holosign_creator/forcewand,/obj/item/holosign_creator/smokewand,/obj/item/holosign_creator/smokewand,/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"Qj" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"Qq" = (/obj/structure/flora/tyr/lilly,/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) -"QI" = (/mob/living/simple_mob/animal/tyr/mineral_ants/builder,/turf/simulated/floor/outdoors/desert_planet/deep_grass/tyr,/area/surface/tyr/south_caverns) -"QJ" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"QK" = (/obj/structure/table/rack/shelf,/obj/item/tool/wirecutters/hybrid/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins) -"QM" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold/sectorc) -"QO" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = -32; pixel_y = -5},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"QP" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/tiled/techmaint,/area/surface/tyr/eclipse_stronghold/sectorc) -"QU" = (/obj/structure/table/standard,/obj/item/surgical/retractor,/obj/item/stack/medical/advanced/bruise_pack,/turf/simulated/floor,/area/surface/tyr/huntery) -"Rd" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/precursorruins/spotthediffrence) -"Rf" = (/obj/structure/largecrate/donksoftvendor,/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"Rj" = (/obj/effect/zone_divider,/turf/simulated/wall/solidrock,/area/surface/tyr/south_caverns) -"Rn" = (/obj/machinery/light/small,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"Rp" = (/obj/machinery/appliance/cooker/grill,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"Rq" = (/obj/structure/bed/chair/bar_stool,/mob/living/simple_mob/humanoid/eclipse/lunar/experimenter,/turf/simulated/floor/concrete,/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/structure/bed/chair/bay/chair/padded{dir = 1},/obj/machinery/light/small,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"RC" = (/obj/machinery/power/rtg/fake_reactor,/obj/structure/cable,/turf/simulated/floor,/area/surface/tyr/huntery) -"RE" = (/obj/structure/table/standard,/obj/item/storage/toolbox/brass,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"RJ" = (/obj/structure/table/standard,/obj/item/stack/cable_coil/beige,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"RN" = (/obj/structure/table/wooden_reinforced,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/town_hall) -"RQ" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"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/item/storage/firstaid/experimental,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"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) -"So" = (/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"Sp" = (/obj/structure/table/standard,/obj/item/storage/toolbox/hydro,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"SD" = (/turf/simulated/shuttle/wall/alien/blue{density = 0},/area/surface/tyr/precursorruins/northwest) -"SH" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzleb) -"SI" = (/obj/structure/largecrate/animal/jerboa,/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"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) -"Tb" = (/obj/machinery/recharge_station,/turf/simulated/floor/bmarble,/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) -"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) -"TC" = (/obj/machinery/door/airlock/silver,/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/floor/wmarble,/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) -"TF" = (/obj/structure/table/standard,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"TG" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/northwest) -"TO" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"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) -"Uj" = (/obj/structure/table/rack/shelf,/obj/item/weldingtool/experimental/hybrid/alien,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins) -"Um" = (/obj/structure/largecrate/piano,/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"Uo" = (/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/northern_wilderness) -"UC" = (/obj/structure/table/rack/shelf,/obj/item/ammo_casing/microbattery/medical/shrink,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzlec) -"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) -"UI" = (/obj/random/trash,/turf/simulated/floor,/area/surface/tyr/eclipse_stronghold/sectore) -"UJ" = (/obj/structure/table/standard,/obj/item/storage/firstaid/surgery,/turf/simulated/floor/bmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"UK" = (/turf/simulated/shuttle/wall/alien/orange,/area/surface/tyr/ancient_ruins/puzzlea) -"UQ" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/surface/tyr/huntery) -"Vb" = (/obj/structure/morgue,/turf/simulated/floor/bmarble,/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/machinery/power/apc/high{dir = 1; pixel_x = null; pixel_y = 24},/obj/structure/cable/orange{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"Vr" = (/turf/simulated/wall/solidrock,/area/surface/tyr/north_caverns) -"Vw" = (/obj/machinery/computer,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"Vy" = (/obj/structure/prop/alien/power,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/precursorruins/finale) -"Vz" = (/obj/structure/table/standard,/obj/item/storage/toolbox/emergency,/turf/simulated/floor/wmarble,/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) -"VJ" = (/obj/structure/fuel_port/heavy{dir = 41; pixel_y = 24},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"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/tyrlead,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"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) -"Wb" = (/obj/structure/cable/orange{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"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) -"Wp" = (/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins) -"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) -"WI" = (/obj/machinery/door/blast/puzzle{id = "tyrpuzzlecheckA"},/turf/simulated/shuttle/floor/alienplating,/area/surface/tyr/precursorruins/finale) -"WK" = (/obj/structure/table/standard,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectorb) -"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) -"WW" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"WZ" = (/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/town) -"Xf" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"Xn" = (/obj/machinery/seed_storage,/obj/effect/floor_decal/corner/lime/diagonal,/turf/simulated/floor/tiled/hydro,/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) -"Xu" = (/mob/living/simple_mob/humanoid/eclipse/solar/disablernoodle,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectora) -"Xy" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 1},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"Xz" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"XC" = (/obj/structure/largecrate/animal/wolfgirl,/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"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) -"Yh" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/machinery/computer,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"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/sectorb) -"Yq" = (/obj/structure/fans/hardlight/colorable/abductor{color = "#FF3300"},/obj/machinery/door/blast/tyremittercheck,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/northern_wilderness) -"Yu" = (/mob/living/simple_mob/mechanical/mecha/eclipse/precursor_boss,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/eclipse_stronghold/sectorfinale) -"Yv" = (/obj/effect/floor_decal/corner/pink,/obj/effect/floor_decal/corner/orange{dir = 1},/turf/simulated/floor/tiled/red,/area/surface/tyr/eclipse_stronghold/sectora) -"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) -"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" = (/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"YN" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/wood,/area/surface/tyr/eclipse_stronghold/sectora) -"YP" = (/obj/structure/bed/chair/bay/chair/padded/red/bignest,/turf/simulated/floor/wood/alt/panel/turfpack,/area/surface/tyr/town_hall) -"YZ" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/desert_planet/sand/tyr,/area/surface/tyr/northern_wilderness) -"Za" = (/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm,/turf/simulated/floor/concrete,/area/surface/tyr/eclipse_stronghold/sectore) -"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) -"Zc" = (/obj/machinery/optable,/turf/simulated/floor/wmarble,/area/surface/tyr/eclipse_stronghold/sectore) -"Ze" = (/obj/structure/table/rack/shelf,/turf/simulated/shuttle/floor/alien,/area/surface/tyr/ancient_ruins/puzzleb) -"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) -"Zn" = (/obj/structure/morgue,/turf/simulated/floor/wmarble,/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) -"Zy" = (/turf/simulated/mineral/light/tyr,/area/surface/tyr/north_caverns) -"ZJ" = (/obj/machinery/appliance/cooker/fryer,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled/white,/area/surface/tyr/eclipse_stronghold/sectore) -"ZM" = (/obj/structure/table/standard,/obj/random/maintenance/foodstuff,/obj/random/maintenance/foodstuff,/mob/living/simple_mob/humanoid/eclipse/lunar/abyssdiver,/turf/simulated/floor/concrete,/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) - -(1,1,1) = {" -VrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrQrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrQrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrafafafafafafafVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrQrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrQrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYwYwYwYwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYajCWajCWajwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYajCWCWCWCWCWajwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYCWCWCWCWCWwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYajCWCWCWCWCWajwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYCWCWCWCWCWwYwYZyZyZyZyZyZyZyRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYwYaNaNaNwYwYwYZyZyZyZyZyZyZyRdasasawawawczczbababaczczbababaczczRdZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYFVCWCWaSCWCWFVwYwYZyZyZyZyZyZyRdasasawawawczczbababaczczbababaczczRdZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyamamamamamamamamamamamamamamamamZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyRdczczbababaasasawawawczczbababaczczRdZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyamcYwHciwHcYwHcYcYwHbdwHcYwHcYamZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYCWCWCWCWCWCWCWCWCWwYwYZyZyZyZyZyRdczczbababaasasawawawasasawawawczczRdZyZyZyZyZyZyZyZyZyxixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyamwHamwHamwHamcYcYamwHamwHamwHamZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYwYwYwYwYwYwYwYwYwYwYwYZyZyZyZywYCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyRdasasawawawczczbababaasasawawawczczRdZyZyZyZyZyZyZyxixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyamciwHcYwHcYamcYcYamcYwHciwHcYamZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYajajwYajajwYajajwYajajwYwYwYwYwYwYCWCWFVCWCWCWCWCWFVCWCWwYwYZyZyZyZyRdasasawawawczczbababaczczbababaczczRdZyZyZyZyxibExixixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyamwHamwHamwHamcYcYamwHamwHamwHamZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYwYwYwYwYaNaNwYaNaNwYaNaNwYaNaNwYwYwYwYwYCWCWCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyRdRdasasawawawczczbababaczczbababaczczbGxixixixixixixixixixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyamcYwHbIwHciambZbZamciwHcYwHbIamZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWwYCWCWCWCWCWCWCWCWCWCWCWCWCWaNajwYwYCWCWCWCWCWCWCWCWCWCWCWCWCWwYwYZyZyRdceczczbababaasasawawawczczbababaczczbGxixixixixicjxixixixixixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyamwHamwHamwHamamamamwHamwHamwHamZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWalCWwYCWCWCWCWCWCWCWCWCWCWCWCWCWaNajwYFVCWCWCWFVCWCWCWCWCWFVCWCWCWFVwYZyZyRdRdczczbababaasasawawawczczbababaczczbGxixixixixixixixiZyZyZyZyZyxixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyambdwHcYwHcYwHdwdwwHcYwHcYwHciamZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWwYCWCWCWCWCWCWCWCWCWCWCWCWCWwYwYwYCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyRdasasawawawczczbababaczczbababaczczRdZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxiZyxixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyamamamamamamamdwdwamamamamamamamZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWwYCWCWCWwYCWCWCWCWCWwYCWCWCWaNajwYCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyRdasasawawawczczbababaasasawawawczczRdZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyamdwdwamZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWwYCWCWCWCWCWCWCWCWCWCWCWCWCWaNajwYFVCWCWCWFVCWCWCWCWCWFVCWCWCWFVwYZyZyZyRdczczbababaasasawawawasasawawawczczRdZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixiJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWwYCWCWCWCWCWCWYuCWCWCWCWCWCWwYwYwYFVCWCWCWFVCWCWCWCWCWFVCWCWCWFVwYZyZyZyRdczczbababaasasawawawczczbababaczczRdZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixiJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWwYCWCWCWCWCWCWCWCWCWCWCWCWCWaNajwYCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyRdasasawawawczczbababaczczbababaczczRdZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixiJrJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWwYCWCWCWwYCWCWCWCWCWwYCWCWCWaNajwYCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyRdasasawawawczczbababaczczbababaczczRdZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyJrJrJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWwYwYwYFVCWCWCWFVCWCWCWCWCWFVCWCWCWFVwYZyZyZyRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdRdZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyJrJrJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixiZyxiZyZyxixixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWaNajwYwYCWCWCWCWCWCWCWCWCWCWCWCWCWwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyJrJrJrcoJrJrJrZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixiZyZyZyZyZyZyZyZyZyxixixixixixixixixixiZyxiZyxiZyZyJrZyZyZyJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWCWaNajwYwYCWCWCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyJrJrJrJrJrJrZyZyZyZyZyZyZyZyZyxixixixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixiZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixixixiJrJrJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYwYwYwYwYaNaNwYaNaNwYaNaNwYaNaNwYwYwYwYwYwYCWCWFVCWCWCWCWCWFVCWCWwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyJrJrJrJrJrJrJrJrJrJrJrJrZyZyxixixixixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixicpxixixixixixixiJrJrJrJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYajajwYajajwYajajwYajajwYwYwYwYZywYCWCWCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxiJrJrJrJrJrJrJrJrJrJrJrJrxixixixixixixixixixixiZyxiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyxixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixiJrJrJrJrJrJrJrJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYwYwYwYwYwYwYwYwYwYwYwYZyZyZyZywYwYCWCWCWCWCWCWCWCWCWwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixiJrJrJrJrJrJrZyJrZyJrJrxixixixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyxixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixiJrJrJrJrJrJrJrJrJrJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWCWCWCWCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixiJrJrJrZyZyZyZyZyZyZyxixixixiZyxiZyxiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyxixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixiJrJrJrJrJrJrJrJrJrcrJrJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYFVCWCWCWCWCWFVwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixiJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyxixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxiZyZyZyZyJrJrZyJrJrJrJrJrJrJrxixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYwYwYiViViVwYwYwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixiZyxixiZyxixixixixiZyxiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyJrJrxixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyJrJrJrJrJrxixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixiZyxiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyJrJrJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyJrJrJrxixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTtTtTtTtTtTtTtTtTtTtTtTtTZyZyZyZyZyZyZyZyZyZyZyZywYCWCWCWwYZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixicGxixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyJrJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyJrxixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFjBGejBmFjBmFnzmFjBmFtTZyZyZyZyZyZyZyZyZyZyZyZywYdWdWdWwYZyZyZyZyZyZyZyZyZytTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTZyZyZyxixixixixixixixiZyxiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyJrJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBmFjBmFjBmFjBmFjBmFjBtTZyZyZyZyZyZyZyZyeMeMeMeMeMCHtLCHeMeMeMeMeMZyZyZyZyZytTgfgfdegftTlrlrlrlrtTgmdvgmgmtTgHgHgHgHtTZyZyxixixixiZyZyxixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixiZyZyxixiZyZyxiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFjBmFjBmFjBmFjBmFjBmFtTZyZyZyZyZytTeMeMeMgNCHrLeMtLCHtLeMrLCHgNeMeMeMeMZyZytTgfgfgfgftTlrlrlrlrtTgmgmgmgmtTgHgHgHgHtTZyZyxixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixixixixixixiZyxiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTtTtTtTtTtTtTtTmFjBmFtTtTtTtTtToVtTtToVtTtTtTtTeMeMeMtLCHTOCHtLCHeMCHtLCHeMCHtLCHTOCHtLeMeMtTtTgXKUKUgXtTbzKUKUbztThaKUKUhatThGKUKUhGtTZyxixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyJrdYJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixiebxixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFjBGejBrrjBmFjBmFjBtTjBmFjBekjBmFjBmFeAmFjBmFeMeMtLCHtLhWyTrGyTeMtRCHpUeMyTrGyTjntLCHtLeMtTtTgXKUKUgXtTbzKUKUbztThaKUKUhatThGKUKUhGtTxixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyJrJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixixixixixixixixixixixixiZyZyxiZyZyZyZyZyZyZyZyZyZyZyZyZyZytTyNjBmFjBmFjBmFjBmFjBmFtTyNeUmFeAmFeXmFeYekjBeZiSeMeMtYtLCHTOCHtLkEeMCHtLCHeMlCtLCHTOCHtLtYeMtTtTgXKUKUgXtTbzKUKUbztThaKUKUhatThGKUKUhGtTxixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyJrJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixixixixixixixixixixixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZytTjBmFjBmFjBLbjBmFjBmFjBtTjBmFjBekjBmFjBmFeAmFjBmFeMeMtRCHlGlLtLCHtLeMtLCHtLeMtLCHtLYllGCHpUeMtTtTtTlTlTtTtTtTlTlTtTtTtTlTlTtTtTtTlTlTtTtTtTdftTMeMeMeMeMeMeMeMeMeMeMeMeMeMeMeMeMeMeMeMeMeMendndndndndndndndndndndndndndndndndndndndndndndndndndndndndndndndndndndndndndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyJrJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixiZyZyZyZyxixixixixixixixixixixixixiZyZyZyZyZyZyZyZyZytTtTtTtTtTzqBazqtTtTtTtTtTyNjBzJtTtTtTtTtTfkjBmFfItTtTtTtTeMmfCHtLCHmECHtLmIeMCHtLCHeMmItLCHmECHtLCHmOtTtTKUKUKUKUocKUKUKUKUocKUKUKUKUocKUKUKUKUlTmFjBmFMecQcQMefJfJfJfJuVfJfJfJuVfJfJfJfJMecQcQcQMeYvYvYvsaYvYvyhYvYvYvYvsaYvYvYvYvYvYvYvsaYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyJrJrJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixiZyZyZyZyZyZyxixixixixixixixixixixixiZyxiZyZyZyZyZyZyZytTjBmFnzmFjBmFjBmFnzmFjBtTjBmFjBtTmFjBmFekjBmFjBmFeAmFjBmFeMmRtLCHtLmZyTrGyTeMtRCHpUeMyTrGyTnbtLCHtLnxtTtTKUKUKUKUETKUKUKUKUETKUKUKUKUETKUKUKUKUlTjBmFjBMecQMefJfJfJfJfJfJfJfJfJfJfJfJfJfJfJMecQcQMeYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvodYvYvYvYvmUmUmUmUmUmUmUmUmUmUmUmUmUmUmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyJrJrJrJrxixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixiZyZyZyZyZyZyZyZyZyZyxixixixixixiZyxixixixixiZyZyZyZyZyZyZytTmFjBmFjBmFjBmFjBmFjBmFtTmFjBmFtTiJeZjBekmFjBmFfMekjBeZiSeMohoitLCHmECHtLmIeMCHtLCHeMmItLCHmECHtLonoztTtTtTlTlTtTtTtTlTlTtTtTtTlTlTtTtTtTlTlTtTtTmFjBmFMeMefJfPfJfJMeMeMeoQoUppMeMeMefJfJfJgkMecQMeYvyhYvYvYvYvYvYvpNYvYvYvYvpRYvYvYvYvYvYvYvmUmUmUmUmUFdpSpSpSFdmUmUmUmUmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyJrJrxixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixiZyxiZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyxixixixiZyZyZyxixixiZyZyZyZyZyZyZyZytTjBmFjBmFjBmFjBmFjBmFjBtTjBmFjBtTmFjBmFekjBmFjBmFeAmFjBmFeMqQtLCHtLqXtLCHtLeMtLsHtLeMtLCHtLrHtLCHtLrVtTtTrXKUKUrXtTsmKUKUsmtTxJKUKUxJtTxRKUKUxRtTjBmFjBMefJfJfJfJMeMespsMspsMspsMspMeMefJfJfJfJMeMeSoYvYvYvYvsZYvYvYvYvyhYvYvYvYvYvthYvYvYvYvmUmUmUmUFdFdVwVwVwFdFdmUmUmUmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyxixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixiZyZyZyZyZyZyZyxixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixiZyZyZyxixixiZyZyZyZyZyZyZytTmFjBmFJHmFjBmFJHmFjBmFtTmFjBmFtTtTtTtTtTgAjBmFivtTtTtTtTeMtkCHtLCHTOCHtLkEeMGytLGyeMlCtLCHTOCHtLCHtXtTtTrXKUKUrXtTsmKUiYsmtTxJKUKUxJtTxRKUKUxRtTyNjBzJMefJfJfJMeMespspspspspspspspspMeMefJfJfJfJMeYvYvYvpNYvYvYvYvYvYvYvYvYvYvodYvYvYvYvYvYvmUmUmUFdFduJqnqnqnuJFdFdmUmUmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyxixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixiZyZyZyZyZyZyJrJrxiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixiZyZyZyxixiZyZyZyZyZyZyZyZytTiJmFiStTjBmFiStTiJmFiStTjBmFjBtTjBmFjBekjBmFjBmFeAmFjBmFeMuXtLCHtLhWyTrGyTeMtLsHtLeMyTrGyTjntLCHtLvatTtTrXKUKUrXtTsmKUKUsmtTxJKUKUxJtTxRKUKUxRtTjBmFjBMefJfJMeMewbwbwuspspspspspwAwCwCMeMefJfJfJMeYvYvYvYvYvYvYvYvwIYvYvYvpNYvYvYvxDYvYvYvYvmUmUFdFdVwNmNmNmNmNmVwFdFdmUmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyxixixixixiZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixiJrJrJrJrJrJrJrJrxiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixiZyZyxixixixiZyZyZyZyZyZyZytTmFjBmFnzmFjBmFnzmFjBmFtTjtjBmFtTyNjLmFeAmFeXmFjBekjBeZiSeMyiCHtLCHTOCHtLCHeMfetLQJeMCHtLCHTOCHtLCHActTtTAsAsAsAstTAuAuAuAutTAOAOAOAOtTBbBbBbBbtTmFjBmFMeBEfJMespspspByspspspspspByspspspMefJfJhvMeYvYvYvYvYvBFYvodYvYvYvYvYvYvYvYvYvYvYvYvYvmUmUFdBINmNmNmNmNmNmNmCqFdmUmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyxixixixixiZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixiJrJrJrJrJrJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixiZyZyZyZyZyZyZytTjBmFjBmFjBmFjBmFjBmFjBtTjBmFjBtTjBmFjBekjBkJlmmFeAmFjBmFeMCstLCHfhzerLCHDpeMtLCHtLeMDICHrLYlpzCHtLmRtTtTAsAsAsAstTAuAulJAutTAOmeAOAOtTBbBbmsBbtTjBnqjBMefJfJMeDXDYspByspspspspspByspEdEiMefJfJfJMeSoYvEHYvYvYvYvYvYvYvYvYvYvYvodYvYvYvyhYvYvmUmUFduJNmeyNmNmNmeyNmuJFdmUmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyxixixixiZyZyZyZyZyZyZyZyZyZyZyxixixixihdxixixixixiJrJrJrJrJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixiZyZyZyZyZyZyZytTmFjBmFjBmFjBmFjBmFjBmFtTyNjBzJtTtTtTtTtTtTtTtTtTtTtTtTtTeMeMsQeMeMeMeMeMeMeMCHtLCHeMeMeMeMeMeMeMsQeMtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTmFjBmFMefJfJEXspspspByspspFWspspByspspspEXfJfJfJMeYvYvYvYvYvYvodYvYvpNxDYvYvYvYvYvYvYvYvYvYvmUFdFdFdFdFdFdpSFdFdFdFdFdFdmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixiZyZyZyZyZyZyZyZyZyxixixixixixixixixiJrJrJrJrJrJrpKJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixiZyZyZyZyZyZyZyZytTjBmFjBLbjBmFjBLbjBmFjBtTjBmFjBmFjBmFnzmFjBmFqkGejBmFjBmFvdCHtLCHtLCHtLiAlGCHtLCHtLCHJViAtLCHtLCHtLCHjBmFnzmFjBmFjBmFjBmFjBGejBmFjBmFjBGejBrWjBmFjBmFjBMefJfJHtspDYspByspspIJspspByspEdspHtfJfJfJMeYvBFsbYvYvYvYvYvYvYvYvYvyhYvYvsZYvYvYvYvYvmUpSNmNmNmNmFdNmNmNmNmNmNmpSmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyxixiuTxixiZyZyZyZyZyZyZyZyxixixixiZyZyZyxiZyxiJrJrJrJrJrJrJrJrJrJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixiZyZyZyZyZyZyZyZytTyNjBzJtTmFjBzJtTyNjBzJtTmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBCHtLCHtLCHtLCHtLCHtLCHtLCHtLCHtLCHtLCHtLCHtLmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFMefJfJJespspspByspspJgspspByspspspJefJfJfJMeYvYvYvodYvpNYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvmUpSNmNmNmMPFdNmNmNmNmNmNmpSmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixiZyZyZyZyZyZyxixixixiZyZyZyZyZyZyZyJrZyJrJrJrJrJrJrxiJrJrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixiZyZyZyZyZyZyZyZyZytTjBmFjBGejBmFjBGejBmFjBtTjBmFjBmFjBtsjBmFjBmFjBmFjBmFjBmFtLCHoyCHtLuOtLCHtLRntLCHtLRntLCHtLATtLCHoyCHjBmFJHmFjBmFjBmFjBmFjBLbjBmFjBmFjBLbjBmFjBmFjBmFjBMefJfJMeDXDYspByspspspspspByspEdEiMefJfJfJMeYvYvYvYvYvYvYvYvYvLIYvYvYvYvYvYvYvxDpNYvYvmUFdFdFdFdNmFdFdFdFdFdFdFdFdmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixiZyZyZyZyxixixixixiZyZyZyZyZyZyZyZyZyZyJrJrJrJrJrJrJrxixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixiZyZyZyZyZyZyZyZyZyZytTmFjBmFjBmFjBmFjBmFjBmFtTmFjBmFtTmFjBmFtTtTmttTtTtTtTtTmteMeMeMtLCHeMeMeMeMeMeMeMeMeMeMeMeMeMCHtLeMeMtTtTtTtTtTtTtTvXtTtTtTtTtTtTtTtTtTtTvXtTtTtTmFjBzJMeBEfJMespspspByspspspspspByspspspMefJfJhvMeYvyhYvpNxDYvYvyhYvYvYvpNYvYvYvEHYvYvYvYvYvmUFdLZLZMBNmLZMBLZLZMBLZLZFdmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixiZyZyxixixixixiZyZyZyZyZyZyZyZyZyZyZyZyJrJrJrJrJrxixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixiZyZyZyZyZyZyZyZyZyZytTjBmFjBmFjBmFjBmFjBmFjBtTjBmFDMtTjBmFjBtTjBmFwmwMwWwMxrmFjBtTeMfetLeMNsNAGRNANQRZNQNAGRNANseMtLQJeMxUxUxUxUxUtTySySySySySlkySySySySlkySySySySyStTjBmFjBMefJfJMeMeOROROWspspspspspPuORORMeMefJfJfJMeYvYvYvYvYvYvziYvYvYvYvYvYvPZYvYvYvYvYvYvYvmUFdQONmNmNmNmNmNmNmNmNmVwFdmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyJrJrJrxixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixiZyZyZyZyZyZyZyZyZyZyZytTmFjBmFjBmFzAmFjBmFjBmFtTmFjBmFtTmFjBmFtTmFjBmFjBmFjBmFjBmFtTeMtLCHTOCHtLCHtLCHtLCHtLCHtLCHTOCHtLeMzDzDzDzDzDtTzsySySySySySySySySySySAeySySySyStTmFjBmFMefJfJfJMeMespspspspspspspspspMeMefJfJfJfJMeSoYvpNYvYvYvYvRfYvYvYvYvYvYvYvYvodYvYvYvYvmUFdqnqnRzqnqnRzqnqnRzqnqnFdmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyJrxixixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixiZyZyZyZyZyZyZyZyZyZyZytTiJmFAoiIBZoVCeiICumFiStTiJmFiStTiJmFiStTjBmFjBmFjBmFjBmFjBtTeMCHtLeMtLCHtLCHtLCHtLCHtLCHtLeMtLCHeMzDxUxUxUzDtTySySCDySySDmySDmDmySDmySySDmySyStTjBmFjBMefJfJfJfJMeMespnsspspspnsspMeMefJfJfPfJMeMeYvYvYvYvodYvYvYvYvYvYvodYvSIpNYvYvYvyhYvYvmUFdFdFdFdFdFdFdFdFdFdFdFdFdmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixiZyxixiZyZyZyZyZyZyZyZyZyZyxixixixixixiZyZyZyZyZyZyZyZyZyZyZyZytTmFjBDzDEmFjBmFFrDzjBmFtTmFjBmFtTmFjBmFtTmFJHmFjBmFjBLbjBmFtTtTtTtTeMCHtLCHTFWKTFWKTFCHtLCHeMtTtTtTzDzDzDIqzDNtySySIuIuIuIuIuIuIuIuIuIuIuIuySkItTmFjBzJMeMefJgkfJfJMeMeMeoQoUppMeMeMefJfJfJfJMecQMeYvYvYvYvYvYvYvEHYvUmYvYvYvYvYvYvYvYvYvYvYvmUFdNmVpNmNmNmVJNmNmNmVpNmFdmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixiJuxixixixixixixixixixiZyZyZyZyZyZyZyZyZyxixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFmoFrjBmFjBFrmomFjBtTjBmFjBtTjBmFjBtTtTtTAJAJAJAJtToVtTtTKwKGKweMeMfetLWKtLVQtLWKtLQJeMeMzDzDLjzDzDzDzDzDNtySySDmySySDmySLWDmySDmySySDmySyStTjBMyjBMecQMefJfJfJfJfJuVfJfJfJuVfJfJfJfJfJMecQcQMeYvYvyhYvYvpNYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvmUFdNmWbWWXfXyNLNLXfXzWbNmFdmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixixixixiZyZyZyZyZyZyZyxixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBDzNamFjBmFDEDzjBmFtTmFjBmFtTmFjBmFtTmFjBmFjBmFjBmFjBmFtTmFjBmFmDeMtLCHtLCHtLCHtLCHtLeMeMMXNizDNizDNizDzDNtySySDmySNqDmySTkTkySObySySDmySyStTmFjBmFMecQcQMefJfJfJfJfJfJfJfJfJfJfJfJfJMecQcQcQMeSoYvYvsZYvYvYvYvEHYvXCpNYvYvYvYvLIYvYvYvYvmUFdyyWbLyFdYhQjYNFdLyWbItFdmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixixixiZyZyxixixiZyxixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZytTtTtTtTtTtTtTtTtTtTtTtTtTtTiJmFjBtTjBmFjBtTjBmFjBmFfMmFjBnqjBoVjBMyjBOUeMeMeMCHtLRntLCHeMeMeMeMPePEzDNtzDPKzDzDNtySySIuIuIuIukItTtTzsIuIuIuIuySyStTjBmFjBMeMeMeMeMeMeMeMeMeQMQPQMMeMeMeMeMeMeMeMeMeMeYvodYvYvjkYvYvYvYvYvYvYvYvYvEHYvYvYvYvYvYvmUFdNmWbLyFdFdFdFdFdLyWbNmFdmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixixixixixixixixixixixixixixiZyZyZyZyZyZyxixixixixixiZyZytTjBmFjBGejBmFjBGejBmFjBmFnzmFjBzJtTyNjBzJtTmFjBtsjBmFjBmFjBmFtTmFjBmFeMeMeMeMeMeMeMeMeMeMeMeMeMzDRpzDRpzDRpzDzDNtySySDmySySDmySlklkySDmySySRqySyStTmFjBmFtTeeeeeeeeeeeeeetTmFjBmFtTmFRERJSpmFjBmFTbndYvYvYvYvYvYvyhYvYvYvYvYvYvYvYvsAYvYvyhYvYvmUFdNmikvQXyNLNLNLXyHpejNmFdmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixixixixixixixixixixixixixixiZyZyxixixixixixixixixixiTCmFjBmFjBmFjBmFjBmFjBmFjBmFfMmFjBtTjBmFjBtTjBmFUJAJjBAJUJmFjBtTVbmFjBtTUIUIUIUIUIUIUIUIUIUIUItTzDNtzDXIYyNtzDzDNtYMySDmySySDmySDmDmZaDmySySDmySyStTjBmFjBtTtTtTtTtTtTtTtTtTjBmFjBtTjBtsjBmFfMmFjBmFgtYvYvfpYvYvYvYvYvYvodYvYvwIYvYvYvYvYvYvYvYvmUFdcZcZLaMoNmNmNmMoLYcZcZFdmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixixixixixixixixixixixixixixixixixixixixixixixixixitTjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFtTmFjBmFtTmFjBZcjBmFjBZcjBmFtTZnjBmFtTUIUIUIUIUIUIUIUIUIUIUItTzDZJzDZJzDZJzDzDNtySySIuIuIuIuZMIuIuIuIuIuIuIuySkItTyNjBzJtTtTtTtTtTtTtTtTtTyNjBzJtTyNjNshjNmFjBmFRQndYvYvYvYvYvYvpNYvYvYvYvYvYvYvYvYvYvpRYvpNYvmUvhpApApApWpSFdpSqFpApApAuCmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixiuTxixixixixixixixixixixixixixixixixixixixiZyZyZyZytTmFjBmFtTtTtTtTtTtTtTtTtTtTjBmFjBtTjBjWjBtTjBmFNbmFJHmFNbmFjBtTVbmFjBtTUIUIUIUIUIUIUIUIUIUIUItTMXzDjVzDzDzDfrzDtTzsySDmySySDmySDmDmySDmySySDmySyStTjBmFjBmFjBmFjBmFjBmFGkmFjBmFjBtTiJshjNshjBmFjBhMndYvYvYvRfYvEHYvYvYvpRYvYvYvYvYvpNYvYvYvYvYvmUoAoAoAoAoAmUmUmUoAoAoAoAoAmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyxixixixibExixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixixixixixixixixivJxixixixixixixixixiZyZyZyZyZyZytTiJmFiStTBdBdBdBdBdBdBdBdtTyNjBzJtTyNjBzJtTtTmttTtTtTtTtToVtTtTtTtTtTtTUIUIUIUIUIUIUIUIUIUIUItTzDzDFpzDzDFpzDzDtTySySySySySTkySySySySySySySySySyStTmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFtTmFDhmFjBmFeXmFjBgtYvodYvYvYvYvYvYvYvYvYvYvyhYvYvYvYvYvYvsbYvmUmUmUmUmUmUmUmUmUmUmUmUmUmUmUYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixixixixixixixixixixixixixixixiZyZyZyZyZyZyZyZytTmFjBmFtTBdBdBdBdBdBdBdBdtTjBmFjBtTjBmFjBmFjBmFnzmFjBmFnzmFjBmFnzmFjBtTUIUIUIUIUIUIUIUIUIUIUItTtTRYtTtTtTtTRYtTtTtTtTtTMDtTtTtTqTqTqTqTqTqTqTqTtTtTjBmFjBmFjBmFJHmFjBmFJHmFjBmFjBtTjBFECKVzjBmFjByFndYvEpYvYvYvYvYvYvYvYvYvYvEpYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixiZyZyZyxixixixixixixixixixixixixixixixiZyZyZyZyZyZyZytTjBmFjBtTBdBdBdBdBdBdBdBdtTmFjBmFtTmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFmtUIUIUIUIUIUIUIUIUIUIUItTzDzDYLzDzDYLzDYLjVzDzDYLzDzDtTzlaqaqtvaqaqtvaqaqzltTmFjBmFtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtToVtTtTtTndndndndNBjpNBndndjpXujpndndndjpNBjpndndndndndndndndndndndndndndndndndndndndndZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixiZyZyZyZyZyZyZyxixixixixixixixixixixixixixiZyZyZyZyZyZyZyZytTmFjBmFtTBdBdBdBdBdBdBdBdtTjBmFjBtTjBmFjBmFjBmFJHmFjBmFhVmFjBmFJHmFjBtTUIUIUIUIUIUIUIUIUIUIUIMDzDzDzDzDfrzDzDzDzDzDzDzDzDzDMDzlzlzlzlzlzlzlzlzlzltTjBmFjBmFjhxixixixixixixixixixixijhmFjBmFjBmFjBmFnzmFjBmFDhmFjBmFnzmFjBmFjBGejBmFjBmFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixiZyZyZyZyZyZyZyZyZytTiJjWiStTtTtTtTtTtTtTtTtTtTyNjBmFtTyNjBmFtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTUIUIUIUIUIUIUIUIUIUIUItTzDzDFpzDzDFpzDFpzDzDzDFpzDzDtTzlaqaqaqzlneaqaqaqzlkNmFjBmFjBZUxixixixixixixixixixixiZUjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBmFjBtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixiZyZyZyZyZyZyZyZyZyZyZyZytTmFjBmFjhxixixixixixixixiZUjBmFjBmFjBmFjBtTZyZyZyZyZyZyZyZyZyZyZyZyZytTUIUIUIUIUIUIUIUIUIUIUItTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTWezlzlzlzlzlzlzlzlBvtTjBmFjBmFjhxixixixixixixixixixixijhmFjBmFjBmFjBmFJHmFfMmFjBmFjBmFJHmFjBmFjBLbjBmFeXmFtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTjBmFjBZUxixixixixixixixijhmFjBmFDMmFjBmFtTZyZyZyZyZyZyZyZyZyZyZyZyZytTUIUIUIUIUIUIUIUIUIUIUItTZyZyZyZyZyZyZyZyZyZyZyZyZyZytTzlzlzlOezlzlzlzlzlzltTtTtTtTtTtTxixixixixixixixixixixitTtTtTtToVtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTmFjBmFjhxixixixixixixixiZUjBmFjBmFjBmFjBtTZyZyZyZyZyZyZyZyZyZyZyZyZytTtTtTtTtTtTtTtTtTtTtTtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZytTkWdMbWvfIQPVkybWsCXntTZyZyZyZyZyxixixixixixixixixixixitTBdBdBdBdBdBdBdtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTtTtTtTtTxixixixixixixixitTtTtTtTtTtTtTtTtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTtTtTtTtTtTtTtTtTtTtTtTZyZyZyZyZyxixixixixixixixixixixitTBdBdBdBdBdBdBdtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTBdBdBdBdtTxixixixixixixixitTBdBdBdBdtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixitTBdBdBdBdBdBdBdtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTBdBdBdBdtTxixixixixixixixitTBdBdBdBdtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixitTBdBdBdBdBdBdBdtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTBdBdBdBdtTxixixixixixixixitTBdBdBdBdtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixivJxixixixixitTBdBdBdBdBdBdBdtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -VrZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixiZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZytTBdBdBdBdtTxixixixixixixixitTBdBdBdBdtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyxixixixixixixixixixixixixixixixixixitTBdBdBdBdBdBdBdtTZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyZyVr -QranananananananananananananananananananananananananCrCrCrCrCranananananananananananananLkanananananananananananananananananananCrCrCrCrananananananananananananananananananqRqRqRqRqRqRCrCrCrCrCrCrCrCrqRqRqRqRqRqRanananananananananananananananananananananananananananananananananananananananananCrCranananananananananCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrCrqRqRqRqRqRqRqRqRqRanananananananCrCrCrCranananananananananananananananLkananananananananananananananananananananananananananananananananananananananananananQr -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 -zhYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZYZHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfHfso -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZPqPqPqPqPqPqPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZPqPqjdxExExExEPqPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqPqxExExExExExExEPqPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqxExExERNzWRNxExExEPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqxExExExExExExExExEPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqxExExExExExExExExEPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUotWYqYqYqtWUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZdkdkPTdkdkWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqYPYPiExExExEiEYPYPPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUotWtWLBLBLBtWtWUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZdkdkSHSHSHdkdkWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqxExExExExExExExExEPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUotWtWLBLBLBLBLBtWtWYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfdkdkZeSHSHSHZedkdkWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqxExExExExExExExExEPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYqLBLBLBLBLBLBLBYqYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfdkSHSHZtSHZeSHSHdkWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqYPYPiExExExEiEYPYPPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYqLBLBLBeWLBLBLBYqYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfPTSHSHSHSHSHSHSHPTWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqxExExExExExExExExEPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoNdUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYqLBLBLBLBLBLBLBYqYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfdkSHSHZeSHZtSHSHdkWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqxExExExExExExExExEPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUotWtWLBLBLBLBLBtWtWYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfdkdkZeSHSHSHZedkdkWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqYPYPiExExExEiEYPYPPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUotWtWLBLBLBtWtWUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZdkdkSHSHSHdkdkWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqxExExExExExExExExEPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUotWYqYqYqtWUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZdkdkPTdkdkWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwRwHfWZWZWZWZWZWZWZWZWZWZWZWZWZPqxExExExExExExExExEPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwGvRwWZWZWZWZWZWZWZWZWZWZWZWZPqPqPqPqvPPqvPPqPqPqPqWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZRwGvRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZGvRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfRwRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZRwRwRwRwRwRwRwRwRwRwWZWZWZWZWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZTSWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZRwRwRwRwRwRwRwRwRwRwWZWZWZWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZRwRwRwRwRwRwRwRwRwRwRwWZWZWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZRwRwRwRwRwWZWZRwRwRwRwRwRwRwWZWZWZWZRwRwRwWZWZWZWZXEXEXEXEXEXEXEXEXEXEXEWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfRwRwRwRwRwWZWZWZWZWZWZWZRwRwRwWZWZWZRwRwRwRwWZWZWZWZXEOFOFOFOFOFOFOFOFOFXEWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUKUKlKUKUKUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfRwRwRwWZWZWZWZWZWZWZWZWZWZRwRwRwWZRwRwRwRwWZWZWZWZRwXEOFOFOFOFOFOFOFOFOFXEWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUKUKiFiFiFUKUKUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZvKvKvKLtLtLtLtLthiLtBYBYLtLtWUvKvKLtLtLtLtWZWZRwRwRwRwRwRwRwRwWZWZRwRwIKOFOFOFOFOFOFOFOFOFXEWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUKUKtJiFiFiFtJUKUKUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZvKyKyKyKyKMQiririrOVirirpsLtvRyKkKyKLcLtLtLtLtWZWZRwRwRwRwRwRwRwRwRwRwRwIKOFOFOFOFOFXSOFOFOFXEWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUKiFiFoRiFoRiFiFUKUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZvKyKyKyKChPyPyPyrdPyyKChLtvRdHyKyKLcLtqvqvLtLtWZRwRwRwrUrUrURwRwRwRwRwXEOFOFOFOFOFOFOFOFOFXEWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUolKiFiFiFiFiFiFiFlKUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZvKyKyKyKChPyPySlrdPyyKChLtLtLtUQLtLtLtyKdbyKvKWZRwRwrUrUrUrUrURwRwRwWZXEOFOFOFOFOFOFOFOFOFXEWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUKiFiFoRiFoRiFiFUKUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZvKyKyKClnPirnpBOPyFGSkyKyKyKyKyKyKUQyKyKyKLXWZRwRwrUrUGLrUrURwRwWZWZXEXEXEXEXEXEXEXEXEXEXEWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUKUKtJiFiFiFtJUKUKUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZvKvKyKyKChPyPyRCrdPyyKChLtLtLtUQLtLtLtyKdbyKLXWZRwRwrUrUrUrUrURwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUKUKiFiFiFUKUKUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZvKyKyKyKyKChPyPyPyrdPyyKChLtVOyKyKdHfKLtqvqvLtLtWZRwRwRwrUrUrURwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUKUKlKUKUKUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZvKvKyKyKwOiririrOVirirPMLtVDRyVNRyQULtLtLtLtWZWZWZRwRwRwRwRwMZRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZvKLtLtLtLtLthiLtBYBYLtLtvKWavKLtLtLtLtWZWZWZWZWZRwRwRwRwRwRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZRwRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZRwRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZRwRwRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZRwdhWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDqIjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZRwRwRwRwRwRwWZWZWZWZWZWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZyoIiWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUoUojDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZRwRwRwRwRwRwRwRwWZWZWZWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUojDjDjDjDjDjDjDjDjDjDrprUWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZrUrUrUWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwRwRwWZRwRwRwRwWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZNK -MiUoUoUoUoUoUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUojDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDrprUrUrUrUrUrUrUrUrUWZWZWZWZWZWZWZrUrUrUrUrUrUrUrUrUWZWZWZWZWZWZWZWZWZrUrUrUrUrUrUrUrUrUrUWZWZWZWZWZWZWZWZWZWZWZWZrUrUrUrUrUrUWZHfWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZWZRwRwRwRwRwRwRwRwWZWZWZWZWZWZrUrUrUrUrUrUWZWZWZWZWZWZNK -MiUoUoUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoUoYZUoUoUojDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDrprUrUrUrUrUrUrUrUrUrUrUWZWZWZrUrUrUrUrUrUrUrUrUrUrUrUrUWZWZrUrUrUWZrUrUrUrUrUrUrUrUrUrUrUrUrUWZWZWZWZWZWZWZWZrUrUrUrUrUrUrUrUrUrprUrUrUrUWZWZrUrUrUrUrUrUWZWZWZWZrUrURwRwRwRwRwWZWZWZWZWZrUrUrUrUrUrUrUrUrUrUWZWZWZWZNK -MijDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDUojDjDjDjDUoUoUoUoUojDjDjDjDUoUoUoYZjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDrprUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUWZWZWZrUrUrUrUrUrUrUrUrUrUrUrUrprUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrURwRwRwWZWZWZrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUNK -MijDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDqIjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDjDrprUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrprUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUrUNK -RjmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvzSzSzSzSzSXsmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvfQfQpdpdpdfQfQmvmvmvmvmvmvmvmvmvmvfQfQUHUHUHfQfQmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvNnmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvzSzSzSzSzSzSmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvmvRj -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNczSOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQMzMzMzMzMzhkwdwdwdhkMzMzMzMzMzOQOQMzMzMzMzMzhmllllllhmMzMzMzMzMzOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcuhNcNczSOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQMzMzMzMzMzMzhkhkhkhkwdhkhkwdwdwdwdMzMzMzMzllllllllhmhmllhmhmhmhmMzMzMzMzMzMzOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQuhNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcxXNczSOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvMzMzllllllllMzwdwdwdhkwdwdwdwdhkhkwdMzMzMzMzllhmhmllllllllhmllllllMzwdwdwdwdMzMzmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNceieiVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNceiwGeiNcOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNceiNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieiNcNcNcNcNcNczSNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvMzllllhmhmllMzwdhkwdhkhkhkhkhkhkhkwdMzMzMzMzllhmhmhmhmhmhmhmllhmllMzwdhkhkwdwdMzmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNceieieieioEOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNcNcNcNcNcNcNcNcNcmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNceiNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQNcNcNcNcLUNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieiNcOQNcNczSNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvMzllhmhmhmllWIwdhkwdhkhkwdwdwdhkhkwdMzMzMzMzllhmhmllllllhmhmllhmllxuwdhkhkhkwdMzmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNceieiNcNcxXNcNcNcNcNcNcNczSNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNceieieieieieiOQOQOQNczSNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNciXOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvMzllllllhmhmMzhkwdwdhkhkwdhkwdwdwdwdMzMzMzMzllllllllhmllhmhmllllhmMzhkhkwdwdwdMzmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcNcNcNcNcQqNcNcNcNcNcNcNceiOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNceieizSNcNceiDBNcNcOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQNcNcNcNcNcNcNcNcNcNcQINcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNceieieiDBeieiOQOQOQOQOQzSNcVeNcNcNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvMzhmhmllhmhmMzhkwdhkhkhkwdhkhkhkhkhkMzMzMzMzhmhmhmhmhmllhmhmhmllhmMzhkhkwdhkhkMzmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieiNcNcNcNcNcNcNcNcNcxXNcNcNcNcNcNcNcNceieiOQOQOQOQOQOQeieiNcNcNcNcNcNcNcNcNcNceiNcOQOQOQOQzSNcNcNcNcNcNcNcVROQOQOQNceiNceiNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQNcNcNcuhNcNcNcNceieieieieieiOQOQOQOQOQmvNcNcNcNcNcNcNcNcNcOQOQOQOQNcNcNcNcNcNcNcOQOQNcNcNcNcNcuhNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvMzhmhmllhmhmMzhkwdwdwdwdwdhkhkhkhkhkMzMzMzMzhmhmhmhmhmllhmllllllhmMzhkhkwdhkhkMzmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieiNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNceieiNcOQOQNcNcNcNcNcQqNcNceieiNcNcOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcNcNcNcOQNcNcNcQqNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcxXNcNceieieieieieieieiOQOQOQOQmvOQNcNcNcNcNcNcNcNcNcOQeieieiNcNcVROQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvMzllllllhmhmMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzhkhkwdwdwdMzmvOQOQOQOQOQOQOQOQOQOQOQOQOQeieiuhNcNcNcNcVROQOQeieieieieiOQOQeiwGeieiNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcuhNcOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQeieiNcNcNcNcNcNcNcNcNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQNcNcNcNcNcQINcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQeieieieieieiOQOQmvOQOQNcNcNcNcNcNcNcNceieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcxXNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvMzllhmhmhmhmMzhmhmhmhmhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmhmhmhmhmMzhkhkhkhkwdMzmvOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcVeNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQNcNcNcNcNcNcNceiNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcxXNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQeieieieieiOQOQmvOQOQOQNcNcNcNcNcNceieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvMzllhmhmhmhmMzhmhmhmhmhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmhmhmhmhmMzhkhkhkhkwdMzmvOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcxXNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcxXeieiNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcQINcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQeieieiNcOQOQmvOQOQOQOQNcNcNceieieijGeieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvMzllllllllllMzhmhmhmhmhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmhmhmhmhmMzwdwdwdwdwdMzmvOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNceieieiNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQNcNcNcNcNcNcoEOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -lfOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcOQmvOQOQOQOQOQVReieieieieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQiXNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvMzllhmhmhmllMzhmhmhmhmhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmhmhmhmhmMzwdhkhkhkwdMzmvOQOQOQOQOQOQOQOQOQOQNcNcNceieiOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNceiDBeiNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQNcNcNcNcNceieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQlf -lfOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNczSOQOQOQOQOQOQOQeieieieieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvMzllhmhmhmllMzhmhmhmhmhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmhmhmhmhmMzwdhkhkhkwdMzmvOQOQOQOQOQOQOQOQOQNcNcNceieiOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNceieiNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQeiNcNcNcwGeiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQlf -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcQqzSOQOQOQOQOQOQOQOQeieieieieieieieieieieiNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNciXOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvMzllhmhmhmllMzhmhmhmhmhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmhmhmhmhmMzwdhkhkhkwdMzmvOQOQOQOQOQOQOQOQeiNcNceieiOQOQOQOQOQOQNcNcNcNcOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQeieiNcNceieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQlf -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNczSVROQOQOQOQOQOQOQOQeieieieieieiwGeieiNcNcNcNcNcNciXOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvMzhmllllllllMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzwdwdwdwdhkMzmvOQOQOQOQOQOQOQOQeiNcNceiOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQeieiNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQVRNcNcNcNcNcNcNcNcNcOQOQOQOQOQlf -nUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUOQOQOQOQOQOQOQOQOQNcVezSNcOQOQOQOQOQOQOQOQOQOQeieieieieieiNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvMzhmllhmhmhmMzhmhmhmhmhmhmhmhmmYhmhmMzMzMzMzhmhmkhhmhmhmhmhmhmhmhmMzhkhkhkwdhkMzmvOQOQOQOQOQOQOQeieiNcNceiOQOQOQOQOQOQOQOQOQNcNcNcQINcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQeieieiNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQeiNcNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcQqNcNcNcNcNcNcNcNcOQOQOQOQlf -nUininininJJinininininJJininininnUinJJininininininJJininininininnUOQOQOQOQOQOQOQOQOQNcNczSNcNcOQOQOQOQOQOQOQOQOQeieieieieiNcNcNcuhNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcuhNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQmvMzllllhmllllWIhmhmhmhmhmhmhmhmmYhmhmMzMzMzMzhmhmkhhmhmhmhmhmhmhmhmxuwdwdhkwdwdMzmvOQOQOQOQOQOQOQeiNcNcNcOQOQOQOQOQOQOQOQOQNcNcQINcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQeieiNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQeiNcNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQlf -nUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUJJnUinnUinnUinnUinnUJJnUOQOQOQOQOQOQOQOQOQOQNczSNcNcNcOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcNcNcNcNcNcVeNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQmvMzllhmhmllhmMzMzMzMzMzMzMzMzMzMzmYmYMzMzMzMzkhkhMzMzMzMzMzMzMzMzMzMzhkwdhkhkwdMzmvOQOQOQOQOQOQeieixXNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcQINcNcNcNcNcOQOQOQOQOQOQOQOQOQOQeieiNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQeiNcNcxXNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcOQNcNcNcNcOQOQOQOQlf -nUinJJinininininininininininininnUinininininininininininJJinininnUOQOQOQOQOQOQOQOQOQOQOQzSuhNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcxXNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQmvMzllhmhmllllMzhmhmhmhmhmhmhmhmMzhmhmMzMzMzMzhmhmMzhmhmhmhmhmhmhmhmMzwdwdhkhkwdMzmvOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQeieiNcNcNcOQOQNcOQeieiOQeieiOQOQOQOQmvOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcOQOQOQNcNcNcOQOQOQOQlf -nUnUinnUinnUinnUinnUinnUinnUinnUnUnUinnUinnUinnUJJnUinnUVWnUinnUnUOQOQOQOQOQOQOQOQOQOQOQzSNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQmvMzllhmhmhmllMzhmhmhmhmhmhmhmhmMzhmhmMzMzMzMzhmhmMzhmhmhmhmhmhmhmhmMzwdhkhkhkwdMzmvOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcNcNceieieiNcNcOQOQNczSOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNcNcOQOQOQOQOQNcNcNcOQOQOQlf -nUininininJJininJJininJJininJJinnUinininJJininininJJininininJJinnUOQOQOQOQOQOQOQOQOQOQOQVZNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQmvMzllllllllllMzhmhmhmhmhmhmhmhmMzhmhmMzMzMzMzhmhmMzhmhmhmhmhmhmhmhmMzwdwdwdwdwdMzmvOQOQOQOQOQNcNcNcQqNcOQOQOQOQOQOQOQOQOQNcNcNcQINcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcQqxXNcNcNcNcNcNcNcNcNcNcNcNcNczSNcNcNcNcNcQqNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNcNcNcOQOQOQOQNcNcNcNcNcOQOQlf -nUnUnUinnUinnUinnUinnUPgnUinnUinnUJJnUinnUinnUinnUinnUinnUinnUinnUOQOQOQOQOQOQOQOQOQOQOQmvNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQmvMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzWzWzMzMzMzMzWzWzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzmvOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQNcOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNczSNcNcNcNcNcNcNcNcNcNcNceieiOQOQOQOQOQOQOQOQOQOQeieiNcNcNcNceieiOQOQOQNcNcNcNcNcNcOQOQlf -nUininnUinininJJininJJinininininnUininininininJJininininininininnUOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQNcNcNceieiOQOQOQOQOQOQOQOQOQmvOQMzhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmMzOQmvOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNceieieiNcNcNcNcNcNcNcNczSNceieieiNcNcNcNcNcNcNcNceieieiNcNcNcOQOQOQOQOQNcNcNcNcNcNceiOQOQOQNcNcNcNcNcNcNcNcOQlf -nUxbinininnUinnUinnUinnUinnUinnUnUnUinnUinnUinnUxxnUinnUJJnUinnUnUOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQNcNceieieiOQOQOQOQOQOQOQOQOQmvOQMzhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmMzOQmvOQOQOQOQNcNcNcOQOQNcNcNcVROQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcLUOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQeieiDBNcNcNcNcNcNczSNceiOQeiNcOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNceieiOQOQNcNcNcNcNcNcNcNcNcOQlf -nUininnUininJJinininininJJinininSDinininJJininininininininininJJnUOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcuhNcNcNcOQOQOQOQOQOQOQeieiSWeieiOQOQOQOQOQOQOQOQmvOQMzhmhmhmnchmhmhmnchmhmhmnchmhmhmhmMzMzMzMzhmhmhmhmnchmhmhmnchmhmhmnchmhmhmMzOQmvOQOQOQiXNcNcNcOQOQNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNczSeieiOQOQOQOQOQOQOQNcNcNcNcNcNcNcVeNcNcNcNcNcNcNcNcNcNceieiOQOQOQNcNcNcNcNcNcNcNcNcOQlf -nUnUnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQeieieieieiOQOQOQOQOQOQOQOQmvOQMzhmhmhmnchmhmhmnchmhmhmnchmhmhmhmMzMzMzMzhmhmhmhmnchmhmhmnchmhmhmnchmhmhmMzOQmvOQOQOQNcNcNcOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNczSOQOQOQOQOQOQOQOQOQOQeieieiNcNcNcNcNcNcNcNcNcNcxXNcNcDBeiOQOQOQOQNcNcNcNcNcNcNcNcNcOQlf -nUinininJJininininJJininininJJinnUininJJininJJininJJininininininnUOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcQqNcNcNcNcNcNcOQNcNcNcNcNcOQOQOQOQOQeieieieieiOQOQOQOQOQOQOQOQmvOQMzhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmMzOQmvOQOQOQNcNcNcOQOQOQOQOQiXNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQeiNcNcNcNcNceieiOQOQOQOQOQOQOQOQOQOQeieieiNcNcNcNcNcNcmvOQOQOQOQOQOQOQOQOQOQOQOQdieieiNcNcNcNcNcNcNcNcNcNceieiOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQlf -nUnUinnUinnUJJnUinnUinnUinnUinnUnUnUinnUinnUinnUinnUinnUinnUJJnUnUOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieiNcNcNcNcNcNciXOQOQOQNcNcNcNcNcOQOQOQOQeieieieiOQOQOQOQOQOQOQOQOQmvOQMzhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmhmMzOQmvOQOQOQNcNcNcOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNcNceieiOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcNcOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQVRNcNcNcNcNcNcNcNceiOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQlf -nUininJJininininininJJinininininnUininininininJJininininininininnUOQOQOQOQOQOQOQOQOQOQOQmvOQVRNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieiNcNcOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQNceieieiOQOQOQOQOQOQOQOQOQmvOQMzMzWzWzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzWzWzMzMzOQmvOQOQOQNcNcVROQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNceiVROQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUinnUinnUPgnUinnUinnUinnUinnUinnUinnUinnUyMnUinnUinnUJJnUzvnUinnUOQOQOQOQOQOQOQOQOQOQOQmvOQjCeiNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieieiOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQNcNceieiOQOQOQOQOQOQOQOQOQmvOQOQMzhmhmhmhmhmhmhmMzhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmMzhmhmhmhmhmhmhmMzOQOQmvOQOQNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNceieiOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNcNcNcNcOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUininininininJJinininininJJininnUininJJinininininininininininJJnUOQOQOQOQOQOQOQOQOQOQOQmvOQOQeieieiNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieiDBeieieieieiOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQmvOQOQMzhmhmhmhmhmhmhmMzhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmMzhmhmhmhmhmhmhmMzOQOQmvOQOQNcNcNcOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcxXNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUOQOQOQOQOQOQOQOQOQOQOQmvOQOQeieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQmvOQOQMzhmhmhmhmhmhmhmMzhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmMzhmhmhmhmhmhmhmMzOQOQmvOQNcNcNcNcOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQVRNcNcNcNcNcNcOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUininininJJinininJJinininininJJnUinininininJJininininininJJininnUOQOQOQOQOQOQOQOQOQOQOQmvOQjCeieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieiwGeieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQmvOQOQMzhmhmhmhmhmhmhmMzhmhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmhmMzhmhmhmhmhmhmhmMzOQOQmvOQNcNcNcOQOQOQOQOQOQNcNcNcNcxXNcZlNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUOQOQOQOQOQOQOQOQOQOQOQmvOQeieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQNceieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcQqNcNcNcOQOQOQOQOQOQOQOQOQmvOQOQMzMzMzMzWzMzMzWzMzMzoIyqeffShmhmMzMzMzMzhmhmhmhmhmhmMzMzWzMzMzWzMzMzMzMzOQOQmvOQNcNcNcOQOQOQOQOQNcNcNceieiNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQNcNcNcQqNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUininJJininininininininininininnUininJJininininininJJinininininnUOQOQOQOQOQOQOQOQOQOQOQmvOQeieiDBeiOQOQOQOQOQOQOQOQOQOQOQOQOQNcNceieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcuhNcNcNcNcNcOQOQOQOQOQOQOQOQmvOQOQOQMzMzMzhmvbvbhmEAMzhmhmhmhmhmhmMzMzMzMzhmhmhmhmhmhmMzMzhmvbvbhmJRMzMzOQOQOQmvOQNcNcNcOQOQOQOQNcNcNceieieiNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcVROQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQjCeiNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUnUinnUxxnUinnUinnUinnUJJnUinnUnUnUinnUinnUinnUnKnUinnUinnUinnUnUOQOQOQOQOQOQOQOQOQOQjCDkeieieieieiOQOQOQOQOQOQOQOQOQOQOQNcNcNceieieieieiDBeieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQmvOQOQOQMzMzyxhmvbvbhmMzMzWdNuysvchmhmMzMzMzMzhmhmhmhmhmhmMzvNhmvbvbhmMzMzMzOQOQOQmvOQNcNcNcOQOQNcNcNcNceieieieiNcNcOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNceiDkOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUininininininininJJininininJJinnUinJJininininJJininininJJinJJinnUOQOQOQOQOQOQOQOQOQOQeiDkSWeieieieieieiOQOQOQOQOQOQOQOQNcNcNcNceieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcVROQOQOQOQOQmvOQOQOQMzMzMzNuMzMzNuMzMzhmhmhmhmMzMzMzMzMzMzMzMzhmhmhmhmMzMzysMzMzvcMzMzMzOQOQOQmvOQNcNcNcOQNcNcNceieiDBeieiNcNcOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNcNcNcDkeiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUinnUinnUinnUinnUinnUinnUinnUinnUinnUVWnUinnUinnUinnUinnUinnUinnUOQOQOQOQOQOQOQOQOQeieiDkeieieiwGeieieieiOQOQOQOQOQVRNcNcNcNcNceieieieiOQeieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQNcmvOQOQOQOQMzhmhmhmhmhmMzMzhmhmMzMzMznvgyRTRTgynvMzMzMzhmhmMzMzhmhmhmhmhmMzOQOQOQOQmvOQOQNcNcNcNcNceiwGeieiNcNcNcOQOQOQOQOQOQOQOQeieieiNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieiNcNcNczSeieiThOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQjCeiNcNcNceidiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUinJJinininininJJininininJJininnUininininJJininJJininJJininininnUOQOQOQOQOQOQOQjCNceieiDkeieieieieieieieieiOQOQOQNcNcNcxXNcNceieiOQOQOQOQOQeieieieiOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcNcOQOQNcNcNcNcNcNcNcNcNcNcNcmvOQOQOQOQMzMzhmhmhmhmhmMzMzMzMzfxuFhmhmhmhmhmhmuFfxMzMzMzMzhmhmhmhmhmMzMzOQOQOQOQmvOQOQiXNcNcNcNcNceieiNcNcOQOQOQOQOQOQOQOQOQOQOQOQeieieiNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQTheiNcNcNYNcNceieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNceieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUnUinnUinnUJJnUinnUMEnUinnUinnUnUnUinnUinnUinnUinnUMEnUinnUinnUnUOQOQOQOQOQOQOQNcNcNceimvOQeieieieieieieieiNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQeieiSWeiNcOQOQOQOQOQOQOQOQOQOQOQeieieiNcNcNcNcOQOQOQOQOQNcNcNcNcNcNcNcNcNczSOQOQOQOQOQMzhmhmhmhmhmhmhmMzuFhmhmhmhmVyVyhmhmhmhmuFMzhmhmhmhmhmhmhmMzOQOQOQOQOQmvOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieiDBNcNcNcNcuhNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieizSNcNcNcNceieieiOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQlf -nUJJinininininininininJJininininnUininJJinininininininininJJininnUOQOQOQOQOQOQNcNcNcNcjCmvOQjCeieieieieieiNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQeieieiNcNcOQOQOQOQOQOQOQOQOQeieieieieieiNcNcOQOQOQOQOQOQOQNcNcNcNcNcNcNcNczSOQOQOQOQOQMzMzhmhmhmhmhmhmezhmhmhmhmVyMzMzVyhmhmhmhmezhmhmhmhmhmhmMzMzOQOQOQOQOQmvOQOQNcNcNcQqxXNcNciXOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiDkNcNcNcNcNcNceieiOQOQOQOQOQOQOQOQOQOQeieiNcNcNceiOQOQOQOQOQxmxmxmxmxmxmxmxmxmxmxmxmxmxm -nUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUinnUOQOQOQjCNcNcQqNcNcOQOQmvOQOQOQOQeieieiNcNcQqNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcoEOQOQOQOQOQOQOQeieieieieieieieiOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNczSNcOQOQOQOQOQMzMzMzhmhmhmhmezhmhmhmhmhmVyVyhmhmhmhmhmezhmhmhmhmMzMzMzOQOQOQOQOQOQmvOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQDkeieiNcNcNcNcNceieiOQOQOQOQOQOQOQOQjCeiNcNceieieiOQOQOQOQOQxmmumumumumumumumumuxmmumuxm -nUininininJJinininJJininininJJinnUinininininJJinininJJinininininnUOQOQOQNcNcNcNcNcOQOQOQmvOQOQOQOQjCNcNcNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQNceieieieieiOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcuhNcNczSNcOQOQOQOQOQOQOQMzMzMzhmhmMzfxhmhmhmhmhmhmhmhmhmhmfxMzhmhmMzMzMzOQOQOQOQOQOQOQOQmvNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcNcxXNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQeieieiNcNcNcNceiOQOQOQOQOQOQOQOQeieiNcNceijCOQOQOQOQOQOQxmmumumumumumuxmmumumumumuxm -nUnUinnUnKnUinnUinnUinnUinnUzvnUnUnUinnUinnUinnUinnUinnUinnUinnUnUjCOQNcNcNcNcNcjCOQOQOQmvOQOQOQOQOQiXNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQNcNcxXeieieieiOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNczSNcNcOQOQOQOQOQOQOQOQMzMzMzMzMzuFfxbKhHfufuhHbKfxuFMzMzMzMzMzOQOQOQOQOQOQOQeieieiDkNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcQqNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQeiNcNcNcNceieiOQOQOQOQOQOQeieiNcNcNceiOQOQOQOQOQOQOQxmmuxmmumumumumumumumuxmmuxm -nUinJJinininininJJinininJJinininnUininJJininininJJinininininJJinnUNcNcNcNcNcOQOQOQOQOQOQmvOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQNcNcNcNcNcNceiOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNczSNcNcNcOQOQOQOQOQOQOQOQOQOQOQMzMzMzMzMzMzMzMzMzMzMzMzOQOQOQOQOQOQOQOQOQOQeieieiNczSNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNceieieieieiOQOQOQmvOQOQOQOQVRNcNcNcNceiOQOQOQOQjCeieiNcNcNcOQOQOQOQOQOQOQOQOQxmmumumuxmmumumumumumumumuxm -nUinnUinnUinnUJJnUinnUinnUinnUinnUinnUinnUyMnUinnUinnUinnUinnUinTGNcNcNcOQjCOQOQOQOQOQOQmvOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNczSNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieiNcNczSNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNceieiOQOQOQOQOQOQOQOQOQVRNcNcNcNcNcNceieiOQOQmvOQOQOQOQOQNcNcNcNcNcNcjCOQOQeieiNcNcNcjCOQOQOQOQOQOQOQOQOQxmmumumumumumuxmmumumumuxmxm -nUininininJJinininininininininJJnUJJinininininininininJJininininnUNcOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQNcNcNcuhNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNczSNcNcNcNceieiOQeieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNceieiNcNcxXzSNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNceieieieiNcNcNcNcNceieiOQOQeieieiNcNcNcNcNcNcNcNcNcNcNceieieimvOQOQOQOQOQOQNcNcNcxXNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQxmmumumumumumumumumumumumuxm -nUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUjCOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQNczSNcNcNcNceieieieieieieieieiNcNcNcNcNcNciXOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNczSNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNceieiOQOQeieieieiNcNcNceieieieiNcNcNcNcNceieieieieieieiNcNcNcNczSNcVROQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQxmxmxmxmxmmumumumumumumuxmmumumuxm -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcQqNcNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQzSNcNcNcNcNceieieieieieiNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcuhNceieiDkNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNceieiOQOQOQOQOQOQeieiNcNcNcNcNcNcNcNcNcNceieiOQOQOQOQOQeiDBeiNcNczSNcNcNcNcNcNcNcNcNcNcNcNciXOQOQNcNcNcNcNcjCOQOQOQOQOQxmnfnfnfmumumumumumumumumumumuxmxm -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQmvNcNcNcNcNceieieiwGeiNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQNcNcNcNcNcNcNcNcNcNceieieiDkNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNceiOQOQOQOQOQOQOQOQeieiNcNcNcNcNcNcNceieieiOQOQOQOQOQOQOQOQeieieizSNcNcNcNcNcNcNcNcNcNcjCOQOQOQOQjCOQNcNcNcOQOQOQOQOQOQxmnfctnfmumumumuxmmumumumumumuxmxm -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNczSNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQmvOQOQNcNcNcNcNcNcVeNcNcNcNcNcNcNcNcNcNcNcNcNcNcNceieiNcNcNcNcNcQqNcNcNcNceieieieiDkNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQeieiNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQzSNcNcNcNcNcNcNcNcVROQOQOQOQOQOQOQOQOQNcNcNcjCOQOQOQOQxmnfnfnfmuxmmumumumumumumumumuxmxm -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQVRNcNcNcNcNcNcNcNcNcNcNczSNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQmvOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQNcNcNcNcNcNceieieiNcNcNcNcNcNcNcNcOQOQOQOQeiDBDkeiNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQVRNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQeieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcuhNcOQOQOQOQOQOQOQOQOQOQOQOQOQxmaIaIxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmMRxmxm -lfOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNceiOQOQOQOQeiNcNcNcNcNcNcuhNcNcNcNcNcNcQqNcNczSNcNcNcNcVeNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQmvOQOQOQOQNcNcNcNcNcNcQqNcNcOQOQOQOQOQOQOQNcNceieieieiNcNcNcNcNcNcOQOQOQOQOQOQOQeiDkeiNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQxmnfnfmumumumumuxmnfnfnfmumumumumumumumumumumumuxm -lfOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNceieieieieieieieiNcNcNcNcNcNcxXNcNcNcNcNcNcNcNczSNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcVROQOQOQOQOQmvOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQeieieieieieiNcNcNcOQOQOQOQOQOQOQOQOQOQDkeieiNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQxmxmxmmumumumumuxmnfxmmumuxmxmxmxmxmxmxmxmxmxmmuxm -lfOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNceieieieiDBeieieieiNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQmviXNcNcNcNcxXNcNcNcNcNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNciXOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQmvOQOQOQOQOQOQOQiXNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQeieieiiXOQOQOQOQOQOQOQOQOQOQOQOQVZeieiNcNcNcNceieiVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQxmmumumumumumumuxmnfxmmumumumumumumumumumumuxmmuxm -lfOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNceieieieieieieieieieieiNcNcNcVROQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQiXNcNcNcOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmveiNcNcNcNcNceieieieieiNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvNcQqNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQxmmumumumumumumuxmnfxmmuxmmumumumuxmmumuxmmuxmmuxm -lfOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcNcNcNcNcNcuhNcNcNcNcNceiOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQVRNcNcNceieieieieiNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQzSNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQxmmumumumumumumuxmnfxmmumumumumuxmmumumumumuxmmuxm -lfOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcNcNcNcNcNcNcNcNcNceieieieiOQOQOQOQOQOQOQOQNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQNcNcNceieieieieiNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNczSNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQxmxmxmmuxmmumumuxmnfxmmumumuxmmumumumumumumuxmmuxm -lfOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcNcNcNcNcNcNcNcNceieieieieieieieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieiNcNcOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQNcNceieieiNcNcNcNcuhNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNczSNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQxmxmxmmuxmmumumuxmnfxmmuxmmumumumuxmmumuxmmuxmmuxm -lfOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQNcNcQINcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvNcNcNcNcNcNcNcOQNcNcNcNcNceieieieieieieieieieieiDBeieieieieiNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieiOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQNcNcNcNcxXVeNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcxXuhNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNczSNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQxmxmxmnfxmxmxmxmxmnfxmmumumuxmmumumumumumumuxmmuxm -lfOQOQOQOQOQNcNcxXNcNcOQOQOQOQNcQINcNcNcNcNcLUNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQzSNcNcNcNcNcNcOQOQOQOQVReieieieieieieieieieieieieieieieiwGeieiNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQeieieieieieieiOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQVRNceieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQVRNcNczSNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQxmxmxmnfmumumuxmxmnfxmmumumumumumumuxmmumumuxmmuxm -lfOQOQOQOQOQNcNcNcNcOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNczSNcNcNcNcNcOQOQOQOQOQOQeieieieieieieieieieieieieieieieijGeieiNcNcNcNcNcNcNcNcNcNcNcNcNcNcNceieieieieiDBeiOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQeieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQNcNcNcNcOQOQOQOQOQOQOQOQOQOQVRNcNcOQNcOQOQOQNcNcNcNcNcNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNczSNcNcOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQOQxmmumumumumumumuxmnfxmxmmumumumuxmmumumumumuxmmuxm -lfOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcQINcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNczSQqNcNcNcOQOQOQOQOQOQOQOQOQeieiDBeieieieieieieieieieieieieieiNcNcVeNcNcNcNcNcNcNcNcNcNcNcNceieieieieieieieieiNcNcNcOQOQOQOQOQmvOQOQOQOQOQOQOQNcNcNceieieieieieieieiThOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNczSNcNcNcOQOQOQOQOQOQiXNcNcNcNcNcOQOQOQxmmumumumuxmmumuxmnfxmxmmumuxmmumumumuxmmumuxmmuxm -lfOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQOQNcNcNcQINcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQeiOQNcNcNczSNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieiOQOQOQOQOQOQeieiNcNcNcNcNcuhNcNcNcNcQqNcNcNceieieieieieieieieieiNcNcNcNcNcNcOQOQmvOQOQOQOQOQOQNcNcNceiNceieieieieieiDBeieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNciXOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNczSNcNcNcNcNcOQOQOQNcNcNcNcNcNcNcNcOQOQxmmumumumumumumunfnfxmxmmumumumumumumumumuxmxmmuxm -lfOQOQOQOQOQNcNcNcNcQqNcOQOQOQOQOQOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQeieieieiNcNcNcNczSNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNceieieieieieieieieieieieiNcNcNcNcNcNcNczSNcNcNcNcNcNcNcNcNceieieieieieieieieieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcVZOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQxmmumuxmmumumumuxmxmxmxmmuxmmumumumumumumumuxmmuxm -lfOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieiNcNcNczSNcNcOQOQOQOQOQOQOQOQOQOQOQlflfuKuKuKuKuKuKuKlflfOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNceieieieieieiwGeieieieieieiNcNcNcNcNcNcNczSNcNcNcQqNcNcNcNcNceieieieieieieieieieieieieiNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQNcNcNcQqNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcmvOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQxmmumuxmmumumumuxmxmxmxmmumumumumuxmmumuxmmuxmmuxm -lfOQOQOQOQOQOQNcNcNcNcNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNceieieieieieieieiNczSNcOQOQOQOQOQOQOQOQOQOQOQOQlfNcNcNcNcNcNcNcNcNclfOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNceieiDBeieieieieieieieieieieiNcNcNcNcNcNczSNcNcNcNcNcNcNcNceieieiwGeieieieieieieieieieiNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcOQOQOQNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcmvOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcOQOQxmmumuxmxmmuxmxmxmxmxmxmxmxmxmmumumumumumumuxmmuxm -lfOQOQOQOQOQOQOQNcNcNcxXNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQNcNcNcNceiwGeieieieieieimvOQOQOQOQOQOQOQOQOQOQOQOQlflfNcNcNcNcNcNcNcNcNclfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNceieieieieieieieieieieiOQOQOQNcNcNcNcNcNczSNcNcNcNcNcNcNceieiDBeieieieieieieieieieieieieiNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQmvVRNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQNcNcNcQqNcNcNcNcNcNcOQmvOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcOQOQxmxmmumumumuxmxmxmxmxmmumumuxmmumumumuxmmumuxmmuxm -lfOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcQqNcNcNcNcNcNcNcNcNcNcxXNcNceieiDBeiOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQlfNcNcNcNcqpqpqpNcNcNclflfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieiOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQeieieieieieieieieieieieieieieiNcNcNcNcNcNcNcOQNcOQOQOQOQOQOQOQOQzSNcNcxXNcNcNcNcNcOQOQOQOQOQOQOQNcNcOQOQiXNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQmvOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcOQOQxmxmmumumumuxmxmxmxmxmmumumumumuxmmumumumumuxmmuxm -lfOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNceieiOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQlflfNcNcNcqplDlDlDqpNcNcNclflfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQeieieieieieieiNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQNczSNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcxXNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcVROQOQOQmvOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcOQOQxmxmmumumumuxmxmxmxmxmmumumumumumumumumumuxmxmmuxm -lfOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcOQOQVROQNcNcNcNcNcNcNcOQNcOQOQVROQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQlfNcNcNcNcqplDHKlDqpNcNcNcNclflfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNczSNcNcNcuhNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQNcNcNcNcNcNciXOQOQOQxmxmxmxmxmxmxmxmxmxmxmxmnfxmxmxmxmxmxmxmxmxmxmmuxm -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQlfNcNcNcNcqplDlDlDqpNcNcNcNcNclflfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcQqNcNcNcNcNcNcNczSNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcVRNcNcOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQNcNcNcNcNcOQOQOQOQxmGWnfGWnfGWnfxmnfnfnfnfnfIkxmxmxmxmxmxmxmxmxmmuxm -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQlflfNcNcNcNcNcqpqpqpNcNcNcNcNcNcNclflfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcNcNcNcNcNczSNcNcNcNcNcOQOQNcNcNcNcNcNcNcOQOQVROQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQxmnfGWnfGWnfGWxmyunfnfnfnfIkxmmumumumumumumuxmmuxm -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQlfNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNclfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQNcmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQxmGWnfGWnfGWnfxmtHnfnfnfnfIkxmmumumumumumumumumuxm -lfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQlfNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNcNclfOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQmvOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQOQxmnfGWnfGWnfGWxmnfnfnfnfnfIkxmmumumumumumumuxmxmxm -DblflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflfRjlflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflfRjlflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflfRjlflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflflfRjlflflflflflflflflflflflflflflflflflfxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxmxm -"} diff --git a/maps/southern_sun/overmap/sectors.dm b/maps/southern_sun/overmap/sectors.dm deleted file mode 100644 index a8c91ba7d2..0000000000 --- a/maps/southern_sun/overmap/sectors.dm +++ /dev/null @@ -1,146 +0,0 @@ -// Overmap object for Sif, hanging in the void of space -/obj/effect/overmap/visitable/planet/Sif - name = "Sif" - desc = "Location of Vir civilian colonies." - scanner_desc = @{"[i]Registration[/i]: Vir System Authority -[i]Class[/i]: Colony -[i]Transponder[/i]: Transmitting (CIV), Vir IFF -[b]Notice[/b]: The Vir government welcomes you to this world."} - - map_z = list(Z_LEVEL_SURFACE, Z_LEVEL_SURFACE_MINE, Z_LEVEL_SURFACE_WILD) //add Z_LEVEL_SURFACE_VALLEY to list if you want valley back - //Z_LEVEL_SURFACE_SKYLANDS, //removed due to lack of use - - initial_generic_waypoints = list( - "outpost_nw", - "outpost_s", - "outpost_w", - "wilderness_s", - "wilderness_se", - "wilderness_w", - "wilderness_n", - "valley_e" - ) - - in_space = 0 - start_x = 10 - start_y = 10 - skybox_offset_x = 128 - skybox_offset_y = 128 - surface_color = "#2D545B" - mountain_color = "#735555" - ice_color = "FFFFFF" - icecaps = "icecaps" - icon_state = "frozen" //CHOMP comment: Not sure what this does at the moment, but we're doing it live. - -/obj/effect/overmap/visitable/planet/Sif/Initialize() - atmosphere = new(CELL_VOLUME) - atmosphere.adjust_gas_temp("oxygen", MOLES_O2STANDARD, 273) - atmosphere.adjust_gas_temp("nitrogen", MOLES_N2STANDARD, 273) - - . = ..() - -/obj/effect/overmap/visitable/planet/Sif/Initialize() - . = ..() - docking_codes = null - -/obj/effect/overmap/visitable/planet/Sif/get_skybox_representation() - var/image/tmp = ..() - tmp.pixel_x = skybox_offset_x - tmp.pixel_y = skybox_offset_y - return tmp - -/obj/effect/overmap/visitable/sector/Southern_Cross - name = "Southern Cross" - icon = 'modular_chomp/icons/obj/overmap.dmi' - icon_state = "southerncross" - desc = "Southern Cross station, orbiting Sif." - scanner_desc = @{"[i]Registration[/i]: NLS Southern Cross -[i]Class[/i]: Installation -[i]Transponder[/i]: Transmitting (NT), NanoTrasen IFF -[b]Notice[/b]: NanoTrasen communications station, authorized personnel only"} - base = 1 - in_space = 1 - start_x = 10 - start_y = 10 - known = 1 // lets Sectors appear on shuttle navigation for easy finding. - - extra_z_levels = list(Z_LEVEL_TRANSIT, Z_LEVEL_MISC,Z_LEVEL_SURFACE, Z_LEVEL_SURFACE_MINE, Z_LEVEL_SURFACE_WILD) //This should allow for comms to reach people from the station. Basically this defines all the areas of Southern Cross and the Sif local system on the overmap. //CHOMPedit, Z_LEVEL_SURFACE_VALLEY for valley back - // "Z_LEVEL_SURFACE_SKYLANDS, " //removed due to lack of use - var/mob_announce_cooldown = 0 - - - initial_generic_waypoints = list( - "sc-D1_L1A1", - "sc-D1_L1A2", - "sc-D1_L1A3", - "sc-D1_L1A4", - "sc-D1_L1A5", - "sc-D1_L1A6", - "sc-D1_L2A1", - "sc-D1_L3A1", - "sc-D1_L4A1", - "sc-D1_L4A2", - "sc-D1_L4A3", - "sc-D1_L4A4", - "sc-D1_L4A5", - "sc-D1_L4A6", - "sc-D1_L5A1", - "sc-D1_L5A2", - "sc-D1_L5A3", - "sc-D1_H1", - "sc-D1_H2", - "sc-D1_H3", - "sc-D1_H4", - "sc-D1_near_ne", - "sc-D1_near_nw", - "sc-D2_near_ne", - "sc-D2_near_nw", - "sc-D2_near_se", - "sc-D2_near_sw", - "sc-D3_near_ne", - "sc-D3_near_se", - "baby_mammoth_dock", - "ursula_dock", - "stargazer_dock", - "needle_dock", - "echidna_dock", - "hangar_2" // TEMP, want to replace it with "sc-D1_H2". Don't know how shuttle code work. (KAS) - ) - -/obj/effect/overmap/visitable/sector/Southern_Cross/get_space_zlevels() //These are the primary levels that our space station resides in. This also indicates what levels astronauts can drift into. - return list( -// Z_LEVEL_STATION_MAINTS, (Removed for new map. KAS) - Z_LEVEL_STATION_ONE, - Z_LEVEL_STATION_TWO, - Z_LEVEL_STATION_THREE, - Z_LEVEL_MISC) - -/obj/effect/overmap/visitable/sector/Southern_Cross/Crossed(var/atom/movable/AM) - . = ..() - announce_atc(AM,going = FALSE) - -/obj/effect/overmap/visitable/sector/Southern_Cross/Uncrossed(var/atom/movable/AM) - . = ..() - announce_atc(AM,going = TRUE) - -/obj/effect/overmap/visitable/sector/Southern_Cross/proc/announce_atc(var/atom/movable/AM, var/going = FALSE) - if(istype(AM, /obj/effect/overmap/visitable/ship/simplemob)) - if(world.time < mob_announce_cooldown) - return - else - mob_announce_cooldown = world.time + 5 MINUTES - var/message = "Sensor contact for vessel '[AM.name]' has [going ? "left" : "entered"] ATC control area." - //For landables, we need to see if their shuttle is cloaked - if(istype(AM, /obj/effect/overmap/visitable/ship/landable)) - var/obj/effect/overmap/visitable/ship/landable/SL = AM //Phew - var/datum/shuttle/autodock/multi/shuttle = SSshuttles.shuttles[SL.shuttle] - if(!istype(shuttle) || !shuttle.cloaked) //Not a multishuttle (the only kind that can cloak) or not cloaked - atc.msg(message) - - //For ships, it's safe to assume they're big enough to not be sneaky - else if(istype(AM, /obj/effect/overmap/visitable/ship)) - atc.msg(message) - -/obj/effect/overmap/visitable/planet/Sif/Initialize() - . = ..() - docking_codes = null diff --git a/maps/southern_sun/overmap/shuttles.dm b/maps/southern_sun/overmap/shuttles.dm deleted file mode 100644 index 40964655d0..0000000000 --- a/maps/southern_sun/overmap/shuttles.dm +++ /dev/null @@ -1,159 +0,0 @@ -//CHOMPedit KSC = These are areas for the exploration ships in on cargo shuttle. -//Stargazer -/datum/shuttle/autodock/overmap/stargazer - name = "Stargazer" - warmup_time = 1 - current_location = "stargazer_dock" - docking_controller_tag = "stargazer" - shuttle_area = /area/shuttle/stargazer - fuel_consumption = 2 - move_direction = NORTH - -/obj/effect/overmap/visitable/ship/landable/stargazer - name = "Stargazer" - desc = "Southern Cross' humanoid transport vessel." - vessel_mass = 3000 - vessel_size = SHIP_SIZE_SMALL - shuttle = "Stargazer" - known = TRUE - -/obj/machinery/computer/shuttle_control/explore/stargazer - name = "short jump console" - shuttle_tag = "Stargazer" - req_one_access = list(access_pilot) - -//Baby_Mammoth -/datum/shuttle/autodock/overmap/baby_mammoth - name = "Baby_mammoth" - warmup_time = 5 - current_location = "baby_mammoth_dock" - docking_controller_tag = "baby_mammoth" - shuttle_area = /area/shuttle/baby_mammoth - fuel_consumption = 2 - move_direction = NORTH - -/obj/effect/overmap/visitable/ship/landable/baby_mammoth - name = "Baby_mammoth" - desc = "Southern Cross' humanoid exploration vessel." - vessel_mass = 6000 - vessel_size = SHIP_SIZE_SMALL - shuttle = "Baby_mammoth" - known = TRUE - -/obj/machinery/computer/shuttle_control/explore/baby_mammoth - name = "short jump console" - shuttle_tag = "Baby_mammoth" - req_one_access = list(access_pilot) - -//Ursula -/datum/shuttle/autodock/overmap/ursula - name = "Ursula" - warmup_time = 2 - current_location = "ursula_dock" - docking_controller_tag = "ursula" - shuttle_area = /area/shuttle/ursula - fuel_consumption = 2 - move_direction = NORTH - -/obj/effect/overmap/visitable/ship/landable/ursula - name = "Ursula" - desc = "Southern Cross' humanoid science vessel." - vessel_mass = 3500 - vessel_size = SHIP_SIZE_SMALL - shuttle = "Ursula" - known = TRUE - -/obj/machinery/computer/shuttle_control/explore/ursula - name = "short jump console" - shuttle_tag = "Ursula" - req_one_access = list(access_pilot) - -//Needle -/datum/shuttle/autodock/overmap/needle - name = "Needle" - warmup_time = 0 - current_location = "needle_dock" - docking_controller_tag = "needle" - shuttle_area = /area/shuttle/needle - fuel_consumption = 1 - move_direction = NORTH - -/obj/effect/overmap/visitable/ship/landable/needle - name = "Needle" - desc = "Southern Cross' humanoid scouting vessel." - vessel_mass = 1500 - vessel_size = SHIP_SIZE_SMALL - shuttle = "Needle" - known = TRUE - -/obj/machinery/computer/shuttle_control/explore/needle - name = "short jump console" - shuttle_tag = "Needle" - req_one_access = list(access_pilot) - -//Echidna -/datum/shuttle/autodock/overmap/echidna - name = "Echidna" - warmup_time = 4 - current_location = "echidna_dock" - docking_controller_tag = "echidna" - shuttle_area = /area/shuttle/echidna - fuel_consumption = 2 - move_direction = NORTH - -/obj/effect/overmap/visitable/ship/landable/echidna - name = "Echidna" - desc = "Southern Cross' humanoid mining vessel." - vessel_mass = 5500 - vessel_size = SHIP_SIZE_SMALL - shuttle = "Echidna" - known = TRUE - -/obj/machinery/computer/shuttle_control/explore/echidna - name = "short jump console" - shuttle_tag = "Echidna" - req_one_access = list(access_pilot) - -//Spacebus -/datum/shuttle/autodock/overmap/spacebus - name = "Space Bus" - warmup_time = 4 - current_location = "hangar_2" - docking_controller_tag = "spacebus" - shuttle_area = /area/shuttle/spacebus - fuel_consumption = 1 - move_direction = NORTH - -/obj/effect/overmap/visitable/ship/landable/spacebus - name = "Space Bus" - desc = "Southern Cross' civilian transport vessel" - vessel_mass = 2000 - vessel_size = SHIP_SIZE_SMALL - shuttle = "Space Bus" - known = TRUE - -/obj/machinery/computer/shuttle_control/explore/spacebus - name = "short jump console" - shuttle_tag = "Space Bus" - req_one_access = list(access_pilot) - -//POI Junker -/datum/shuttle/autodock/overmap/junker - name = "Junker" - warmup_time = 4 - current_location = "junkspawn" - docking_controller_tag = "junker" - shuttle_area = /area/shuttle/junker - fuel_consumption = 1 - move_direction = NORTH - -/obj/effect/overmap/visitable/ship/landable/junker - name = "Junker" - desc = "Small class ship, non-NT property." - vessel_mass = 500 - vessel_size = SHIP_SIZE_SMALL - shuttle = "Junker" - -/obj/machinery/computer/shuttle_control/explore/junker - name = "short jump console" - shuttle_tag = "Junker" diff --git a/maps/southern_sun/overmap/space/fueldepot.dm b/maps/southern_sun/overmap/space/fueldepot.dm deleted file mode 100644 index 45112712c9..0000000000 --- a/maps/southern_sun/overmap/space/fueldepot.dm +++ /dev/null @@ -1,70 +0,0 @@ - -// -- Datums -- // - -/datum/map_template/sc_lateload/away_fueldepot - name = "Fuel Depot - Z1 Space" - desc = "An unmanned fuel depot floating in space." - mappath = "modular_chomp/maps/overmap/space/fueldepot.dmm" //Use the modular map file - associated_map_datum = /datum/map_z_level/sc_lateload/away_fueldepot - -/datum/map_z_level/sc_lateload/away_fueldepot - name = "Away Mission - Fuel Depot" - z = Z_LEVEL_FUELDEPOT - - -// -- Overmap -- // - -/obj/effect/overmap/visitable/sector/fueldepot - name = "Fuel Depot" - desc = "Self-service refueling depot." - scanner_desc = @{"[i]Registration[/i]: Vir System Authority -[i]Class[/i]: Installation (Space) -[i]Transponder[/i]: Transmitting (CIV), V.S.A. -[b]Notice[/b]: This facility classified for public use for the purpose of refueling and recharging starships"} - initial_generic_waypoints = list("fueldepot_east","fueldepot_west","fueldepot_north","fueldepot_south") - icon_state = "fueldepot_g" - unknown_state = "station" - known = TRUE - start_x = 10 // Future note: remove these two vars if we ever want this to have a random spawn location on the overmap. - start_y = 11 - - -// -- Areas -- // - -/area/sc_away/fueldepot - name = "Away Mission - Fuel Depot" - icon = 'icons/turf/areas_vr.dmi' - icon_state = "dark" - lightswitch = FALSE - -/area/sc_away/fueldepotspawn - name = "Away Mission - Fuel Depot Sleeping Quarters" - icon = 'icons/turf/areas_vr.dmi' - icon_state = "dark" - lightswitch = TRUE - -// -- Landmarks -- // - -/obj/effect/shuttle_landmark/premade/fueldepot/east - name = "Fuel Depot - East Dock" - landmark_tag = "fueldepot_east" - -/obj/effect/shuttle_landmark/premade/fueldepot/west - name = "Fuel Depot - West Dock" - landmark_tag = "fueldepot_west" - -/obj/effect/shuttle_landmark/premade/fueldepot/north - name = "Fuel Depot - North Dock" - landmark_tag = "fueldepot_north" - -/obj/effect/shuttle_landmark/premade/fueldepot/south - name = "Fuel Depot - South Dock" - landmark_tag = "fueldepot_south" - - -// -- Turfs -- // - -/turf/simulated/floor/tiled/techmaint/airless - oxygen = 0 - nitrogen = 0 - temperature = TCMB diff --git a/maps/southern_sun/overmap/space/fueldepot.dmm b/maps/southern_sun/overmap/space/fueldepot.dmm deleted file mode 100644 index 80f6b72a67..0000000000 --- a/maps/southern_sun/overmap/space/fueldepot.dmm +++ /dev/null @@ -1,21260 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/space, -/area/space) -"ab" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"ac" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/aux{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"ad" = ( -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"ae" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"af" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/aux, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"ag" = ( -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"ah" = ( -/obj/machinery/atmospherics/portables_connector/fuel{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"ai" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"aj" = ( -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"ak" = ( -/obj/machinery/atmospherics/binary/pump/fuel{ - dir = 1 - }, -/obj/machinery/atmospherics/binary/pump/aux{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"al" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"am" = ( -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"an" = ( -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"ao" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"ap" = ( -/obj/machinery/atmospherics/pipe/simple/visible/aux, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"aq" = ( -/obj/machinery/power/solar, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"ar" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"as" = ( -/obj/machinery/power/solar, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"at" = ( -/obj/machinery/power/solar, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"au" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing, -/turf/space, -/area/space) -"av" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/space, -/area/space) -"aw" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/space, -/area/space) -"ax" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/space, -/area/space) -"ay" = ( -/obj/structure/railing, -/turf/space, -/area/space) -"az" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/turf/space, -/area/space) -"aC" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/space, -/area/space) -"aD" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"aE" = ( -/obj/machinery/power/solar, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"aF" = ( -/turf/simulated/wall/rshull, -/area/sc_away/fueldepot) -"aG" = ( -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"aH" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"aI" = ( -/obj/machinery/power/solar, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"aJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"aK" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"aL" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"aM" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"aN" = ( -/obj/machinery/power/solar, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"aO" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"aP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"aQ" = ( -/obj/machinery/power/apc{ - dir = 8; - pixel_x = -28 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"aR" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"aS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"aT" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28; - pixel_y = 30 - }, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"aU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 10 - }, -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"aV" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"aW" = ( -/obj/machinery/power/solar_control, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"aX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"aY" = ( -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"aZ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"ba" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bc" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"be" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bf" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bh" = ( -/obj/machinery/atmospherics/binary/pump/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/binary/pump/fuel{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"bi" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bj" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"bk" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"bl" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"bm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bn" = ( -/obj/machinery/atmospherics/pipe/tank/phoron/full{ - dir = 4; - start_pressure = 30000 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"bo" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bp" = ( -/obj/machinery/atmospherics/pipe/tank/phoron/full{ - dir = 8; - start_pressure = 30000 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"bq" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"br" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bs" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"bt" = ( -/obj/machinery/atmospherics/portables_connector/fuel, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"bu" = ( -/obj/machinery/atmospherics/portables_connector/aux, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"bv" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 10 - }, -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bw" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bx" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"by" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 8 - }, -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 8 - }, -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bE" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bF" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bG" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bH" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bI" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 6 - }, -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/aux, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/aux{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bN" = ( -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bQ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/aux{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bR" = ( -/obj/effect/shuttle_landmark/premade/fueldepot/north, -/turf/space, -/area/space) -"bS" = ( -/obj/effect/shuttle_landmark/premade/fueldepot/west, -/turf/space, -/area/space) -"bT" = ( -/obj/effect/shuttle_landmark/premade/fueldepot/east, -/turf/space, -/area/space) -"bU" = ( -/obj/effect/shuttle_landmark/premade/fueldepot/south, -/turf/space, -/area/space) -"bV" = ( -/obj/effect/overmap/visitable/sector/fueldepot, -/turf/space, -/area/space) -"bW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/machinery/atmospherics/pipe/manifold/visible/aux{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"bZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/aux, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"ca" = ( -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"cb" = ( -/obj/machinery/atmospherics/portables_connector/fuel{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"cc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"cd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"ce" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"cf" = ( -/obj/machinery/atmospherics/binary/pump/aux{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/fuel{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"cg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"ch" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/space, -/area/space) -"ci" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/space, -/area/space) -"cj" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/turf/space, -/area/space) -"ck" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/space, -/area/space) -"cl" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/space, -/area/space) -"cm" = ( -/obj/machinery/light/small, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"cn" = ( -/obj/machinery/atmospherics/pipe/tank/air/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"co" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"cp" = ( -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 5 - }, -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"cq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"cr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"cs" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"ct" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"cu" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"cv" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"cw" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"cx" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"cy" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"cz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"cA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"cB" = ( -/obj/machinery/atmospherics/binary/pump/fuel, -/obj/machinery/atmospherics/binary/pump/aux, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"cC" = ( -/obj/machinery/atmospherics/portables_connector/fuel{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"cD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"cE" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/aux{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"cF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"cG" = ( -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"cH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/aux{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"cI" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 10 - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"es" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/aux, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"fl" = ( -/obj/structure/table/steel_reinforced, -/obj/random/toolbox, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"ft" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"ja" = ( -/obj/structure/catwalk, -/obj/structure/table/rack/steel, -/obj/item/tool/crowbar/red, -/obj/item/tool/wrench, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"om" = ( -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"rE" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/aux{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/fuel, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"BA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"DC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 8 - }, -/obj/structure/cable/green{ - dir = 1; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"FK" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/powercell, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"IR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/aux{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"Nq" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/tool, -/obj/random/tool, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"OG" = ( -/obj/structure/table/rack/steel, -/obj/item/storage/toolbox/electrical, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"Qg" = ( -/obj/structure/table/rack/steel, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) -"Vy" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/shuttle/plating/airless, -/area/sc_away/fueldepot) -"Ys" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techmaint/airless, -/area/sc_away/fueldepot) - -(1,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(2,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bV -aa -"} -(3,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(4,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(5,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(6,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(7,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(8,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(9,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(10,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(11,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(12,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(13,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(14,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(15,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(16,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(17,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(18,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(19,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(20,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(21,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(22,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(23,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(24,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(25,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(26,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(27,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(28,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(29,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(30,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(31,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(32,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(33,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(34,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(35,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(36,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(37,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(38,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(39,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(40,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(41,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(42,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(43,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(44,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(45,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(46,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(47,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(48,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(49,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(50,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(51,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(52,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(53,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ci -bv -bJ -ck -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(54,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ay -bg -bw -bK -ca -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(55,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ay -bh -bx -bL -cb -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(56,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ay -bi -by -bM -ja -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(57,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -cj -bz -bN -cl -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(58,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ay -bz -bN -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(59,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ay -bz -bN -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(60,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ay -bz -bN -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(61,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ay -bz -bN -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(62,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ay -bz -bN -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(63,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aq -at -at -at -aI -aa -aF -aF -aF -bz -bN -aF -aF -aF -aa -aq -at -at -at -aI -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(64,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ar -aD -aD -aD -aJ -aO -aF -aW -aT -bz -bN -bj -Qg -aF -aa -cs -cw -cw -cw -cy -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(65,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aE -aE -aE -aK -aP -aP -aX -bk -bA -bO -aP -aP -aP -aP -ct -aE -aE -aE -aN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(66,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aG -aa -aF -aY -bl -bz -bN -aG -OG -aF -aa -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(67,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aF -aF -aG -aF -aF -aZ -Vy -DC -om -aj -cm -aF -aF -aG -aF -aF -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(68,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aw -aw -aw -aa -aa -aa -aa -aa -aa -aF -fl -aG -aG -aQ -ba -bm -bB -bP -be -be -co -aG -aG -FK -aF -aa -aa -aa -aa -aa -aa -aw -aw -aw -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(69,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -au -ad -ah -ja -ax -aw -aw -aw -aw -aw -aF -aH -aG -aG -aR -bn -bn -aj -bQ -ap -ap -cp -aG -aG -cx -aF -aw -aw -aw -aw -aw -au -cz -cB -cD -ax -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(70,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bR -aa -ab -ae -ai -al -ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -aS -bc -bo -bC -rE -cc -cn -aU -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cA -aj -cE -cH -aa -bU -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(71,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -af -aj -am -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -cp -br -ft -bC -rE -cc -cn -cq -ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -ai -al -cF -cI -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(72,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -az -ag -ak -an -ch -av -av -av -av -av -aF -aH -aG -aG -bq -bp -bp -aj -bW -cd -cd -cr -aG -aG -cx -aF -av -av -av -av -av -az -ja -cC -cG -cl -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(73,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -av -av -av -aa -aa -aa -aa -aa -aa -aF -FK -aG -aG -aV -bD -bD -bE -es -aj -aj -aj -Nq -aG -Ys -aF -aa -aa -aa -aa -aa -aa -av -av -av -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(74,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aF -aF -aG -aF -aF -bf -aj -bz -IR -aj -cm -aF -aF -aG -aF -aF -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(75,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aG -aa -aF -aG -aG -bz -IR -aG -aG -aF -aa -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(76,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aq -at -at -at -aL -aP -aP -aP -aP -bA -BA -aP -aP -aP -aP -cu -at -at -at -aI -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(77,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ar -aD -aD -aD -aM -aa -aF -aG -bs -bz -bN -bs -fl -aF -aa -cv -cw -cw -cw -cy -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(78,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aE -aE -aE -aN -aa -aF -aF -aF -bz -bN -aF -aF -aF -aa -as -aE -aE -aE -aN -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(79,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ay -bz -bN -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(80,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ay -bz -bN -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(81,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ay -bz -bN -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(82,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ay -bz -bN -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(83,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ay -bz -bN -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(84,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -au -bz -bN -ck -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(85,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ay -ja -bF -bX -ce -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(86,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ay -bt -bG -aj -cf -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(87,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ay -bu -bH -bY -cg -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(88,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -az -bI -bZ -cl -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(89,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(90,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bT -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(91,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(92,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(93,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(94,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(95,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(96,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(97,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(98,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(99,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(100,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(101,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(102,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(103,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(104,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(105,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(106,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(107,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(108,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(109,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(110,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(111,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(112,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(113,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(114,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(115,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(116,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(117,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(118,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(119,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(120,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(121,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(122,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(123,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(124,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(125,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(126,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(127,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(128,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(129,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(130,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(131,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(132,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(133,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(134,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(135,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(136,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(137,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(138,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(139,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(140,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} diff --git a/maps/southern_sun/shuttles/crew_shuttles.dm b/maps/southern_sun/shuttles/crew_shuttles.dm deleted file mode 100644 index ab054c55f6..0000000000 --- a/maps/southern_sun/shuttles/crew_shuttles.dm +++ /dev/null @@ -1,286 +0,0 @@ -/* Chompstation Edit. Removed these shuttles for new teleporter network - -//Shuttle 1 - -/obj/machinery/computer/shuttle_control/web/shuttle1 - name = "shuttle control console" - shuttle_tag = "Shuttle 1" - req_access = list(access_pilot) - -/datum/shuttle/autodock/web_shuttle/shuttle1 - name = "Shuttle 1" - warmup_time = 0 - shuttle_area = /area/shuttle/shuttle1/start - current_location = "hangar_1" - docking_controller_tag = "shuttle1_shuttle" - web_master_type = /datum/shuttle_web_master/shuttle1 - autopilot = TRUE - can_autopilot = TRUE - autopilot_delay = 30 - autopilot_first_delay = 150 // Five minutes at roundstart. One minute otherwise. - - flight_time_modifier = 0.25 // Speeding up Southern Cross auto shuttles because they're too slow. - -/datum/shuttle_web_master/shuttle1 - destination_class = /datum/shuttle_destination/shuttle1 - autopath_class = /datum/shuttle_autopath/shuttle1 - starting_destination = /datum/shuttle_destination/shuttle1/root - -/datum/shuttle_autopath/shuttle1/to_outpost - start = /datum/shuttle_destination/shuttle1/root - - path_nodes = list( - /datum/shuttle_destination/shuttle1/sif_orbit, - /datum/shuttle_destination/shuttle1/sky, - /datum/shuttle_destination/shuttle1/main_base - ) - -/datum/shuttle_autopath/shuttle1/to_home - start = /datum/shuttle_destination/shuttle1/main_base - - path_nodes = list( - /datum/shuttle_destination/shuttle1/sky, - /datum/shuttle_destination/shuttle1/sif_orbit, - /datum/shuttle_destination/shuttle1/root - ) - -//Shuttle 2 - -/obj/machinery/computer/shuttle_control/web/shuttle2 - name = "shuttle control console" - shuttle_tag = "Shuttle 2" - req_access = list(access_pilot) - -/datum/shuttle/autodock/web_shuttle/shuttle2 - name = "Shuttle 2" - warmup_time = 0 - shuttle_area = /area/shuttle/shuttle2/start - current_location = "hangar_2" - docking_controller_tag = "shuttle2_shuttle" - web_master_type = /datum/shuttle_web_master/shuttle2 - autopilot = TRUE - can_autopilot = TRUE - autopilot_delay = 30 - autopilot_first_delay = 210 // Seven minutes at roundstart. One minute otherwise. This should leave when the first shuttle departs the outpost. - - flight_time_modifier = 0.25 // Speeding up Southern Cross auto shuttles because they're too slow. - -/datum/shuttle_web_master/shuttle2 - destination_class = /datum/shuttle_destination/shuttle2 - autopath_class = /datum/shuttle_autopath/shuttle2 - starting_destination = /datum/shuttle_destination/shuttle2/root - -/datum/shuttle_autopath/shuttle2/to_outpost - start = /datum/shuttle_destination/shuttle2/root - - path_nodes = list( - /datum/shuttle_destination/shuttle2/sif_orbit, - /datum/shuttle_destination/shuttle2/sky, - /datum/shuttle_destination/shuttle2/main_base - ) - -/datum/shuttle_autopath/shuttle2/to_home - start = /datum/shuttle_destination/shuttle2/main_base - - path_nodes = list( - /datum/shuttle_destination/shuttle2/sky, - /datum/shuttle_destination/shuttle2/sif_orbit, - /datum/shuttle_destination/shuttle2/root - ) - - - -/datum/shuttle_destination/shuttle1/root - name = "Southern Cross Hangar One" - my_landmark = "hangar_1" - preferred_interim_tag = "shuttle1_transit" - - radio_announce = 0 - announcer = "Southern Cross Docking Computer" - - routes_to_make = list( - /datum/shuttle_destination/shuttle1/sif_orbit = 30 SECONDS, - /datum/shuttle_destination/shuttle1/docked_SC = 0 - ) -/* -/datum/shuttle_destination/shuttle1/root/get_arrival_message() - return "Attention, [master.my_shuttle.visible_name] has arrived to Hangar One." - -/datum/shuttle_destination/shuttle1/root/get_departure_message() - return "Attention, [master.my_shuttle.visible_name] has departed Hangar One." -*/ -/datum/shuttle_destination/shuttle2/root - name = "Southern Cross Hangar Two" - my_landmark = "hangar_2" - preferred_interim_tag = "shuttle2_transit" - - radio_announce = 0 - announcer = "Southern Cross Docking Computer" - - routes_to_make = list( - /datum/shuttle_destination/shuttle2/sif_orbit = 30 SECONDS, - /datum/shuttle_destination/shuttle2/docked_SC = 0 - ) -/* -/datum/shuttle_destination/shuttle2/root/get_arrival_message() - return "Attention, [master.my_shuttle.visible_name] has arrived to Hangar Two." - -/datum/shuttle_destination/shuttle2/root/get_departure_message() - return "Attention, [master.my_shuttle.visible_name] has departed Hangar Two." -*/ - -/* -/datum/shuttle_destination/shuttle1/outside_SC - name = "Outside of NLS Southern Cross" - my_landmark = "shuttle1_seconddeck" - preferred_interim_tag = "shuttle1_transit" - - routes_to_make = list( - /datum/shuttle_destination/shuttle1/sif_orbit = 25 SECONDS, - /datum/shuttle_destination/shuttle1/docked_SC = 0 - ) - -/datum/shuttle_destination/shuttle2/outside_SC - name = "Outside of NLS Southern Cross" - my_landmark = "shuttle2_seconddeck" - preferred_interim_tag = "shuttle2_transit" - - routes_to_make = list( - /datum/shuttle_destination/shuttle2/sif_orbit = 25 SECONDS, - /datum/shuttle_destination/shuttle2/docked_SC = 0 - ) -*/ - -/datum/shuttle_destination/shuttle1/docked_SC - name = "Southern Cross Docking Port" - my_landmark = "shuttle1_arrivals_dock" - preferred_interim_tag = "shuttle1_transit" - - radio_announce = 0 - announcer = "Southern Cross Docking Computer" - -/* -/datum/shuttle_destination/shuttle1/docked_SC/get_arrival_message() - return "Attention, [master.my_shuttle.visible_name] has arrived to the Arrivals Dock." - -/datum/shuttle_destination/shuttle1/docked_SC/get_departure_message() - return "Attention, [master.my_shuttle.visible_name] has departed the Arrivals Dock." -*/ - -/datum/shuttle_destination/shuttle2/docked_SC - name = "Southern Cross Docking Port" - my_landmark = "shuttle2_arrivals_dock" - preferred_interim_tag = "shuttle2_transit" - - radio_announce = 0 - announcer = "Southern Cross Docking Computer" - -/* -/datum/shuttle_destination/shuttle2/docked_SC/get_arrival_message() - return "Attention, [master.my_shuttle.visible_name] has arrived to the Arrivals Dock." - -/datum/shuttle_destination/shuttle2/docked_SC/get_departure_message() - return "Attention, [master.my_shuttle.visible_name] has departed the Arrivals Dock." -*/ - -/datum/shuttle_destination/shuttle1/sif_orbit - name = "Sif Orbit" - my_landmark = "shuttle1_orbit" - preferred_interim_tag = "shuttle1_transit" - - routes_to_make = list( - /datum/shuttle_destination/shuttle1/sky = 25 SECONDS - ) - -/datum/shuttle_destination/shuttle2/sif_orbit - name = "Sif Orbit" - my_landmark = "shuttle2_orbit" - preferred_interim_tag = "shuttle2_transit" - - routes_to_make = list( - /datum/shuttle_destination/shuttle2/sky = 25 SECONDS - ) - - -/datum/shuttle_destination/shuttle1/sky - name = "Skies of Sif" - my_landmark = "shuttle1_sky" - preferred_interim_tag = "shuttle1_sky_transit" - - routes_to_make = list( - /datum/shuttle_destination/shuttle1/main_base = 10 SECONDS, - /datum/shuttle_destination/shuttle1/mining_base = 10 SECONDS - ) - -/datum/shuttle_destination/shuttle2/sky - name = "Skies of Sif" - my_landmark = "shuttle2_sky" - preferred_interim_tag = "shuttle2_sky_transit" - - routes_to_make = list( - /datum/shuttle_destination/shuttle2/main_base = 10 SECONDS, - /datum/shuttle_destination/shuttle2/mining_base = 10 SECONDS - ) - - -/datum/shuttle_destination/shuttle1/main_base - name = "Main Outpost" - my_landmark = "shuttle1_planet" - preferred_interim_tag = "shuttle1_sky_transit" - - radio_announce = 0 - announcer = "Outpost Automated ATC" -/* -/datum/shuttle_destination/shuttle1/main_base/get_arrival_message() - return "Attention, [master.my_shuttle.visible_name] has arrived to the Main Outpost." - -/datum/shuttle_destination/shuttle1/main_base/get_departure_message() - return "Attention, [master.my_shuttle.visible_name] has departed the Main Outpost." -*/ -/datum/shuttle_destination/shuttle2/main_base - name = "Main Outpost" - my_landmark = "shuttle2_planet" - preferred_interim_tag = "shuttle2_sky_transit" - - radio_announce = 0 - announcer = "Outpost Automated ATC" -/* -/datum/shuttle_destination/shuttle2/main_base/get_arrival_message() - return "Attention, [master.my_shuttle.visible_name] has arrived to the Main Outpost." - -/datum/shuttle_destination/shuttle2/main_base/get_departure_message() - return "Attention, [master.my_shuttle.visible_name] has departed the Main Outpost." -*/ - -/datum/shuttle_destination/shuttle1/mining_base - name = "Wilderness Landing Site" - // Note: Left area under this landmark as /area/shuttle/shuttle1/mining so it doesn't get seeded with POIs - my_landmark = "shuttle1_mining" - preferred_interim_tag = "shuttle1_sky_transit" - - radio_announce = 0 - announcer = "Outpost Automated ATC" -/* -/datum/shuttle_destination/shuttle1/mining_base/get_arrival_message() - return "Attention, [master.my_shuttle.visible_name] has arrived to the Wilderness Area." - -/datum/shuttle_destination/shuttle1/mining_base/get_departure_message() - return "Attention, [master.my_shuttle.visible_name] has departed the Wilderness Area." -*/ -/datum/shuttle_destination/shuttle2/mining_base - name = "Wilderness Landing Site " - // Note: Left area under this landmark as /area/shuttle/shuttle2/mining so it doesn't get seeded with POIs - my_landmark = "shuttle2_mining" - preferred_interim_tag = "shuttle2_sky_transit" - - radio_announce = 0 - announcer = "Outpost Automated ATC" -/* -/datum/shuttle_destination/shuttle2/mining_base/get_arrival_message() - return "Attention, [master.my_shuttle.visible_name] has arrived to the Wilderness Area." - -/datum/shuttle_destination/shuttle2/mining_base/get_departure_message() - return "Attention, [master.my_shuttle.visible_name] has departed the Wilderness Area." -*/ - -End Chompstation Edit */ \ No newline at end of file diff --git a/maps/southern_sun/shuttles/crew_shuttles_ch.dm b/maps/southern_sun/shuttles/crew_shuttles_ch.dm deleted file mode 100644 index 2d5d7385e4..0000000000 --- a/maps/southern_sun/shuttles/crew_shuttles_ch.dm +++ /dev/null @@ -1,179 +0,0 @@ -//This is old chomp code that will need updating to re-add to our game. -//CHOMPedit: Shuttle 3, Sif-bound exploration shuttle for the exploration outpost, Hangar 3, and the wilderness. -//Created so pilots stop stealing the autopilot shuttles and making station-planet travel more burdensome. - -GLOBAL_LIST_EMPTY(shuttdisp_list) - -/obj/machinery/computer/shuttle_control/web/shuttle3 - name = "shuttle control console" - shuttle_tag = "Shuttle 3" - req_access = list(access_pilot) - -/datum/shuttle/autodock/web_shuttle/shuttle3 - name = "Shuttle 3" - warmup_time = 0 - shuttle_area = /area/shuttle/shuttle3/start - current_location = "exphangar_1" - docking_controller_tag = "shuttle3_shuttle" - web_master_type = /datum/shuttle_web_master/shuttle3 - -/datum/shuttle_web_master/shuttle3 - destination_class = /datum/shuttle_destination/shuttle3 - starting_destination = /datum/shuttle_destination/shuttle3/root - -/datum/shuttle_destination/shuttle3/root - name = "Exporation Hangar One" - my_landmark = "exphangar_1" - preferred_interim_tag = "shuttle3_transit" - - radio_announce = 0 - announcer = "Southern Cross Docking Computer" - - routes_to_make = list( - /datum/shuttle_destination/shuttle3/sif_orbit = 5 SECONDS - ) - -/datum/shuttle_destination/shuttle3/root/get_arrival_message() - return "Attention, [master.my_shuttle.visible_name] has arrived to Exploration Hangar One." - -/datum/shuttle_destination/shuttle3/root/get_departure_message() - return "Attention, [master.my_shuttle.visible_name] has departed Exploration Hangar One." - -/datum/shuttle_destination/shuttle3/sif_orbit - name = "Sif Orbit" - my_landmark = "shuttle3_orbit" - preferred_interim_tag = "shuttle3_transit" - - routes_to_make = list( - /datum/shuttle_destination/shuttle3/sky = 25 SECONDS, - /datum/shuttle_destination/shuttle3/stationhangar3 = 25 SECONDS - ) - -/* -/datum/shuttle_destination/shuttle3/outside_SC - name = "Outside of NLS Southern Cross" - my_landmark = "shuttle3_seconddeck" - preferred_interim_tag = "shuttle3_transit" - - routes_to_make = list( - /datum/shuttle_destination/shuttle3/stationhangar3 = 0 SECONDS - ) -*/ - -/datum/shuttle_destination/shuttle3/stationhangar3 - name = "Southern Cross Hangar Three" - my_landmark = "hangar_3" - preferred_interim_tag = "shuttle3_transit" - - radio_announce = 0 - announcer = "Southern Cross Docking Computer" - -/datum/shuttle_destination/shuttle3/stationhangar3/get_arrival_message() - return "Attention, [master.my_shuttle.visible_name] has arrived to Hangar Three." - -/datum/shuttle_destination/shuttle3/stationhangar3/get_departure_message() - return "Attention, [master.my_shuttle.visible_name] has departed Hangar Three." - -/datum/shuttle_destination/shuttle3/sky - name = "Skies of Sif" - my_landmark = "shuttle3_sky" - preferred_interim_tag = "shuttle3_sky_transit" - - routes_to_make = list( - /datum/shuttle_destination/shuttle3/mining_base = 10 SECONDS - ) - -/datum/shuttle_destination/shuttle3/mining_base - name = "Wilderness Landing Site " - my_landmark = "shuttle3_mining" - preferred_interim_tag = "shuttle3_sky_transit" - - radio_announce = 0 - announcer = "Outpost Automated ATC" - -/datum/shuttle_destination/shuttle3/mining_base/get_arrival_message() - return "Attention, [master.my_shuttle.visible_name] has arrived to the Wilderness Area." - -/datum/shuttle_destination/shuttle3/mining_base/get_departure_message() - return "Attention, [master.my_shuttle.visible_name] has departed the Wilderness Area." - -//Shuttle displays for tracking Shuttles 1 and 2 without spammy intercom announcements. This could hypothetically be expanded to other shuttles if for some reason that's desirable. -/obj/machinery/status_display/shuttle_display - ignore_friendc = 1 - mode = STATUS_DISPLAY_CUSTOM - name = "\improper STS display" //STS means Sif Transport System - desc = "A Sif Transport System display. It tracks automated shuttles." - message1 = "SHUT1" //Intended to be set on the map. Defaults to SHUT1 if spawned in to allow lazier mapping. - - var/datum/shuttle/autodock/web_shuttle/my_shuttle //This is set by the get_my_shuttle() proc. Don't modify it here. Typepath needs to be defined this far for the compiler to recognize shuttle datum variables. - var/last_z = Z_LEVEL_STATION_ONE - var/shuttle_tag = "Shuttle 1" //This needs to use the same tag system as the shuttles subsystem. Set this on the map, otherwise defaults to "Shuttle 1." - var/location_desc //Location descriptions for extra information on examine. - -/obj/machinery/status_display/shuttle_display/examine(mob/user) //Because the displays only fit 5 characters per line. - . = ..() - . += "[shuttle_tag] is currently [location_desc]." - -/obj/machinery/status_display/shuttle_display/Initialize() - ..() - GLOB.shuttdisp_list |= src //Populates the global list for the roundstart hook. - -/hook/roundstart/proc/shuttdisp_connect() //Initialize (and LateInitialize) call before the shuttle datums exist so this is needed to make shuttle displays work when mapped in - for(var/obj/machinery/status_display/shuttle_display/SD in GLOB.shuttdisp_list) - SD.get_my_shuttle() - return TRUE - -/obj/machinery/status_display/shuttle_display/New() - ..() - get_my_shuttle() - update() - -/obj/machinery/status_display/shuttle_display/proc/get_my_shuttle() //Links the displays to their shuttles. Must be called after the shuttle datums exist. - var/datum/shuttle/autodock/shuttle = SSshuttles.shuttles[shuttle_tag] - if(!shuttle) - log_debug("Shuttle display could not find its shuttle!") - else - my_shuttle = shuttle - GLOB.shuttdisp_list -= src //Remove the displays from the global list to reduce memory usage because it's only needed before shuttles initialize. - -/obj/machinery/status_display/shuttle_display/update() //Location tracking. - if(!..() && mode == STATUS_DISPLAY_CUSTOM) - message2 = "" - - if(!my_shuttle) - message2 = "ErrR" - location_desc = "ERROR SHUTTLE NOT FOUND" - - else if(my_shuttle.autopilot == FALSE) //This should prevent displays from being incorrect if somebody steals the shuttles. - message2 = "MANUAL" - location_desc = "piloted manually. Please contact Exploration to return the shuttle to autopilot" //Tell them to use Shuttle 3. - - else if(my_shuttle.current_location.z == Z_LEVEL_STATION_ONE) - message2 = "Stat" - last_z = Z_LEVEL_STATION_ONE - location_desc = "docked on the station" - - else if(my_shuttle.current_location.z == Z_LEVEL_SURFACE) - message2 = "Outp" - last_z = Z_LEVEL_SURFACE - location_desc = "docked on the outpost" - - else - if(last_z == Z_LEVEL_STATION_ONE) - message2 = "STS-O" - location_desc = "travelling to the outpost" - - if(last_z == Z_LEVEL_SURFACE) - message2 = "STS-S" - location_desc = "travelling to the station" - - - update_display(message1, message2) - return 1 - return 0 - -/obj/machinery/status_display/shuttle_display/receive_signal() //This should ensure the shuttle screens can never be changed to a message. - return - -/obj/machinery/status_display/shuttle_display/on_alert_changed() //Same as above but for alert levels. - return \ No newline at end of file diff --git a/maps/southern_sun/shuttles/ert.dm b/maps/southern_sun/shuttles/ert.dm deleted file mode 100644 index a748f9702b..0000000000 --- a/maps/southern_sun/shuttles/ert.dm +++ /dev/null @@ -1,30 +0,0 @@ -/obj/machinery/computer/shuttle_control/multi/ert - name = "response shuttle control console" - req_access = list(access_cent_specops) - shuttle_tag = "Response Operations Shuttle" - -/datum/shuttle/autodock/multi/ert - name = "Response Operations Shuttle" - warmup_time = 0 - can_cloak = TRUE - cloaked = FALSE - shuttle_area = /area/shuttle/response_ship - current_location = "response_ship_start" - docking_controller_tag = "response_shuttle" - destination_tags = list( - "response_ship_start", - "d1_aux_a", - "d2_w1_a", - "d2_w1_c", - "d1_near_ne", - "d1_near_nw", - "d1_near_se", - "d1_near_sw", - "d2_near_ne", - "d2_near_nw", - "d2_near_se", - "d2_near_sw", - "d3_near_w", - "outpost_nw", - "outpost_s" - ) \ No newline at end of file diff --git a/maps/southern_sun/shuttles/heist.dm b/maps/southern_sun/shuttles/heist.dm deleted file mode 100644 index 0c2fff9c7a..0000000000 --- a/maps/southern_sun/shuttles/heist.dm +++ /dev/null @@ -1,31 +0,0 @@ -/obj/machinery/computer/shuttle_control/multi/heist - name = "skipjack control console" - req_access = list(access_syndicate) - shuttle_tag = "Skipjack" - -/datum/shuttle/autodock/multi/heist - name = "Skipjack" - warmup_time = 0 - can_cloak = TRUE - cloaked = TRUE - shuttle_area = /area/shuttle/skipjack - current_location = "skipjack_start" - docking_controller_tag = "skipjack_shuttle" - move_direction = NORTH - destination_tags = list( - "skipjack_start", - "d1_aux_b", - "d1_aux_c", - "d2_w1_e", - "d2_w2_e", - "d2_w3_e", - "d1_near_ne", - "d1_near_nw", - "d1_near_se", - "d1_near_sw", - "d2_near_ne", - "d2_near_nw", - "d2_near_se", - "d2_near_sw", - "d3_near_w" - ) \ No newline at end of file diff --git a/maps/southern_sun/shuttles/merc.dm b/maps/southern_sun/shuttles/merc.dm deleted file mode 100644 index d6bcc1d2e8..0000000000 --- a/maps/southern_sun/shuttles/merc.dm +++ /dev/null @@ -1,56 +0,0 @@ -/* -/datum/shuttle/multi_shuttle/mercenary - name = "Mercenary" - warmup_time = 0 - can_cloak = TRUE - cloaked = TRUE - origin = /area/syndicate_station/start - interim = /area/syndicate_station/transit - start_location = "Mercenary Ship" - destinations = list( - "Northwest of First Deck" = /area/syndicate_station/firstdeck, - "Northeast of the Second deck" = /area/syndicate_station/seconddeck, - "Southeast of Third deck" = /area/syndicate_station/thirddeck, - "Planetside" = /area/syndicate_station/planet, - "Docking Port" = /area/syndicate_station/arrivals_dock, - ) - docking_controller_tag = "merc_shuttle" - destination_dock_targets = list( - "Forward Operating Base" = "merc_base", - "Docking Port" = "nuke_shuttle_dock_airlock", - ) - announcer = "Southern Cross Docking Computer" - -/datum/shuttle/multi_shuttle/mercenary/New() - arrival_message = "Attention, vessel docking with the Southern Cross." - departure_message = "Attention, vessel docking with the Southern Cross." - ..() -*/ - -/obj/machinery/computer/shuttle_control/multi/syndicate - name = "mercenary shuttle control console" - req_access = list(access_syndicate) - shuttle_tag = "Mercenary Ship" - -/datum/shuttle/autodock/multi/syndicate - name = "Mercenary Ship" - warmup_time = 0 - can_cloak = TRUE - cloaked = TRUE - shuttle_area = /area/shuttle/syndicate - current_location = "syndie_start" - docking_controller_tag = "merc_shuttle" - destination_tags = list( - "syndie_start", - "d1_aux_c", - "d2_w3_e", - "d1_near_ne", - "d1_near_nw", - "d1_near_se", - "d1_near_sw", - "d2_near_ne", - "d2_near_nw", - "d2_near_se", - "d2_near_sw", - "d3_near_w" - ) \ No newline at end of file diff --git a/maps/southern_sun/shuttles/ninja.dm b/maps/southern_sun/shuttles/ninja.dm deleted file mode 100644 index e693f13aa4..0000000000 --- a/maps/southern_sun/shuttles/ninja.dm +++ /dev/null @@ -1,30 +0,0 @@ -/obj/machinery/computer/shuttle_control/multi/ninja - name = "stealth shuttle control console" - req_access = list(access_syndicate) - shuttle_tag = "Ninja Shuttle" - -/datum/shuttle/autodock/multi/ninja - name = "Ninja Shuttle" - warmup_time = 0 - can_cloak = TRUE - cloaked = TRUE - shuttle_area = /area/shuttle/ninja - current_location = "ninja_start" - docking_controller_tag = "ninja_shuttle" - move_direction = SOUTH - destination_tags = list( - "ninja_start", - "d1_aux_d", - "d2_w3_a", - "d2_w3_c", - "d1_near_ne", - "d1_near_nw", - "d1_near_se", - "d1_near_sw", - "d2_near_ne", - "d2_near_nw", - "d2_near_se", - "d2_near_sw", - "d3_near_w", - "d3_near_se", - ) \ No newline at end of file diff --git a/maps/southern_sun/southern_cross-0.dmm b/maps/southern_sun/southern_cross-0.dmm deleted file mode 100644 index 3952b2b8af..0000000000 --- a/maps/southern_sun/southern_cross-0.dmm +++ /dev/null @@ -1,79040 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ac" = ( -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/aft) -"ad" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"ag" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"ah" = ( -/obj/structure/foamedmetal, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"ak" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/random/maintenance/research, -/turf/simulated/floor/tiled/white, -/area/maintenance/abscience) -"al" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"am" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"ao" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"ap" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"aq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering/gravgen) -"ar" = ( -/obj/machinery/floodlight, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"as" = ( -/obj/machinery/light/floortube, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"at" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 5 - }, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable{ - pixel_x = 3; - pixel_y = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppowerlobby) -"av" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/field) -"aw" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/loot_pile/surface/medicine_cabinet/fresh{ - pixel_y = 25 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abfirstaid) -"ay" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/item/tape/engineering, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"aC" = ( -/obj/effect/floor_decal/rust, -/obj/structure/table/rack, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abfirstaid) -"aD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"aF" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"aH" = ( -/obj/structure/bed/chair/sofa/right/beige{ - dir = 4 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/maintenance/lookout) -"aJ" = ( -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/gravgen) -"aM" = ( -/obj/effect/floor_decal/rust, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"aN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/broken/turfpack/station, -/area/maintenance/bar/dorm_1) -"aO" = ( -/obj/effect/floor_decal/rust, -/obj/structure/reagent_dispensers/foam, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/plating, -/area/maintenance/janitoral) -"aQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/random/mouseremains, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"aS" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"aT" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/cargo{ - name = "Cargo"; - req_one_access = null - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/abcargo) -"aU" = ( -/obj/structure/bed/pillowpilefront/teal, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_1) -"aV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"aX" = ( -/obj/structure/table/marble, -/obj/random/drinksoft, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"aY" = ( -/obj/structure/table/rack/shelf, -/obj/random/fishing_junk, -/obj/random/unidentified_medicine/viral, -/obj/random/drinkbottle, -/obj/random/maintenance/security, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"aZ" = ( -/obj/item/reagent_containers/chem_disp_cartridge/water, -/obj/item/reagent_containers/chem_disp_cartridge/ethanol{ - pixel_y = 7; - pixel_x = -4 - }, -/obj/item/reagent_containers/chem_disp_cartridge/chlorine{ - pixel_x = -5 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"ba" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/backuppower) -"bb" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"bc" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"bd" = ( -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"bg" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"bi" = ( -/obj/structure/table/rack/shelf, -/obj/random/soap, -/obj/random/miniature, -/obj/random/flashlight, -/obj/random/mainttoyloot, -/obj/random/forgotten_tram, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"bj" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"bl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponics) -"bm" = ( -/obj/structure/loot_pile/surface/medicine_cabinet/fresh{ - pixel_y = 25 - }, -/turf/simulated/floor/reinforced, -/area/maintenance/abchemistry) -"bo" = ( -/obj/item/radio/subspace, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"bp" = ( -/obj/structure/prop/dark_node, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"bq" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"br" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/random/trash, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abscience) -"bs" = ( -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_2) -"bt" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"bw" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponicssupp) -"bA" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/substation/gravgen) -"bB" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 3 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/aft) -"bD" = ( -/obj/effect/floor_decal/rust, -/obj/random/flashlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"bH" = ( -/obj/structure/catwalk, -/obj/structure/flora/pottedplant/fern, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"bM" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/random/trash, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"bO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/blue2/turfpack/station, -/area/maintenance/thrift) -"bQ" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/accessory/badge/sheriff, -/obj/random/thermalponcho, -/obj/random/powercell, -/obj/random/maintenance/morestuff, -/obj/random/unidentified_medicine/viral, -/obj/random/cigarettes, -/obj/random/forgotten_tram, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"bR" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"bT" = ( -/obj/structure/catwalk, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"bU" = ( -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"bV" = ( -/obj/structure/bed/chair/wood, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"ca" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"ce" = ( -/obj/effect/landmark{ - name = "maint_pred" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"cg" = ( -/obj/structure/smoletrack/roadT{ - dir = 8 - }, -/turf/simulated/floor/smole, -/area/maintenance/smoleroom) -"ci" = ( -/obj/machinery/door/airlock/maintenance/rnd{ - name = "Genetics"; - req_one_access = null - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/item/tape/police, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/absgenetics) -"cj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"cl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/maintdeck/field) -"cn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/maintenance/substation/gravgen) -"co" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppower) -"cp" = ( -/obj/machinery/door/firedoor/multi_tile/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"cq" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"cs" = ( -/obj/random/trash, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"ct" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering) -"cv" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"cw" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"cy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppowerlobby) -"cz" = ( -/obj/item/laserdome_flag/red, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"cD" = ( -/obj/random/trash, -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"cE" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"cF" = ( -/obj/structure/table/marble, -/obj/random/maintenance, -/turf/simulated/floor/bmarble, -/area/maintenance/thrift) -"cH" = ( -/obj/effect/floor_decal/rust, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"cJ" = ( -/obj/random/flashlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"cK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/effect/wingrille_spawn/reinforced, -/obj/item/tape/engineering, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"cL" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4"; - dir = 4 - }, -/obj/structure/cable/yellow, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"cM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"cP" = ( -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 10 - }, -/obj/structure/sign/directions/cargo{ - dir = 8 - }, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = -10 - }, -/turf/simulated/wall/r_wall/turfpack/station, -/area/engineering/lowlobby) -"cR" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/random/tool/powermaint, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"cV" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"cX" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"cZ" = ( -/obj/structure/flora/pottedplant/dead, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"db" = ( -/obj/structure/sign/directions/ladder_up{ - dir = 4 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_y = 10 - }, -/obj/structure/sign/directions/science/rnd{ - dir = 4; - pixel_y = -10 - }, -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/aft) -"dd" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/engineering/gravgen) -"dg" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/absgenetics) -"dj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"dl" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/maintenance/central) -"dm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/wall, -/area/maintenance/abcargo) -"dn" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/starboard) -"do" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"dr" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/ragecage) -"dv" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering) -"dw" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_1) -"dx" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"dy" = ( -/obj/effect/floor_decal/rust, -/obj/random/mainttoyloot, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"dB" = ( -/turf/simulated/floor/wood/broken/turfpack/station, -/area/maintenance/bar/dorm_2) -"dD" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"dE" = ( -/obj/structure/catwalk, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldhallway) -"dG" = ( -/obj/structure/railing, -/turf/simulated/floor/wood/alt/panel/broken/turfpack/station, -/area/maintenance/abtheatre) -"dH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"dI" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_2) -"dJ" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravgen) -"dK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"dO" = ( -/obj/random/trash, -/turf/simulated/floor/lino, -/area/maintenance/abtheatre) -"dP" = ( -/obj/structure/bed/chair/bay/chair/padded/red/bignest, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_1) -"dR" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"dS" = ( -/obj/random/junk, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"dT" = ( -/obj/random/trash, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"dW" = ( -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"dY" = ( -/obj/structure/curtain/bed, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"dZ" = ( -/turf/simulated/floor/grass, -/area/maintenance/aft) -"ea" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"eb" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass, -/area/maintenance/aft) -"ec" = ( -/obj/item/storage/bag/cash, -/obj/machinery/button/remote/airlock{ - id = "cage"; - name = "Cage Bolts"; - specialfunctions = 4; - dir = 8; - pixel_x = 30 - }, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"ed" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponics) -"ee" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/engineering/lowlobby) -"ef" = ( -/obj/random/junk, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"eh" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"ei" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"ek" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/industrial/hatch/blue, -/obj/structure/grille, -/obj/structure/window/basic/full, -/obj/structure/window/basic, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thrift) -"el" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"em" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/carpet/purcarpet, -/area/maintenance/aft) -"eo" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"ep" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/backuppower) -"eq" = ( -/obj/random/cash, -/obj/effect/decal/cleanable/flour, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/maintenance/bar) -"er" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/maintenance/substation/gravgen) -"eu" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abtheatre) -"ev" = ( -/obj/structure/table/standard, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_1) -"ex" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "d0_outer"; - locked = 1; - name = "External Airlock Access"; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/maintenance/port) -"ez" = ( -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering) -"eA" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"eC" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/central) -"eE" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"eI" = ( -/obj/random/maintenance, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"eJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"eM" = ( -/obj/random/junk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"eN" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"eO" = ( -/obj/structure/catwalk, -/obj/machinery/floodlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"eQ" = ( -/obj/structure/table/rack/shelf, -/obj/random/tool, -/obj/random/maintenance/cargo, -/obj/item/melee/umbrella/random, -/obj/item/seeds/random, -/obj/random/action_figure, -/obj/item/clothing/head/fishing, -/obj/random/cash, -/obj/random/forgotten_tram, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"eV" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/obj/random/plushie{ - pixel_y = -3; - pixel_x = -11 - }, -/obj/random/plushie{ - pixel_y = 4; - pixel_x = 16 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abscience) -"eX" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/random/obstruction, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/port) -"eY" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/space, -/area/space) -"eZ" = ( -/turf/simulated/wall, -/area/maintenance/smoleroom) -"fb" = ( -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"fc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/gravgen) -"fd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering) -"fe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"fg" = ( -/obj/machinery/light/floortube, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"fi" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/gravgen) -"fj" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"fl" = ( -/obj/structure/table/rack/shelf, -/obj/random/mainttoyloot, -/obj/item/lipstick/random, -/obj/item/seeds/random, -/obj/random/mug, -/obj/item/clothing/head/fishing, -/obj/random/flashlight, -/obj/random/cash, -/obj/random/forgotten_tram, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"fm" = ( -/obj/machinery/light/floortube, -/turf/simulated/floor/grass2/turfpack/station, -/area/maintenance/maintdeck/field) -"fo" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"fr" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"ft" = ( -/obj/structure/flora/pottedplant/aquatic, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"fu" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 9 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abchemistry) -"fv" = ( -/obj/effect/floor_decal/rust, -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"fx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/floortube, -/turf/simulated/floor/bmarble, -/area/maintenance/thrift) -"fy" = ( -/obj/structure/flora/pottedplant/unusual, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"fz" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/grass, -/area/maintenance/aft) -"fC" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/abtheatre) -"fD" = ( -/obj/structure/closet/crate/wooden, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abcargo) -"fG" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"fH" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/barricade, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"fM" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"fR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"fS" = ( -/obj/structure/table/marble, -/obj/random/drinksoft, -/turf/simulated/floor/wood/broken/turfpack/station, -/area/maintenance/bar) -"fT" = ( -/obj/structure/catwalk, -/obj/random/toolbox, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"fW" = ( -/turf/simulated/floor/lino, -/area/maintenance/bar) -"fX" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"fY" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"ga" = ( -/obj/structure/table/rack, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil{ - pixel_y = 2 - }, -/obj/item/stack/cable_coil{ - pixel_y = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/engineering/backuppowerlobby) -"gb" = ( -/obj/structure/bed/double/padded, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/carpet/purcarpet, -/area/maintenance/aft) -"gc" = ( -/obj/structure/hyperball_goal/blue, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/maintdeck/field) -"gd" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance/medical{ - name = "Chemistry"; - req_one_access = null - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/abmedical) -"ge" = ( -/obj/effect/decal/cleanable/confetti, -/turf/unsimulated/floor/carpet/retro/turfpack/station, -/area/maintenance/abtheatre) -"gf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"gh" = ( -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 2; - name = "Maintenance Access" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering/gravgen) -"gk" = ( -/turf/unsimulated/floor/carpet/gaycarpet, -/area/maintenance/bar) -"gl" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"go" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/random/tool, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"gp" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/substation/gravgen) -"gq" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/maintenance/aft) -"gr" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/bar) -"gs" = ( -/obj/item/clothing/mask/muzzle/ballgag, -/obj/structure/table/standard, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"gv" = ( -/turf/simulated/wall, -/area/maintenance/abcargo) -"gx" = ( -/obj/structure/smoletrack/roadturn{ - dir = 4 - }, -/turf/simulated/floor/smole, -/area/maintenance/smoleroom) -"gy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/broken/turfpack/station, -/area/maintenance/bar/dorm_2) -"gB" = ( -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"gE" = ( -/obj/structure/table/marble, -/obj/item/seeds/ambrosiagaiaseed, -/obj/item/seeds/ambrosiagaiaseed, -/obj/item/seeds/ambrosiainfernusseed, -/obj/item/seeds/ambrosiainfernusseed, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponics) -"gG" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"gH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"gI" = ( -/obj/structure/firedoor_assembly, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"gJ" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"gK" = ( -/obj/random/obstruction, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abcargo) -"gL" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/starboard) -"gM" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/barricade, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/maintenance/central) -"gN" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abmedical) -"gP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"gR" = ( -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 2; - name = "Maintenance Access" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering) -"gX" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/maintenance/lookout) -"gY" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"gZ" = ( -/obj/structure/table/reinforced, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"hb" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/lowlobby) -"hd" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/item/tape/engineering, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"he" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/bar/dorm_1) -"hg" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"hh" = ( -/obj/random/junk, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"hj" = ( -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"hk" = ( -/obj/structure/bed/chair/oldsofa/right{ - dir = 8 - }, -/turf/unsimulated/floor/carpet/gaycarpet, -/area/maintenance/bar) -"hl" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/aft) -"hn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"hq" = ( -/mob/living/simple_mob/animal/passive/mouse/white, -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/absgenetics) -"hr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"ht" = ( -/obj/structure/bed/pillowpilefront/orange, -/turf/simulated/floor/wood/broken/turfpack/station, -/area/maintenance/bar/dorm_2) -"hx" = ( -/obj/random/mouseremains, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"hy" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"hz" = ( -/obj/structure/table/rack/shelf, -/obj/structure/curtain/black, -/obj/random/maintenance, -/obj/random/maintenance/medical, -/obj/random/maintenance/security, -/turf/simulated/floor/bmarble, -/area/maintenance/thrift) -"hA" = ( -/turf/simulated/floor/tiled/white, -/area/maintenance/abscience) -"hB" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldhallway) -"hC" = ( -/turf/simulated/wall, -/area/maintenance/janitoral) -"hG" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"hH" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/engi, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/substation/gravgen) -"hJ" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/gravgen) -"hK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/maintenance/abscience) -"hN" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"hR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/gravgen) -"hT" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"hU" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"hV" = ( -/obj/structure/catwalk, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"hX" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/engi, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/central) -"hZ" = ( -/obj/structure/table/rack/shelf, -/obj/random/material, -/obj/random/mainttoyloot, -/obj/random/maintenance/morestuff, -/obj/random/maintenance/research, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"ib" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"ic" = ( -/obj/structure/window/reinforced, -/obj/structure/flora/pottedplant/large{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"ie" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "d0_inner"; - locked = 1; - name = "Internal Airlock Access"; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/maintenance/port) -"if" = ( -/obj/structure/flora/pottedplant/overgrown, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"ig" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"ij" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"ik" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppower) -"il" = ( -/obj/structure/lattice, -/obj/machinery/shield_diffuser, -/turf/space, -/area/space) -"io" = ( -/obj/structure/railing/grey, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"ir" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"iu" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abtheatre) -"iv" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"iw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/random/trash, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponics) -"iy" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"iA" = ( -/obj/structure/table/rack/shelf, -/obj/random/soap, -/obj/random/maintenance/engineering, -/obj/random/instrument, -/obj/random/forgotten_tram, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"iB" = ( -/turf/simulated/wall, -/area/maintenance/ragecage) -"iD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/smoleroom) -"iI" = ( -/obj/structure/smoletrack/roadS{ - dir = 4 - }, -/turf/simulated/floor/smole, -/area/maintenance/smoleroom) -"iL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"iM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppowerlobby) -"iP" = ( -/turf/simulated/floor/plating/turfpack/airless, -/area/space) -"iS" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"iU" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravgen) -"iX" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"iY" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/multi_tile/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"jb" = ( -/obj/random/trash, -/obj/random/junk, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"jc" = ( -/obj/structure/catwalk, -/obj/random/tool, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"jd" = ( -/turf/simulated/wall/r_lead, -/area/engineering/gravgen) -"je" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"jf" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"jg" = ( -/obj/machinery/smartfridge/drying_rack, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"ji" = ( -/obj/structure/table/marble, -/turf/simulated/floor/wood/broken/turfpack/station, -/area/maintenance/bar) -"jk" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"jm" = ( -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldhallway) -"jn" = ( -/obj/effect/floor_decal/rust, -/obj/random/junk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"jo" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "d0_airlock"; - pixel_y = -26; - req_access = null; - tag_airpump = "d3_port_dorms_pump"; - tag_chamber_sensor = "d3_port_dorms_sensor"; - tag_exterior_door = "d3_port_dorms_outer"; - tag_interior_door = "d3_port_dorms_inner" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"jp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"jq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/port) -"jr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood/alt/parquet/broken/turfpack/station, -/area/maintenance/lookout) -"jt" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/random/flashlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"ju" = ( -/obj/effect/decal/cleanable/flour, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"jv" = ( -/obj/structure/flora/pottedplant/shoot, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"jw" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponics) -"jx" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/space, -/area/space) -"jy" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"jz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"jB" = ( -/obj/structure/table, -/turf/simulated/floor/carpet/purcarpet, -/area/maintenance/aft) -"jC" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"jE" = ( -/obj/random/action_figure{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/random/action_figure{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/random/action_figure{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/random/action_figure{ - pixel_x = 8; - pixel_y = -4 - }, -/obj/random/action_figure, -/obj/effect/decal/cleanable/cobweb2, -/turf/unsimulated/floor/carpet/retro/turfpack/station, -/area/maintenance/abtheatre) -"jF" = ( -/obj/structure/flora/pottedplant/bamboo, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"jI" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/barricade, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"jJ" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"jK" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"jM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"jP" = ( -/obj/item/reagent_containers/chem_disp_cartridge/mercury, -/obj/item/reagent_containers/chem_disp_cartridge/sugar{ - pixel_x = 10; - pixel_y = -4 - }, -/obj/item/reagent_containers/chem_disp_cartridge/lithium{ - pixel_y = 10; - pixel_x = -4 - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/turf/simulated/floor/reinforced, -/area/maintenance/abchemistry) -"jQ" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abfirstaid) -"jR" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"jU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/port) -"jW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/maintenance/substation/gravgen) -"jY" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/field) -"kb" = ( -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponicssupp) -"kc" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"kd" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"kf" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"kg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"kh" = ( -/obj/structure/bed/chair/bay{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abtheatre) -"kj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/structure/table/steel, -/obj/random/maintenance/cargo, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"kk" = ( -/turf/simulated/floor/smole, -/area/maintenance/smoleroom) -"kl" = ( -/obj/random/trash, -/obj/effect/floor_decal/rust, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abcargo) -"km" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/random/flashlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"kn" = ( -/obj/structure/catwalk, -/obj/random/flashlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"ko" = ( -/obj/structure/bed/pillowpilefront/orange, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_2) -"kq" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/smoleroom) -"ks" = ( -/obj/structure/bed/chair/bay{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"kt" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"kw" = ( -/obj/random/junk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"ky" = ( -/obj/structure/grille/broken, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"kB" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"kC" = ( -/obj/random/tool, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"kE" = ( -/turf/simulated/wall/turfpack/station, -/area/maintenance/abtheatre) -"kF" = ( -/obj/structure/bed/chair/sofa/left/beige{ - dir = 4 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/maintenance/lookout) -"kG" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"kH" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/wood/alt/panel, -/area/maintenance/abtheatre) -"kI" = ( -/obj/structure/hyperball_goal/red, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/maintdeck/field) -"kJ" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/field) -"kK" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"kN" = ( -/obj/structure/table, -/obj/structure/table, -/turf/simulated/floor/carpet/purcarpet, -/area/maintenance/aft) -"kP" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/structure/catwalk, -/turf/simulated/floor/dungeon, -/area/maintenance/aft) -"kQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"kR" = ( -/obj/structure/smolebuilding/museum, -/turf/simulated/floor/smole, -/area/maintenance/smoleroom) -"kS" = ( -/obj/item/broken_bottle, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"kU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maint Room 1"; - id_tag = "MaintRoom1"; - req_one_access = null - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_1) -"kV" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/head/fishing, -/obj/random/toolbox, -/obj/random/maintenance/misc, -/obj/item/rectape/random, -/obj/random/donkpocketbox, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"kY" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/port) -"lb" = ( -/obj/random/plushie{ - pixel_y = -3 - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abscience) -"lc" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "ENG - Gravity Generator" - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/gravgen) -"ld" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"le" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"lg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/floodlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"li" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponics) -"lj" = ( -/obj/random/mouseremains, -/turf/simulated/floor/plating, -/area/maintenance/port) -"lr" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"ls" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/random/crate, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"lt" = ( -/turf/simulated/floor/tiled/monotile, -/area/maintenance/maintdeck/field) -"lv" = ( -/obj/structure/flora/pottedplant/minitree, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"lx" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/item/seeds/ambrosiadeusseed, -/obj/item/seeds/ambrosiadeusseed, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponics) -"ly" = ( -/turf/simulated/wall/turfpack/station, -/area/maintenance/bar) -"lz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"lA" = ( -/turf/simulated/wall/turfpack/station, -/area/maintenance/engineering) -"lC" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"lE" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"lH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppowerlobby) -"lK" = ( -/turf/simulated/floor/grass2/turfpack/station, -/area/maintenance/maintdeck/field) -"lL" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/bar/dorm_2) -"lM" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass, -/area/maintenance/aft) -"lN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/substation/gravgen) -"lQ" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abcargo) -"lR" = ( -/obj/machinery/pointdefense{ - id_tag = "PD Main" - }, -/turf/simulated/floor/airless, -/area/space) -"lV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"lW" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/carpet/purcarpet, -/area/maintenance/aft) -"lY" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"ma" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/gravgen) -"mb" = ( -/turf/simulated/wall, -/area/maintenance/maintdeck/fieldhallway) -"me" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"mh" = ( -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldhallway) -"mj" = ( -/obj/random/junk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"mm" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"mo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"mp" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"mq" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/hatch, -/obj/structure/grille, -/obj/structure/window/titanium/full, -/obj/structure/window/titanium, -/obj/structure/window/titanium{ - dir = 4 - }, -/obj/structure/window/titanium{ - dir = 1 - }, -/obj/structure/window/titanium{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lookout) -"ms" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abchemistry) -"mw" = ( -/obj/random/cash{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/random/cash, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/maintenance/bar) -"mx" = ( -/obj/item/storage/briefcase/inflatable, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"my" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"mz" = ( -/obj/structure/door_assembly/door_assembly_highsecurity, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"mA" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"mB" = ( -/obj/structure/table/rack/shelf, -/obj/random/tool, -/obj/random/maintenance/misc, -/obj/item/broken_device/random, -/obj/random/cash{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/random/mech_toy, -/obj/random/forgotten_tram, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"mC" = ( -/obj/structure/sign/warning/radioactive{ - pixel_x = -32 - }, -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"mD" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"mF" = ( -/obj/structure/sign/levels/engineering{ - dir = 5 - }, -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/substation/gravgen) -"mG" = ( -/obj/machinery/light/floortube, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"mH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"mJ" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/field) -"mK" = ( -/obj/structure/table/rack/shelf, -/obj/random/powercell, -/obj/item/storage/wallet/random, -/obj/item/clothing/head/fishing, -/obj/random/forgotten_tram, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"mL" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abmedical) -"mM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"mN" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/maintdeck/fieldthrift) -"mO" = ( -/obj/structure/sign/directions/stairs_up{ - dir = 10 - }, -/turf/simulated/wall, -/area/maintenance/abhydroponicssupp) -"mP" = ( -/obj/item/stack/rods, -/obj/random/thermalponcho, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"mQ" = ( -/obj/random/junk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"mT" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"mU" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"mW" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/obj/structure/firedoor_assembly, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"mX" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/aft) -"mZ" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"na" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"nb" = ( -/obj/structure/bed/chair/bay{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/field) -"nc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/maintdeck/field) -"nf" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"ng" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"nh" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/random/obstruction, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"nj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"nl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppowerlobby) -"nn" = ( -/obj/structure/sign/warning/radioactive{ - pixel_y = 32 - }, -/obj/machinery/power/smes/buildable{ - charge = 5e+006; - input_attempt = 1; - input_level = 200000; - output_level = 200000; - RCon_tag = "Gravity Generator" - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/substation/gravgen) -"no" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/effect/wingrille_spawn/reinforced, -/obj/item/tape/engineering, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"np" = ( -/obj/structure/bed/chair/bay/chair/padded/red/smallnest, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_1) -"nq" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"nr" = ( -/obj/effect/decal/cleanable/spiderling_remains, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"nx" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abmedical) -"ny" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"nz" = ( -/obj/structure/table/woodentable, -/obj/item/clothing/gloves/vox, -/obj/item/clothing/under/suit_jacket/burgundy/skirt, -/turf/simulated/floor/carpet/purcarpet, -/area/maintenance/aft) -"nA" = ( -/obj/item/storage/backpack/clown/loaded, -/turf/simulated/floor/plating, -/area/maintenance/abtheatre) -"nC" = ( -/obj/structure/door_assembly/door_assembly_ext, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering/gravgen) -"nD" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"nF" = ( -/obj/structure/sign/directions/security{ - dir = 8 - }, -/obj/structure/sign/directions/engineering/gravgen{ - pixel_y = 10; - dir = 4 - }, -/obj/structure/sign/directions/evac{ - dir = 8; - pixel_y = -10 - }, -/turf/simulated/wall/r_wall/turfpack/station, -/area/engineering/lowlobby) -"nG" = ( -/obj/structure/bed/chair/bay{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/maintenance/abtheatre) -"nH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering) -"nJ" = ( -/obj/structure/railing, -/turf/simulated/floor/wood/alt/panel, -/area/maintenance/abtheatre) -"nK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abfirstaid) -"nL" = ( -/obj/random/mouseremains, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"nQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"nR" = ( -/obj/random/obstruction, -/obj/effect/floor_decal/rust, -/obj/random/maintenance/cargo, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abcargo) -"nS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/plating/turfpack/airless, -/area/space) -"nT" = ( -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"nU" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/abscience) -"nX" = ( -/obj/item/material/shard{ - icon_state = "medium" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abchemistry) -"nZ" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/broken/turfpack/station, -/area/maintenance/bar) -"ob" = ( -/obj/structure/flora/pottedplant/tropical, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"oc" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"of" = ( -/turf/simulated/floor/tiled/white, -/area/maintenance/bar) -"og" = ( -/obj/structure/table/rack/shelf, -/obj/structure/curtain/black, -/obj/random/donkpocketbox, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/morestuff, -/obj/random/maintenance/research, -/turf/simulated/floor/bmarble, -/area/maintenance/thrift) -"oi" = ( -/obj/structure/table/marble, -/obj/structure/table/marble, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"oj" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"ok" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/structure/table/steel, -/obj/item/folder/yellow, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"ol" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppower) -"om" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/bar) -"on" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"oo" = ( -/obj/structure/table/steel, -/obj/item/seeds/poppyseed, -/obj/item/seeds/poppyseed, -/obj/item/seeds/bloodtomatoseed, -/obj/item/seeds/bloodtomatoseed, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"op" = ( -/obj/structure/table/standard, -/obj/random/maintenance/foodstuff, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_2) -"oq" = ( -/obj/structure/table/rack/shelf, -/obj/random/material, -/obj/random/cigarettes, -/obj/item/seeds/random, -/obj/random/multiple/voidsuit/vintage, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"os" = ( -/obj/random/instrument, -/turf/simulated/floor/wood/alt/panel/broken/turfpack/station, -/area/maintenance/abtheatre) -"ot" = ( -/obj/structure/lattice, -/obj/item/stack/rods, -/obj/item/stack/rods, -/obj/machinery/shield_diffuser, -/turf/space, -/area/space) -"ov" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"ow" = ( -/obj/random/junk, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"ox" = ( -/obj/random/flashlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"oz" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponics) -"oB" = ( -/obj/machinery/button/remote/airlock{ - id = "MaintRoom2"; - name = "Bolt Control"; - pixel_y = -30; - specialfunctions = 4 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_2) -"oE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"oH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood/broken/turfpack/station, -/area/maintenance/bar) -"oJ" = ( -/obj/structure/sign/directions/recreation{ - dir = 5 - }, -/turf/simulated/wall/turfpack/station, -/area/maintenance/abtheatre) -"oL" = ( -/obj/structure/table/rack, -/obj/item/stack/cable_coil/yellow, -/obj/item/stack/cable_coil/yellow{ - pixel_y = 4 - }, -/obj/item/stack/cable_coil/yellow{ - pixel_y = 2 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppowerlobby) -"oR" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/medical/lite, -/obj/random/maintenance/medical, -/turf/simulated/floor/tiled/white, -/area/maintenance/abmedical) -"oU" = ( -/obj/random/toolbox, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"oV" = ( -/turf/simulated/floor/plating, -/area/maintenance/janitoral) -"oX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"oY" = ( -/obj/item/stack/material/marble{ - amount = 25 - }, -/turf/simulated/floor/lino, -/area/maintenance/bar) -"pa" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"pc" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/drinks/bottle/small/beer{ - pixel_y = 10; - pixel_z = 5; - pixel_x = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/small/beer{ - pixel_y = 10; - pixel_z = 5 - }, -/obj/item/reagent_containers/food/drinks/cans/beercan, -/obj/item/reagent_containers/food/drinks/cans/beercan{ - pixel_y = 5; - pixel_x = 10 - }, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"pe" = ( -/obj/random/trash, -/turf/unsimulated/floor/carpet/gaycarpet, -/area/maintenance/bar) -"pf" = ( -/obj/effect/floor_decal/rust, -/obj/structure/bed/chair/bay{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"pg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"pj" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"pk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/broken/turfpack/station, -/area/maintenance/bar) -"pn" = ( -/obj/effect/floor_decal/rust, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"pp" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldhallway) -"pq" = ( -/obj/structure/table/rack/shelf, -/obj/random/medical/pillbottle, -/obj/random/unidentified_medicine/fresh_medicine, -/obj/random/coin/sometimes, -/obj/item/seeds/random, -/obj/random/cash{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/random/mech_toy, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"pr" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/engineering/gravgen) -"ps" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"pt" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"pv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"pw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/bmarble, -/area/maintenance/thrift) -"px" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/absgenetics) -"py" = ( -/turf/simulated/floor/carpet/blue2/turfpack/station, -/area/maintenance/thrift) -"pB" = ( -/obj/structure/table/marble, -/obj/random/coin/sometimes, -/turf/simulated/floor/lino, -/area/maintenance/bar) -"pD" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"pE" = ( -/mob/living/simple_mob/vore/aggressive/rat/labrat{ - faction = "mouse" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/absgenetics) -"pH" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"pJ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/thrift) -"pK" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/abscience) -"pO" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"pP" = ( -/turf/simulated/floor/bmarble, -/area/maintenance/thrift) -"pQ" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"pR" = ( -/obj/machinery/light/floortube, -/turf/simulated/floor/lino, -/area/maintenance/abtheatre) -"pS" = ( -/obj/structure/table/woodentable, -/obj/item/radio/subspace, -/turf/simulated/floor/wood/alt/parquet/broken/turfpack/station, -/area/maintenance/lookout) -"pT" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/item/tape/engineering, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"pV" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"pW" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/floodlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"pX" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"qb" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"qd" = ( -/obj/structure/table/marble, -/obj/random/cash, -/obj/random/cash{ - pixel_x = -5; - pixel_y = 5 - }, -/turf/simulated/floor/bmarble, -/area/maintenance/thrift) -"qf" = ( -/obj/random/mouseremains, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"qg" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/backuppower) -"qh" = ( -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"qi" = ( -/obj/structure/closet/secure_closet/freezer/fridge{ - starts_with = null - }, -/turf/simulated/floor/reinforced, -/area/maintenance/abchemistry) -"qk" = ( -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abtheatre) -"ql" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"qm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/wall, -/area/maintenance/abcargo) -"qn" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abcargo) -"qo" = ( -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"qq" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/lookout) -"qr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering) -"qs" = ( -/obj/effect/floor_decal/techfloor, -/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/techfloor, -/area/maintenance/engineering/gravgen) -"qt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/maintenance/substation/gravgen) -"qu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"qv" = ( -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 2; - name = "Maintenance Access" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/smoleroom) -"qy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"qB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"qC" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/smoleroom) -"qD" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "d3_port_dorms_pump" - }, -/obj/machinery/airlock_sensor{ - id_tag = "d0_sensor"; - pixel_y = 25 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"qJ" = ( -/obj/random/tool, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"qK" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_2) -"qL" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/port) -"qN" = ( -/obj/item/storage/briefcase/inflatable, -/turf/simulated/floor/bmarble, -/area/maintenance/thrift) -"qO" = ( -/obj/random/cutout, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"qP" = ( -/obj/structure/table, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponics) -"qR" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"qS" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/obj/structure/table/rack, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abfirstaid) -"qV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"qW" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"rc" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/simulated/floor/tiled, -/area/maintenance/substation/gravgen) -"re" = ( -/obj/random/trash, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"rf" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"rh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_2) -"ri" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/random/maintenance/medical, -/turf/simulated/floor/tiled/white, -/area/maintenance/abfirstaid) -"rk" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"rl" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abfirstaid) -"rn" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_1) -"ro" = ( -/obj/effect/floor_decal/rust, -/obj/effect/landmark/event_spawn/morphspawn, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"rq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"rs" = ( -/obj/effect/decal/cleanable/spiderling_remains, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abtheatre) -"rv" = ( -/turf/simulated/floor/plating, -/area/maintenance/abtheatre) -"rx" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/backuppowerlobby) -"ry" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"rz" = ( -/turf/simulated/floor/wood/alt/panel/broken/turfpack/station, -/area/maintenance/abtheatre) -"rA" = ( -/obj/effect/floor_decal/rust, -/obj/structure/ladder/up, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/central) -"rC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"rD" = ( -/obj/structure/table/marble, -/obj/item/storage/box/glasses/meta/metapint, -/obj/random/drinkbottle, -/turf/simulated/floor/lino, -/area/maintenance/bar) -"rF" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"rJ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppowerlobby) -"rL" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/turf/simulated/floor/plating, -/area/engineering/gravgen) -"rM" = ( -/obj/structure/sign/warning/radioactive{ - pixel_x = 32 - }, -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"rP" = ( -/obj/effect/floor_decal/rust, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/janitoral) -"rQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"rS" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 9 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 6; - pixel_x = -2 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/camera/network/engineering, -/turf/simulated/floor/tiled, -/area/engineering/backuppowerlobby) -"rT" = ( -/obj/item/clothing/suit/storage/toggle/labcoat/genetics, -/obj/random/humanoidremains, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/absgenetics) -"rU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"rX" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"rY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abfirstaid) -"rZ" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"sa" = ( -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"sc" = ( -/obj/random/trash, -/turf/simulated/floor/grass2/turfpack/station, -/area/maintenance/maintdeck/field) -"se" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"sf" = ( -/obj/effect/decal/cleanable/fruit_smudge, -/turf/unsimulated/floor/carpet/gaycarpet, -/area/maintenance/bar) -"sh" = ( -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = -5 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"sj" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"sk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"sl" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/lookout) -"sn" = ( -/obj/item/stool/baystool/padded{ - dir = 8 - }, -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"sq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"sr" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"su" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"sw" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/lowlobby) -"sx" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"sz" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/maintenance/abmedical) -"sA" = ( -/obj/structure/catwalk, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"sC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering) -"sD" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"sF" = ( -/obj/machinery/door/window/southright{ - name = "Engineering Monitoring Room"; - req_one_access = list(11,24) - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"sG" = ( -/obj/structure/flora/pottedplant/smelly, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"sH" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"sI" = ( -/obj/effect/floor_decal/rust, -/obj/structure/bed/chair/bay{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"sK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"sL" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/simulated/floor/reinforced, -/area/maintenance/abchemistry) -"sQ" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"sS" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"sT" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"sV" = ( -/turf/unsimulated/mask, -/area/engineering/lowlobby) -"sW" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/maintdeck/field) -"sY" = ( -/obj/structure/table/woodentable, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/maintenance/lookout) -"ta" = ( -/obj/structure/firedoor_assembly, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering/gravgen) -"tb" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldhallway) -"tf" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/gravgen) -"tg" = ( -/obj/effect/floor_decal/techfloor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"th" = ( -/obj/random/junk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"ti" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/barricade, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"tj" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"tk" = ( -/obj/structure/table/marble, -/obj/random/junk, -/turf/simulated/floor/lino, -/area/maintenance/bar) -"tl" = ( -/obj/random/junk, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"tm" = ( -/obj/item/clothing/under/swimsuit/stripper/stripper_pink, -/obj/item/clothing/under/swimsuit/stripper/stripper_green, -/obj/item/clothing/under/swimsuit/stripper/mankini, -/obj/structure/table/standard, -/obj/item/clothing/head/kitty, -/turf/simulated/floor/tiled/white, -/area/maintenance/bar) -"tp" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 10 - }, -/obj/machinery/computer/timeclock/premade/south, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/lowlobby) -"tq" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"ts" = ( -/obj/structure/reagent_dispensers/foam, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"tu" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"tx" = ( -/obj/structure/ladder/up, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/janitoral) -"ty" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"tz" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 8; - name = "Rage Cage"; - id_tag = "cage" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"tD" = ( -/obj/structure/barricade/cutout/clown, -/turf/unsimulated/floor/carpet/retro/turfpack/station, -/area/maintenance/abtheatre) -"tF" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"tG" = ( -/obj/random/drinkbottle, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"tK" = ( -/obj/structure/table/rack, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/cable_coil/blue{ - pixel_y = 2 - }, -/obj/item/stack/cable_coil/blue{ - pixel_y = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/engineering/backuppowerlobby) -"tL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/random/flashlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"tN" = ( -/obj/item/storage/briefcase/inflatable, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"tO" = ( -/obj/random/maintenance, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"tP" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponicssupp) -"tQ" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"tR" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/accessory/bowtie, -/obj/random/maintenance/cargo, -/obj/random/maintenance/morestuff, -/obj/item/flame/lighter/random, -/obj/item/rectape/random, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"tS" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"tW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/maintenance/lookout) -"ua" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/port) -"ub" = ( -/obj/effect/floor_decal/rust, -/obj/structure/loot_pile/surface/medicine_cabinet/fresh{ - pixel_y = 25 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abfirstaid) -"ud" = ( -/obj/structure/hyperball_pedestal, -/obj/item/laserdome_hyperball, -/turf/simulated/floor/grass2/turfpack/station, -/area/maintenance/maintdeck/field) -"ue" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/ragecage) -"uf" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering) -"uh" = ( -/obj/structure/table/rack/shelf, -/obj/random/powercell/device, -/obj/random/maintenance/morestuff, -/obj/item/lipstick/random, -/obj/item/broken_device/random, -/obj/random/forgotten_tram, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"ui" = ( -/obj/random/obstruction, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"uj" = ( -/obj/structure/sign/directions/ladder_up{ - dir = 4 - }, -/turf/simulated/wall, -/area/maintenance/janitoral) -"uk" = ( -/obj/structure/door_assembly/door_assembly_ext, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"ul" = ( -/obj/structure/salvageable/computer_os, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/absgenetics) -"um" = ( -/obj/item/trash/popcorn, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"up" = ( -/obj/structure/bed/chair/bay, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"ur" = ( -/obj/structure/smolebuilding/warehouses, -/turf/simulated/floor/smole, -/area/maintenance/smoleroom) -"ut" = ( -/obj/structure/lattice, -/obj/structure/grille, -/obj/structure/lattice, -/turf/space, -/area/space) -"uy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"uz" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/abtheatre) -"uF" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldhallway) -"uG" = ( -/obj/item/laserdome_flag/blue, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"uH" = ( -/obj/machinery/door/airlock/hatch{ - icon_state = "door_locked"; - id_tag = "engine_access_hatch"; - locked = 1; - req_one_access = null - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"uI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/effect/spider/spiderling/non_growing, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"uJ" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"uN" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"uQ" = ( -/obj/structure/table/hardwoodtable, -/obj/item/radio/subspace, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"uR" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "d3_port_dorms_pump" - }, -/obj/structure/sign/warning/airlock{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"uS" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponics) -"uT" = ( -/obj/structure/table/woodentable, -/obj/item/seeds/reishimycelium, -/obj/item/seeds/reishimycelium, -/obj/item/seeds/reishimycelium, -/obj/random/trash, -/turf/simulated/floor/carpet/purcarpet, -/area/maintenance/aft) -"uU" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"uV" = ( -/obj/effect/floor_decal/rust, -/obj/random/mainttoyloot, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"uY" = ( -/obj/random/trash, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"uZ" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/engineering/backuppower) -"va" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/gravgen) -"vc" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"vd" = ( -/obj/random/plushie{ - pixel_y = -3; - pixel_x = 2 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abscience) -"vl" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/bar) -"vn" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"vo" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"vp" = ( -/obj/structure/table/rack/shelf, -/obj/random/maintenance/misc, -/obj/item/storage/wallet/random, -/obj/item/broken_device/random, -/obj/random/forgotten_tram, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"vq" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/wood/alt/panel, -/area/maintenance/abtheatre) -"vt" = ( -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/carpet/purcarpet, -/area/maintenance/aft) -"vu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"vw" = ( -/obj/random/trash, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"vx" = ( -/obj/structure/closet/lasertag/blue, -/obj/item/tvcamera{ - channel = "NLS Southern Cross Hyperball"; - name = "hyperball camera drone" - }, -/obj/item/tvcamera{ - channel = "NLS Southern Cross Hyperball"; - name = "hyperball camera drone" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"vy" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/random/obstruction, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"vC" = ( -/obj/structure/table/reinforced, -/obj/item/toy/redbutton{ - pixel_y = 5 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"vE" = ( -/obj/effect/floor_decal/techfloor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"vF" = ( -/obj/item/storage/briefcase/inflatable, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"vG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/broken/turfpack/station, -/area/maintenance/bar) -"vH" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"vJ" = ( -/obj/random/mouseremains, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"vK" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/random/mouseremains, -/turf/simulated/floor/tiled/white, -/area/maintenance/abfirstaid) -"vL" = ( -/obj/structure/closet/lasertag/red, -/obj/item/tvcamera{ - channel = "NLS Southern Cross Hyperball"; - name = "hyperball camera drone" - }, -/obj/item/tvcamera{ - channel = "NLS Southern Cross Hyperball"; - name = "hyperball camera drone" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"vM" = ( -/obj/structure/catwalk, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"vN" = ( -/obj/random/mouseremains, -/turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/maintenance/lookout) -"vQ" = ( -/obj/machinery/light/floortube, -/turf/simulated/floor/wood/alt/parquet/broken/turfpack/station, -/area/maintenance/lookout) -"vR" = ( -/obj/random/drinksoft, -/obj/random/drinksoft, -/obj/random/drinksoft, -/obj/random/drinksoft, -/obj/random/drinksoft, -/obj/structure/closet/secure_closet/freezer/fridge{ - starts_with = null - }, -/obj/random/drinksoft, -/obj/random/drinksoft, -/obj/random/drinksoft, -/obj/random/drinksoft, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"vS" = ( -/obj/structure/flora/pottedplant/dead, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"vU" = ( -/obj/item/trash/popcorn, -/turf/simulated/floor/lino, -/area/maintenance/abtheatre) -"vV" = ( -/turf/simulated/floor/tiled, -/area/engineering/backuppower) -"vX" = ( -/obj/structure/sign/warning/radioactive{ - pixel_x = -32 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"vY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"vZ" = ( -/obj/random/tool/powermaint, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"wd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"we" = ( -/turf/simulated/wall, -/area/maintenance/central) -"wf" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"wg" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"wh" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"wl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"wm" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppowerlobby) -"wn" = ( -/turf/simulated/wall/turfpack/station, -/area/maintenance/central) -"wo" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponics) -"wp" = ( -/obj/structure/flora/pottedplant/sticky, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"wq" = ( -/turf/simulated/wall, -/area/maintenance/bar) -"wr" = ( -/obj/effect/decal/cleanable/flour, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/maintenance/bar) -"wu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/gravgen) -"ww" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"wz" = ( -/obj/effect/floor_decal/rust, -/obj/item/trash/popcorn, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abtheatre) -"wA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/port) -"wB" = ( -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"wC" = ( -/obj/random/mouseremains, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"wD" = ( -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/smoleroom) -"wE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering) -"wF" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/lino, -/area/maintenance/bar) -"wG" = ( -/obj/machinery/floor_light{ - anchored = 1 - }, -/turf/simulated/floor/wood/broken/turfpack/station, -/area/maintenance/bar) -"wH" = ( -/obj/item/stool/baystool/padded{ - dir = 8 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"wI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"wK" = ( -/obj/structure/catwalk, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"wN" = ( -/obj/structure/catwalk, -/obj/random/junk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"wP" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/smoleroom) -"wQ" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - pixel_x = -36; - pixel_y = -6; - on = 0 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"wR" = ( -/obj/structure/bed/chair/oldsofa/left, -/turf/simulated/floor/grass, -/area/maintenance/aft) -"wS" = ( -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"wT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"wV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"wW" = ( -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating, -/area/maintenance/port) -"wX" = ( -/obj/structure/table/rack/shelf, -/obj/random/tool, -/obj/random/maintenance/security, -/obj/random/mug, -/obj/random/forgotten_tram, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"wY" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"wZ" = ( -/turf/space, -/area/space) -"xa" = ( -/obj/effect/floor_decal/rust, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"xb" = ( -/obj/structure/sign/directions/ladder_up{ - dir = 1 - }, -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/maintdeck/fieldhallway) -"xd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"xf" = ( -/turf/simulated/floor/reinforced, -/area/maintenance/abchemistry) -"xg" = ( -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering/gravgen) -"xh" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"xl" = ( -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 3 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/abcargo) -"xm" = ( -/obj/structure/table/standard, -/obj/item/gun/energy/mouseray, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 10 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/absgenetics) -"xn" = ( -/turf/simulated/floor/weird_things/dark, -/area/maintenance/starboard) -"xo" = ( -/obj/structure/flora/pottedplant/crystal, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"xq" = ( -/obj/random/trash, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"xr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/smoleroom) -"xs" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"xt" = ( -/obj/structure/door_assembly, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"xv" = ( -/obj/effect/floor_decal/rust, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"xw" = ( -/obj/structure/table/rack/shelf, -/obj/random/contraband, -/obj/random/fishing_junk, -/obj/random/unidentified_medicine/drug_den, -/obj/item/seeds/random, -/obj/random/maintenance/medical, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"xy" = ( -/obj/random/mouseremains, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"xz" = ( -/obj/effect/decal/cleanable/flour, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"xC" = ( -/obj/item/stack/rods, -/turf/space, -/area/space) -"xF" = ( -/obj/structure/bed/chair/bay{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"xG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"xH" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/random/flashlight, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/port) -"xI" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering/gravgen) -"xK" = ( -/obj/structure/bed/chair/bay/chair/padded/red/smallnest, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_1) -"xL" = ( -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"xM" = ( -/obj/random/plushie{ - pixel_x = 5 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abscience) -"xO" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"xP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/light/floortube, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"xQ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4"; - dir = 4 - }, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"xS" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"xU" = ( -/obj/structure/table/marble, -/turf/simulated/floor/bmarble, -/area/maintenance/thrift) -"xV" = ( -/obj/structure/reagent_dispensers/foam, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"xX" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abmedical) -"yc" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/floodlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"yf" = ( -/obj/structure/railing/grey, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"yj" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"yk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/wood/broken/turfpack/station, -/area/maintenance/bar) -"yl" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/carpet/gaycarpet, -/area/maintenance/bar) -"yo" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/engineering) -"yr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/random/trash, -/turf/simulated/floor/tiled/white, -/area/maintenance/abscience) -"ys" = ( -/obj/machinery/door/airlock/engineering{ - name = "Backup Power Storage" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/lowlobby) -"yv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 6 - }, -/obj/random/junk, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponics) -"yB" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/barricade, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"yE" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"yF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/maintenance/lookout) -"yK" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/floodlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"yM" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"yN" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/engineering/backuppowerlobby) -"yO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"yR" = ( -/turf/simulated/wall/turfpack/station, -/area/maintenance/abhydroponics) -"yS" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/flour, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"yT" = ( -/obj/effect/floor_decal/rust, -/obj/structure/table/standard, -/obj/item/gun/projectile/revolver/capgun, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"yU" = ( -/turf/simulated/floor/wood/alt/panel, -/area/maintenance/abtheatre) -"yV" = ( -/obj/random/flashlight, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"yX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"yY" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/accessory/collar/shock/bluespace/malfunctioning, -/obj/random/plushie, -/obj/random/mech_toy, -/obj/random/unidentified_medicine/drug_den, -/obj/item/seeds/random, -/obj/random/flashlight, -/obj/random/medical/pillbottle, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"za" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 6 - }, -/obj/machinery/chem_master, -/turf/simulated/floor/tiled/white, -/area/maintenance/abchemistry) -"zc" = ( -/obj/random/obstruction, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponicssupp) -"zd" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"zf" = ( -/obj/item/reagent_containers/hypospray/autoinjector/biginjector/expired, -/obj/machinery/light/small, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"zg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abscience) -"zi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/structure/table/standard, -/obj/item/mindbinder, -/turf/simulated/floor/tiled/white, -/area/maintenance/abscience) -"zm" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"zn" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/janitoral) -"zp" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abscience) -"zr" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"zu" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abcargo) -"zx" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"zB" = ( -/obj/item/material/shard, -/obj/item/material/shard{ - icon_state = "medium"; - pixel_y = -7; - pixel_x = -3 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"zE" = ( -/obj/effect/spider/spiderling/non_growing, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"zG" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"zI" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"zJ" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/accessory/collar/collarplanet_earth, -/obj/random/maintenance/security, -/obj/item/clothing/accessory/tropical_random, -/obj/random/action_figure, -/obj/random/forgotten_tram, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"zK" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/port) -"zL" = ( -/turf/simulated/wall/turfpack/station, -/area/maintenance/ragecage) -"zM" = ( -/obj/random/flashlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"zN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"zP" = ( -/obj/structure/firedoor_assembly, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"zS" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abcargo) -"zW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"zX" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled/white, -/area/maintenance/absgenetics) -"zZ" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"Aa" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/random/trash, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/port) -"Ab" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponics) -"Ac" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"Ae" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/barricade, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldhallway) -"Af" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/port) -"Ai" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponicssupp) -"Aj" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Ak" = ( -/obj/structure/table/rack/shelf, -/obj/random/thermalponcho, -/obj/random/mouseray, -/obj/random/coin/sometimes, -/obj/item/flame/lighter/random, -/obj/random/maintenance, -/obj/random/mech_toy, -/obj/random/material/refined, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"Al" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"Am" = ( -/obj/machinery/button/remote/airlock{ - id = "MaintRoom1"; - name = "Bolt Control"; - pixel_y = 30; - specialfunctions = 4 - }, -/obj/structure/bed/pillowpilefront/teal, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar/dorm_1) -"An" = ( -/obj/random/mouseremains, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"As" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"Ax" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"Ay" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Az" = ( -/obj/structure/smoletrack/roadS, -/turf/simulated/floor/smole, -/area/maintenance/smoleroom) -"AA" = ( -/obj/machinery/light/small, -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abfirstaid) -"AB" = ( -/obj/structure/table/steel, -/obj/item/material/knife/machete/hatchet, -/obj/item/material/minihoe, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"AC" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "d3_port_dorms_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"AE" = ( -/turf/simulated/wall/turfpack/station, -/area/maintenance/abmedical) -"AF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/lino, -/area/maintenance/abtheatre) -"AG" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 4 - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/white, -/area/maintenance/abchemistry) -"AI" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/port) -"AL" = ( -/obj/random/obstruction, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/smoleroom) -"AM" = ( -/obj/structure/bed/chair/wood, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"AN" = ( -/obj/random/toy, -/turf/unsimulated/floor/carpet/retro/turfpack/station, -/area/maintenance/abtheatre) -"AO" = ( -/obj/structure/table/woodentable, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/maintenance/lookout) -"AR" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"AV" = ( -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 3 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/bar) -"AW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/wall, -/area/maintenance/abcargo) -"AX" = ( -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abmedical) -"AY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"AZ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abmedical) -"Ba" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abchemistry) -"Bc" = ( -/obj/random/junk, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Be" = ( -/obj/effect/decal/cleanable/fruit_smudge, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"Bf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Bh" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"Bm" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - name = "light switch "; - pixel_x = 38; - on = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/backuppower) -"Bn" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"Bo" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/machinery/door/airlock/highsecurity{ - name = "Utility Access"; - req_one_access = list(17); - req_access = list(17) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/substation/gravgen) -"Bp" = ( -/obj/structure/bed/roller, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abmedical) -"Bq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Bs" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Bu" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"Bx" = ( -/obj/structure/ladder/up, -/turf/unsimulated/floor/carpet/retro/turfpack/station, -/area/maintenance/abtheatre) -"Bz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"BA" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/barricade, -/turf/simulated/floor/plating, -/area/maintenance/starboard) -"BB" = ( -/obj/structure/bed/chair, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"BC" = ( -/obj/effect/floor_decal/borderfloorwhite/corner, -/obj/effect/floor_decal/corner/beige/bordercorner, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abchemistry) -"BD" = ( -/obj/structure/bed/chair/wheelchair, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/maintenance/abmedical) -"BF" = ( -/obj/structure/table/marble, -/obj/random/donkpocketbox, -/turf/simulated/floor/lino, -/area/maintenance/bar) -"BH" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"BI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"BJ" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/random/obstruction, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"BL" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"BN" = ( -/obj/structure/flora/pottedplant/drooping, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"BP" = ( -/obj/effect/decal/cleanable/filth, -/obj/structure/mopbucket, -/turf/simulated/floor/plating, -/area/maintenance/janitoral) -"BQ" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"BS" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"BT" = ( -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/backuppower) -"BV" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/item/tape/engineering, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/maintenance/central) -"BX" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravgen) -"BY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"BZ" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/maintdeck/fieldhallway) -"Ca" = ( -/obj/structure/sign/directions/recreation{ - dir = 4 - }, -/turf/simulated/wall/turfpack/station, -/area/maintenance/ragecage) -"Ce" = ( -/obj/random/trash, -/turf/simulated/floor/carpet/blue2/turfpack/station, -/area/maintenance/thrift) -"Cf" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"Cg" = ( -/obj/structure/sign/warning/radioactive{ - pixel_y = -32 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"Ci" = ( -/obj/random/mouseremains, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"Ck" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/central) -"Cl" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"Cm" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abcargo) -"Cn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood/broken/turfpack/station, -/area/maintenance/bar/dorm_1) -"Co" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"Cq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_1) -"Cr" = ( -/obj/random/junk, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"Cs" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/engi, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/substation/gravgen) -"Cu" = ( -/obj/effect/floor_decal/techfloor, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"Cv" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil/heavyduty, -/obj/item/stack/cable_coil/heavyduty{ - pixel_y = 3 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppowerlobby) -"Cw" = ( -/obj/structure/flora/desert_planet/potted_plant, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"Cx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"Cy" = ( -/obj/structure/bed/chair/sofa/right/beige{ - dir = 1 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/maintenance/lookout) -"CC" = ( -/turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/maintenance/lookout) -"CD" = ( -/obj/random/trash, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"CE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"CF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/substation/gravgen) -"CG" = ( -/obj/structure/bed/chair/oldsofa, -/turf/simulated/floor/grass, -/area/maintenance/aft) -"CH" = ( -/obj/random/mouseremains, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/lino, -/area/maintenance/abtheatre) -"CJ" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/port) -"CK" = ( -/obj/effect/floor_decal/rust, -/obj/item/tape/medical, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"CN" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/item/tape/engineering, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"CP" = ( -/obj/structure/table/rack/shelf, -/obj/item/radio/subspace, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"CR" = ( -/obj/structure/flora/pottedplant/decorative, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"CT" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"CU" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"CW" = ( -/obj/structure/catwalk, -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Da" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Df" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24; - locked = 0 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light_switch{ - name = "light switch "; - pixel_x = 38; - on = 0 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppowerlobby) -"Dg" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/janitoral) -"Dh" = ( -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/plastic, -/obj/fiftyspawner/plastic, -/obj/fiftyspawner/plastic, -/obj/fiftyspawner/plastic, -/obj/fiftyspawner/plastic, -/obj/structure/closet/crate/secure/large/reinforced, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"Dk" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/backuppower) -"Do" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Dr" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"Ds" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering/gravgen) -"Du" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/obj/item/stack/rods, -/turf/space, -/area/space) -"Dw" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Dy" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/floodlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"DA" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"DC" = ( -/obj/random/obstruction, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponicssupp) -"DD" = ( -/obj/structure/flora/pottedplant/unusual, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"DI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"DJ" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abscience) -"DL" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"DM" = ( -/obj/structure/flora/pottedplant/smalltree, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"DN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"DO" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"DP" = ( -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"DQ" = ( -/obj/item/stack/rods, -/obj/random/unidentified_medicine/drug_den, -/obj/random/drinkbottle, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"DR" = ( -/obj/structure/table, -/turf/simulated/floor/bmarble, -/area/maintenance/thrift) -"DU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"DW" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/thrift) -"DY" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/random/trash, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"Ec" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Ed" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/aft) -"Ef" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Eg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Eh" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"Ep" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponics) -"Eq" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"Er" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppowerlobby) -"Es" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/absgenetics) -"Et" = ( -/obj/structure/ladder/up, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Eu" = ( -/obj/random/trash, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"Ev" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Ez" = ( -/obj/structure/smolebuilding/houses, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/smoleroom) -"EC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"EE" = ( -/obj/effect/landmark/event_spawn/morphspawn, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"EI" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppowerlobby) -"EJ" = ( -/obj/structure/stripper_pole, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/maintenance/bar) -"EK" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"EM" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldhallway) -"EN" = ( -/obj/structure/table/marble, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"EO" = ( -/obj/structure/table/rack/shelf, -/obj/machinery/light/small, -/obj/item/radio/subspace, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"EP" = ( -/obj/machinery/light/small, -/turf/simulated/floor/lino, -/area/maintenance/bar) -"ES" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"ET" = ( -/obj/effect/floor_decal/rust, -/obj/item/storage/briefcase/inflatable, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"EU" = ( -/obj/structure/sign/directions/engineering/gravgen{ - dir = 6 - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 10 - }, -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/central) -"EW" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"EY" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"EZ" = ( -/obj/item/mop, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/janitoral) -"Fa" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = -36; - pixel_y = -6; - on = 0 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"Fb" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"Fd" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/port) -"Fe" = ( -/obj/item/storage/backpack/genetics, -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/absgenetics) -"Fh" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/absgenetics) -"Fk" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/item/tape/engineering, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/maintenance/bar) -"Fm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Fn" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/starboard) -"Fo" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Fp" = ( -/obj/random/junk, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Fq" = ( -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/structure/closet/secure_closet/freezer/fridge{ - starts_with = null - }, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"Fr" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"Fs" = ( -/obj/random/trash, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"Ft" = ( -/obj/random/trash, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/lino, -/area/maintenance/abtheatre) -"Fv" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/thrift) -"Fy" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravgen) -"Fz" = ( -/obj/random/junk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"FC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"FD" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"FG" = ( -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/maintdeck/field) -"FH" = ( -/obj/structure/smoletrack/roadF, -/turf/simulated/floor/smole, -/area/maintenance/smoleroom) -"FI" = ( -/obj/structure/table/reinforced, -/obj/item/geiger/wall/west, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 5 - }, -/obj/item/paper/guide/gravity{ - pixel_y = -4; - pixel_x = 5 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "ENG - Gravity Generator Entrance"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/substation/gravgen) -"FJ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/obj/random/plushie{ - pixel_y = 4; - pixel_x = 16 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abscience) -"FK" = ( -/obj/structure/smoleruins, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/smoleroom) -"FL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abtheatre) -"FM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppower) -"FP" = ( -/obj/machinery/door/airlock/engineering{ - name = "Backup Power Storage" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/backuppowerlobby) -"FQ" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"FR" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"FS" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"FV" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"FW" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/port) -"FY" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"FZ" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Ga" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Gb" = ( -/obj/random/obstruction, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Gc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abscience) -"Ge" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/smoleroom) -"Gg" = ( -/obj/random/toolbox, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"Gh" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/brown/bordercorner, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abcargo) -"Gm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_2) -"Gn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"Gq" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Gr" = ( -/obj/item/gun/energy/sizegun, -/turf/simulated/floor/smole, -/area/maintenance/smoleroom) -"Gt" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Gu" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Gw" = ( -/obj/structure/door_assembly, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Gz" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/backuppowerlobby) -"GA" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"GC" = ( -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"GD" = ( -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"GF" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled/white, -/area/maintenance/abscience) -"GH" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"GJ" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/accessory/collar/bell, -/obj/random/maintenance/medical, -/obj/item/lipstick/random, -/obj/random/action_figure, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"GK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"GL" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"GM" = ( -/obj/random/tool, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"GN" = ( -/obj/random/plushie{ - pixel_x = 5 - }, -/obj/random/plushie{ - pixel_y = 4; - pixel_x = 16 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abscience) -"GO" = ( -/obj/item/storage/pill_bottle{ - pixel_x = 5; - pixel_y = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abfirstaid) -"GP" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = -36; - pixel_y = -6; - on = 0 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"GQ" = ( -/obj/item/material/shard{ - icon_state = "medium"; - pixel_y = -7; - pixel_x = -3 - }, -/obj/item/material/shard{ - icon_state = "medium" - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_y = 5; - pixel_x = -8 - }, -/turf/simulated/floor/reinforced, -/area/maintenance/abchemistry) -"GR" = ( -/obj/random/maintenance/cargo, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"GS" = ( -/obj/item/reagent_containers/hypospray/autoinjector/biginjector/expired, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abfirstaid) -"GU" = ( -/obj/random/trash, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"GV" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"GW" = ( -/obj/structure/sign/directions/ladder_up{ - dir = 4 - }, -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/abtheatre) -"GZ" = ( -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"Hc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"Hd" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering) -"Hg" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/simulated/floor/tiled, -/area/engineering/backuppower) -"Hj" = ( -/obj/structure/sign/warning/radioactive{ - pixel_x = 32 - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"Hk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"Hl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Hm" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"Ho" = ( -/turf/simulated/floor/tiled/white, -/area/maintenance/absgenetics) -"Hp" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/backuppowerlobby) -"Hq" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Hr" = ( -/obj/structure/grille/broken, -/obj/item/material/shard, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"Ht" = ( -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 2; - name = "Maintenance Access" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/aft) -"Hv" = ( -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Hw" = ( -/obj/structure/closet/crate/mimic/cointoss, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"Hy" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/barricade, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/abscience) -"Hz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"HC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar/dorm_2) -"HE" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/ragecage) -"HG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"HH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maint Room 2"; - id_tag = "MaintRoom2"; - req_one_access = null - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_2) -"HI" = ( -/obj/structure/sign/directions/engineering{ - dir = 9; - pixel_y = 10 - }, -/obj/structure/sign/directions/engineering/gravgen{ - dir = 4 - }, -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/substation/gravgen) -"HL" = ( -/obj/random/flashlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"HN" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"HO" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abmedical) -"HQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering/gravgen) -"HS" = ( -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/maintenance/bar) -"HT" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"HU" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravgen) -"HX" = ( -/obj/random/junk, -/turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/maintenance/lookout) -"Ia" = ( -/obj/effect/decal/cleanable/filth, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/janitoral) -"Ib" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Ic" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/substation/gravgen) -"Id" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravgen) -"If" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Ig" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/engi, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering/gravgen) -"Ij" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/item/tape/engineering, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abfirstaid) -"Im" = ( -/turf/simulated/floor/tiled/white, -/area/maintenance/abmedical) -"In" = ( -/turf/simulated/floor/wood/broken/turfpack/station, -/area/maintenance/bar) -"Io" = ( -/obj/random/meat, -/obj/random/meat, -/obj/random/meat, -/obj/random/meat, -/obj/random/meat, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/secure_closet/freezer/fridge{ - starts_with = null - }, -/obj/random/meat, -/obj/random/meat, -/obj/random/meat, -/obj/random/meat, -/obj/random/meat, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"Ip" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"Iq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Ir" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/maintenance/abchemistry) -"Is" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"It" = ( -/obj/structure/flora/pottedplant/largebush, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"Iw" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponicssupp) -"Iy" = ( -/obj/structure/table/rack/shelf, -/obj/random/maintenance/medical, -/obj/random/powercell, -/obj/random/action_figure, -/obj/random/fishing_junk, -/obj/random/soap, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"Iz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/lino, -/area/maintenance/abtheatre) -"IA" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"ID" = ( -/obj/structure/sign/warning/radioactive{ - pixel_y = -32 - }, -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"IE" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"IG" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/substation/gravgen) -"IH" = ( -/turf/simulated/wall, -/area/maintenance/absgenetics) -"II" = ( -/obj/structure/table/hardwoodtable, -/obj/random/cash{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/random/cash, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"IK" = ( -/obj/structure/table/marble, -/obj/machinery/cash_register, -/turf/simulated/floor/bmarble, -/area/maintenance/thrift) -"IL" = ( -/obj/random/trash, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"IO" = ( -/obj/machinery/light/small, -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"IP" = ( -/obj/item/material/shard, -/obj/item/reagent_containers/glass/beaker, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"IR" = ( -/obj/structure/closet/crate, -/obj/item/stack/material/phoron{ - amount = 25 - }, -/turf/simulated/floor/tiled, -/area/maintenance/substation/gravgen) -"IT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"IU" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/random/trash, -/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/techfloor, -/area/maintenance/engineering/gravgen) -"IX" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_x = -30; - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"IZ" = ( -/obj/random/obstruction, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Jb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Jf" = ( -/obj/structure/salvageable/computer_os, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abscience) -"Jh" = ( -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abmedical) -"Jk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"Jm" = ( -/obj/structure/dark_portal/minion, -/turf/simulated/floor/weird_things/dark, -/area/maintenance/starboard) -"Jp" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Jq" = ( -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/port) -"Jr" = ( -/obj/item/stack/rods, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"Jt" = ( -/obj/structure/door_assembly/door_assembly_ext, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Jv" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal{ - dir = 4 - }, -/obj/random/trash, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled/white, -/area/maintenance/bar) -"Jw" = ( -/obj/structure/table/rack/shelf, -/obj/random/maintenance/engineering, -/obj/item/towel/random, -/obj/item/melee/umbrella/random, -/obj/random/cigarettes, -/obj/random/instrument, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"JA" = ( -/obj/structure/reagent_dispensers/fueltank/high, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"JB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering/gravgen) -"JC" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/janitoral) -"JD" = ( -/obj/structure/curtain/bed, -/turf/unsimulated/floor/carpet/retro/turfpack/station, -/area/maintenance/abtheatre) -"JG" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"JH" = ( -/obj/structure/prop/dark_node/dust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"JJ" = ( -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 2; - name = "Maintenance Access" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/abhydroponicssupp) -"JK" = ( -/obj/structure/sign/directions/janitor{ - dir = 4; - pixel_y = 10 - }, -/turf/simulated/wall/turfpack/station, -/area/maintenance/abmedical) -"JL" = ( -/obj/random/trash, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponics) -"JN" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"JP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/absgenetics) -"JU" = ( -/obj/structure/table/rack/shelf, -/obj/random/contraband, -/obj/random/mainttoyloot, -/obj/item/broken_device/random, -/obj/random/forgotten_tram, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"JV" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/machinery/camera/network/engineering, -/turf/simulated/floor/tiled, -/area/engineering/backuppower) -"JX" = ( -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"JY" = ( -/obj/random/trash, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"JZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abscience) -"Kb" = ( -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Kc" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering) -"Ke" = ( -/obj/random/organ, -/obj/random/organ, -/obj/random/organ, -/obj/random/organ, -/obj/random/organ, -/obj/structure/closet/secure_closet/freezer/fridge{ - starts_with = null - }, -/obj/random/organ, -/obj/random/organ, -/obj/random/organ, -/obj/random/organ, -/obj/random/organ, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"Kf" = ( -/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" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Ki" = ( -/obj/item/storage/briefcase/inflatable, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"Kj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Kk" = ( -/obj/random/trash, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = -36; - pixel_y = -6; - on = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"Kl" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Km" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/substation/gravgen) -"Kn" = ( -/obj/random/mouseremains, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Ko" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"Kr" = ( -/obj/item/stool/baystool/padded, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"Ks" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 - }, -/obj/random/obstruction, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"Kw" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/maintenance/abmedical) -"Kx" = ( -/obj/machinery/door/airlock/maintenance/rnd{ - name = "Research and Development"; - req_one_access = null - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/abscience) -"Ky" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"KB" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"KG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"KH" = ( -/obj/machinery/computer/power_monitor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"KI" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/medical{ - name = "Medical"; - req_one_access = null - }, -/obj/item/tape/medical, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/abmedical) -"KJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponics) -"KL" = ( -/obj/item/material/twohanded/baseballbat, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"KM" = ( -/obj/structure/railing/grey, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"KQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"KR" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/piratedouble, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_2) -"KS" = ( -/obj/structure/closet/crate/secure/large, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abcargo) -"KV" = ( -/obj/structure/table/rack/shelf, -/obj/random/toolbox, -/obj/item/towel/random, -/obj/item/storage/wallet/random, -/obj/item/melee/umbrella/random, -/obj/item/rectape/random, -/obj/random/cash{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/random/material/refined, -/obj/random/forgotten_tram, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"KY" = ( -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"La" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Lb" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/obj/structure/grille/broken, -/obj/item/stack/rods, -/turf/space, -/area/space) -"Lc" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Lf" = ( -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"Li" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"Lk" = ( -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"Ll" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/maintenance/lookout) -"Ln" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/smoleroom) -"Lp" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/item/storage/pill_bottle{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abfirstaid) -"Lq" = ( -/obj/structure/bed/chair/oldsofa/right, -/turf/simulated/floor/grass, -/area/maintenance/aft) -"Ls" = ( -/obj/structure/table/rack/shelf, -/obj/structure/curtain/black, -/obj/random/maintenance/engineering, -/obj/random/maintenance/misc, -/obj/random/maintenance/research, -/turf/simulated/floor/bmarble, -/area/maintenance/thrift) -"Lt" = ( -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"Lv" = ( -/obj/structure/bed/chair, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"Ly" = ( -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"Lz" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"LE" = ( -/turf/simulated/wall/turfpack/station, -/area/maintenance/absgenetics) -"LG" = ( -/obj/structure/catwalk, -/obj/random/flashlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"LH" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/central) -"LI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/maintenance/lookout) -"LJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppower) -"LK" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"LL" = ( -/obj/structure/railing, -/obj/random/instrument, -/turf/simulated/floor/wood/alt/panel, -/area/maintenance/abtheatre) -"LP" = ( -/obj/random/trash, -/obj/effect/landmark{ - name = "maint_pred" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"LQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"LU" = ( -/turf/simulated/wall, -/area/maintenance/abscience) -"LV" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"LW" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/item/tape/engineering, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"LY" = ( -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_1) -"Mf" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/central) -"Mi" = ( -/obj/effect/floor_decal/techfloor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"Mj" = ( -/obj/random/mouseremains, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"Ml" = ( -/obj/random/junk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponics) -"Mn" = ( -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"Mq" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/aft) -"Mr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"Ms" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/clothing/head/pizzaguy, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"Mt" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_alc/full{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/maintenance/bar) -"Mu" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 4 - }, -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/maintenance/bar) -"Mw" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/random/obstruction, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/port) -"MA" = ( -/obj/effect/floor_decal/techfloor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"ME" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"MF" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_2) -"MH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"MI" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering/gravgen) -"MJ" = ( -/obj/structure/table/woodentable, -/obj/random/action_figure, -/turf/simulated/floor/carpet/purcarpet, -/area/maintenance/aft) -"MK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"MN" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"MO" = ( -/obj/structure/windoor_assembly{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/maintenance/bar) -"MR" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"MS" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"MT" = ( -/turf/unsimulated/floor/carpet/retro/turfpack/station, -/area/maintenance/abtheatre) -"MZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"Na" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"Nc" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Ne" = ( -/obj/machinery/floor_light{ - anchored = 1 - }, -/obj/random/junk, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"Nf" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Ng" = ( -/obj/random/tool, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Nj" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"Nk" = ( -/obj/effect/floor_decal/techfloor, -/obj/random/trash, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"Nl" = ( -/obj/effect/floor_decal/rust, -/obj/structure/catwalk, -/obj/random/maintenance, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"Nm" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"No" = ( -/obj/random/obstruction, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Np" = ( -/obj/structure/closet/radiation, -/turf/simulated/floor/tiled, -/area/maintenance/substation/gravgen) -"Nr" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abfirstaid) -"Nt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/structure/salvageable/computer_os, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"Nw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Ny" = ( -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"Nz" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abscience) -"NC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"ND" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/substation/gravgen) -"NE" = ( -/turf/simulated/floor/plating, -/area/maintenance/aft) -"NF" = ( -/obj/structure/table/woodentable, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_1) -"NG" = ( -/obj/structure/sign/levels/engineering/gravgen{ - pixel_y = 5 - }, -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/substation/gravgen) -"NI" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/pen, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"NJ" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"NK" = ( -/obj/structure/door_assembly/door_assembly_fre, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"NL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldhallway) -"NM" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/item/tape/engineering, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldhallway) -"NN" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"NQ" = ( -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"NR" = ( -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/turf/simulated/floor/reinforced, -/area/maintenance/abchemistry) -"NS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_x = -30; - dir = 1 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponics) -"NT" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"NW" = ( -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"NX" = ( -/obj/random/trash, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/field) -"NY" = ( -/obj/random/trash, -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"NZ" = ( -/obj/machinery/power/smes/batteryrack, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/backuppower) -"Oa" = ( -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abmedical) -"Ob" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/gravgen) -"Oe" = ( -/obj/structure/catwalk, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Of" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"Og" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/janitoral) -"Oh" = ( -/obj/item/reagent_containers/hypospray/autoinjector/biginjector/expired, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abfirstaid) -"Oj" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/maintdeck/fieldthrift) -"Ok" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"Om" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/maintdeck/fieldhallway) -"Oo" = ( -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 3 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 8; - name = "Maintenance Access" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/bar) -"Op" = ( -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"Oq" = ( -/obj/item/stack/material/smolebricks, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/smoleroom) -"Or" = ( -/obj/random/obstruction, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Ow" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/backuppower) -"Oy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/random/empty_or_lootable_crate, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"OC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"OE" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"OF" = ( -/obj/structure/table/marble, -/obj/random/cigarettes, -/obj/item/radio/subspace{ - pixel_y = 8; - pixel_x = 6 - }, -/turf/simulated/floor/lino, -/area/maintenance/bar) -"OG" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/carpet/blue2/turfpack/station, -/area/maintenance/thrift) -"OJ" = ( -/obj/effect/floor_decal/techfloor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"OL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering) -"OM" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"OO" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/ladder/up, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"OP" = ( -/obj/structure/janitorialcart, -/turf/simulated/floor/plating, -/area/maintenance/janitoral) -"OT" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"OU" = ( -/obj/structure/table/woodentable, -/obj/random/maintenance, -/turf/simulated/floor/carpet/purcarpet, -/area/maintenance/aft) -"OX" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"OY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering) -"OZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"Pa" = ( -/obj/item/stamp/clown, -/turf/unsimulated/floor/carpet/retro/turfpack/station, -/area/maintenance/abtheatre) -"Pb" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"Pc" = ( -/obj/random/mouseremains, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"Pd" = ( -/obj/structure/table/rack/shelf, -/obj/random/maintenance/engineering, -/obj/random/miniature, -/obj/random/unidentified_medicine/fresh_medicine, -/obj/item/clothing/accessory/hawaiian_random, -/obj/random/action_figure, -/obj/random/cash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"Pg" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "ENG - Technical Storage"; - dir = 1 - }, -/obj/machinery/power/breakerbox, -/turf/simulated/floor/tiled, -/area/engineering/backuppower) -"Ph" = ( -/obj/structure/catwalk, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Pk" = ( -/obj/structure/table/rack/shelf, -/obj/random/soap, -/obj/random/plushie, -/obj/random/forgotten_tram, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"Pm" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"Pp" = ( -/turf/simulated/floor/plating, -/area/maintenance/port) -"Pr" = ( -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"Ps" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"Pt" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/absgenetics) -"Pu" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering) -"Pv" = ( -/turf/simulated/floor/wood/alt/parquet/broken/turfpack/station, -/area/maintenance/lookout) -"Pw" = ( -/obj/structure/bed/chair/sofa/left/beige{ - dir = 1 - }, -/turf/simulated/floor/wood/alt/parquet/broken/turfpack/station, -/area/maintenance/lookout) -"Px" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"Pz" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/space, -/area/space) -"PB" = ( -/obj/structure/flora/ausbushes/genericbush, -/turf/simulated/floor/grass, -/area/maintenance/aft) -"PD" = ( -/obj/structure/closet/cabinet, -/obj/random/drinkbottle, -/obj/random/drinkbottle, -/obj/random/drinkbottle, -/obj/random/drinkbottle, -/obj/random/drinkbottle, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"PG" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"PH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"PJ" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"PK" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "d3_port_dorms_airlock"; - name = "interior access button"; - pixel_x = -25; - pixel_y = 26; - req_access = null - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"PM" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"PN" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/barricade, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abcargo) -"PO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"PP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"PQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"PR" = ( -/obj/structure/closet/crate/wooden, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"PS" = ( -/obj/structure/grille/broken, -/obj/item/material/shard{ - pixel_x = 5; - pixel_y = -7 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"PU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_1) -"PV" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"PX" = ( -/obj/structure/bed/chair/wood, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"PY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abcargo) -"PZ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/beige/border{ - dir = 5 - }, -/obj/machinery/chemical_dispenser, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/white, -/area/maintenance/abchemistry) -"Qb" = ( -/obj/structure/door_assembly/door_assembly_ext, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"Qd" = ( -/obj/random/plushie{ - pixel_y = -3; - pixel_x = -11 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abscience) -"Qe" = ( -/obj/effect/landmark{ - name = "maint_pred" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Qf" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"Qh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "ENG - Technical Storage"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"Qn" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Qp" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"Qq" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abmedical) -"Qu" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/backuppower) -"Qw" = ( -/obj/structure/table/rack/shelf, -/obj/random/contraband, -/obj/random/donkpocketbox, -/obj/random/maintenance/morestuff, -/obj/random/forgotten_tram, -/obj/item/clothing/head/fishing, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"Qy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"QA" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"QC" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/floor/wood/broken/turfpack/station, -/area/maintenance/bar/dorm_1) -"QE" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"QH" = ( -/obj/effect/floor_decal/rust, -/obj/item/storage/pill_bottle{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/item/storage/pill_bottle, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abfirstaid) -"QJ" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_2) -"QM" = ( -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponics) -"QN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"QP" = ( -/obj/machinery/floodlight, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering/gravgen) -"QS" = ( -/obj/structure/catwalk, -/obj/machinery/door/firedoor/multi_tile/glass, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"QT" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"QU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"QV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"QX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"QY" = ( -/obj/structure/bed/double/padded, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"QZ" = ( -/obj/structure/grille, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Rb" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering) -"Rd" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"Re" = ( -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abcargo) -"Rf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Rg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abcargo) -"Rh" = ( -/obj/effect/floor_decal/rust, -/obj/item/storage/briefcase/inflatable, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"Rj" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"Rl" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Rm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"Ro" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"Rr" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"Rt" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/maintenance/substation/gravgen) -"Rx" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravgen) -"Rz" = ( -/obj/effect/floor_decal/techfloor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"RA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abmedical) -"RB" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/abfirstaid) -"RE" = ( -/obj/machinery/smartfridge/drying_rack, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponicssupp) -"RF" = ( -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"RJ" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"RL" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/maintenance/aft) -"RM" = ( -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponicssupp) -"RO" = ( -/obj/structure/table, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"RP" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"RQ" = ( -/turf/simulated/wall, -/area/maintenance/abhydroponicssupp) -"RR" = ( -/obj/structure/table/marble, -/obj/structure/reagent_dispensers/beerkeg, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"RU" = ( -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"RV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponics) -"RW" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"RX" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/random/trash, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/port) -"Sb" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"Sd" = ( -/obj/machinery/door/airlock/maintenance/medical{ - name = "Medical Storage"; - req_one_access = null - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abchemistry) -"Se" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/space, -/area/space) -"Sh" = ( -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"Sj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"Sk" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"Sl" = ( -/obj/random/mouseremains, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"Sm" = ( -/obj/random/crate, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"Sn" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"Sq" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Sr" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/backuppower) -"Sw" = ( -/obj/random/trash, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"SA" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"SB" = ( -/obj/random/instrument, -/turf/simulated/floor/wood/alt/panel, -/area/maintenance/abtheatre) -"SC" = ( -/obj/item/stool, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"SE" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"SF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"SG" = ( -/obj/structure/stairs/spawner/east, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"SH" = ( -/obj/structure/railing/grey, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"SI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"SJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppower) -"SN" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"SP" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponics) -"SS" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"ST" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/lino, -/area/maintenance/abtheatre) -"SV" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"SW" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"SX" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldhallway) -"SY" = ( -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"Ta" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Tb" = ( -/obj/random/mouseremains, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"Tc" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"Td" = ( -/obj/machinery/floor_light{ - anchored = 1 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"Tg" = ( -/obj/random/junk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"Th" = ( -/obj/structure/bed/chair/bay{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"Ti" = ( -/obj/structure/bed/chair/wood, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"Tk" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/lookout) -"Tl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"Tm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/space, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"To" = ( -/obj/item/modular_computer/console/preset/engineering{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"Tt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/random/maintenance/cargo, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"Tu" = ( -/obj/random/mouseremains, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"Tx" = ( -/obj/random/crate, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"Ty" = ( -/obj/machinery/power/port_gen/pacman, -/turf/simulated/floor/tiled, -/area/maintenance/substation/gravgen) -"TC" = ( -/obj/item/trash/popcorn, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"TD" = ( -/obj/machinery/vending/cola, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"TG" = ( -/obj/structure/table/rack/shelf, -/obj/random/plushie, -/obj/random/mech_toy, -/obj/random/maintenance, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"TH" = ( -/obj/structure/smolebuilding/business, -/turf/simulated/floor/smole, -/area/maintenance/smoleroom) -"TI" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/substation/gravgen) -"TJ" = ( -/turf/simulated/wall/r_wall/turfpack/airless, -/area/space) -"TK" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abmedical) -"TL" = ( -/obj/random/trash, -/turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/maintenance/lookout) -"TM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/absgenetics) -"TN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = -36; - pixel_y = -6; - on = 0 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponics) -"TO" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/flour, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"TQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_1) -"TR" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abscience) -"TS" = ( -/obj/random/flashlight, -/obj/random/toolbox, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering/gravgen) -"TT" = ( -/obj/structure/bed/chair/oldsofa/left, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"TU" = ( -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"TV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"TW" = ( -/obj/random/mouseremains, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"TX" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"TY" = ( -/obj/random/trash, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Ud" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"Ue" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/unsimulated/floor/carpet/retro/turfpack/station, -/area/maintenance/abtheatre) -"Ug" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"Uh" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abmedical) -"Ui" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abtheatre) -"Ul" = ( -/obj/item/material/twohanded/baseballbat, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"Uo" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldhallway) -"Up" = ( -/turf/simulated/floor/tiled/techfloor, -/area/engineering/gravgen) -"Uq" = ( -/obj/structure/table, -/turf/simulated/floor/lino, -/area/maintenance/bar) -"Ur" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"Ut" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Uv" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Ux" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldhallway) -"Uz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abfirstaid) -"UC" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"UG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldhallway) -"UJ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/janitoral) -"UP" = ( -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/drinks/shaker, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"UQ" = ( -/obj/structure/closet/radiation, -/obj/structure/sign/warning/radioactive{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/maintenance/substation/gravgen) -"US" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"UU" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/item/smes_coil/super_io, -/obj/item/multitool{ - pixel_y = -9; - pixel_x = 8 - }, -/obj/item/tool/screwdriver{ - pixel_x = -5 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppowerlobby) -"UW" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"UY" = ( -/obj/random/obstruction, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/smoleroom) -"UZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"Va" = ( -/obj/item/reagent_containers/syringe/drugs{ - pixel_y = 5; - pixel_x = 7 - }, -/obj/item/reagent_containers/syringe/drugs, -/turf/simulated/floor/reinforced, -/area/maintenance/abchemistry) -"Vb" = ( -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"Vc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"Ve" = ( -/obj/structure/mopbucket, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/light_switch{ - pixel_x = 34; - pixel_y = 4; - on = 0 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/plating, -/area/maintenance/janitoral) -"Vg" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Vh" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"Vl" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"Vm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/janitoral) -"Vn" = ( -/turf/simulated/wall/turfpack/station, -/area/maintenance/aft) -"Vo" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abfirstaid) -"Vr" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/obj/machinery/shield_diffuser, -/turf/space, -/area/space) -"Vt" = ( -/obj/random/junk, -/turf/simulated/floor/grass2/turfpack/station, -/area/maintenance/maintdeck/field) -"Vu" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"Vv" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/white, -/area/maintenance/abfirstaid) -"Vw" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"Vx" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/backuppower) -"Vy" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponics) -"Vz" = ( -/obj/item/stool/baystool/padded, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -3; - pixel_x = -32 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"VB" = ( -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/engineering) -"VC" = ( -/obj/structure/sign/directions/medical, -/obj/structure/sign/directions/bar{ - dir = 1; - pixel_y = 10 - }, -/obj/structure/sign/directions/cargo{ - pixel_y = -10 - }, -/turf/simulated/wall/turfpack/station, -/area/maintenance/abchemistry) -"VE" = ( -/obj/structure/lattice, -/obj/machinery/pointdefense{ - id_tag = "PD Main" - }, -/turf/simulated/floor/airless, -/area/space) -"VF" = ( -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"VG" = ( -/obj/structure/table/rack/shelf, -/obj/random/tool, -/obj/random/maintenance/morestuff, -/obj/random/coin/sometimes, -/obj/random/action_figure, -/obj/random/maintenance, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"VH" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"VI" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravgen) -"VJ" = ( -/obj/effect/floor_decal/rust, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"VK" = ( -/obj/structure/bed/chair/bay{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"VL" = ( -/obj/random/empty_or_lootable_crate, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"VN" = ( -/obj/item/handcuffs/fuzzy, -/obj/item/handcuffs/legcuffs/fuzzy, -/obj/item/clothing/under/fluff/latexmaid, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/maintenance/bar) -"VR" = ( -/obj/structure/table/marble, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"VT" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/item/tape/engineering, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"VU" = ( -/obj/random/trash, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"VX" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "d3_port_dorms_pump" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"VY" = ( -/obj/structure/lattice, -/obj/item/stack/rods, -/turf/space, -/area/space) -"Wa" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light_switch{ - name = "light switch "; - pixel_x = 38; - on = 0 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Wb" = ( -/obj/item/radio/subspace, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/field) -"Wc" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"We" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/maintenance/abcargo) -"Wh" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Wj" = ( -/obj/item/storage/briefcase/inflatable, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Wl" = ( -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/maintdeck/field) -"Wm" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"Wn" = ( -/obj/random/obstruction, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abscience) -"Wq" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Wr" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Ws" = ( -/obj/structure/bed/chair/oldsofa/left{ - dir = 8 - }, -/turf/unsimulated/floor/carpet/gaycarpet, -/area/maintenance/bar) -"Wt" = ( -/obj/structure/flora/pottedplant/subterranean, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/engineering) -"Wu" = ( -/obj/machinery/clonepod, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 5 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/absgenetics) -"Wv" = ( -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/plastic, -/obj/fiftyspawner/plastic, -/obj/fiftyspawner/plastic, -/obj/fiftyspawner/plastic, -/obj/fiftyspawner/plastic, -/obj/structure/closet/crate/secure/large/reinforced, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light/small, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/field) -"Wx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Wy" = ( -/obj/effect/floor_decal/rust, -/obj/random/junk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"WC" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"WF" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/port) -"WG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood/broken/turfpack/station, -/area/maintenance/bar) -"WI" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/bar) -"WM" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"WN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abscience) -"WO" = ( -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 3 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 8; - name = "Cargo Warehouse" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/abcargo) -"WQ" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/ragecage) -"WS" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/central) -"WU" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance/medical{ - name = "Medical Storage"; - req_one_access = null - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/abfirstaid) -"WW" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"WX" = ( -/obj/random/junk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/smoleroom) -"WY" = ( -/obj/random/obstruction, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Xc" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"Xg" = ( -/obj/item/storage/smolebrickcase, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/smoleroom) -"Xl" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"Xm" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"Xp" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/abhydroponics) -"Xq" = ( -/obj/effect/decal/cleanable/flour, -/turf/simulated/floor/lino, -/area/maintenance/bar) -"Xt" = ( -/obj/item/reagent_containers/syringe/drugs{ - pixel_y = 5; - pixel_x = 7 - }, -/obj/item/reagent_containers/syringe/drugs, -/obj/item/storage/pill_bottle/happy{ - pixel_x = 5 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"Xu" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponics) -"Xv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponics) -"Xw" = ( -/obj/structure/catwalk, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"Xx" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"Xy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood/alt/parquet/broken/turfpack/station, -/area/maintenance/lookout) -"XC" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/absgenetics) -"XD" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/smoleroom) -"XE" = ( -/obj/structure/table/rack/shelf, -/obj/random/thermalponcho, -/obj/random/powercell, -/obj/random/mainttoyloot, -/obj/random/forgotten_tram, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"XG" = ( -/obj/structure/flora/pottedplant/dead, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponicssupp) -"XI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abmedical) -"XJ" = ( -/obj/machinery/vending/snix{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/lowlobby) -"XL" = ( -/obj/random/plushie{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/random/plushie{ - pixel_y = -3; - pixel_x = -11 - }, -/obj/random/plushie{ - pixel_y = 4; - pixel_x = 16 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abscience) -"XM" = ( -/obj/structure/table/rack/shelf, -/obj/random/tool, -/obj/random/powercell/device, -/obj/random/maintenance/security, -/obj/item/broken_device/random, -/obj/random/contraband, -/obj/random/mainttoyloot, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"XO" = ( -/obj/random/junk, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"XP" = ( -/turf/simulated/wall/turfpack/station, -/area/maintenance/abchemistry) -"XQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 9 - }, -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"XR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/maintenance/abtheatre) -"XU" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/space, -/area/space) -"XV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light/floortube, -/turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/maintenance/lookout) -"XW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppowerlobby) -"XY" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"XZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/hydro, -/area/maintenance/abhydroponics) -"Ya" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"Yb" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/gravgen) -"Yc" = ( -/obj/random/trash, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"Ye" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"Yh" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"Yi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"Yk" = ( -/obj/structure/lattice, -/turf/space, -/area/space) -"Yp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/substation/gravgen) -"Yr" = ( -/turf/simulated/wall/r_wall/turfpack/station, -/area/engineering/backuppower) -"Ys" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/maintdeck/field) -"Yt" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"Yx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/wall, -/area/maintenance/abcargo) -"Yy" = ( -/obj/effect/decal/cleanable/filth, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abtheatre) -"Yz" = ( -/turf/simulated/floor/lino, -/area/maintenance/abtheatre) -"YA" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "d3_port_dorms_airlock"; - name = "exterior access button"; - pixel_x = 25; - pixel_y = -26; - req_access = null - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/plating/turfpack/airless, -/area/space) -"YB" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 9 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/absgenetics) -"YD" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/substation/gravgen) -"YE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"YF" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 10 - }, -/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/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"YG" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"YH" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"YI" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/random/trash, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"YJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/smoleroom) -"YK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/central) -"YN" = ( -/obj/machinery/smartfridge/drying_rack, -/turf/simulated/floor/carpet/purcarpet, -/area/maintenance/aft) -"YO" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/aft) -"YP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar) -"YQ" = ( -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/bordercorner{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abchemistry) -"YT" = ( -/obj/structure/table/rack/shelf, -/obj/random/fishing_junk, -/obj/random/powercell/device, -/obj/random/miniature, -/obj/item/flame/lighter/random, -/obj/random/tool/powermaint, -/obj/random/mouseray, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/thrift) -"YU" = ( -/obj/random/trash, -/turf/simulated/floor/carpet/purcarpet, -/area/maintenance/aft) -"YX" = ( -/turf/simulated/wall/turfpack/station, -/area/maintenance/janitoral) -"Za" = ( -/obj/effect/floor_decal/rust, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldthrift) -"Zd" = ( -/turf/simulated/wall/turfpack/station, -/area/maintenance/starboard) -"Zf" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/tiled, -/area/maintenance/substation/gravgen) -"Zg" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 8 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/maintenance/aft) -"Zk" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/syringe/drugs{ - pixel_y = 5; - pixel_x = 7 - }, -/obj/item/storage/pill_bottle/happy, -/obj/item/reagent_containers/glass/beaker/vial/microcillin{ - pixel_y = 4; - pixel_x = -6 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abchemistry) -"Zl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/multi_tile/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/maintdeck/fieldhallway) -"Zm" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled/white, -/area/maintenance/absgenetics) -"Zr" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"Zs" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/engineering/gravgen) -"Zt" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/smoleroom) -"Zv" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/light/small, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abcargo) -"Zw" = ( -/obj/structure/table/rack/shelf, -/obj/item/cell/apc{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/cell/apc{ - pixel_x = 5; - pixel_y = -6 - }, -/obj/item/cell/apc{ - pixel_y = 15; - pixel_x = -5 - }, -/obj/item/cell/apc{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/cell/apc{ - pixel_y = 5; - pixel_x = -5 - }, -/obj/item/cell/apc{ - pixel_y = 15; - pixel_x = 5 - }, -/obj/item/cell/apc{ - pixel_y = 15; - pixel_x = -5 - }, -/obj/item/cell/apc{ - pixel_y = 15; - pixel_x = -5 - }, -/obj/item/cell/apc{ - pixel_y = 15; - pixel_x = 5 - }, -/obj/item/cell/apc{ - pixel_y = 15; - pixel_x = 5 - }, -/obj/item/cell/apc{ - pixel_y = 5; - pixel_x = -5 - }, -/obj/item/cell/apc{ - pixel_y = 5; - pixel_x = -5 - }, -/obj/item/cell/apc{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/cell/apc{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/cell/apc{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/cell/apc{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/cell/apc{ - pixel_x = 5; - pixel_y = -6 - }, -/obj/item/cell/apc{ - pixel_x = 5; - pixel_y = -6 - }, -/turf/simulated/floor/tiled, -/area/engineering/backuppower) -"Zz" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/absgenetics) -"ZA" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 4 - }, -/obj/random/trash, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"ZE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/turfpack/station, -/area/maintenance/bar/dorm_2) -"ZF" = ( -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag{ - pixel_x = 6; - pixel_y = -5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/maintenance/abmedical) -"ZG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/port) -"ZI" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/item/reagent_containers/hypospray/autoinjector/biginjector/expired, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24; - on = 0 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/abfirstaid) -"ZJ" = ( -/obj/structure/bed/chair/oldsofa/right, -/turf/unsimulated/floor/carpet/gaycarpet, -/area/maintenance/bar) -"ZK" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"ZL" = ( -/obj/item/stack/rods, -/obj/random/maintenance/medical, -/turf/simulated/floor/tiled, -/area/maintenance/thrift) -"ZM" = ( -/obj/structure/mob_spawner/mouse_nest/mousehole, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/starboard) -"ZO" = ( -/obj/structure/table/woodentable, -/obj/machinery/reagentgrinder, -/turf/simulated/floor/wood/broken/turfpack/station, -/area/maintenance/bar) -"ZP" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"ZQ" = ( -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/abhydroponicssupp) -"ZS" = ( -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/abhydroponics) -"ZT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/abcargo) -"ZV" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/ragecage) -"ZW" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating/turfpack/station, -/area/maintenance/maintdeck/fieldhallway) - -(1,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(2,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(3,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(4,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(5,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(6,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(7,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(8,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(9,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(10,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(11,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(12,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(13,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(14,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(15,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(16,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(17,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(18,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(19,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(20,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(21,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(22,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(23,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(24,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(25,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(26,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(27,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(28,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(29,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(30,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(31,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(32,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(33,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(34,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(35,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(36,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(37,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(38,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(39,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(40,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(41,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(42,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(43,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(44,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(45,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(46,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(47,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(48,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(49,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(50,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(51,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(52,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(53,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(54,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(55,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(56,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(57,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(58,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(59,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(60,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(61,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(62,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(63,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(64,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(65,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(66,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(67,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(68,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -il -il -il -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(69,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -il -lR -il -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(70,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -eY -eY -Yk -Yk -Yk -Se -eY -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(71,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -XU -wZ -wZ -wZ -wZ -eY -eY -wZ -wZ -wZ -Yk -wZ -wZ -wZ -eY -eY -wZ -wZ -wZ -wZ -XU -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(72,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -Yk -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -eY -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(73,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(74,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -ua -ua -ua -ua -ua -ua -ua -ua -ua -Yk -wZ -wZ -VY -Se -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(75,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -ua -ua -Or -iv -QZ -Kb -Do -Kb -iv -ua -ua -wZ -wZ -wZ -Yk -Yk -Yk -wZ -wZ -Se -eY -eY -eY -eY -eY -Yk -Se -eY -eY -eY -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(76,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -eY -eY -eY -Se -Yk -ua -ua -vC -iv -iv -Or -QZ -OO -ky -ah -ah -ua -ua -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -eY -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(77,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Se -eY -Yk -Yk -wZ -wZ -Yk -wZ -wZ -ua -ua -ua -ua -ua -ua -ua -ua -ua -ua -iv -me -ua -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -eY -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(78,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Se -Yk -wZ -wZ -Yr -Yr -Yr -Yr -Yr -Yr -Yr -Zw -Hg -Yr -sV -sV -sV -sV -sV -ua -Kb -iv -ua -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(79,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -Yr -NZ -qg -NZ -BT -NZ -ba -vV -vV -Yr -sV -sV -sV -sV -sV -ua -Nc -Do -ua -TJ -TJ -TJ -TJ -TJ -TJ -TJ -TJ -TJ -TJ -TJ -TJ -TJ -TJ -TJ -TJ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(80,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -Yr -Qu -Sr -Sr -Sr -Sr -Ow -SJ -co -Yr -sV -sV -sV -sV -sV -ua -sA -Do -ua -iP -iP -iP -iP -iP -iP -iP -iP -iP -iP -iP -iP -iP -iP -iP -TJ -TJ -Yk -Yk -Yk -Se -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(81,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -Yk -Yk -Yk -Yr -JV -vV -vV -uZ -vV -vV -ol -Pg -Yr -sV -sV -sV -sV -sV -ua -sA -iv -ua -iP -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(82,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -XU -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -Yr -Dk -Dk -Dk -Dk -Dk -Vx -LJ -ik -Yr -sV -sV -sV -sV -sV -ua -fT -Do -US -iP -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -XU -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(83,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -Yr -NZ -qg -NZ -ep -NZ -Bm -FM -vV -ee -ee -hb -sw -tp -ee -ee -PJ -PJ -pT -iP -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -VY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(84,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -eY -wZ -wZ -wZ -Yr -Yr -Yr -Yr -yN -yN -yN -FP -yN -ee -Lv -qB -qB -QV -XJ -ee -Kb -PJ -US -iP -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Se -il -il -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(85,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -Yk -Yk -eY -eY -Yk -Yk -Yk -Yk -gr -SY -jf -NK -yN -Gz -XW -nl -oL -ee -BB -hj -hj -ei -ov -ee -PJ -PJ -ua -iP -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -lR -il -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(86,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -il -ot -Vr -eY -eY -eY -eY -wZ -wZ -Yk -wZ -Yk -Du -wZ -wZ -gr -RO -jf -vl -yN -Hp -Er -iM -tK -ee -fy -pa -Nj -Ro -Qh -ee -PJ -LG -pT -iP -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -Yk -Yk -eY -il -il -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(87,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -il -lR -wZ -wZ -Yk -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -gr -Ms -jf -IO -yN -rS -wm -EI -ga -ee -Sj -yO -NI -hj -Cx -ee -PJ -PJ -pT -iP -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(88,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -il -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -gr -fX -jf -jf -yN -UU -lH -rJ -rx -ys -MH -el -sF -MH -As -cP -le -Ta -pT -iP -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(89,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -gr -CU -CU -CU -gr -wZ -wZ -gr -Jv -WI -jf -yN -at -Cv -Df -cy -ee -KH -To -ic -hj -hn -nF -ny -lE -ua -iP -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Se -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(90,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Se -wZ -wZ -wZ -wZ -CU -ti -Fk -gr -gr -Mt -Mu -rD -gr -gr -gr -gr -gr -gr -uH -gr -gr -gr -gr -pr -pr -pr -pr -pr -xg -gh -ua -le -le -ua -iP -iP -iP -iP -iP -iP -iP -iP -iP -iP -iP -iP -iP -nS -YA -iP -TJ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(91,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -XU -wZ -eY -Yk -Yk -Yk -CU -CU -WI -Vb -Vz -BF -fW -fW -Xq -fW -wF -Vb -Vl -In -wq -WI -of -of -WI -WI -pr -Ds -xI -ta -pr -DA -kc -ua -Hv -IE -We -We -We -We -We -We -We -We -We -PN -Cm -PN -We -We -ex -ex -ua -ua -ua -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(92,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -Fk -WI -SY -In -Kr -Uq -Xq -fW -oY -EP -ly -In -Vb -UP -wq -tm -of -of -of -of -pr -QP -JB -HQ -pr -dx -Rz -ua -gl -KG -gv -XQ -Tt -gP -Tl -Oy -OZ -We -kl -qn -Nt -ZT -kj -Yx -qD -VX -nj -jo -ua -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(93,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -Fk -kG -RW -WI -Vb -tk -Uq -OF -pB -MO -ly -PD -Ki -ZO -wq -VN -gs -om -WI -of -pr -Ds -aq -TS -pr -dx -OJ -Af -ap -Wq -gv -fD -qh -zu -GR -TU -OT -We -FY -qn -qh -zu -ok -AW -uR -AC -gH -La -ua -Yk -Yk -Yk -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(94,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -gr -aX -ji -Vb -Vb -In -wH -Yc -sn -In -ly -ly -ly -ly -ly -ly -ly -ly -dY -ly -pr -nC -aq -MI -pr -dx -Rz -ua -GU -Nf -gv -KS -qn -VL -zu -zu -zu -WO -zu -qh -Ac -qh -ca -dm -ie -ie -jU -ua -ua -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(95,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -gr -na -nZ -mo -vG -mo -FC -vG -jz -Vb -Vb -ly -gk -WI -gk -gk -gk -yl -gk -WI -gr -gr -Ig -pr -pr -dx -Rz -ua -me -Nf -gv -ls -gK -qn -zu -Re -qh -xl -qh -PY -vu -Al -zS -qm -pg -Ut -sk -ua -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(96,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Se -wZ -wZ -wZ -gr -Yc -Vb -Vb -Vb -In -PX -EN -nD -Vb -In -ly -gk -gk -pe -WI -mw -HS -HS -pe -gk -gr -jR -IU -pD -Tc -Cu -ua -iv -Nf -gv -ME -Tx -qh -zu -qh -Zv -We -ZA -Eu -SI -zu -qn -gv -PK -aD -Uv -ua -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(97,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -gr -oj -Vb -Vb -Vb -Vb -Ti -VR -nD -Vb -In -dY -gk -gk -sf -ZJ -HS -EJ -HS -gk -gk -gr -Ye -lr -UW -UW -vy -ua -iv -Nf -gv -Hw -PR -nR -zu -zu -kg -gv -Rg -lQ -YE -Gh -Ks -gv -Do -UC -Uv -ua -wZ -wZ -wZ -wZ -xC -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(98,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -gr -tq -In -as -Vb -hh -Vb -as -BY -Mj -Vb -ly -QT -gk -gk -TT -wr -HS -eq -gk -pe -gr -FQ -vE -ua -ua -ua -ua -iv -kQ -gv -gv -gv -gv -gv -gv -gv -gv -gv -gv -aT -gv -gv -gv -FZ -ao -PJ -ua -wZ -wZ -wZ -wZ -Se -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(99,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -Yk -Yk -Yk -CU -Vb -Vb -Vb -Vb -Vb -Vb -In -YP -Vb -HN -ly -gk -pe -gk -sf -pe -hk -Ws -WI -gk -gr -FQ -vE -ua -uV -iv -nL -Bq -Nf -rF -PJ -mW -le -No -me -PJ -jc -PJ -PM -Ev -Do -PJ -rF -Fo -ny -Bq -ua -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(100,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -CU -Vb -Vb -Td -Td -wG -Td -Td -qu -In -ly -ly -ly -ly -ly -ly -ly -ly -ly -ly -ly -gr -FQ -vE -ua -Do -PJ -PJ -BQ -PG -OM -tS -tS -tS -tS -tS -tS -tS -tS -GV -ZG -ig -ig -bT -xG -Eg -WC -ua -ua -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(101,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -CU -RR -WI -Td -wG -Td -Td -wG -wI -In -Oo -FW -eX -CJ -CJ -CJ -eX -CJ -CJ -RX -CJ -CJ -sQ -vE -ua -eI -Hv -iv -eo -Kb -rF -Hv -Do -bD -Do -eI -No -No -eh -fT -Nf -PJ -me -rF -iv -Ev -eo -No -US -Yk -Yk -Yk -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(102,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -CU -pc -Vb -Td -Ne -Td -Td -Td -EK -wV -AV -zK -WF -xH -Aa -WF -WF -WF -Mw -WF -WF -WF -aF -qs -ua -Do -iv -VC -XP -XP -XP -XP -XP -XP -PS -Hr -XP -AE -AE -AE -KI -AE -AE -JK -iv -Nf -PJ -No -US -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(103,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -CU -Vb -Vb -Td -Td -Td -Td -Td -pk -Vb -ly -ly -ly -ly -ly -ly -ly -ly -ly -ly -ly -gr -FQ -Mi -ua -PJ -PJ -XP -Va -jP -IP -xz -XP -fu -zB -nX -Ba -AE -xX -Oa -XI -AX -Uh -AE -Hv -Nf -PJ -ua -ua -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(104,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -CU -Vb -In -Vb -In -In -Vb -Vb -pk -Vb -Vb -Vb -Vb -In -Vb -Vb -In -Vb -Vb -Vb -Vb -gr -FQ -Nk -ua -hV -PJ -XP -bm -NR -GQ -zf -XP -TO -ms -sr -Bn -AE -TK -nx -gN -Im -Qq -AE -GM -Wr -PJ -ua -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(105,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -XU -wZ -eY -wZ -wZ -wZ -gr -Vb -Vb -as -Vb -In -In -as -Eh -uy -WG -Hc -WG -oH -fe -uy -WG -WG -uy -yk -Vb -gr -FQ -vE -ua -Bs -PJ -XP -qi -xf -xz -xf -Sd -CK -Xm -SF -Ir -gd -RA -BD -ZF -nx -sz -AE -iv -Nf -le -ua -wZ -wZ -wZ -wZ -Se -wZ -wZ -XU -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(106,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -gr -Vb -Gg -Vb -Vb -Vb -WI -Vb -In -Yc -WI -he -he -he -kU -he -lL -lL -lL -HH -lL -lL -FQ -vE -ua -le -PJ -XP -dD -xz -sL -xf -XP -YQ -ju -yS -BC -AE -Jh -Kw -HO -Bp -sz -AE -iv -Nf -PJ -ua -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(107,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -Yk -Yk -Yk -gr -Vb -Vb -In -Vb -Ti -oi -ng -Vb -In -WI -he -Am -LY -TQ -QC -lL -dI -dB -gy -oB -lL -FQ -vE -ua -PJ -PJ -XP -aZ -xz -Xt -sh -XP -PZ -Zk -AG -za -AE -mL -oR -oR -AZ -Qq -AE -mp -Nf -Qn -ua -Yk -Yk -Yk -Yk -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(108,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -eY -wZ -wZ -wZ -gr -GH -WI -Vb -Vb -Ti -fS -ng -Vb -Vb -Vb -he -aU -aN -PU -ev -lL -op -ZE -Gm -ht -lL -FQ -vE -ua -PJ -PJ -XP -XP -XP -XP -XP -XP -XP -vo -vo -XP -AE -AE -AE -AE -AE -AE -AE -iv -Nf -PJ -ua -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(109,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -lR -Yk -VY -Yk -eY -eY -wZ -XU -wZ -wZ -gr -gr -WI -Vb -In -Vb -Vb -Vb -In -In -Vb -he -np -Cq -Cn -dw -lL -MF -rh -HC -ko -lL -FQ -vE -ua -PJ -iv -Do -AI -PJ -kY -kY -kY -kY -kY -PJ -kY -Pp -Pp -iv -iv -PJ -PJ -QS -le -Ya -PJ -ua -wZ -wZ -wZ -wZ -wZ -xC -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(110,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Se -eY -Yk -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -gr -sH -Yc -Vb -In -HT -Vb -Vb -Vb -Yc -he -NF -xK -dP -rn -lL -QJ -dB -bs -bs -lL -BJ -vE -ua -sT -PJ -PJ -kY -kY -kY -kY -kY -kY -kY -kY -kY -kY -kY -kY -kY -qL -wA -jq -wC -eA -PJ -ua -wZ -wZ -wZ -wZ -wZ -wZ -eY -Yk -eY -eY -eY -eY -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -XU -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(111,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -Yk -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -Mq -Mq -Mq -Mq -Mq -Mq -db -hl -Mq -Mq -Mq -he -he -he -he -he -lL -lL -qK -KR -qK -lL -FQ -vE -ua -PJ -iv -nL -Jq -wW -Fd -ua -US -US -US -ua -iv -wW -lj -hC -uj -UJ -hC -hC -hC -NE -Xw -Mq -Mq -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -Yk -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(112,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -Mq -Mq -WY -WY -xL -gB -gB -tF -jC -ox -Mq -Mq -Mq -Mq -Mq -wZ -wZ -wZ -lL -lL -lL -lL -lL -FQ -vE -ua -PJ -iv -ua -ua -ua -ua -ua -wZ -wZ -wZ -ua -ua -ua -ua -zn -tx -Vm -JC -aO -hC -NE -vn -NE -Mq -Mq -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(113,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -Yk -wZ -wZ -wZ -wZ -wZ -Mq -Mq -Mq -Mq -YO -jC -jC -IZ -pj -pj -jC -jC -WY -Mq -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -BV -FQ -vE -ua -le -Do -US -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -zn -OP -Dg -Ia -oV -Og -NE -vn -vn -mz -Mq -Mq -Mq -Mq -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(114,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -Yk -wZ -wZ -wZ -Mq -WY -kC -mQ -gB -pj -pj -pj -jC -qf -Et -OE -Mq -Mq -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -dl -FQ -vE -ua -jc -le -US -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -zn -zn -Ve -EZ -BP -hC -NE -vn -vn -NE -vn -vn -Ly -Mq -Mq -Mq -Mq -Rl -Rl -Rl -Mq -Mq -Mq -Mq -Mq -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(115,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -CN -jC -ox -jC -pj -pj -jC -OE -tN -gB -Mq -Mq -Mq -wZ -wZ -wZ -wZ -wZ -wZ -LH -LH -gM -gM -dl -LH -LH -FQ -vE -ua -me -Kb -LH -LH -jI -LW -zx -LH -LH -wZ -wZ -wZ -wZ -wZ -wZ -zn -zn -zn -rP -YX -NE -vn -vn -Xx -pj -vn -vn -mQ -LV -LV -jC -jC -jC -jC -jC -LV -jC -jC -Rl -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(116,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -VY -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -SE -gB -pj -jC -pj -xV -LU -LU -LU -LU -pK -wZ -wZ -wZ -XU -wZ -wZ -BV -dl -LH -dj -Ec -xS -Gb -Ef -EU -FQ -Mi -ua -ua -ua -LH -xS -Jp -Jp -xS -Wh -LH -LW -LW -wZ -wZ -XU -wZ -wZ -wZ -zn -YX -YX -Vn -ac -Ht -Vn -Vn -NE -gB -jC -jC -jC -jC -jC -jC -jC -jC -jC -jC -jC -Rl -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(117,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Mq -nh -pj -jC -hU -LU -LU -zi -ak -yr -pK -wZ -wZ -wZ -wZ -wZ -dl -LW -xS -dT -Bz -AY -xO -rq -rq -Mf -eN -YF -bM -pD -SW -LH -Lc -Lc -xS -xS -xS -Jp -Wh -zx -zx -wZ -wZ -wZ -wZ -wZ -Mq -jC -gB -tF -vn -pj -PV -Vn -gB -jC -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -RQ -jC -jC -Mq -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(118,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Mq -jK -Rf -gB -LU -LU -Jf -zp -hA -TR -pK -wZ -wZ -wZ -wZ -dl -BV -tO -xS -Kj -yE -fb -Kj -bq -TY -LH -hT -Qf -Qf -nq -MA -LH -Lc -Lc -Lc -Lc -Lc -Jp -Lc -xS -LW -zx -wZ -wZ -wZ -wZ -Mq -kn -wg -mA -pj -jC -gB -Vn -pX -pj -RQ -RE -tP -kb -vS -vS -wl -oo -RQ -xL -jC -Rl -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(119,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Mq -sx -PO -WY -LU -br -Nz -hA -hA -GF -Hy -wZ -wZ -wZ -gM -zx -Gb -xS -xS -Kj -xS -wn -hX -wn -wn -LH -LH -LH -LH -dx -Rz -LH -wn -wn -wn -wn -Lc -Lc -Lc -Lc -xS -LW -jI -wZ -wZ -wZ -Mq -pj -Vn -Vn -Vn -Vn -Vn -Vn -XY -pj -RQ -jg -dW -zE -ef -RU -zE -AB -RQ -jC -qf -VT -wZ -wZ -Yk -il -il -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(120,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -Yk -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Rl -hg -lz -NC -LU -DJ -zg -GN -xM -eV -nU -wZ -wZ -wZ -gM -ar -rq -rq -rq -mx -wn -wn -mT -ui -BH -pO -YK -xS -LH -dx -Rz -LH -fo -fb -xS -wn -wn -Lc -Lc -Lc -hx -xS -zx -wZ -wZ -wZ -Mq -LV -Vn -nz -lW -Gt -jB -Vn -qf -pj -RQ -ty -RU -RU -dW -tP -RU -AB -RQ -jC -LV -Rl -wZ -wZ -Yk -lR -il -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(121,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Rl -jC -Ib -Jb -Kx -hK -JZ -vd -XL -FJ -Hy -wZ -wZ -LH -LH -bb -xS -xS -xS -we -wn -xS -IT -Gb -FS -lV -eE -xS -LH -dx -Rz -xS -xS -Qe -ro -Jp -wn -wn -Lc -Lc -Lc -xS -LH -LH -wZ -wZ -Mq -jC -Vn -lW -LV -YU -kN -Vn -xL -pj -RQ -cZ -ag -RM -Iw -kb -tP -Wm -RQ -jC -GD -Mq -no -Bf -Mq -Yk -il -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(122,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Mq -gB -je -WY -LU -Wn -Gc -Qd -lb -WN -pK -wZ -wZ -LH -Jt -oX -xS -xS -wn -wn -wn -rk -Wa -xS -xS -xS -xS -Wj -LH -dx -Rz -LH -xS -hx -xS -Jp -rA -wn -wn -Lc -Lc -xS -xS -LH -wZ -wZ -Mq -Vn -Vn -lW -LV -jC -uT -Vn -pj -pj -RQ -XG -nr -Iw -uY -uI -Ko -MS -RQ -LV -jC -LV -LV -jC -Mq -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(123,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Mq -gB -je -jC -IH -IH -IH -IH -IH -IH -Fh -wZ -wZ -dl -Jp -Kj -TY -wn -wn -wn -wn -wn -wn -wn -wn -wn -wn -wn -LH -dx -Rz -LH -LH -gZ -gZ -gZ -LH -LH -LH -LH -Oe -xS -xS -zx -wZ -wZ -Mq -OX -LV -gq -vt -jC -TX -Vn -hg -Nw -RQ -kb -PQ -RQ -RQ -RQ -RQ -RQ -RQ -jC -jC -jC -jC -LV -Mq -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(124,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -xC -wZ -wZ -RB -RB -RB -RB -RB -OE -je -YO -IH -YB -Pt -XC -Es -xm -Fh -wZ -wZ -gM -xS -Kj -xS -lA -uk -Ky -sa -Ky -Ky -Ky -Mn -Dr -Ky -Mn -yo -dx -MN -pD -pD -pD -pD -pD -pD -pD -SW -LH -Yt -KQ -Hl -LW -wZ -wZ -Mq -WW -WW -gq -YN -gq -gq -Vn -pj -wT -RQ -ww -zc -RQ -DU -dS -IL -zP -OE -jC -jC -Mq -Rl -fH -Mq -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(125,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -XU -wZ -wZ -wZ -Yk -wZ -wZ -RB -Nr -ri -vK -RB -OE -xd -Jb -ci -JP -hq -TM -Ho -zX -Fh -wZ -wZ -BV -TY -Kj -qJ -lA -Ky -Ky -Ky -Ky -Sb -Sh -Dr -Dr -rM -uk -yo -DY -Hj -Qf -Qf -Qf -Qf -Qf -bc -nq -tg -Ck -zm -rq -yX -LW -wZ -wZ -Mq -OU -lW -vt -MJ -LV -jk -Vn -pj -wT -RQ -DC -Ai -RQ -LV -JY -Gw -jC -jC -dZ -lM -Rl -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(126,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Se -Yk -Yk -RB -ZI -QH -Vv -RB -jC -je -jC -IH -ul -Ho -Fe -pE -Zm -Fh -wZ -wZ -LH -Gb -Kj -bq -lA -Ky -Sb -Sb -Ky -Sb -Ky -dd -dd -dd -dd -dd -dd -dd -dd -Km -Km -Km -Km -HI -Vh -Zs -LH -xt -xS -Kj -LH -wZ -wZ -Mq -SV -Zg -jC -gq -LV -em -Vn -pj -Yi -RQ -bw -PQ -RQ -SG -tQ -jC -jC -lM -dZ -dZ -Rl -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(127,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -eY -wZ -wZ -RB -aw -GS -Lp -RB -vF -aV -pj -LE -Wu -px -dg -rT -Zz -Fh -BV -BV -LH -we -eC -we -lA -Mn -Mn -Dr -Dr -Sb -Ky -dd -jd -jd -jd -jd -jd -jd -jd -Km -Km -Km -Km -Km -VB -gR -yo -yo -yo -Hz -LH -zx -LW -Mq -Vn -Vn -gb -QY -gq -em -Vn -pj -Fm -RQ -ZQ -JJ -mO -qf -jC -jC -dZ -eb -dZ -fz -Rl -Rl -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(128,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -jQ -qS -rY -Vv -RB -Vn -mX -Vn -LE -LE -LE -LE -LE -LE -Fh -TY -TY -Gb -xS -Kj -Ef -lA -Ky -Ky -Dr -Dr -Sb -Cg -dd -jd -Up -Up -aJ -Up -Up -jd -Km -UQ -FI -Np -Km -Hd -sC -Kc -dv -yo -Kj -xS -xS -xS -Mq -Vn -Vn -Vn -Vn -Vn -Vn -Vn -pj -wT -jC -jC -aV -xL -jC -jC -dZ -dZ -dZ -RL -PB -dZ -Rl -Rl -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(129,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -il -il -eY -wZ -wZ -wZ -Ij -aC -Uz -AA -RB -VU -aV -XO -pj -mQ -jC -Ng -cX -jC -OE -fb -xS -xS -hx -Kj -xS -lA -vH -vZ -Ky -Dr -Sb -Ky -dd -jd -va -iU -Id -Rx -wu -jd -NG -er -CF -Rt -Km -ct -OL -wE -Kc -yo -kK -Lc -dj -Lc -Mq -Gq -Ph -xL -pj -pj -CW -pj -kP -Aj -pj -kn -rX -pj -ql -dZ -dZ -fz -RL -dZ -RL -Lq -eb -Rl -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(130,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -il -lR -Yk -Yk -Yk -Yk -RB -ub -Vo -nK -WU -Wx -Kf -EC -EC -EC -EC -EC -EC -EC -EC -MK -MK -rq -MK -pv -MK -Rb -DN -CE -CE -gG -Sb -Ky -dd -jd -lc -HU -Fy -rL -tf -fc -hH -jW -rc -cn -Cs -qr -nH -fd -Pu -yo -cq -zm -Bz -rq -Ed -GA -EC -do -fM -fM -fM -fM -EC -VH -fM -fM -cE -Vg -jp -dZ -dZ -dZ -dZ -dZ -dZ -CG -dZ -FD -wZ -wZ -wZ -wZ -wZ -wZ -XU -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(131,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -il -il -eY -wZ -wZ -wZ -RB -Oh -rl -GO -RB -jC -je -qf -jC -jC -jC -gB -OE -jC -jC -Gb -Lc -Lc -Lc -xS -nf -lA -Bu -Ky -Ky -Ur -Ky -Ky -dd -jd -Yb -VI -BX -dJ -hR -jd -Km -Zf -ND -IR -Km -ez -Kc -OY -Kc -yo -qy -Lc -yE -xS -Mq -Ay -pj -pj -wN -pj -pj -pj -jC -YI -jC -pj -rX -pj -Dw -dZ -dZ -lM -PB -dZ -eb -wR -dZ -Rl -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(132,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -HE -HE -HE -HE -HE -zL -ue -Ca -zL -zL -zL -zL -zL -zL -HE -Bc -zM -xS -xS -xS -Gb -lA -Ky -HL -Sb -Pm -Ky -ID -dd -jd -hJ -fi -Ob -fi -ma -jd -Km -nn -lN -Ty -Km -Kc -Kc -Kc -Kc -yo -su -Lc -Lc -xS -fC -kE -kE -kE -kE -kE -kE -jn -jC -jM -jC -jC -aV -jC -jC -jC -PB -dZ -dZ -dZ -RL -PB -Rl -Rl -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(133,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -HE -ld -Is -KY -Is -ZV -hy -Is -RF -BS -BS -RF -RF -gJ -HE -jI -jI -LH -we -WS -we -lA -cv -ft -Pb -Pm -Wt -Ky -dd -jd -jd -jd -jd -jd -jd -jd -Km -Km -qt -Km -Km -yo -yo -yo -yo -yo -zG -LH -jI -zx -fC -Ui -eu -Yz -Yz -Yz -kE -kE -jC -QN -eZ -wD -qv -eZ -jC -jC -jC -dZ -dZ -fz -dZ -Rl -Rl -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(134,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -Yk -Yk -Yk -HE -re -KB -PH -PH -rQ -fr -ps -VF -um -bd -RF -RF -RF -HE -wZ -wZ -LH -Sw -xS -xS -lA -Ky -Tg -Sb -Pm -DM -wp -dd -dd -dd -dd -dd -dd -dd -dd -Km -Km -Bo -Km -Km -Jp -xS -wn -Nm -xS -su -LH -wZ -wZ -fC -Ft -rs -eu -FL -vU -eu -kE -jC -jM -eZ -wP -iD -eZ -Dy -jC -jC -jC -RL -PB -lM -Rl -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(135,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -XU -wZ -wZ -Se -wZ -wZ -wZ -HE -Lf -PP -Is -fG -ZP -ZP -ZP -ZP -ZP -ZP -cL -RF -sD -HE -wZ -wZ -jI -xS -xS -fb -lA -Mn -ob -DD -Pm -Sb -sG -NQ -Ky -mC -Ky -Ky -HL -vX -Ky -Km -gp -Yp -YD -Km -fb -xS -xS -xS -KQ -DI -jI -wZ -wZ -fC -ST -Yy -XR -Iz -AF -AF -uz -al -iy -eZ -AL -iD -eZ -LP -EE -LV -jC -jC -dZ -dZ -Rl -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(136,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -jx -wZ -wZ -HE -Qb -PP -Is -tj -Is -Is -ij -RF -ry -Is -Vw -RF -lC -HE -wZ -wZ -zx -Jp -xS -xS -lA -Ky -Mn -BN -fY -on -on -on -Cw -vY -vY -GK -xv -Ky -Ky -mF -YD -Yp -YD -Km -xS -Jp -wn -xS -Lc -rU -jI -wZ -wZ -fC -CH -Yz -Yz -iu -Yz -Yz -kE -NJ -Aj -eZ -YJ -xr -eZ -Gw -zP -gI -Fp -xL -jC -jC -Mq -Rl -VT -Mq -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(137,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -jx -wZ -wZ -Yh -Is -bV -Is -tj -Is -kS -Is -KL -SC -RF -Co -RF -RF -HE -wZ -wZ -zx -Jp -Jp -xS -lA -lA -jF -It -bH -vZ -Dr -Pb -Px -Sb -Sb -Pm -Sb -Pb -Dr -Km -YD -Yp -YD -Km -Kl -wn -wn -Lc -Lc -xS -zx -wZ -wZ -fC -vq -vq -kH -pR -nG -Yz -kE -hg -If -eZ -XD -UY -eZ -eZ -eZ -eZ -eZ -eZ -uN -jC -jC -jC -jC -Mq -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(138,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -jx -wZ -wZ -Yh -Is -TC -vc -xQ -ij -Is -Ax -RF -TD -RF -tz -RF -RF -HE -wZ -wZ -LH -rk -xS -xS -xS -lA -lA -lv -It -jv -Ky -Qy -pt -uU -Tg -Pm -Sb -Sb -Pb -Km -YD -bA -Ic -Km -wn -wn -Da -Lc -Lc -tO -LH -wZ -wZ -fC -rz -yU -nJ -vU -kh -eu -kE -pX -wN -eZ -qC -kq -Xg -TH -kk -Ez -kk -eZ -jC -LV -jC -jC -jC -Mq -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(139,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -Yh -AM -PP -Lf -tj -Is -zZ -Is -RF -RF -RF -Is -sD -sD -HE -wZ -wZ -LH -LH -Kn -xS -xS -TY -lA -lA -CR -Tg -Ky -Tg -xo -Pb -Sb -Pm -Sb -Ky -Ky -Km -YD -IG -TI -Km -wn -jb -Lc -Lc -xS -LH -LH -wZ -wZ -fC -yU -os -nJ -Yz -qk -nG -kE -jC -pj -eZ -Ge -kq -Oq -FK -iI -iI -kk -eZ -CW -GD -Mq -cK -Tm -Mq -Yk -il -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(140,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Se -Yk -Yk -HE -DL -bV -Is -tj -Ul -Is -Is -sD -RF -Is -wf -DP -sD -HE -wZ -wZ -wZ -zx -hG -xS -xS -xS -TY -lA -lA -Ky -if -Ky -Ky -Ky -QE -UZ -uk -Ky -sa -Km -YD -YD -Km -Km -mj -Lc -Lc -Lc -xS -zx -wZ -wZ -wZ -fC -yU -yU -LL -Yz -Yz -eu -kE -pj -pj -eZ -kq -Zt -kk -Az -FH -gx -kk -eZ -wN -jC -Rl -wZ -wZ -Yk -lR -il -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(141,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -HE -uJ -cj -kw -tj -Is -Is -Is -ij -tG -Ax -tj -RF -lC -HE -wZ -wZ -wZ -zx -LW -mj -xS -Jp -xS -xS -lA -lA -lA -lA -lA -lA -lA -uf -lA -lA -lA -Km -Km -Km -Km -TY -Lc -FR -Jp -xS -LW -zx -wZ -wZ -wZ -fC -rz -SB -dG -Yz -nG -kh -kE -pj -pj -eZ -kq -WX -kk -kR -cg -Az -ur -eZ -pj -jC -VT -wZ -wZ -Yk -il -il -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(142,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -ut -wZ -wZ -HE -xq -Is -Is -Sn -ZP -ZP -ZP -ZP -ZP -ZP -Fb -RF -EY -HE -wZ -wZ -wZ -wZ -LW -LW -xS -Jp -xS -rC -xS -xS -xS -Jp -we -Lc -Lc -kd -Lc -Lc -we -xS -TY -Lc -Lc -Lc -Lc -xS -xS -LW -LW -wZ -wZ -wZ -wZ -fC -yU -rz -dG -pR -eu -nG -kE -pj -jC -eZ -Ln -kq -kq -kk -Gr -kk -kq -eZ -jC -jC -VT -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(143,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Se -eY -wZ -HE -HE -ts -ij -ij -Is -Is -Is -RF -RF -RF -RF -RF -sD -HE -wZ -wZ -wZ -wZ -wZ -zx -zx -TY -xS -Iq -eJ -Gu -Hq -Hq -LK -am -cw -zW -Wc -Lc -wK -Lc -Lc -Lc -Lc -Lc -TY -xS -zx -zx -wZ -wZ -wZ -wZ -wZ -GW -yU -yU -nJ -dO -wz -nG -kE -pj -kC -eZ -eZ -eZ -eZ -eZ -eZ -eZ -eZ -eZ -LV -jC -Mq -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(144,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -HE -HE -ij -sD -RF -RF -RF -um -WQ -Li -RF -RF -Ip -HE -wZ -wZ -wZ -XU -wZ -wZ -zx -zx -LH -tl -hx -Ec -xS -TY -we -Da -Lc -Kj -Lc -hx -we -xS -Wy -Jp -Jp -dy -LH -zx -LW -wZ -wZ -XU -wZ -wZ -wZ -fC -JD -kE -kE -kE -kE -kE -oJ -zI -vn -pj -qf -jC -xL -OE -OE -pj -pj -LV -LV -jC -Rl -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(145,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -HE -HE -II -II -uQ -RF -iB -iB -iB -dr -iB -iB -HE -Mq -Mq -wZ -wZ -wZ -wZ -wZ -wZ -LH -LH -zx -jI -zx -LH -LH -mZ -FR -jy -FR -Jp -LH -LH -jI -jI -zx -LH -LH -wZ -wZ -wZ -wZ -wZ -wZ -fC -fC -fC -MT -kE -qR -Tb -NE -kB -NE -vn -NE -pj -pj -pj -pj -pj -pj -CW -jC -LV -jC -jC -VT -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(146,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -HE -gY -WQ -ec -Rh -iB -yc -tF -jC -mQ -EE -ce -gB -Mq -Mq -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -zx -xS -KQ -ad -Ga -xS -zx -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -fC -fC -nA -Bx -ge -kE -Ly -vn -vn -vn -vn -vn -Lk -Mq -Mq -Mq -Mq -Rl -Rl -Rl -Mq -Mq -Mq -Mq -Mq -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(147,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Se -Yk -Yk -Yk -HE -HE -Yh -HE -HE -HE -VJ -NY -jC -jC -VK -jC -LV -LV -Mq -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -jI -Lz -xS -Kj -xS -fb -zx -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -fC -AN -MT -tD -rv -kE -NE -cH -vn -NE -Mq -Mq -Mq -Mq -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(148,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Mq -Mq -hg -nQ -NC -up -yT -ks -jC -Et -Mq -BZ -BZ -BZ -BZ -wZ -wZ -wZ -BZ -BZ -BZ -BZ -BZ -mb -mb -Om -mb -mb -BZ -BZ -BZ -BZ -BZ -wZ -wZ -wZ -BZ -BZ -BZ -BZ -fC -jE -Ue -ge -Pa -kE -NE -cH -NE -Mq -Mq -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(149,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Pz -wZ -eY -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Mq -Mq -oc -wd -LV -sI -jC -jC -LV -Vn -NN -bj -jm -xb -Uo -Ae -Uo -BZ -Hk -sK -Tu -Kk -Xl -hB -UG -Ux -YG -YG -YG -JG -NN -BZ -NM -NM -Uo -BZ -Hk -go -NL -kE -kE -kE -kE -kE -kE -bj -vM -Mq -Mq -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(150,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Se -eY -eY -wZ -wZ -wZ -wZ -wZ -wZ -Mq -ow -Sq -BI -BI -EC -EC -BI -bB -sj -rZ -rZ -rZ -cM -Rm -rZ -iY -rZ -TV -Rm -OC -IA -Rm -pV -rZ -rZ -aM -vw -cV -rZ -Zl -IA -Rm -Rm -IA -IA -TV -IA -rZ -rZ -rZ -mU -Rm -Rm -qV -iX -BZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -XU -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(151,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -Yk -Se -wZ -wZ -wZ -wZ -Mq -bg -QA -jC -gB -jC -oU -jC -Vn -YH -iX -iX -Hk -hN -uF -bj -tb -iX -iX -iX -iX -iX -iX -iX -YG -vJ -YG -YG -Fr -iX -iX -EM -iX -dE -pp -mh -EM -iX -iX -YG -YG -ZW -EM -SX -fj -qW -BZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(152,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -gL -dn -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -yR -yR -yR -yR -yR -yR -yR -yR -Xp -yR -yR -Fn -Zd -gL -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(153,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -Yk -Yk -gL -gL -rf -sW -cz -kt -kt -Pc -kt -kt -kt -nT -kt -kt -kt -Rd -kt -Th -Rd -Wb -mJ -kJ -nb -mJ -mJ -NX -mJ -mJ -mJ -mJ -mJ -Rd -kt -sW -ed -XZ -TN -Ml -JL -NS -lx -bl -KJ -Vy -yR -MZ -Lt -gL -Yk -Yk -Yk -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(154,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Se -wZ -wZ -wZ -gL -ib -MZ -sW -vL -kt -Qp -Qp -Qp -Qp -Qp -Qp -Qp -yM -SS -Qp -Qp -Qp -Qp -av -av -av -av -av -av -av -jY -SS -Qp -yM -av -kt -kt -sW -uS -ZS -oz -jw -Vy -QM -gE -Xu -SP -RV -yR -xh -cJ -pH -wZ -wZ -wZ -Du -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(155,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -gL -ZM -iL -sW -cz -KM -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -GC -kt -sW -uS -Ep -Ab -ed -QM -Vy -Ep -Ep -ZS -yv -yR -xh -Bh -pH -wZ -wZ -wZ -wZ -wZ -wZ -XU -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(156,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -pH -Bh -iL -sW -Dh -KM -lK -lK -lK -Vt -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -sc -lK -lK -lK -lK -lK -GC -kt -sW -jw -Vy -ed -wo -li -li -qP -iw -Xv -yR -yR -xh -qb -BA -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(157,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -pH -Fz -iL -sW -cz -KM -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -Vt -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -GC -EO -sW -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -ZK -xh -NT -gL -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(158,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -XU -xC -wZ -wZ -wZ -pH -QX -lg -sW -Cf -SH -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -GC -kt -sW -yV -TW -Fs -wQ -Ok -pn -MR -MR -MR -pn -Na -dR -gL -gL -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(159,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -gL -oE -Ug -sW -SA -KM -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -GC -kt -Wl -Sk -Hm -Mr -fR -CT -CT -HG -Sl -pW -CT -Cr -gL -gL -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(160,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -il -il -eY -wZ -wZ -wZ -gL -jJ -rf -sW -nc -lt -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lt -lt -sW -Bh -DO -gL -gL -gL -gL -ay -gL -gL -gL -gL -gL -wZ -wZ -wZ -wZ -wZ -eY -il -il -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(161,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -il -lR -Yk -Yk -Yk -Yk -gL -pQ -rf -sW -Ys -kI -lK -lK -fm -lK -lK -lK -lK -lK -fm -lK -lK -lK -ud -lK -lK -lK -fm -lK -lK -lK -lK -fm -lK -lK -lK -gc -lt -sW -Bh -xh -gL -Bh -Bh -Bh -Bh -Bh -Bh -Bh -gL -wZ -wZ -wZ -Yk -Yk -Yk -Yk -lR -il -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(162,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -Yk -Yk -wZ -wZ -wZ -gL -GL -MZ -sW -Ys -cl -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lt -lt -sW -Bh -xh -gL -Bh -Lt -xn -Bh -xn -Bh -xn -gL -wZ -wZ -wZ -Du -wZ -wZ -eY -il -il -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(163,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -gL -Of -zd -FG -dK -yf -lK -lK -lK -lK -lK -sc -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -GC -kt -sW -se -xh -gL -Bh -Bh -JH -Jm -xn -Bh -Bh -gL -wZ -wZ -wZ -eY -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(164,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -Yk -Yk -Yk -gL -Lt -iL -sW -qo -io -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -sc -lK -lK -lK -lK -Vt -lK -lK -lK -lK -GC -kt -sW -Nl -xh -gL -Bh -Bh -Bh -xn -xn -xn -Fz -gL -wZ -Yk -Yk -eY -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(165,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -gL -JA -MZ -sW -CP -KM -lK -lK -lK -lK -lK -lK -lK -lK -lK -Vt -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -GC -uG -sW -Sk -sq -gL -Bh -Bh -xn -Bh -Bh -Bh -bp -gL -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(166,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -gL -xy -iL -sW -Rd -KM -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -GC -Wv -sW -QX -wh -gL -gL -gL -gL -gL -gL -gL -gL -gL -wZ -wZ -wZ -eY -wZ -wZ -xC -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(167,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -Yk -VY -Yk -Yk -gL -ET -MZ -sW -kt -KM -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -lK -GC -uG -sW -EW -aQ -gL -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(168,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -qq -qq -qq -sl -sW -Ny -kt -kf -kf -zr -zr -zr -cR -zr -zr -zr -zr -zr -zr -kf -kf -kf -zr -zr -zr -zr -jt -zr -zr -zr -zr -kf -Rd -vx -sW -ES -MZ -gL -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(169,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -qq -AO -pS -yF -sW -kt -kt -kt -kt -eM -Rd -kt -bU -kt -Rd -kt -xF -Ny -kt -kt -xF -qo -pf -Pc -bo -kt -RJ -kt -kt -kt -kt -eM -kt -uG -sW -Sk -rf -gL -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(170,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -Yk -wZ -wZ -qq -qq -gX -Xy -XV -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -sW -Zr -xh -FV -wZ -wZ -wZ -wZ -wZ -wZ -Yk -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(171,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -mq -CC -CC -jr -Ll -LI -LI -Tk -hr -fv -RP -cD -iS -bR -eO -ir -Rr -JX -hr -sS -Jk -cp -xa -mm -tu -yK -mD -Rj -tu -tu -tu -WM -tu -Fa -JN -Oj -LQ -Vc -FV -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -XU -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(172,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -mq -CC -Cy -tW -CC -Pv -HX -qq -cs -mH -tL -Za -mN -SN -SN -mH -Eq -lY -Eq -Eq -Eq -Eq -Za -my -SN -SN -SN -my -Op -Op -Eq -mH -my -mM -Cl -iS -Lt -xh -FV -wZ -wZ -wZ -eY -il -il -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(173,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -Yk -Yk -Yk -mq -CC -Pw -vN -CC -CC -qq -qq -gL -Fv -Fv -Fv -Fv -Fv -ek -Fv -pJ -Fv -ek -ek -Fv -Fv -Fv -ek -ek -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -ZK -xh -gL -Yk -Yk -Yk -Yk -lR -il -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(174,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -mq -CC -sY -kF -aH -CC -qq -wZ -wZ -Fv -Io -Be -wS -wS -wS -Ci -wS -wS -AR -AR -Xc -Ps -Gn -AR -AR -bt -GP -IX -cF -pP -pP -pP -pP -Xc -ea -Fv -aS -xh -gL -wZ -wZ -wZ -eY -il -il -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(175,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -XU -wZ -Yk -wZ -wZ -wZ -mq -Pv -CC -CC -vQ -TL -qq -wZ -wZ -Fv -Fq -GZ -wS -Ps -Ps -AR -mG -AR -wS -wS -wS -AR -xP -QU -dH -Vu -CD -zN -fx -pw -bO -bO -zN -zN -zN -DW -gf -km -gL -wZ -wZ -wZ -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(176,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -qq -mq -mq -mq -mq -mq -qq -wZ -wZ -Fv -Sm -wB -AR -wS -eQ -iA -AR -bQ -xw -wS -zJ -hZ -Ud -YT -Qw -AR -wS -AR -DR -AR -OG -py -hz -og -Ls -Fv -BL -xy -gL -wZ -wZ -eY -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(177,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -Fv -vR -wS -Ps -AR -uh -Ak -Ps -yY -AR -wS -mB -mK -wS -mP -VG -wS -Ps -AR -IK -pP -py -Ce -Fv -Fv -Fv -Fv -gL -gL -gL -wZ -Du -eY -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(178,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -Fv -Ke -Xc -GZ -AR -bi -DQ -wS -kV -qO -Xc -tR -th -wS -Pk -Jr -wS -Ps -wS -qd -pP -NW -Fv -Fv -wZ -wZ -wZ -wZ -wZ -Yk -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(179,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -eY -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -Fv -Fv -xs -Xc -AR -ZL -fl -AR -GJ -XE -AR -TG -Pd -AR -wX -vp -wS -wS -wS -DR -qN -Fv -Fv -wZ -wZ -wZ -wZ -wZ -wZ -Yk -Yk -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(180,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -eY -eY -eY -Du -Yk -eY -Yk -Yk -Yk -wZ -wZ -wZ -Fv -Fv -AR -NW -KV -oq -AR -XM -pq -AR -Jw -aY -wS -JU -Iy -wS -wS -AR -xU -Fv -Fv -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(181,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -XU -wZ -Lb -Du -wZ -wZ -wZ -Fv -Fv -wY -AR -wS -mG -Pr -wS -Ps -wS -AR -fg -wS -wS -wS -An -AR -Fv -Fv -wZ -wZ -wZ -Yk -Se -eY -eY -eY -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(182,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -eY -wZ -wZ -wZ -Fv -Fv -hd -hd -yj -Fv -Fv -yj -hd -yB -Fv -Fv -yB -hd -hd -Fv -Fv -wZ -wZ -wZ -Yk -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(183,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -eY -eY -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -xC -xC -wZ -wZ -wZ -XU -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(184,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -xC -eY -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(185,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -Yk -wZ -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -wZ -wZ -wZ -wZ -wZ -Yk -wZ -Yk -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(186,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -Yk -eY -eY -Yk -Du -eY -eY -Yk -Yk -Yk -Se -eY -eY -eY -Du -Yk -Yk -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(187,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -XU -wZ -wZ -wZ -Yk -VE -Yk -wZ -wZ -wZ -XU -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(188,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -Yk -Yk -Yk -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(189,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(190,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(191,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(192,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(193,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(194,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(195,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(196,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(197,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(198,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(199,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(200,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(201,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(202,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(203,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(204,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(205,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(206,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(207,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(208,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(209,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(210,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(211,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(212,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(213,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(214,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(215,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(216,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(217,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(218,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(219,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(220,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(221,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(222,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(223,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(224,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(225,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(226,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(227,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(228,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(229,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(230,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(231,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(232,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(233,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(234,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(235,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(236,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(237,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(238,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(239,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(240,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(241,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(242,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(243,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(244,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(245,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(246,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(247,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(248,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(249,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(250,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(251,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(252,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(253,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(254,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(255,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} -(256,1,1) = {" -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -wZ -"} diff --git a/maps/southern_sun/southern_cross-10.dmm b/maps/southern_sun/southern_cross-10.dmm deleted file mode 100644 index e5dde69b21..0000000000 --- a/maps/southern_sun/southern_cross-10.dmm +++ /dev/null @@ -1,66350 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/outside/valley/walls) -"bH" = ( -/obj/structure/railing, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"cX" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/surface/outside/valley/river) -"dd" = ( -/turf/simulated/floor/water, -/area/surface/outside/valley/end) -"dT" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/cave, -/area/surface/outside/valley/inner) -"dW" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/cave, -/area/surface/outside/valley/walls) -"eI" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/valley/edge, -/area/surface/outside/valley/end) -"fo" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/valley, -/area/surface/outside/valley/end) -"gw" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/outside/valley/walls) -"hx" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"hC" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/cave, -/area/surface/outside/valley/walls) -"ie" = ( -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/surface/outside/valley/river) -"ja" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/valley/end) -"kf" = ( -/obj/effect/map_effect/portal/master/side_b/wilderness_to_valley{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outside/valley/river) -"kI" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/outside/valley/inner) -"kL" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"kW" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep{ - outdoors = 0 - }, -/area/surface/outside/valley/river) -"lk" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/end) -"lt" = ( -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/surface/outside/valley/inner) -"nK" = ( -/turf/simulated/floor/outdoors/grass/sif/cave, -/area/surface/outside/valley/inner) -"nY" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/valley, -/area/surface/outside/valley/inner) -"oh" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/valley, -/area/surface/outside/valley/end) -"ph" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/water, -/area/surface/outside/valley/river) -"pI" = ( -/obj/structure/railing{ - dir = 4; - icon_state = "railing0" - }, -/turf/simulated/floor/water, -/area/surface/outside/valley/river) -"qe" = ( -/turf/simulated/wall/solidrock, -/area/surface/outside/valley/inner) -"rq" = ( -/turf/simulated/floor/outdoors/grass/sif/valley, -/area/surface/outside/valley/inner) -"rK" = ( -/turf/simulated/floor/water, -/area/surface/outside/valley/river) -"rU" = ( -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"sf" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"uF" = ( -/obj/structure/railing, -/turf/simulated/floor/water, -/area/surface/outside/valley/river) -"vf" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"we" = ( -/turf/simulated/mineral/sif, -/area/surface/outside/valley/walls) -"xd" = ( -/obj/effect/zone_divider, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"xi" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/valley, -/area/surface/outside/valley/inner) -"yT" = ( -/obj/effect/zone_divider, -/obj/structure/railing, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"Ad" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/valley/edge, -/area/surface/outside/valley/inner) -"AG" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/outside/valley/inner) -"BR" = ( -/turf/unsimulated/wall/planetary/sif, -/area/surface/outside/valley/edge) -"BS" = ( -/turf/simulated/floor/water/deep{ - outdoors = 0 - }, -/area/surface/outside/valley/river) -"DA" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 8 - }, -/obj/structure/railing, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"DP" = ( -/turf/simulated/floor/outdoors/grass/sif/valley/edge, -/area/surface/outside/valley/end) -"EA" = ( -/turf/simulated/floor/wood, -/area/surface/outside/valley/river) -"ES" = ( -/obj/structure/railing{ - dir = 4; - icon_state = "railing0" - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"Fh" = ( -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/end) -"Fp" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/outside/valley/inner) -"FG" = ( -/turf/simulated/mineral/sif, -/area/surface/outside/valley/edge) -"FI" = ( -/obj/effect/zone_divider, -/turf/unsimulated/wall/planetary/sif, -/area/surface/outside/valley/edge) -"Gc" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outside/valley/river) -"GA" = ( -/obj/effect/zone_divider, -/turf/simulated/wall/solidrock, -/area/surface/outside/valley/edge) -"HM" = ( -/turf/simulated/floor/outdoors/grass/sif/valley/edge, -/area/surface/outside/valley/inner) -"Ip" = ( -/turf/simulated/floor/outdoors/grass/sif/valley, -/area/surface/outside/valley/end) -"IN" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/end) -"IO" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/cave, -/area/surface/outside/valley/inner) -"Kv" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/valley/inner) -"Rk" = ( -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/valley/inner) -"Rs" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/outside/valley/walls) -"RW" = ( -/turf/simulated/wall/solidrock, -/area/surface/outside/valley/edge) -"Sp" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/cave, -/area/surface/outside/valley/walls) -"Tx" = ( -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outside/valley/river) -"TI" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/outside/valley/edge) -"WK" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outside/valley/river) -"WT" = ( -/turf/simulated/wall/wood, -/area/surface/outside/valley/inner) -"Xj" = ( -/obj/effect/shuttle_landmark{ - landmark_tag = "valley_e"; - name = "Valley Entrance"; - base_area = /area/surface/outside/valley/inner; - base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse - }, -/turf/simulated/floor/outdoors/grass/sif/valley, -/area/surface/outside/valley/inner) -"Yl" = ( -/turf/simulated/mineral/sif, -/area/surface/outside/valley/inner) -"YN" = ( -/turf/simulated/floor/outdoors/grass/sif/cave, -/area/surface/outside/valley/walls) -"YV" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/valley/river) - -(1,1,1) = {" -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -BR -BR -BR -FI -BR -BR -BR -BR -BR -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -BR -BR -BR -BR -FI -BR -BR -BR -BR -BR -BR -BR -BR -BR -BR -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -BR -BR -BR -BR -BR -BR -BR -BR -BR -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -"} -(2,1,1) = {" -RW -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -Tx -Tx -kW -BS -BS -Tx -Tx -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -rK -rK -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -Tx -Tx -BS -BS -BS -Tx -Tx -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -RW -"} -(3,1,1) = {" -RW -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -Tx -Tx -kW -BS -BS -Tx -Tx -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -rK -rK -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -Tx -Tx -BS -BS -BS -Tx -Tx -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -RW -"} -(4,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -kW -BS -BS -Tx -Tx -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -rK -rK -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(5,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -kW -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -eI -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -dd -dd -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -eI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(6,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -kW -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -eI -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -dd -dd -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -eI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(7,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Gc -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -eI -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -dd -dd -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -eI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(8,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Gc -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -eI -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -dd -dd -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -eI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(9,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Gc -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -eI -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -dd -dd -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -eI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(10,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Gc -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -eI -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -dd -dd -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -eI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(11,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Gc -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -eI -DP -Ip -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -dd -dd -dd -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -eI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(12,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Gc -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -eI -Ip -Ip -Ip -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -eI -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(13,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -Gc -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -HM -HM -rq -rq -rq -oh -Ip -Ip -Ip -Ip -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(14,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -Sp -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(15,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(16,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(17,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -Sp -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(18,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Rs -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -DP -DP -Ip -Ip -DP -DP -DP -DP -DP -DP -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -Ip -Ip -Ip -DP -DP -DP -DP -DP -DP -DP -DP -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(19,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -Rs -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -Ip -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -DP -DP -DP -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(20,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -DP -DP -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(21,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(22,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(23,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(24,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(25,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(26,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(27,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -Tx -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(28,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(29,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(30,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(31,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(32,1,1) = {" -GA -TI -TI -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -gw -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Gc -Gc -kW -kW -kW -Gc -Gc -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -AG -kI -Ad -Ad -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -fo -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -ja -ja -IN -IN -lk -IN -IN -IN -IN -IN -IN -IN -ja -ja -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -fo -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Fp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Gc -Gc -kW -kW -kW -Gc -Gc -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -dW -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -TI -TI -GA -"} -(33,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(34,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(35,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(36,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(37,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(38,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(39,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(40,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -YV -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(41,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -rK -YV -Tx -BS -BS -BS -Tx -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(42,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -rK -rK -vf -BS -BS -BS -Tx -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(43,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -rK -rK -rU -vf -BS -BS -Tx -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(44,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -rK -rK -rK -rU -rU -vf -Tx -Tx -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(45,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rK -rU -rU -rU -YV -Tx -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(46,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -rU -rK -YV -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(47,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rK -rK -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(48,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Tx -Tx -BS -BS -Tx -Tx -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -rU -rU -rK -rK -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(49,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -Tx -Tx -Tx -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rK -rK -rU -rU -rU -rU -rK -rK -rK -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(50,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -Tx -Tx -Tx -Tx -YV -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rK -rK -rU -rU -rU -rU -rK -rK -rK -rK -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(51,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -BS -BS -Tx -Tx -YV -rK -rK -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rU -rU -rU -rU -rU -rU -rU -rK -rK -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(52,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -BS -BS -BS -BS -vf -rK -rK -rK -rK -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(53,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Tx -Tx -Tx -BS -BS -BS -BS -BS -BS -vf -rU -rU -rK -rK -rK -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rK -rK -rK -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -rK -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(54,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Tx -Tx -Tx -Tx -Tx -Tx -BS -BS -vf -rU -rU -rU -rU -rK -rK -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rK -rK -rK -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -rK -rK -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(55,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -Tx -Tx -Tx -Tx -YV -rU -rU -rU -rU -rU -rK -rK -rK -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rK -rK -rK -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -rK -rK -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(56,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -YV -rK -rK -rU -rU -rU -rU -rK -rK -rK -rK -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -YV -rK -rU -rU -rU -rU -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(57,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -rK -rK -rK -rK -rU -rU -rU -rU -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -YV -rU -rU -rU -rU -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(58,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -rK -rK -rK -rU -rU -rU -rU -rU -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rK -vf -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(59,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rK -rK -rU -rU -rU -rU -rU -rK -rK -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rK -rK -rK -rU -rU -vf -rU -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(60,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rK -rK -rK -rU -rU -rU -rU -rU -rK -rK -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -YV -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rq -rq -rq -WT -lt -lt -WT -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -WT -lt -lt -WT -rq -rq -rq -rq -rK -rK -rK -rK -rK -rU -rU -rU -rU -vf -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -YN -YN -YN -YN -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(61,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rK -rK -rK -rK -rU -rU -rU -rU -rU -rU -rK -rK -rK -rq -rq -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -YV -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -uF -ie -ie -ph -rK -rK -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -rK -rK -rK -rK -uF -ie -ie -ph -rK -rK -rK -rK -rK -rU -rU -rU -rU -rU -rU -rU -rU -YV -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(62,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rK -rK -rK -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -YV -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -uF -ie -ie -ph -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -rK -rK -rK -rK -uF -ie -ie -ph -rK -rK -rK -rK -rU -rU -rU -rU -rU -rU -rU -rK -rK -YV -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(63,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -rK -rK -rU -rU -rU -rU -rU -rU -rU -rK -rK -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -bH -ie -ie -hx -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -bH -ie -ie -hx -rU -rU -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -rK -YV -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(64,1,1) = {" -GA -TI -TI -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -aa -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -kI -kI -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -xi -xi -YV -YV -YV -YV -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -sf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -yT -cX -cX -xd -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -yT -cX -cX -xd -vf -vf -vf -vf -vf -vf -YV -YV -YV -YV -YV -YV -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -kI -kI -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -aa -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -TI -TI -GA -"} -(65,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rK -rK -rK -rK -rK -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -bH -ie -ie -hx -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -bH -ie -ie -hx -rU -rU -rU -rU -rK -rK -rK -rK -rK -rK -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(66,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rK -rK -rK -rK -rU -rU -rU -rK -rK -rK -rK -rK -rK -rK -rK -rK -YV -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -uF -ie -ie -ph -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -rK -rK -rK -rK -uF -ie -ie -ph -rK -rK -rK -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(67,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -YV -rK -rK -rK -rK -rK -rK -rq -rq -rq -rq -rq -rq -rK -rK -uF -ie -ie -ph -rK -rK -rK -rK -rK -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -rK -rK -rK -rK -uF -ie -ie -ph -rK -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(68,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -WT -lt -lt -WT -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -WT -lt -lt -WT -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(69,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(70,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(71,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(72,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Ad -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(73,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(74,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(75,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(76,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(77,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(78,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(79,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(80,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(81,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(82,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(83,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(84,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(85,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(86,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(87,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(88,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(89,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(90,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(91,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(92,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(93,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(94,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(95,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(96,1,1) = {" -GA -TI -TI -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Sp -Rs -aa -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Fp -kI -Ad -Ad -Ad -Ad -Ad -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -YV -YV -vf -vf -sf -vf -vf -vf -vf -vf -vf -YV -YV -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Fp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -dW -Sp -Sp -Sp -Sp -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -TI -TI -GA -"} -(97,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(98,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(99,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(100,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(101,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(102,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(103,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(104,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(105,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -kI -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(106,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(107,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(108,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(109,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(110,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(111,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(112,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(113,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(114,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(115,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(116,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -IO -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(117,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -nK -IO -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(118,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -nK -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(119,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -nK -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(120,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -nK -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(121,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -nK -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(122,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -nK -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(123,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -nK -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(124,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(125,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(126,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(127,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(128,1,1) = {" -GA -TI -TI -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -aa -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -kI -kI -Ad -Ad -Ad -Ad -Ad -Ad -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -YV -YV -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -YV -YV -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -kI -kI -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -aa -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -TI -TI -GA -"} -(129,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(130,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(131,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(132,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(133,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(134,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(135,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(136,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(137,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(138,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(139,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Rs -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(140,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(141,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(142,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(143,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(144,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(145,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(146,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(147,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(148,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(149,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(150,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(151,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(152,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(153,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(154,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(155,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -YN -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(156,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(157,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(158,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -Rk -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(159,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -Rk -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(160,1,1) = {" -GA -TI -TI -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -hC -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Fp -kI -Ad -Ad -Ad -Ad -Ad -Ad -Ad -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -Kv -YV -YV -vf -vf -vf -sf -vf -vf -vf -vf -vf -YV -YV -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Fp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -dW -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -TI -TI -GA -"} -(161,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -Rk -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(162,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -Rk -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(163,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -Rk -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(164,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -Rk -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(165,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -Rk -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(166,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(167,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(168,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(169,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(170,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(171,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(172,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(173,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(174,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(175,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(176,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(177,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(178,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(179,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(180,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Sp -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -kI -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(181,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -kI -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(182,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(183,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(184,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(185,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(186,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(187,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(188,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(189,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(190,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(191,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(192,1,1) = {" -GA -TI -TI -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -aa -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -kI -kI -Ad -Ad -Ad -Ad -Ad -Ad -Ad -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -YV -YV -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -YV -YV -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -Ad -Ad -Ad -Ad -Ad -Ad -kI -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -hC -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -TI -TI -GA -"} -(193,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(194,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -vf -rU -rU -rU -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(195,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -vf -rU -rU -rU -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(196,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -vf -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(197,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(198,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(199,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(200,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(201,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -YN -Sp -YN -YN -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(202,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Sp -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(203,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(204,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(205,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(206,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(207,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(208,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(209,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(210,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(211,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(212,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Sp -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(213,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -Sp -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(214,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -Sp -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Ad -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(215,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -Sp -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Ad -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(216,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -Sp -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Ad -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(217,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Ad -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(218,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Ad -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(219,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Ad -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(220,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -kI -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(221,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Rs -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(222,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(223,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(224,1,1) = {" -GA -TI -TI -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Rs -hC -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Sp -Sp -dT -Ad -Ad -Ad -Ad -Ad -Ad -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -YV -YV -vf -sf -vf -YV -YV -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -Ad -Ad -Ad -Ad -Ad -kI -Fp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -dW -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -TI -TI -GA -"} -(225,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(226,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(227,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(228,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(229,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -FG -FG -RW -"} -(230,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -FG -FG -RW -"} -(231,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(232,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(233,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(234,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -YV -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -Yl -kI -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(235,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -YV -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -kI -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(236,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -YV -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -kI -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(237,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -YV -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -kI -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(238,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rK -YV -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -kI -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(239,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rK -YV -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(240,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rK -YV -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(241,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rK -YV -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(242,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -rK -YV -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -IO -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(243,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -Xj -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -rK -YV -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -IO -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(244,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -rK -rK -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -IO -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(245,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Sp -YN -YN -YN -we -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rK -rK -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(246,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rK -rK -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(247,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rK -rK -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(248,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rK -rK -rq -rq -xi -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(249,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rK -rK -rq -rq -xi -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -Ad -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(250,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -xi -rq -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -rK -rK -rU -rU -rU -rU -rK -rK -rq -rq -rq -xi -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -HM -HM -HM -Ad -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(251,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rK -rK -rU -rU -rU -rU -rK -rK -HM -HM -HM -Ad -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(252,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rK -pI -ES -rU -rU -ES -pI -rK -HM -HM -HM -Ad -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(253,1,1) = {" -RW -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -HM -HM -HM -HM -HM -EA -EA -hx -bH -EA -EA -HM -HM -HM -HM -Ad -HM -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -RW -"} -(254,1,1) = {" -RW -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -HM -HM -HM -HM -EA -EA -hx -bH -EA -EA -HM -HM -HM -HM -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -RW -"} -(255,1,1) = {" -RW -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -Yl -Yl -WK -WK -kL -DA -WK -kf -Yl -Yl -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -RW -"} -(256,1,1) = {" -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -qe -qe -EA -EA -hx -bH -EA -EA -qe -qe -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -"} diff --git a/maps/southern_sun/southern_cross-11.dmm b/maps/southern_sun/southern_cross-11.dmm deleted file mode 100644 index e5dde69b21..0000000000 --- a/maps/southern_sun/southern_cross-11.dmm +++ /dev/null @@ -1,66350 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/outside/valley/walls) -"bH" = ( -/obj/structure/railing, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"cX" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/surface/outside/valley/river) -"dd" = ( -/turf/simulated/floor/water, -/area/surface/outside/valley/end) -"dT" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/cave, -/area/surface/outside/valley/inner) -"dW" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/cave, -/area/surface/outside/valley/walls) -"eI" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/valley/edge, -/area/surface/outside/valley/end) -"fo" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/valley, -/area/surface/outside/valley/end) -"gw" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/outside/valley/walls) -"hx" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"hC" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/cave, -/area/surface/outside/valley/walls) -"ie" = ( -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/surface/outside/valley/river) -"ja" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/valley/end) -"kf" = ( -/obj/effect/map_effect/portal/master/side_b/wilderness_to_valley{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outside/valley/river) -"kI" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/outside/valley/inner) -"kL" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"kW" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep{ - outdoors = 0 - }, -/area/surface/outside/valley/river) -"lk" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/end) -"lt" = ( -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/surface/outside/valley/inner) -"nK" = ( -/turf/simulated/floor/outdoors/grass/sif/cave, -/area/surface/outside/valley/inner) -"nY" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/valley, -/area/surface/outside/valley/inner) -"oh" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/valley, -/area/surface/outside/valley/end) -"ph" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/water, -/area/surface/outside/valley/river) -"pI" = ( -/obj/structure/railing{ - dir = 4; - icon_state = "railing0" - }, -/turf/simulated/floor/water, -/area/surface/outside/valley/river) -"qe" = ( -/turf/simulated/wall/solidrock, -/area/surface/outside/valley/inner) -"rq" = ( -/turf/simulated/floor/outdoors/grass/sif/valley, -/area/surface/outside/valley/inner) -"rK" = ( -/turf/simulated/floor/water, -/area/surface/outside/valley/river) -"rU" = ( -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"sf" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"uF" = ( -/obj/structure/railing, -/turf/simulated/floor/water, -/area/surface/outside/valley/river) -"vf" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"we" = ( -/turf/simulated/mineral/sif, -/area/surface/outside/valley/walls) -"xd" = ( -/obj/effect/zone_divider, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"xi" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/valley, -/area/surface/outside/valley/inner) -"yT" = ( -/obj/effect/zone_divider, -/obj/structure/railing, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"Ad" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/valley/edge, -/area/surface/outside/valley/inner) -"AG" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/outside/valley/inner) -"BR" = ( -/turf/unsimulated/wall/planetary/sif, -/area/surface/outside/valley/edge) -"BS" = ( -/turf/simulated/floor/water/deep{ - outdoors = 0 - }, -/area/surface/outside/valley/river) -"DA" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 8 - }, -/obj/structure/railing, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"DP" = ( -/turf/simulated/floor/outdoors/grass/sif/valley/edge, -/area/surface/outside/valley/end) -"EA" = ( -/turf/simulated/floor/wood, -/area/surface/outside/valley/river) -"ES" = ( -/obj/structure/railing{ - dir = 4; - icon_state = "railing0" - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/river) -"Fh" = ( -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/end) -"Fp" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/outside/valley/inner) -"FG" = ( -/turf/simulated/mineral/sif, -/area/surface/outside/valley/edge) -"FI" = ( -/obj/effect/zone_divider, -/turf/unsimulated/wall/planetary/sif, -/area/surface/outside/valley/edge) -"Gc" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outside/valley/river) -"GA" = ( -/obj/effect/zone_divider, -/turf/simulated/wall/solidrock, -/area/surface/outside/valley/edge) -"HM" = ( -/turf/simulated/floor/outdoors/grass/sif/valley/edge, -/area/surface/outside/valley/inner) -"Ip" = ( -/turf/simulated/floor/outdoors/grass/sif/valley, -/area/surface/outside/valley/end) -"IN" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/valley/end) -"IO" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/cave, -/area/surface/outside/valley/inner) -"Kv" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/valley/inner) -"Rk" = ( -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/valley/inner) -"Rs" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/outside/valley/walls) -"RW" = ( -/turf/simulated/wall/solidrock, -/area/surface/outside/valley/edge) -"Sp" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/cave, -/area/surface/outside/valley/walls) -"Tx" = ( -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outside/valley/river) -"TI" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/outside/valley/edge) -"WK" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outside/valley/river) -"WT" = ( -/turf/simulated/wall/wood, -/area/surface/outside/valley/inner) -"Xj" = ( -/obj/effect/shuttle_landmark{ - landmark_tag = "valley_e"; - name = "Valley Entrance"; - base_area = /area/surface/outside/valley/inner; - base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse - }, -/turf/simulated/floor/outdoors/grass/sif/valley, -/area/surface/outside/valley/inner) -"Yl" = ( -/turf/simulated/mineral/sif, -/area/surface/outside/valley/inner) -"YN" = ( -/turf/simulated/floor/outdoors/grass/sif/cave, -/area/surface/outside/valley/walls) -"YV" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/valley/river) - -(1,1,1) = {" -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -BR -BR -BR -FI -BR -BR -BR -BR -BR -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -BR -BR -BR -BR -FI -BR -BR -BR -BR -BR -BR -BR -BR -BR -BR -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -BR -BR -BR -BR -BR -BR -BR -BR -BR -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -"} -(2,1,1) = {" -RW -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -Tx -Tx -kW -BS -BS -Tx -Tx -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -rK -rK -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -Tx -Tx -BS -BS -BS -Tx -Tx -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -RW -"} -(3,1,1) = {" -RW -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -Tx -Tx -kW -BS -BS -Tx -Tx -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -rK -rK -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -Tx -Tx -BS -BS -BS -Tx -Tx -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -RW -"} -(4,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -kW -BS -BS -Tx -Tx -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -rK -rK -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(5,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -kW -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -eI -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -dd -dd -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -eI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(6,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -kW -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -eI -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -dd -dd -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -eI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(7,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Gc -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -eI -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -dd -dd -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -eI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(8,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Gc -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -eI -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -dd -dd -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -eI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(9,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Gc -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -eI -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -dd -dd -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -eI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(10,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Gc -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -eI -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -dd -dd -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -eI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(11,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Gc -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -eI -DP -Ip -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -dd -dd -dd -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -eI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(12,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Gc -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -eI -Ip -Ip -Ip -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -eI -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(13,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -Gc -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -HM -HM -rq -rq -rq -oh -Ip -Ip -Ip -Ip -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(14,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -Sp -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(15,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(16,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(17,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -Sp -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -DP -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(18,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Rs -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -DP -DP -Ip -Ip -DP -DP -DP -DP -DP -DP -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -DP -DP -Ip -Ip -Ip -DP -DP -DP -DP -DP -DP -DP -DP -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(19,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -Rs -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -DP -DP -Ip -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -DP -DP -DP -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(20,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -DP -DP -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -DP -DP -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(21,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -DP -DP -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -DP -DP -DP -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(22,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(23,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(24,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(25,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(26,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(27,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -Tx -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(28,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Yl -kI -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(29,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(30,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(31,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -oh -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -dd -dd -Fh -Fh -IN -Fh -Fh -Fh -Fh -Fh -Fh -Fh -dd -dd -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -Ip -oh -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(32,1,1) = {" -GA -TI -TI -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -gw -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Gc -Gc -kW -kW -kW -Gc -Gc -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -AG -kI -Ad -Ad -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -fo -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -ja -ja -IN -IN -lk -IN -IN -IN -IN -IN -IN -IN -ja -ja -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -oh -fo -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Fp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Gc -Gc -kW -kW -kW -Gc -Gc -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -dW -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -TI -TI -GA -"} -(33,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(34,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(35,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(36,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(37,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(38,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(39,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(40,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -YV -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(41,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -rK -YV -Tx -BS -BS -BS -Tx -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(42,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -rK -rK -vf -BS -BS -BS -Tx -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(43,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -rK -rK -rU -vf -BS -BS -Tx -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(44,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -rK -rK -rK -rU -rU -vf -Tx -Tx -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(45,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rK -rU -rU -rU -YV -Tx -Tx -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(46,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -rU -rK -YV -Tx -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(47,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -Tx -Tx -BS -BS -BS -BS -Tx -Tx -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rK -rK -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(48,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Tx -Tx -BS -BS -Tx -Tx -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -rU -rU -rK -rK -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(49,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -Tx -Tx -Tx -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rK -rK -rU -rU -rU -rU -rK -rK -rK -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(50,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Tx -Tx -BS -BS -BS -Tx -Tx -Tx -Tx -Tx -Tx -YV -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rK -rK -rU -rU -rU -rU -rK -rK -rK -rK -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(51,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -BS -BS -Tx -Tx -YV -rK -rK -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rU -rU -rU -rU -rU -rU -rU -rK -rK -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(52,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Tx -Tx -BS -BS -BS -BS -BS -BS -BS -BS -vf -rK -rK -rK -rK -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(53,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Tx -Tx -Tx -BS -BS -BS -BS -BS -BS -vf -rU -rU -rK -rK -rK -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rK -rK -rK -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -rK -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(54,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Tx -Tx -Tx -Tx -Tx -Tx -BS -BS -vf -rU -rU -rU -rU -rK -rK -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rK -rK -rK -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -rK -rK -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(55,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -Tx -Tx -Tx -Tx -YV -rU -rU -rU -rU -rU -rK -rK -rK -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rK -rK -rK -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -rK -rK -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(56,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Tx -Tx -YV -rK -rK -rU -rU -rU -rU -rK -rK -rK -rK -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -YV -rK -rU -rU -rU -rU -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(57,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -rK -rK -rK -rK -rU -rU -rU -rU -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -YV -rU -rU -rU -rU -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(58,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -rK -rK -rK -rU -rU -rU -rU -rU -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rK -vf -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(59,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rK -rK -rU -rU -rU -rU -rU -rK -rK -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rK -rK -rK -rU -rU -vf -rU -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(60,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rK -rK -rK -rU -rU -rU -rU -rU -rK -rK -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -YV -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rq -rq -rq -WT -lt -lt -WT -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -WT -lt -lt -WT -rq -rq -rq -rq -rK -rK -rK -rK -rK -rU -rU -rU -rU -vf -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -YN -YN -YN -YN -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(61,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rK -rK -rK -rK -rU -rU -rU -rU -rU -rU -rK -rK -rK -rq -rq -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -YV -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -uF -ie -ie -ph -rK -rK -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -rK -rK -rK -rK -uF -ie -ie -ph -rK -rK -rK -rK -rK -rU -rU -rU -rU -rU -rU -rU -rU -YV -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(62,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rK -rK -rK -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -YV -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -uF -ie -ie -ph -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -rK -rK -rK -rK -uF -ie -ie -ph -rK -rK -rK -rK -rU -rU -rU -rU -rU -rU -rU -rK -rK -YV -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(63,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -HM -rK -rK -rU -rU -rU -rU -rU -rU -rU -rK -rK -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -bH -ie -ie -hx -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -bH -ie -ie -hx -rU -rU -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -rK -YV -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(64,1,1) = {" -GA -TI -TI -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -aa -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -kI -kI -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -xi -xi -YV -YV -YV -YV -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -sf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -yT -cX -cX -xd -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -yT -cX -cX -xd -vf -vf -vf -vf -vf -vf -YV -YV -YV -YV -YV -YV -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -kI -kI -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -aa -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -TI -TI -GA -"} -(65,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rK -rK -rK -rK -rK -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -bH -ie -ie -hx -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -rU -bH -ie -ie -hx -rU -rU -rU -rU -rK -rK -rK -rK -rK -rK -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(66,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rK -rK -rK -rK -rU -rU -rU -rK -rK -rK -rK -rK -rK -rK -rK -rK -YV -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -uF -ie -ie -ph -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -rK -rK -rK -rK -uF -ie -ie -ph -rK -rK -rK -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(67,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -rK -YV -rK -rK -rK -rK -rK -rK -rq -rq -rq -rq -rq -rq -rK -rK -uF -ie -ie -ph -rK -rK -rK -rK -rK -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rK -rK -rK -rK -rK -uF -ie -ie -ph -rK -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(68,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -WT -lt -lt -WT -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -WT -lt -lt -WT -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(69,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(70,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(71,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(72,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -Ad -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(73,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(74,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(75,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(76,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(77,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(78,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(79,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(80,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(81,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(82,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(83,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(84,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(85,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(86,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(87,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(88,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(89,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(90,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(91,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(92,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(93,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(94,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(95,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(96,1,1) = {" -GA -TI -TI -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Sp -Rs -aa -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Fp -kI -Ad -Ad -Ad -Ad -Ad -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -YV -YV -vf -vf -sf -vf -vf -vf -vf -vf -vf -YV -YV -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Fp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -dW -Sp -Sp -Sp -Sp -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -TI -TI -GA -"} -(97,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(98,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(99,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(100,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(101,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(102,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(103,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(104,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(105,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -kI -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(106,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(107,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(108,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(109,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(110,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(111,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(112,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(113,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(114,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(115,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(116,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -IO -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(117,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -nK -IO -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(118,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -nK -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(119,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -nK -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(120,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -Rk -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -nK -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(121,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -nK -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(122,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -nK -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(123,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -nK -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(124,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(125,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(126,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(127,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(128,1,1) = {" -GA -TI -TI -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -aa -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -kI -kI -Ad -Ad -Ad -Ad -Ad -Ad -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -YV -YV -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -YV -YV -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -kI -kI -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -aa -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -TI -TI -GA -"} -(129,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(130,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(131,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(132,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -Rk -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(133,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(134,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(135,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(136,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(137,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(138,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(139,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Rs -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(140,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(141,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(142,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(143,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(144,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(145,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(146,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(147,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(148,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(149,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(150,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(151,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(152,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(153,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(154,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(155,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -YN -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(156,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(157,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(158,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -Rk -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(159,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -Rk -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(160,1,1) = {" -GA -TI -TI -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -hC -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Fp -kI -Ad -Ad -Ad -Ad -Ad -Ad -Ad -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -Kv -YV -YV -vf -vf -vf -sf -vf -vf -vf -vf -vf -YV -YV -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Ad -Fp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -dW -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -TI -TI -GA -"} -(161,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -Rk -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(162,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -Rk -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(163,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -Rk -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(164,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -Rk -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(165,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -Rk -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(166,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(167,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(168,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(169,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(170,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(171,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(172,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(173,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(174,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(175,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(176,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(177,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(178,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(179,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(180,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Sp -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -kI -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(181,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -kI -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(182,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(183,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(184,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(185,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(186,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(187,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(188,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(189,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(190,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -vf -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(191,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(192,1,1) = {" -GA -TI -TI -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -aa -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -kI -kI -Ad -Ad -Ad -Ad -Ad -Ad -Ad -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -YV -YV -vf -vf -vf -vf -vf -vf -vf -vf -vf -vf -YV -YV -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -Ad -Ad -Ad -Ad -Ad -Ad -kI -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -hC -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -TI -TI -GA -"} -(193,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -vf -rU -rU -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(194,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -vf -rU -rU -rU -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(195,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -vf -rU -rU -rU -rK -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(196,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rK -rU -rU -rU -vf -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(197,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(198,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(199,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(200,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(201,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -YN -Sp -YN -YN -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(202,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Sp -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(203,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(204,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(205,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(206,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -Rs -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(207,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(208,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -we -YN -YN -YN -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(209,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -we -YN -YN -YN -YN -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(210,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(211,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(212,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -Sp -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(213,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -Sp -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(214,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -Sp -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Ad -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(215,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -Sp -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Ad -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(216,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -Sp -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Ad -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(217,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Ad -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(218,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Ad -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(219,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Ad -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(220,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -kI -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(221,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Rs -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(222,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(223,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -IO -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(224,1,1) = {" -GA -TI -TI -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Rs -hC -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Sp -Sp -dT -Ad -Ad -Ad -Ad -Ad -Ad -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -YV -YV -vf -sf -vf -YV -YV -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -nY -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -xi -Ad -Ad -Ad -Ad -Ad -kI -Fp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -dW -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Rs -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Rs -Rs -Rs -Rs -Rs -Rs -TI -TI -GA -"} -(225,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(226,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(227,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(228,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -vf -rU -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(229,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -FG -FG -RW -"} -(230,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -FG -FG -RW -"} -(231,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(232,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -kI -Yl -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -vf -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(233,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -vf -rK -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -FG -FG -RW -"} -(234,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -YV -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -Yl -kI -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -FG -FG -RW -"} -(235,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -YV -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -kI -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(236,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -Rs -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -YV -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -kI -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -FG -FG -RW -"} -(237,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -Rs -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -YV -rK -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -kI -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -FG -FG -RW -"} -(238,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -Rs -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rK -YV -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -kI -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(239,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rK -YV -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(240,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rK -YV -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(241,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rK -YV -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -IO -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(242,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -rK -YV -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -IO -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(243,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -Xj -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -rK -YV -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -IO -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -YN -YN -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(244,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -Sp -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rU -rK -rK -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -IO -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(245,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Sp -YN -YN -YN -we -YN -YN -YN -YN -YN -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rK -rK -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Sp -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(246,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rK -rK -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -YN -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(247,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rK -rK -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -YN -YN -YN -YN -YN -YN -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(248,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Ad -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rK -rK -rq -rq -xi -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(249,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -xi -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rK -rK -rU -rU -rU -rU -rU -rK -rK -rq -rq -xi -rq -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -Ad -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(250,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -xi -rq -HM -HM -HM -HM -HM -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -rq -HM -HM -HM -rK -rK -rU -rU -rU -rU -rK -rK -rq -rq -rq -xi -rq -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rq -HM -HM -HM -Ad -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(251,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rK -rK -rU -rU -rU -rU -rK -rK -HM -HM -HM -Ad -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(252,1,1) = {" -RW -FG -FG -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -kI -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -rK -pI -ES -rU -rU -ES -pI -rK -HM -HM -HM -Ad -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Ad -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -HM -Yl -kI -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -Rs -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -we -FG -FG -RW -"} -(253,1,1) = {" -RW -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -HM -HM -HM -HM -HM -EA -EA -hx -bH -EA -EA -HM -HM -HM -HM -Ad -HM -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -RW -"} -(254,1,1) = {" -RW -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -HM -HM -HM -HM -EA -EA -hx -bH -EA -EA -HM -HM -HM -HM -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -RW -"} -(255,1,1) = {" -RW -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -Yl -Yl -WK -WK -kL -DA -WK -kf -Yl -Yl -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -TI -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -FG -RW -"} -(256,1,1) = {" -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -qe -qe -EA -EA -hx -bH -EA -EA -qe -qe -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -GA -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -RW -"} diff --git a/maps/southern_sun/southern_cross-15 (Unused Empty Space.dmm b/maps/southern_sun/southern_cross-15 (Unused Empty Space.dmm deleted file mode 100644 index 36f85704c5..0000000000 --- a/maps/southern_sun/southern_cross-15 (Unused Empty Space.dmm +++ /dev/null @@ -1,66053 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/space, -/area/space) - -(1,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(2,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(3,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(4,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(5,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(6,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(7,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(8,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(9,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(10,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(11,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(12,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(13,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(14,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(15,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(16,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(17,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(18,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(19,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(20,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(21,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(22,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(23,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(24,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(25,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(26,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(27,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(28,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(29,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(30,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(31,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(32,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(33,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(34,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(35,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(36,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(37,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(38,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(39,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(40,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(41,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(42,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(43,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(44,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(45,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(46,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(47,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(48,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(49,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(50,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(51,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(52,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(53,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(54,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(55,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(56,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(57,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(58,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(59,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(60,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(61,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(62,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(63,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(64,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(65,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(66,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(67,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(68,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(69,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(70,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(71,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(72,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(73,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(74,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(75,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(76,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(77,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(78,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(79,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(80,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(81,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(82,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(83,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(84,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(85,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(86,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(87,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(88,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(89,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(90,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(91,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(92,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(93,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(94,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(95,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(96,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(97,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(98,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(99,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(100,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(101,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(102,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(103,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(104,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(105,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(106,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(107,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(108,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(109,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(110,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(111,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(112,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(113,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(114,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(115,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(116,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(117,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(118,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(119,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(120,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(121,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(122,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(123,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(124,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(125,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(126,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(127,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(128,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(129,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(130,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(131,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(132,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(133,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(134,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(135,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(136,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(137,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(138,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(139,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(140,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(141,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(142,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(143,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(144,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(145,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(146,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(147,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(148,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(149,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(150,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(151,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(152,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(153,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(154,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(155,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(156,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(157,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(158,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(159,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(160,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(161,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(162,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(163,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(164,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(165,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(166,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(167,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(168,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(169,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(170,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(171,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(172,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(173,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(174,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(175,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(176,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(177,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(178,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(179,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(180,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(181,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(182,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(183,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(184,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(185,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(186,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(187,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(188,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(189,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(190,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(191,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(192,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(193,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(194,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(195,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(196,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(197,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(198,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(199,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(200,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(201,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(202,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(203,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(204,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(205,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(206,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(207,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(208,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(209,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(210,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(211,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(212,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(213,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(214,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(215,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(216,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(217,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(218,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(219,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(220,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(221,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(222,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(223,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(224,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(225,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(226,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(227,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(228,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(229,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(230,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(231,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(232,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(233,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(234,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(235,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(236,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(237,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(238,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(239,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(240,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(241,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(242,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(243,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(244,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(245,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(246,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(247,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(248,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(249,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(250,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(251,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(252,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(253,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(254,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(255,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(256,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} diff --git a/maps/southern_sun/southern_cross-16 (Unused ship transit).dmm b/maps/southern_sun/southern_cross-16 (Unused ship transit).dmm deleted file mode 100644 index ae38340e52..0000000000 --- a/maps/southern_sun/southern_cross-16 (Unused ship transit).dmm +++ /dev/null @@ -1,34723 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/turf/space/transit/east, -/area/space) -"b" = ( -/turf/space, -/area/space) -"c" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/turf/space/transit/north, -/area/space) -"d" = ( -/turf/space/transit/east, -/area/space) -"e" = ( -/turf/space/transit/north, -/area/space) -"f" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - name = "thrower_throwdown"; - nostop = 1; - stopper = 0; - tiles = 0 - }, -/turf/space/transit/north, -/area/space) -"g" = ( -/obj/effect/step_trigger/thrower{ - direction = 1; - name = "thrower_throwup"; - tiles = 0 - }, -/turf/space/transit/east, -/area/space) -"h" = ( -/turf/space/transit/east, -/area/shuttle/response_ship/transit) -"i" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - name = "thrower_throwdown"; - nostop = 1; - stopper = 0; - tiles = 0 - }, -/turf/space/transit/east, -/area/space) -"j" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - name = "thrower_leftnostop" - }, -/turf/space/transit/east, -/area/space) -"k" = ( -/turf/space/transit/east, -/area/shuttle/escape_pod3/transit) -"l" = ( -/turf/space/transit/east, -/area/shuttle/escape_pod5/transit) -"m" = ( -/turf/space/transit/north, -/area/ninja_dojo/transit) -"n" = ( -/turf/space/transit/north, -/area/shuttle/escape_pod1/transit) -"o" = ( -/turf/space/transit/north, -/area/shuttle/escape_pod2/transit) -"p" = ( -/turf/space/transit/east, -/area/shuttle/escape_pod4/transit) -"q" = ( -/turf/space/transit/east, -/area/shuttle/escape_pod6/transit) -"s" = ( -/turf/space/transit/east, -/area/shuttle/escape_pod7/transit) -"t" = ( -/turf/space/transit/east, -/area/shuttle/escape_pod8/transit) -"u" = ( -/turf/space/transit/east, -/area/shuttle/large_escape_pod1/transit) -"v" = ( -/turf/space/transit/east, -/area/shuttle/cryo/transit) -"w" = ( -/turf/space/transit/east, -/area/shuttle/large_escape_pod2/transit) -"x" = ( -/turf/space/transit/north, -/area/shuttle/escape/transit) -"z" = ( -/obj/effect/step_trigger/thrower{ - direction = 1; - name = "thrower_throwup"; - tiles = 0 - }, -/turf/space/transit/north, -/area/space) -"A" = ( -/turf/space/transit/north, -/area/shuttle/shuttle1/transit) -"B" = ( -/turf/space/transit/north, -/area/shuttle/shuttle2/transit) - -(1,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(2,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -b -"} -(3,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(4,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(5,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(6,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(7,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(8,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(9,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -j -j -j -j -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -j -j -j -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -j -j -j -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -j -j -j -j -j -j -j -j -j -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -f -f -f -f -f -f -f -f -f -e -e -e -e -e -e -c -b -"} -(10,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -j -k -k -k -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -p -p -p -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -s -s -s -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -v -v -v -v -v -v -v -v -j -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -e -f -f -f -f -f -f -f -A -A -A -A -A -A -A -f -e -e -e -e -e -e -c -b -"} -(11,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -g -g -g -g -i -i -i -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -j -k -k -k -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -p -p -p -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -s -s -s -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -v -v -v -v -v -v -v -v -j -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -f -f -A -A -A -A -A -A -A -A -A -A -A -A -A -f -e -e -e -e -e -e -c -b -"} -(12,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -g -h -h -h -h -h -i -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -j -k -k -k -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -p -p -p -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -s -s -s -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -v -v -v -v -v -v -v -v -j -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -f -A -A -A -A -A -A -A -A -A -A -A -A -A -f -f -e -e -e -e -e -e -c -b -"} -(13,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -g -h -h -h -h -h -i -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -j -k -k -k -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -p -p -p -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -s -s -s -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -v -v -v -v -v -v -v -v -j -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -f -A -A -A -A -A -A -A -A -A -A -A -A -f -f -e -e -e -e -e -e -e -c -b -"} -(14,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -g -h -h -h -h -h -i -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -j -k -k -k -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -p -p -p -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -s -s -s -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -v -v -v -v -v -v -v -v -j -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -f -A -A -A -A -A -A -A -A -A -A -A -A -f -e -e -e -e -e -e -e -e -c -b -"} -(15,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -g -h -h -h -h -h -i -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -j -j -j -j -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -j -j -j -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -j -j -j -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -v -v -v -v -v -v -v -v -j -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -f -A -A -A -A -A -A -A -A -A -A -A -A -f -f -e -e -e -e -e -e -e -c -b -"} -(16,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -g -h -h -h -h -h -i -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -j -v -v -v -v -v -v -v -v -j -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -f -A -A -A -A -A -A -A -A -A -A -A -A -A -f -f -e -e -e -e -e -e -c -b -"} -(17,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -g -h -h -h -h -h -i -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -j -j -j -j -j -j -j -j -j -j -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -f -f -A -A -A -A -A -A -A -A -A -A -A -A -A -f -e -e -e -e -e -e -c -b -"} -(18,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -g -h -h -h -h -h -i -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -e -f -f -f -f -f -f -f -A -A -A -A -A -A -A -f -e -e -e -e -e -e -c -b -"} -(19,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -g -h -h -h -h -h -i -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -f -f -f -f -f -f -f -f -f -e -e -e -e -e -e -c -b -"} -(20,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -g -h -h -h -h -h -i -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(21,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -g -h -h -h -h -h -i -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(22,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -g -h -h -h -h -h -i -d -d -d -d -d -d -d -d -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(23,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -g -g -h -h -h -i -i -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(24,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -g -g -g -i -i -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(25,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(26,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -b -"} -(27,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -j -j -j -j -j -j -j -d -d -d -d -d -d -j -j -j -j -j -d -d -d -d -d -d -d -a -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -b -"} -(28,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -j -u -u -u -u -u -j -d -d -d -d -d -j -j -w -w -w -j -j -d -d -d -d -d -d -a -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(29,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -j -j -j -j -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -j -j -j -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -j -j -j -j -d -d -d -d -d -d -a -d -j -u -u -u -u -u -j -d -d -d -d -d -j -w -w -w -w -w -j -d -d -d -d -d -d -a -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(30,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -j -l -l -l -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -q -q -q -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -t -t -t -j -d -d -d -d -d -d -a -d -j -u -u -u -u -u -j -d -d -d -d -d -j -w -w -w -w -w -j -d -d -d -d -d -d -a -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(31,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -j -l -l -l -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -q -q -q -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -t -t -t -j -d -d -d -d -d -d -a -d -j -u -u -u -u -u -j -d -d -d -d -d -j -w -w -w -w -w -j -d -d -d -d -d -d -a -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(32,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -j -l -l -l -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -q -q -q -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -t -t -t -j -d -d -d -d -d -d -a -d -j -u -u -u -u -u -j -d -d -d -d -d -j -w -w -w -w -w -j -d -d -d -d -d -d -a -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(33,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -d -d -d -d -d -d -j -l -l -l -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -q -q -q -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -t -t -t -j -d -d -d -d -d -d -a -d -j -u -u -u -u -u -j -d -d -d -d -d -j -w -w -w -w -w -j -d -d -d -d -d -d -a -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(34,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -j -l -l -l -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -q -q -q -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -t -t -t -j -d -d -d -d -d -d -a -d -j -u -u -u -u -u -j -d -d -d -d -d -j -w -w -w -w -w -j -d -d -d -d -d -d -a -c -e -e -e -e -e -e -z -z -z -z -z -z -z -z -z -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(35,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -j -j -j -j -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -j -j -j -j -d -d -d -d -d -d -a -d -d -d -d -d -d -j -j -j -j -j -d -d -d -d -d -d -a -d -j -u -u -u -u -u -j -d -d -d -d -d -j -w -w -w -w -w -j -d -d -d -d -d -d -a -c -e -e -e -e -e -e -z -B -B -B -B -B -B -B -z -z -z -z -z -z -z -e -e -e -e -e -e -e -c -b -"} -(36,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -j -u -u -u -u -u -j -d -d -d -d -d -j -w -w -w -w -w -j -d -d -d -d -d -d -a -c -e -e -e -e -e -e -z -B -B -B -B -B -B -B -B -B -B -B -B -B -z -z -e -e -e -e -e -e -c -b -"} -(37,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -j -u -u -u -u -u -j -d -d -d -d -d -j -w -w -w -w -w -j -d -d -d -d -d -d -a -c -e -e -e -e -e -e -z -z -B -B -B -B -B -B -B -B -B -B -B -B -B -z -e -e -e -e -e -e -c -b -"} -(38,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -j -u -u -u -u -u -j -d -d -d -d -d -j -w -w -w -w -w -j -d -d -d -d -d -d -a -c -e -e -e -e -e -e -e -z -z -B -B -B -B -B -B -B -B -B -B -B -B -z -e -e -e -e -e -e -c -b -"} -(39,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -j -j -u -u -u -j -j -d -d -d -d -d -j -w -w -w -w -w -j -d -d -d -d -d -d -a -c -e -e -e -e -e -e -e -e -z -B -B -B -B -B -B -B -B -B -B -B -B -z -e -e -e -e -e -e -c -b -"} -(40,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -j -j -j -j -j -d -d -d -d -d -d -j -j -j -j -j -j -j -d -d -d -d -d -d -a -c -e -e -e -e -e -e -e -z -z -B -B -B -B -B -B -B -B -B -B -B -B -z -e -e -e -e -e -e -c -b -"} -(41,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -c -e -e -e -e -e -e -z -z -B -B -B -B -B -B -B -B -B -B -B -B -B -z -e -e -e -e -e -e -c -b -"} -(42,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -c -e -e -e -e -e -e -z -B -B -B -B -B -B -B -B -B -B -B -B -B -z -z -e -e -e -e -e -e -c -b -"} -(43,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -c -e -e -e -e -e -e -z -B -B -B -B -B -B -B -z -z -z -z -z -z -z -e -e -e -e -e -e -e -c -b -"} -(44,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -c -e -e -e -e -e -e -z -z -z -z -z -z -z -z -z -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(45,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(46,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(47,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -f -f -f -f -f -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(48,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -f -f -m -m -m -m -f -f -e -e -e -e -e -c -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(49,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -f -m -m -m -m -m -m -f -f -e -e -e -e -c -a -d -d -d -d -d -d -d -d -d -d -d -j -j -j -j -j -j -j -j -j -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(50,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -f -f -f -f -f -m -m -m -m -m -m -m -f -f -e -e -e -c -a -d -d -d -d -d -d -d -d -d -d -j -j -d -d -d -d -d -d -d -j -j -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(51,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -f -m -m -m -m -m -m -m -m -m -m -m -m -f -e -e -e -c -a -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -b -"} -(52,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -f -f -f -f -m -m -m -m -m -m -m -m -m -f -e -e -e -c -a -d -d -d -d -d -d -d -d -d -j -j -d -d -d -d -d -d -d -d -d -j -j -d -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -b -b -b -"} -(53,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -f -m -m -m -m -m -m -m -m -m -f -e -e -e -c -a -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(54,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -f -f -f -f -m -m -m -m -m -m -m -m -m -f -e -e -e -c -a -d -d -d -d -d -d -d -d -j -j -d -d -d -d -d -d -d -d -d -d -d -j -j -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(55,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -f -m -m -m -m -m -m -m -m -m -m -m -m -f -e -e -e -c -a -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(56,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -f -f -f -f -f -m -m -m -m -m -m -m -f -f -e -e -e -c -a -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(57,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -f -m -m -m -m -m -m -f -f -e -e -e -e -c -a -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(58,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -f -f -m -m -m -m -f -f -e -e -e -e -e -c -a -d -d -d -d -d -d -d -j -j -d -d -d -d -d -d -d -d -d -d -d -d -d -j -j -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(59,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -f -f -f -f -f -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -f -f -f -f -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(60,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -f -f -f -f -f -f -f -f -f -f -e -e -f -f -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(61,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(62,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(63,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -a -d -d -d -d -d -d -d -j -j -d -d -d -d -d -d -d -d -d -d -d -d -d -j -j -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(64,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -e -f -f -f -f -f -e -e -e -e -e -e -e -e -c -b -b -b -"} -(65,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -j -j -d -d -d -d -d -d -d -d -d -d -d -d -d -j -j -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -f -f -f -f -e -e -e -e -e -e -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -c -b -b -b -"} -(66,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -f -f -f -e -e -e -e -e -e -e -e -e -e -e -e -e -f -f -e -e -e -e -e -e -e -c -b -b -b -"} -(67,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -f -f -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -f -f -e -e -e -e -e -e -c -b -b -b -"} -(68,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -j -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -j -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -f -e -e -e -e -e -e -c -b -b -b -"} -(69,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -f -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -f -e -e -e -e -e -e -c -b -b -b -"} -(70,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -f -f -f -f -f -f -f -e -e -e -e -e -e -c -a -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -f -e -e -e -e -e -e -c -b -b -b -"} -(71,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -f -n -n -n -n -n -f -e -e -e -e -e -e -c -a -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -f -e -e -e -e -e -e -c -b -b -b -"} -(72,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -f -n -n -n -n -n -f -e -e -e -e -e -e -c -a -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -f -e -e -e -e -e -e -c -b -b -b -"} -(73,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -f -n -n -n -n -n -f -e -e -e -e -e -e -c -a -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -f -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -f -e -e -e -e -e -e -c -b -b -b -"} -(74,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -f -f -f -f -f -f -f -e -e -e -e -e -e -c -a -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -f -e -e -e -e -e -e -c -b -b -b -"} -(75,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -f -f -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -f -f -e -e -e -e -e -e -c -b -b -b -"} -(76,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -f -f -f -e -e -e -e -e -e -e -e -e -e -e -e -e -f -f -e -e -e -e -e -e -e -c -b -b -b -"} -(77,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -f -f -f -f -e -e -e -e -e -e -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -c -b -b -b -"} -(78,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -e -f -f -f -f -f -e -e -e -e -e -e -e -e -c -b -b -b -"} -(79,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(80,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -j -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -j -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(81,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -a -d -d -d -d -d -d -j -j -j -j -j -j -d -d -d -d -d -d -d -j -j -j -j -j -j -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -e -f -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(82,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -d -d -d -d -j -j -d -d -d -d -d -j -j -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -f -f -f -f -f -f -f -f -f -f -f -e -e -f -f -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(83,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -d -d -d -d -d -j -j -d -d -d -j -j -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -f -f -f -f -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(84,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -d -d -d -d -d -d -j -j -j -j -j -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(85,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(86,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(87,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(88,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -f -f -f -f -f -f -f -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(89,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -f -o -o -o -o -o -f -e -e -e -e -e -e -c -a -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -d -a -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -"} -(90,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -f -o -o -o -o -o -f -e -e -e -e -e -e -c -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -b -"} -(91,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -f -o -o -o -o -o -f -e -e -e -e -e -e -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(92,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -f -f -f -f -f -f -f -e -e -e -e -e -e -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(93,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(94,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(95,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(96,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(97,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -f -f -f -f -f -f -f -f -f -f -f -f -f -f -f -f -f -f -f -e -e -e -e -e -e -e -c -b -"} -(98,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -f -f -f -f -f -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -f -e -e -e -e -e -e -e -c -b -"} -(99,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -f -f -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -f -e -e -e -e -e -e -e -c -b -"} -(100,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -f -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -f -f -e -e -e -e -e -e -c -b -"} -(101,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -f -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -f -e -e -e -e -e -e -c -b -"} -(102,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -f -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -f -e -e -e -e -e -e -c -b -"} -(103,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -f -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -f -e -e -e -e -e -e -c -b -"} -(104,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -f -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -f -e -e -e -e -e -e -c -b -"} -(105,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -f -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -f -e -e -e -e -e -e -c -b -"} -(106,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -f -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -f -f -e -e -e -e -e -e -c -b -"} -(107,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -f -f -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -f -e -e -e -e -e -e -e -c -b -"} -(108,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -f -f -f -f -f -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -f -e -e -e -e -e -e -e -c -b -"} -(109,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -f -f -f -f -f -f -f -f -f -f -f -f -f -f -f -f -f -f -f -e -e -e -e -e -e -e -c -b -"} -(110,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(111,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(112,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(113,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(114,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(115,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -c -b -"} -(116,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -b -"} -(117,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(118,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(119,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(120,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(121,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(122,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(123,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(124,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(125,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(126,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(127,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(128,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(129,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(130,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(131,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(132,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(133,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(134,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(135,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(136,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(137,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(138,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(139,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(140,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(141,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(142,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(143,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(144,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(145,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(146,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(147,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(148,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(149,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(150,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(151,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(152,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(153,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(154,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(155,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(156,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(157,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(158,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(159,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(160,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(161,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(162,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(163,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(164,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(165,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(166,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(167,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(168,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(169,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(170,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(171,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(172,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(173,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(174,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(175,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(176,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(177,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(178,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(179,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(180,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(181,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(182,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(183,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(184,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(185,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} diff --git a/maps/southern_sun/southern_cross-17 (Unused Sky Islands.dmm b/maps/southern_sun/southern_cross-17 (Unused Sky Islands.dmm deleted file mode 100644 index 0ab8403238..0000000000 --- a/maps/southern_sun/southern_cross-17 (Unused Sky Islands.dmm +++ /dev/null @@ -1,68042 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"az" = ( -/obj/structure/flora/grass/both, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"aE" = ( -/turf/simulated/wall/solidrock) -"aK" = ( -/obj/effect/catwalk_plated, -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/structure/railing/grey, -/turf/simulated/floor/plating/external, -/area/surface/outpost/shelter/exterior) -"bf" = ( -/obj/effect/catwalk_plated, -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor/plating/external, -/area/surface/outpost/shelter/exterior) -"bj" = ( -/turf/simulated/mineral/sif) -"bw" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/snow) -"bx" = ( -/obj/effect/zone_divider, -/turf/simulated/wall/solidrock) -"bV" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/sif) -"bY" = ( -/obj/effect/catwalk_plated, -/obj/machinery/light, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"bZ" = ( -/turf/simulated/floor/outdoors/ice) -"cg" = ( -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/outdoors/snow) -"ck" = ( -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"cn" = ( -/obj/structure/simple_door/sifwood, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "wilderness_shelter_2nd_floor_door"; - layer = 4; - name = "Wilderness Shelter Shutters" - }, -/obj/machinery/atmospheric_field_generator/perma/underdoors, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"cv" = ( -/obj/effect/catwalk_plated, -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/plating/external, -/area/surface/outpost/shelter/exterior) -"cC" = ( -/obj/machinery/power/thermoregulator/southerncross{ - pixel_x = 1; - pixel_y = 26 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/table/standard, -/obj/fiftyspawner/plastic, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"cF" = ( -/obj/effect/catwalk_plated, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"dd" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/open/sif{ - temperature = 243.15 - }) -"do" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/outdoors/snow) -"dD" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow) -"dI" = ( -/obj/structure/flora/rocks1, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"dS" = ( -/obj/structure/flora/ausbushes/reedbush, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/water) -"dT" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/outdoors/snow) -"dX" = ( -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/dirt) -"eb" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water) -"ef" = ( -/obj/structure/flora/smallbould, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass) -"em" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/log_sif, -/area/surface/outpost/shelter/dorms) -"et" = ( -/obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/snow) -"eP" = ( -/obj/structure/coatrack, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"fa" = ( -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow) -"fq" = ( -/obj/structure/flora/tree/pine, -/turf/simulated/floor/outdoors/snow) -"fy" = ( -/obj/effect/catwalk_plated, -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/machinery/camera/network/carrier{ - c_tag = "WILD - Shelter Second Floor Exterior 3"; - dir = 8 - }, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"fI" = ( -/obj/structure/flora/grass/green, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"fT" = ( -/obj/structure/flora/rocks2, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"fW" = ( -/obj/structure/flora/log2, -/turf/simulated/floor/outdoors/ice) -"gk" = ( -/obj/structure/flora/rocks1, -/obj/structure/flora/log1, -/turf/simulated/floor/water/deep) -"gn" = ( -/obj/structure/outcrop, -/turf/simulated/floor/water/deep) -"gH" = ( -/obj/structure/flora/bush, -/turf/simulated/floor/outdoors/dirt) -"hs" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"hu" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/item/gun/projectile/shotgun/pump/rifle/practice{ - pixel_y = -3 - }, -/obj/item/gun/projectile/shotgun/pump/rifle/practice{ - pixel_y = 6 - }, -/obj/item/binoculars{ - pixel_x = 5; - pixel_y = -3 - }, -/obj/item/binoculars{ - pixel_x = 5; - pixel_y = -3 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"hy" = ( -/obj/structure/flora/rocks1, -/turf/simulated/floor/outdoors/grass) -"hz" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/dirt) -"hA" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/outdoors/grass) -"hB" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/outdoors/grass) -"hI" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow) -"hP" = ( -/obj/structure/flora/smallbould, -/turf/simulated/floor/water/deep) -"hR" = ( -/obj/effect/catwalk_plated, -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"hU" = ( -/obj/structure/flora/ausbushes/stalkybush, -/turf/simulated/floor/outdoors/snow) -"ie" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"ih" = ( -/obj/structure/flora/ausbushes, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt) -"in" = ( -/obj/structure/table/standard, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"io" = ( -/obj/structure/flora/smallbould, -/obj/effect/zone_divider, -/turf/simulated/floor/water) -"iu" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/floor/light{ - outdoors = 1 - }) -"iP" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/outdoors/grass) -"jb" = ( -/obj/structure/closet/secure_closet/medical_wall{ - name = "Wilderness Shelter defibrillator closet"; - pixel_y = 31; - req_access = null; - req_one_access = list(1,3,43,66,67); - starts_with = list(/obj/item/defib_kit/loaded) - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"jc" = ( -/obj/effect/catwalk_plated, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"jh" = ( -/obj/structure/flora/ausbushes/stalkybush, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass) -"jq" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/palebush, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass) -"js" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/grass) -"jA" = ( -/turf/simulated/floor/water) -"jC" = ( -/obj/structure/flora/smallbould, -/turf/simulated/floor/outdoors/grass) -"jM" = ( -/obj/effect/zone_divider, -/turf/simulated/open/sif{ - temperature = 243.15 - }) -"jU" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/outdoors/grass/heavy) -"ka" = ( -/obj/machinery/light/small, -/obj/structure/closet/secure_closet/guncabinet{ - anchored = 1; - req_one_access = list(1,3,43,67) - }, -/obj/item/storage/box/syndie_kit{ - max_storage_space = 20; - name = "box of 7.62mm clips"; - starts_with = list(/obj/item/ammo_magazine/clip/c762=10) - }, -/obj/item/storage/box/syndie_kit{ - max_storage_space = 20; - name = "box of 7.62mm clips"; - starts_with = list(/obj/item/ammo_magazine/clip/c762=10) - }, -/obj/item/binoculars, -/obj/item/binoculars, -/obj/item/gun/projectile/shotgun/pump/rifle{ - pixel_y = -3 - }, -/obj/item/gun/projectile/shotgun/pump/rifle{ - pixel_y = 6 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"kc" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/grass/heavy) -"kg" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/item/deck/cards{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/deck/cah{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/deck/holder{ - pixel_x = -9; - pixel_y = 1 - }, -/obj/item/deck/cah/black{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/surface/outpost/shelter/dorms) -"km" = ( -/obj/structure/flora/rocks1, -/turf/simulated/floor/water/deep) -"kn" = ( -/obj/structure/flora/rocks2, -/turf/simulated/floor/water/deep) -"kB" = ( -/obj/structure/cable{ - d1 = 32; - icon_state = "32-1" - }, -/obj/structure/lattice, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/machinery/camera/network/carrier{ - c_tag = "WILD - Shelter Second Floor Utilities" - }, -/turf/simulated/open/sif{ - temperature = 243.15 - }, -/area/surface/outpost/shelter/utilityroom) -"kG" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/outdoors/dirt) -"kJ" = ( -/obj/structure/curtain/open/bed, -/turf/simulated/floor/carpet/sblucarpet, -/area/surface/outpost/shelter/dorms) -"kO" = ( -/obj/effect/catwalk_plated, -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"kZ" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/simulated/floor/outdoors/grass/heavy) -"le" = ( -/turf/simulated/floor/outdoors/mud) -"lo" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/water/deep) -"lK" = ( -/obj/structure/flora/rocks2, -/obj/structure/flora/log1, -/turf/simulated/floor/outdoors/mud) -"lP" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"lZ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"me" = ( -/obj/structure/flora/bboulder2, -/turf/simulated/floor/water) -"ml" = ( -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/outdoors/mud) -"mt" = ( -/obj/structure/flora/log2, -/turf/simulated/floor/outdoors/dirt) -"mu" = ( -/obj/structure/flora/ausbushes/stalkybush, -/turf/simulated/floor/water/deep) -"mv" = ( -/obj/structure/flora/smallbould, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/water/deep) -"my" = ( -/obj/structure/flora/ausbushes/reedbush, -/turf/simulated/floor/outdoors/mud) -"mG" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/shelter/dorms) -"mI" = ( -/obj/structure/flora/ausbushes/fernybush, -/turf/simulated/floor/water) -"mL" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/fernybush, -/turf/simulated/floor/water) -"mP" = ( -/turf/simulated/wall/log_sif, -/area/surface/outpost/shelter) -"mV" = ( -/obj/structure/flora/ausbushes/stalkybush, -/turf/simulated/floor/water) -"nf" = ( -/obj/structure/flora/rocks2, -/obj/structure/flora/bboulder2, -/turf/simulated/floor/water/deep) -"nj" = ( -/obj/structure/closet/walllocker_double/survival/north{ - name = "Wilderness Shelter Emergency Survival Wall Cabinet"; - starts_with = list(/obj/item/gps=5,/obj/item/material/knife/tacknife/survival=5,/obj/random/mre=5,/obj/item/flashlight/color/yellow=5,/obj/item/flashlight/flare=5,/obj/item/reagent_containers/food/drinks/cans/waterbottle=5,/obj/item/whetstone) - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"ns" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/water/deep) -"ny" = ( -/obj/structure/flora/ausbushes/stalkybush, -/turf/simulated/floor/outdoors/mud) -"nC" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/water) -"nE" = ( -/obj/structure/flora/rocks1, -/obj/structure/flora/log2, -/turf/simulated/floor/water) -"nF" = ( -/obj/structure/flora/rocks2, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep) -"nR" = ( -/obj/structure/flora/lily1, -/turf/simulated/floor/water/deep) -"nX" = ( -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/water/deep) -"nY" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/outdoors/grass) -"od" = ( -/obj/structure/flora/rocks2, -/turf/simulated/floor/water) -"oe" = ( -/obj/structure/flora/log2, -/turf/simulated/floor/water/deep) -"og" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/ice) -"oq" = ( -/obj/structure/flora/rocks2, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep) -"ou" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/outdoors/mud) -"oF" = ( -/obj/structure/flora/ausbushes, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass) -"oM" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"oT" = ( -/obj/structure/flora/log1, -/turf/simulated/floor/water/deep) -"pa" = ( -/obj/structure/flora/grass/brown, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"ph" = ( -/obj/structure/closet, -/obj/item/storage/box/lights/bulbs, -/obj/item/storage/box/lights/mixed, -/obj/item/melee/umbrella/random, -/obj/item/melee/umbrella/random, -/obj/item/melee/umbrella/random, -/obj/item/melee/umbrella/random, -/obj/item/melee/umbrella/random, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"pl" = ( -/obj/structure/flora/grass/brown, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow) -"pr" = ( -/obj/structure/flora/tree/jungle_small, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/water/deep) -"pu" = ( -/obj/structure/flora/lily1, -/turf/simulated/floor/water) -"pO" = ( -/obj/structure/flora/tree/jungle_small, -/turf/simulated/floor/water/deep) -"qf" = ( -/obj/structure/flora/rocks2, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/water) -"ql" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/outdoors/grass) -"qn" = ( -/obj/structure/flora/lily2, -/turf/simulated/floor/water) -"qF" = ( -/obj/structure/flora/lily2, -/turf/simulated/floor/water/deep) -"qG" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt) -"qJ" = ( -/turf/simulated/mineral/floor/light) -"qK" = ( -/obj/machinery/alarm/sifwilderness{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"qT" = ( -/obj/structure/flora/grass/brown, -/obj/effect/zone_divider, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"ra" = ( -/obj/structure/flora/rocks1, -/obj/structure/flora/lily1, -/turf/simulated/floor/water) -"rj" = ( -/obj/structure/flora/ausbushes, -/turf/simulated/floor/outdoors/grass) -"rn" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/mineral) -"rw" = ( -/obj/structure/flora/bboulder1, -/turf/simulated/floor/water/deep) -"rx" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/water) -"rH" = ( -/obj/structure/flora/lily3, -/turf/simulated/floor/water/deep) -"rM" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/water/deep) -"rY" = ( -/obj/structure/flora/bush, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow) -"sc" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt) -"sf" = ( -/obj/structure/flora/rocks1, -/obj/structure/flora/ausbushes/reedbush, -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep) -"sk" = ( -/obj/structure/coatrack, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"sT" = ( -/obj/structure/flora/log1, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/rocks2, -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep) -"sW" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow) -"tb" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"ti" = ( -/obj/effect/catwalk_plated, -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"tj" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"tm" = ( -/obj/effect/catwalk_plated, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"tp" = ( -/obj/structure/flora/rocks1, -/obj/structure/flora/ausbushes/sunnybush, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass) -"tv" = ( -/obj/structure/flora/rocks1, -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/water) -"tx" = ( -/obj/structure/flora/tree/jungle_small, -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/water/deep) -"tB" = ( -/obj/structure/flora/ausbushes/reedbush, -/turf/simulated/floor/water/deep) -"tI" = ( -/obj/effect/catwalk_plated, -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"tJ" = ( -/obj/structure/flora/bboulder2, -/turf/simulated/floor/water/deep) -"tL" = ( -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/water/deep) -"tR" = ( -/obj/structure/flora/tree/jungle_small, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/water/deep) -"tT" = ( -/obj/structure/flora/smallbould, -/turf/simulated/floor/water) -"tZ" = ( -/obj/structure/flora/tree/jungle_small, -/obj/structure/flora/rocks1, -/obj/structure/flora/ausbushes/leafybush, -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep) -"up" = ( -/obj/structure/flora/lily3, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/water) -"uq" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -24 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/shelter/dorms) -"ux" = ( -/obj/effect/landmark/map_data{ - height = 2 - }, -/turf/simulated/wall/solidrock) -"uC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "wilderness_shelter_2nd_floor"; - name = "Wilderness Shelter Shutters"; - pixel_x = 26; - req_one_access = null - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"uJ" = ( -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"uR" = ( -/obj/structure/outcrop, -/obj/effect/zone_divider, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"uW" = ( -/obj/effect/catwalk_plated, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"uX" = ( -/obj/structure/flora/log1, -/obj/structure/flora/lily3, -/turf/simulated/floor/water/deep) -"uZ" = ( -/obj/structure/flora/bush, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt) -"vd" = ( -/obj/structure/flora/rocks1, -/turf/simulated/floor/water) -"vk" = ( -/obj/structure/flora/rocks1, -/obj/structure/flora/smallbould, -/turf/simulated/floor/water) -"vp" = ( -/obj/structure/outcrop, -/turf/simulated/floor/outdoors/dirt) -"vv" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/rocks) -"vy" = ( -/obj/structure/flora/lily2, -/obj/effect/zone_divider, -/turf/simulated/floor/water) -"vS" = ( -/obj/structure/table/rack/shelf, -/obj/item/soap/nanotrasen, -/obj/item/soap/nanotrasen, -/obj/item/towel/random, -/obj/item/towel/random, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/shelter/dorms) -"wb" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/carpet/sblucarpet, -/area/surface/outpost/shelter/dorms) -"wx" = ( -/obj/structure/flora/log2, -/obj/structure/flora/rocks1, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"wz" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/reedbush, -/turf/simulated/floor/water) -"wO" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep) -"wY" = ( -/obj/structure/flora/log1, -/obj/structure/flora/ausbushes/fernybush, -/turf/simulated/floor/water) -"xj" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/water) -"xl" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/outdoors/grass) -"xv" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/item/storage/toolbox/emergency{ - pixel_y = 6 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -1 - }, -/obj/machinery/alarm/sifwilderness{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"xy" = ( -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/effect/catwalk_plated, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"xG" = ( -/obj/structure/flora/ausbushes/reedbush, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/outdoors/mud) -"xN" = ( -/obj/structure/flora/ausbushes/genericbush, -/turf/simulated/floor/outdoors/grass) -"xO" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt) -"xV" = ( -/turf/simulated/floor/outdoors/grass/heavy) -"xY" = ( -/turf/simulated/floor/outdoors/grass) -"ye" = ( -/turf/simulated/open/sif{ - temperature = 243.15 - }, -/area/surface/outpost/shelter/exterior) -"yf" = ( -/obj/structure/outcrop, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt) -"yu" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/outdoors/grass) -"yB" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/water) -"yD" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/tree/palm, -/turf/simulated/floor/outdoors/grass/heavy) -"yG" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/reedbush, -/turf/simulated/floor/water) -"yJ" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/item/flashlight/lamp/green, -/obj/machinery/camera/network/carrier{ - c_tag = "WILD - Shelter Crew Dorms"; - dir = 4 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/surface/outpost/shelter/dorms) -"yK" = ( -/obj/structure/flora/rocks1, -/obj/structure/flora/bboulder2, -/turf/simulated/floor/water) -"zs" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/simulated/floor/outdoors/grass) -"zx" = ( -/obj/structure/flora/lily2, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/effect/zone_divider, -/turf/simulated/floor/water) -"zE" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"zM" = ( -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/water) -"zN" = ( -/obj/effect/catwalk_plated, -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/effect/zone_divider, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"Ae" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/item/storage/box{ - max_storage_space = 20; - name = "box of 7.62mm practice clips"; - pixel_x = 3; - pixel_y = 3; - starts_with = list(/obj/item/ammo_magazine/clip/c762/practice=10) - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/storage/bag/trash{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/storage/bag/trash{ - pixel_x = -9; - pixel_y = -5 - }, -/obj/item/storage/box{ - max_storage_space = 20; - name = "box of 7.62mm practice clips"; - pixel_x = 3; - pixel_y = -1; - starts_with = list(/obj/item/ammo_magazine/clip/c762/practice=10) - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"Ah" = ( -/obj/structure/flora/ausbushes/reedbush, -/obj/structure/flora/ausbushes/fernybush, -/turf/simulated/floor/water) -"Ai" = ( -/obj/structure/ladder, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"Aj" = ( -/obj/structure/flora/lily3, -/obj/structure/flora/log2, -/turf/simulated/floor/water) -"AL" = ( -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/outdoors/mud) -"AM" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/mud) -"Bi" = ( -/obj/structure/flora/rocks2, -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/water) -"Bo" = ( -/obj/effect/catwalk_plated, -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"BC" = ( -/obj/structure/flora/lily3, -/turf/simulated/floor/water) -"BG" = ( -/obj/structure/undies_wardrobe, -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"BM" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/stalkybush, -/turf/simulated/floor/outdoors/grass/heavy) -"BU" = ( -/obj/effect/catwalk_plated, -/obj/structure/ladder, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"BY" = ( -/obj/structure/toilet, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/shelter/dorms) -"BZ" = ( -/obj/structure/flora/log2, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt) -"Cc" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"Ci" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass) -"Cp" = ( -/obj/structure/flora/log1, -/obj/structure/flora/ausbushes/stalkybush, -/turf/simulated/floor/outdoors/mud) -"Ct" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/effect/catwalk_plated, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"Cz" = ( -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"CK" = ( -/obj/structure/flora/ausbushes, -/turf/simulated/floor/outdoors/grass/heavy) -"CL" = ( -/obj/structure/flora/log1, -/turf/simulated/floor/outdoors/grass) -"CO" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt) -"CS" = ( -/obj/structure/flora/ausbushes, -/turf/simulated/floor/outdoors/dirt) -"CT" = ( -/turf/simulated/wall/log_sif, -/area/surface/outpost/shelter/utilityroom) -"CZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/log_sif, -/area/surface/outpost/shelter/utilityroom) -"Db" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/genericbush, -/turf/simulated/floor/outdoors/mud) -"Dh" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass) -"Dy" = ( -/obj/structure/flora/rocks1, -/obj/structure/flora/ausbushes/reedbush, -/turf/simulated/floor/water) -"DA" = ( -/obj/effect/catwalk_plated, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "wilderness_shelter_2nd_floor_door"; - name = "Wilderness Shelter Shutters"; - pixel_x = -26; - req_one_access = list(1,5,10,12,13,18,31,43,47,48,50) - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"DE" = ( -/obj/structure/flora/rocks2, -/obj/structure/flora/ausbushes/reedbush, -/turf/simulated/floor/water) -"DM" = ( -/obj/effect/catwalk_plated, -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"DN" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/outdoors/mud) -"DY" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/outdoors/grass/heavy) -"Ec" = ( -/obj/structure/simple_door/sifwood, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"Es" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/grass/heavy) -"Et" = ( -/obj/structure/outcrop, -/turf/simulated/floor/outdoors/mud) -"EF" = ( -/turf/simulated/floor/water/deep) -"EJ" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/fernybush, -/turf/simulated/floor/outdoors/grass/heavy) -"EK" = ( -/obj/structure/flora/rocks1, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/snow) -"EM" = ( -/obj/structure/flora/tree/palm, -/turf/simulated/floor/outdoors/grass) -"Fs" = ( -/obj/structure/flora/rocks2, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/grass/heavy) -"Fx" = ( -/obj/structure/flora/tree/palm, -/obj/effect/overlay/coconut, -/turf/simulated/floor/outdoors/grass/heavy) -"FD" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/outdoors/grass) -"FK" = ( -/obj/structure/flora/ausbushes/stalkybush, -/turf/simulated/floor/outdoors/dirt) -"FO" = ( -/obj/structure/outcrop, -/turf/simulated/floor/outdoors/rocks) -"FP" = ( -/obj/structure/flora/log1, -/obj/structure/flora/rocks1, -/turf/simulated/floor/outdoors/dirt) -"FS" = ( -/obj/structure/flora/rocks1, -/obj/structure/flora/smallbould, -/turf/simulated/floor/outdoors/grass/heavy) -"Gg" = ( -/obj/structure/closet/medical_wall{ - name = "Wilderness Shelter first-aid closet"; - pixel_y = 31; - starts_with = list(/obj/item/roller,/obj/item/bodybag/cryobag,/obj/item/storage/firstaid/regular=2,/obj/item/storage/pill_bottle/spaceacillin) - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"Gp" = ( -/obj/structure/flora/tree/dead, -/obj/structure/flora/log2, -/turf/simulated/floor/outdoors/dirt) -"GD" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/grass/heavy) -"GK" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/outdoors/snow) -"GN" = ( -/turf/simulated/wall/log_sif, -/area/surface/outpost/shelter/dorms) -"GS" = ( -/turf/simulated/wall/rsifwood) -"Hb" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/outdoors/grass/heavy) -"Hm" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/outdoors/grass/heavy) -"Hn" = ( -/obj/structure/flora/rocks2, -/turf/simulated/floor/outdoors/grass/heavy) -"Hr" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass) -"Hw" = ( -/obj/structure/flora/bboulder1, -/turf/simulated/floor/water) -"HI" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"HJ" = ( -/obj/structure/flora/rocks1, -/turf/simulated/floor/outdoors/dirt) -"HP" = ( -/obj/structure/outcrop, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"Ii" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"Ip" = ( -/obj/structure/flora/smallbould, -/turf/simulated/floor/outdoors/dirt) -"Is" = ( -/obj/structure/flora/rocks1, -/turf/simulated/floor/outdoors/mud) -"ID" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/outdoors/grass/heavy) -"IH" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/outdoors/mud) -"JP" = ( -/obj/structure/flora/log1, -/turf/simulated/floor/outdoors/mud) -"JU" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/thermoregulator/southerncross{ - dir = 4; - pixel_x = -26; - pixel_y = 2 - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"Kf" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/outdoors/dirt) -"Km" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt) -"Kq" = ( -/obj/machinery/camera/network/carrier{ - c_tag = "WILD - Shelter Second Floor"; - dir = 8 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"Kr" = ( -/obj/structure/flora/rocks1, -/obj/structure/flora/bboulder2, -/turf/simulated/floor/outdoors/grass/heavy) -"Kv" = ( -/obj/structure/flora/log2, -/turf/simulated/floor/outdoors/mud) -"KA" = ( -/obj/structure/flora/tree/dead, -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/dirt) -"KF" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 1 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/surface/outpost/shelter/dorms) -"KS" = ( -/obj/structure/flora/ausbushes/reedbush, -/turf/simulated/floor/water) -"La" = ( -/turf/simulated/floor/outdoors/snow) -"Ll" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow) -"Lq" = ( -/obj/structure/outcrop, -/obj/effect/zone_divider, -/turf/simulated/floor/water) -"Lt" = ( -/obj/structure/flora/rocks2, -/obj/effect/zone_divider, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"LB" = ( -/obj/structure/flora/log2, -/turf/simulated/floor/outdoors/grass) -"LC" = ( -/obj/structure/flora/rocks2, -/turf/simulated/floor/outdoors/mud) -"LK" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/heavy) -"LP" = ( -/obj/structure/flora/tree/dead, -/turf/simulated/floor/outdoors/rocks) -"LT" = ( -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/dirt) -"LU" = ( -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"Mb" = ( -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/shelter/dorms) -"Me" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/outdoors/grass/heavy) -"Mr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/washing_machine, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"Mw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/log_sif, -/area/surface/outpost/shelter) -"MB" = ( -/obj/structure/flora/tree/palm, -/obj/effect/overlay/coconut, -/turf/simulated/floor/outdoors/grass) -"MF" = ( -/obj/structure/flora/rocks1, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/outdoors/mud) -"MM" = ( -/obj/structure/flora/tree/jungle_small, -/obj/structure/flora/ausbushes/grassybush, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass) -"MQ" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/rocks2, -/turf/simulated/floor/outdoors/grass/heavy) -"MY" = ( -/obj/effect/catwalk_plated, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"MZ" = ( -/obj/structure/flora/rocks2, -/turf/simulated/floor/outdoors/grass) -"Nq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "wilderness_shelter_2nd_floor"; - layer = 4; - name = "Wilderness Shelter Shutters" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"Nu" = ( -/obj/effect/catwalk_plated, -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/plating/external, -/area/surface/outpost/shelter/exterior) -"Nv" = ( -/obj/structure/flora/rocks1, -/obj/structure/flora/ausbushes/reedbush, -/obj/effect/zone_divider, -/turf/simulated/floor/water) -"NH" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/outdoors/snow) -"Of" = ( -/obj/structure/flora/tree/jungle_small, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/outdoors/grass) -"Oj" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"Ol" = ( -/obj/structure/flora/bush, -/turf/simulated/floor/outdoors/snow) -"On" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/palebush, -/turf/simulated/floor/outdoors/grass/heavy) -"Ow" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/outdoors/grass/heavy) -"OM" = ( -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/outdoors/grass/heavy) -"ON" = ( -/obj/structure/flora/log1, -/obj/structure/flora/bboulder1{ - pixel_x = -10 - }, -/turf/simulated/floor/outdoors/grass) -"OO" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/stalkybush, -/turf/simulated/floor/outdoors/grass) -"OQ" = ( -/obj/effect/catwalk_plated, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"OW" = ( -/obj/structure/flora/tree/jungle_small, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/outdoors/grass/heavy) -"Pd" = ( -/obj/structure/flora/ausbushes/stalkybush, -/turf/simulated/floor/outdoors/grass/heavy) -"Pm" = ( -/obj/structure/flora/ausbushes/genericbush, -/turf/simulated/floor/outdoors/grass/heavy) -"Pt" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/log2, -/turf/simulated/floor/outdoors/dirt) -"PP" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/mud) -"PV" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/outdoors/snow) -"Qc" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/outdoors/grass/heavy) -"QJ" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/mud) -"QQ" = ( -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/outdoors/grass) -"QY" = ( -/obj/structure/flora/tree/jungle, -/turf/simulated/floor/outdoors/grass/heavy) -"Rb" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "wilderness_shelter_2nd_floor_door"; - name = "Wilderness Shelter Shutters"; - pixel_x = 26 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"Rh" = ( -/turf/simulated/mineral/floor/light{ - outdoors = 1 - }) -"Rl" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/shelter/dorms) -"Rm" = ( -/obj/structure/flora/log1, -/turf/simulated/floor/outdoors/dirt) -"Rn" = ( -/obj/structure/flora/tree/dead, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/mineral/floor/light{ - outdoors = 1 - }) -"Ru" = ( -/obj/structure/simple_door/sifwood, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"RF" = ( -/obj/effect/catwalk_plated, -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"RG" = ( -/obj/structure/flora/grass/brown, -/turf/simulated/mineral/floor/light{ - outdoors = 1 - }) -"RJ" = ( -/obj/structure/flora/rocks2, -/obj/structure/flora/bboulder1, -/turf/simulated/floor/outdoors/grass) -"RO" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/effect/catwalk_plated, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"RW" = ( -/obj/structure/flora/log2, -/obj/structure/flora/grass/green, -/turf/simulated/mineral/floor/light{ - outdoors = 1 - }) -"RZ" = ( -/obj/structure/flora/rocks2, -/turf/simulated/mineral/floor/light{ - outdoors = 1 - }) -"Sb" = ( -/obj/structure/flora/log2, -/turf/simulated/mineral/floor/light{ - outdoors = 1 - }) -"Sd" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/simulated/floor/carpet/turcarpet, -/area/surface/outpost/shelter/dorms) -"Se" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/thermoregulator/southerncross{ - dir = 8; - pixel_x = 26; - pixel_y = 1 - }, -/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/wood/sif, -/area/surface/outpost/shelter/dorms) -"So" = ( -/obj/structure/flora/tree/bigtree, -/obj/structure/flora/ausbushes/grassybush, -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep) -"Sr" = ( -/turf/simulated/floor/outdoors/rocks) -"SO" = ( -/obj/structure/flora/tree/winter, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"ST" = ( -/obj/effect/catwalk_plated, -/obj/machinery/camera/network/carrier{ - dir = 4 - }, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"Te" = ( -/obj/structure/flora/log1, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"Th" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/outdoors/dirt) -"To" = ( -/obj/structure/flora/tree/dead, -/turf/simulated/mineral/floor/light{ - outdoors = 1 - }) -"Tz" = ( -/obj/structure/flora/ausbushes/stalkybush, -/turf/simulated/floor/outdoors/grass) -"TC" = ( -/obj/structure/closet/hydrant{ - pixel_y = -26 - }, -/obj/structure/table/standard, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"TD" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/stalkybush, -/turf/simulated/floor/outdoors/grass/heavy) -"TE" = ( -/obj/structure/flora/tree/winter1, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"TG" = ( -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/snow) -"TH" = ( -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/outdoors/grass/heavy) -"TO" = ( -/turf/simulated/mineral) -"Uo" = ( -/obj/structure/flora/rocks1, -/turf/simulated/floor/outdoors/snow) -"Uv" = ( -/obj/structure/flora/log2, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"UW" = ( -/obj/structure/flora/rocks2, -/turf/simulated/floor/outdoors/dirt) -"Vb" = ( -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/ice) -"Vi" = ( -/obj/structure/flora/bboulder2, -/turf/simulated/floor/outdoors/grass) -"Vl" = ( -/obj/structure/flora/log1, -/turf/simulated/mineral/floor/light{ - outdoors = 1 - }) -"Vp" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep) -"VD" = ( -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 8 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"VE" = ( -/obj/structure/flora/ausbushes/reedbush, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/mud) -"VJ" = ( -/obj/structure/flora/rocks1, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt) -"VT" = ( -/obj/structure/flora/lily1, -/obj/effect/zone_divider, -/turf/simulated/floor/water) -"Wb" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral) -"Wi" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"Wn" = ( -/obj/structure/flora/rocks2, -/obj/structure/flora/grass/green, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt) -"Wv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"WB" = ( -/obj/structure/flora/lily2, -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep) -"WF" = ( -/obj/structure/flora/ausbushes/reedbush, -/obj/effect/zone_divider, -/turf/simulated/floor/water) -"WH" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/machinery/cell_charger, -/obj/machinery/recharger/wallcharger{ - pixel_x = -24; - pixel_y = -4 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -5 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -5 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -5 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -5 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"WI" = ( -/obj/structure/flora/rocks1, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/outdoors/snow) -"WJ" = ( -/turf/simulated/floor/outdoors/dirt) -"WO" = ( -/turf/simulated/open/sif{ - temperature = 243.15 - }) -"WQ" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/simulated/floor/outdoors/snow) -"WX" = ( -/obj/structure/flora/rocks1, -/obj/structure/flora/grass/brown, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"Xo" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/outdoors/snow) -"Xu" = ( -/obj/structure/flora/rocks2, -/obj/structure/flora/grass/brown, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"Xw" = ( -/obj/structure/flora/ausbushes/reedbush, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/mud) -"Xx" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/outdoors/snow) -"XF" = ( -/obj/structure/flora/rocks1, -/obj/structure/flora/tree/winter, -/turf/simulated/floor/outdoors/snow) -"XJ" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/yellowdouble, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"XK" = ( -/obj/structure/flora/lily3, -/obj/effect/zone_divider, -/turf/simulated/floor/water) -"XU" = ( -/obj/effect/catwalk_plated, -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/machinery/camera/network/carrier{ - c_tag = "WILD - Shelter Second Floor Exterior 2"; - dir = 1 - }, -/turf/simulated/floor/wood/sif{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/shelter/exterior) -"XX" = ( -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"Yb" = ( -/obj/structure/flora/ausbushes/palebush, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/outdoors/snow) -"Ym" = ( -/obj/machinery/light{ - layer = 3 - }, -/obj/machinery/autolathe, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"Ys" = ( -/obj/structure/flora/ausbushes, -/turf/simulated/mineral/floor{ - outdoors = 1 - }) -"Yu" = ( -/obj/structure/simple_door/sifwood, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"Yv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/standard, -/obj/structure/bedsheetbin{ - pixel_x = 2 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"YA" = ( -/obj/structure/flora/tree/winter1, -/turf/simulated/floor/outdoors/snow) -"YK" = ( -/obj/structure/flora/rocks1, -/turf/simulated/floor/outdoors/ice) -"YL" = ( -/obj/structure/flora/rocks2, -/turf/simulated/floor/outdoors/snow) -"Zr" = ( -/obj/machinery/bluespace_beacon{ - alpha = 0; - desc = "A device that draws power from bluespace and creates a permanent tracking beacon. This one has a cloaking field. How keen of you to notice!"; - name = "Wilderness Shelter Bluespace Gigabeacon" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"ZQ" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/heavy) - -(1,1,1) = {" -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -bx -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -bx -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -bx -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -bx -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -bx -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -bx -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -bx -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -ux -"} -(2,1,1) = {" -aE -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bV -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bV -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bV -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bV -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bV -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bV -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bV -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -aE -"} -(3,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(4,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(5,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(6,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(7,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(8,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(9,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(10,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(11,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(12,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(13,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(14,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(15,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(16,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(17,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(18,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(19,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(20,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(21,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(22,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(23,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(24,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(25,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(26,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(27,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(28,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(29,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(30,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(31,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(32,1,1) = {" -bx -bV -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -bV -bx -"} -(33,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(34,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(35,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(36,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(37,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(38,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(39,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(40,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(41,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(42,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(43,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(44,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(45,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -La -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(46,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -La -La -La -La -La -La -La -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -Wb -TO -TO -TO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(47,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -La -La -La -WJ -Cz -La -WJ -WJ -WJ -La -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Cz -Cz -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -Wb -TO -TO -TO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(48,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -dD -La -La -La -Ol -WJ -hz -WJ -WJ -WJ -WJ -Sr -WJ -WJ -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -La -La -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -Wb -vp -le -GK -La -La -WO -WO -WO -WO -WO -WO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(49,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -dD -WJ -WJ -WJ -WJ -WJ -Sr -Cz -Sr -gH -gH -WJ -WJ -WJ -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -qJ -TO -TO -TO -TO -TO -TO -GK -La -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -sc -WJ -le -le -La -La -La -La -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(50,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -WJ -uZ -WJ -Cz -Sr -WJ -WJ -Cz -TO -TO -TO -TO -TO -TO -Cz -WJ -WJ -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -La -qJ -Cz -TO -TO -TO -TO -TO -TO -Th -La -Cz -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -sc -La -La -DN -le -PV -YA -Xx -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(51,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -WJ -WJ -WJ -Sr -Sr -tb -Cz -Cz -Cz -WJ -hz -TO -TO -TO -TO -TO -TO -TO -TO -Cz -WJ -Th -WO -WO -WO -WO -Sr -Cz -TO -TO -TO -TO -TO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -La -La -WO -WO -WO -WO -TO -TO -TO -TO -TO -WJ -sc -WJ -le -bZ -La -La -Xx -GK -Uo -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(52,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -La -La -La -WJ -WJ -Cz -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Cz -La -WO -WO -Cz -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -pa -La -WO -WO -WO -WO -TO -TO -TO -TO -WJ -WJ -AM -le -le -le -WJ -le -le -le -La -La -vp -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(53,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -La -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -La -La -La -pa -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -La -WO -WO -WO -WO -TO -TO -TO -TO -WJ -vp -AM -le -WJ -WJ -le -Xo -le -WJ -le -ou -WJ -WJ -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(54,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -TO -TO -TO -TO -le -le -dD -le -le -le -le -le -WJ -ou -bZ -le -WJ -WJ -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(55,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -TO -TO -WJ -La -le -dD -ou -le -le -le -le -le -bZ -bZ -La -vp -WJ -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(56,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -La -La -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -vp -La -Vb -Ll -La -le -le -WJ -WJ -le -le -bZ -La -WJ -WJ -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(57,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -WJ -WJ -WJ -WJ -La -La -WJ -WJ -TO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -La -La -dD -La -La -ou -le -WJ -WJ -WJ -le -PV -WJ -WJ -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(58,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -La -WJ -TO -HP -TO -Sr -TO -TO -TO -TO -Wb -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -PV -La -dD -WI -le -La -WJ -WJ -le -le -le -WJ -WJ -WJ -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(59,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -WJ -WJ -Sr -FO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -WO -jM -La -le -La -le -le -La -le -le -WJ -WJ -vp -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(60,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -La -La -GK -PV -La -YK -bZ -le -La -La -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(61,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -La -PV -La -Xx -La -La -cg -GK -La -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(62,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -TO -La -La -XF -Yb -GK -La -La -La -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(63,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -La -La -La -GK -La -La -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(64,1,1) = {" -bx -bV -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -rn -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -dd -jM -jM -jM -jM -jM -jM -jM -wO -dD -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -rn -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -dD -hI -dD -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -bV -bx -"} -(65,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -EF -WO -WO -WO -WO -EF -EF -EF -QJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -La -La -La -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(66,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -EF -EF -WO -EF -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -Cz -La -GK -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -La -La -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(67,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -EF -EF -EF -EF -EF -EF -EF -bZ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Sr -WJ -WJ -WJ -dD -WJ -La -GK -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(68,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -EF -EF -EF -EF -EF -bZ -bZ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -vp -WJ -WJ -WJ -Cz -vp -Wb -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(69,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -bZ -EF -EF -EF -EF -bZ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -Cz -qJ -WJ -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(70,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -bZ -bZ -EF -EF -bZ -bZ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -Cz -Sr -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(71,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -bZ -bZ -EF -EF -bZ -bZ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Sr -WJ -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(72,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -bZ -EF -EF -EF -bZ -bZ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(73,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -bZ -EF -EF -EF -bZ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(74,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -bZ -EF -EF -EF -bZ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(75,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Rh -Cz -Cz -Cz -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -bZ -EF -EF -bZ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(76,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -Cz -WJ -WJ -WJ -WJ -Cz -Cz -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(77,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -La -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -vp -WJ -WJ -WJ -xY -xY -WJ -Cz -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(78,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -Cz -WJ -WJ -WJ -La -WO -hB -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(79,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -La -La -La -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -Cz -WJ -WJ -xY -iP -WO -WO -Sr -WJ -WJ -Cz -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -La -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(80,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -La -La -fq -La -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -Cz -WJ -WJ -La -hU -WO -WO -WO -iP -La -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -Wb -TO -GK -La -La -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(81,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -La -La -La -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -La -Th -WO -WO -WO -WO -WO -WO -hB -xY -Sr -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -EF -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jM -WO -WO -WO -WO -WO -WO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -Wb -TO -La -Xo -La -La -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(82,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -bZ -bZ -La -La -La -La -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -Cz -WJ -WJ -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -EF -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -dD -WQ -La -GK -La -La -GK -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(83,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -et -La -La -fW -La -La -cg -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -Rh -WJ -WJ -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -EF -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -eb -WO -WO -WO -WO -IH -le -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -dD -La -La -GK -La -La -La -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(84,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -La -La -fa -La -cg -La -La -La -La -La -La -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -Cz -WJ -WJ -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -eb -jA -tT -jA -MF -le -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -La -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(85,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -La -TO -TO -TO -TO -La -La -La -La -La -La -La -La -bZ -TG -WJ -La -WJ -WJ -vp -TO -TO -TO -TO -TO -Wb -TO -Cz -Cz -Cz -WJ -WJ -Th -WJ -hA -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -EF -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -eb -od -jA -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(86,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TG -La -La -La -La -Sr -Sr -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -sc -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -xY -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -jA -eb -jA -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(87,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -La -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -La -La -La -WJ -La -WJ -WJ -WJ -WJ -WJ -Sr -Sr -WJ -WJ -sc -mt -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -jA -eb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(88,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -dX -Sr -La -WJ -WJ -WJ -WJ -WJ -vv -Sr -WJ -WJ -WJ -WJ -WJ -WJ -Th -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -jA -jA -Lq -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(89,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -La -La -La -La -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Cz -Cz -Cz -WJ -WJ -WJ -WJ -Cz -Cz -Cz -vv -Cz -Th -WJ -WJ -WJ -WJ -WJ -Sr -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -EF -EF -EF -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -jA -Et -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(90,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -Ol -dD -La -La -La -La -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Rh -iu -Cz -Cz -Cz -WJ -WJ -WJ -WJ -xY -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -EF -EF -EF -EF -TO -Wb -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -jA -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(91,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -La -La -La -La -dD -La -La -cg -La -TG -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -Cz -Cz -Cz -vp -xY -xY -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -EF -EF -EF -EF -wO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(92,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -La -La -La -La -La -La -La -dD -TG -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -EF -EF -EF -EF -EF -EF -EF -wO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -Hw -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(93,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -La -La -cg -La -TG -La -La -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -Cz -WJ -WJ -Th -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -EF -EF -EF -EF -EF -EF -EF -EF -wO -EF -TO -TO -TO -TO -TO -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(94,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -La -La -La -Ol -La -La -La -TG -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -Cz -WJ -WJ -WJ -hB -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -EF -EF -EF -mu -TO -TO -TO -TO -TO -EF -wO -EF -TO -TO -TO -TO -TO -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -jA -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(95,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -La -La -La -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -Rh -WJ -WJ -WJ -La -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -wO -EF -EF -TO -TO -TO -TO -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Is -jA -jA -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(96,1,1) = {" -bx -bV -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dD -pl -dD -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -rn -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -rn -Wb -Wb -Wb -Wb -Wb -Wb -Wb -iu -tb -tb -yf -ih -vv -jM -jM -jh -CO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Vp -wO -wO -wO -Wb -Wb -Wb -wO -wO -wO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -eb -eb -eb -Wb -Wb -rn -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -LK -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -bV -bx -"} -(97,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -wO -EF -EF -EF -le -TO -TO -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -jA -le -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -xY -Hb -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -dD -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(98,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -EF -EF -EF -le -le -TO -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -jA -jA -Et -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -xY -La -La -jU -Ow -La -WO -WO -WO -WO -WO -WO -LK -La -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(99,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -EF -EF -EF -EF -le -TO -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -jA -le -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -WJ -xY -xY -Hb -xY -La -Hb -TD -La -Hb -Hb -La -LK -La -xY -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(100,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -Ol -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -EF -EF -EF -EF -ou -TO -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Et -jA -ou -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -vp -WJ -Pt -WJ -WJ -xY -WJ -WJ -Ow -xY -xY -hA -xY -xY -Qc -TH -xV -Ow -Vi -Hr -hB -xY -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(101,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -La -La -TG -La -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -EF -EF -EF -le -vp -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -le -TO -IH -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -WJ -Sr -Rm -WJ -xY -xY -xY -xY -RJ -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(102,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -La -La -La -La -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -EF -EF -EF -le -ou -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -jA -le -QJ -le -Et -qG -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -Cz -WJ -WJ -WJ -xY -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(103,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -Ol -La -La -La -La -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -EF -EF -uX -le -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -Dy -le -tT -jA -KS -AM -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -xY -WJ -mt -Sr -WJ -WJ -Th -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(104,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -EF -EF -EF -le -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -jA -jA -jA -jA -od -jA -le -AM -QJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -Th -WJ -WJ -Sr -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(105,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -EF -EF -EF -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -jA -Dy -jA -jA -TO -Et -jA -jA -xj -XK -le -vp -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -xY -WJ -xY -WJ -vp -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(106,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -EF -EF -EF -EF -EF -EF -le -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -jA -jA -vp -TO -TO -TO -TO -mV -jA -jA -eb -xj -le -TO -TO -TO -TO -TO -TO -TO -xY -xY -WJ -xY -Th -WJ -Th -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(107,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -EF -EF -EF -EF -EF -EF -le -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -jA -tT -TO -TO -TO -TO -TO -Kf -le -le -KS -io -nE -IH -WJ -TO -TO -TO -TO -TO -TO -xY -xY -xY -xY -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(108,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -EF -EF -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -EF -EF -EF -EF -EF -le -le -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -jA -jA -TO -TO -TO -TO -TO -TO -TO -vp -IH -le -PP -le -WJ -WJ -TO -TO -TO -TO -TO -xY -xY -xY -OM -Hm -xY -xY -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(109,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -EF -EF -EF -EF -EF -EF -km -wO -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -EF -EF -EF -EF -EF -le -TO -TO -TO -TO -TO -TO -TO -TO -tT -jA -jA -jA -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -vp -TO -TO -TO -TO -TO -TO -xY -xY -OW -jA -xV -La -Hb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(110,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -EF -EF -EF -EF -EF -EF -EF -wO -EF -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -EF -EF -EF -EF -EF -le -TO -TO -TO -TO -TO -TO -TO -jA -jA -vd -zM -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -xY -Hb -jA -zM -Ow -La -xV -GK -La -TO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(111,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -EF -EF -EF -EF -EF -EF -EF -wO -EF -EF -EF -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -EF -EF -EF -EF -EF -le -TO -TO -TO -WJ -le -TO -jA -jA -jA -Et -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -xY -xN -xV -mI -Hb -xV -xV -Qc -La -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(112,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -EF -EF -bZ -le -gk -EF -EF -EF -wO -EF -EF -EF -EF -EF -EF -EF -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -WJ -EF -EF -EF -EF -xY -TO -TO -vp -WJ -le -DE -jA -jA -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -xY -xY -xY -xV -Hb -CK -Hb -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(113,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -gn -WO -EF -bZ -Wb -TO -TO -TO -EF -EF -EF -EF -EF -EF -EF -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -xY -WJ -EF -EF -EF -EF -xN -WJ -HJ -WJ -WJ -js -vd -jA -jA -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -xY -yu -xY -xl -xY -xV -Hb -Hb -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(114,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -Wb -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -TO -TO -Wb -TO -TO -TO -TO -TO -km -EF -EF -EF -EF -EF -EF -EF -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -Th -le -EF -EF -EF -EF -xY -WJ -WJ -WJ -Db -xY -jA -jA -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -Of -xY -xY -OM -xY -xV -Hb -Pm -xV -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(115,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -Wb -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -hP -EF -EF -EF -EF -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -rj -sc -WJ -WJ -le -EF -EF -EF -xV -xl -yu -xY -Cp -xY -jA -jA -zM -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -WJ -xY -On -Ow -ON -xY -xY -xV -xV -QY -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(116,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -Wb -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -AM -le -ny -EF -EF -EF -EF -jA -Es -xV -xl -xY -jA -jA -jA -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -WJ -hB -mI -xV -xY -yu -xY -xY -yu -TO -TO -TO -WO -WO -WO -WO -WO -WO -Rh -RZ -WO -WO -WO -WO -WO -WO -jM -WO -Rh -pa -TO -TO -TO -TO -Cz -TG -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(117,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -Wb -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -EF -TO -TO -TO -le -WJ -nY -hB -ql -WJ -VE -jA -jA -EF -EF -EF -EF -jA -jA -jA -Bi -jA -jA -vd -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -WJ -xY -xY -jA -zM -xV -xY -xV -xY -xY -TO -TO -TO -WO -WO -WO -WO -WO -Rh -Rh -Rh -La -WO -WO -WO -WO -WO -jM -WO -WO -La -La -Rh -TO -Cz -Rh -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(118,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -EF -jA -jA -le -ny -le -WJ -WJ -le -eb -tv -jA -EF -EF -EF -EF -jA -vd -jA -jA -jA -Dy -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -xY -le -xY -jA -jA -Hb -WJ -xY -xY -TO -TO -TO -TO -WO -WO -WO -WO -Rh -Rn -Rh -Cz -RG -La -WO -WO -WO -WO -jM -WO -WO -WO -WO -La -Rh -YL -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(119,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -EF -EF -EF -jA -jA -od -le -ny -le -VT -jA -tJ -EF -EF -EF -jA -jA -jA -pu -BC -xY -xY -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -WJ -le -zM -jA -xY -xV -WJ -xY -rj -TO -TO -TO -TO -TO -WO -WO -WO -Rh -Rh -Cz -Sb -Rh -Rh -La -La -WO -WO -jM -WO -WO -WO -WO -WO -Vl -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(120,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -EF -EF -kn -nC -jA -jA -xj -rx -eb -jA -oT -EF -kn -EF -jA -jA -zM -yK -xY -yu -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -le -xY -le -jA -le -xY -CS -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -Rh -Rh -RW -SO -Cz -TE -GK -La -La -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(121,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -EF -EF -EF -EF -EF -jA -jA -jA -eb -EF -kn -EF -EF -jA -jA -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -WJ -le -jA -le -le -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -Rh -Rh -Rh -Cz -La -TG -La -Uo -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(122,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -EF -EF -EF -EF -EF -EF -EF -EF -wO -EF -EF -EF -EF -mV -tT -xY -xV -xV -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -WJ -le -zM -le -WJ -xY -WJ -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -Rh -RG -Rh -To -La -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(123,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -EF -EF -EF -oe -EF -qF -EF -wO -EF -EF -EF -EF -jA -le -xl -xY -zs -BM -xV -xY -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -WJ -le -hy -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -La -La -Rh -Rh -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(124,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -jA -kn -EF -EF -nR -EF -EF -EF -EF -wO -tx -EF -EF -EF -jA -le -le -WJ -xl -xV -CK -xV -xY -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -WJ -LP -le -WJ -WJ -le -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(125,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -jC -xY -le -le -zM -jA -jA -jA -EF -EF -pr -EF -EF -wO -qF -oe -EF -jA -jA -mV -xG -le -xY -xY -xV -xl -WJ -xY -WJ -xY -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -vp -LT -WJ -WJ -WJ -WJ -WJ -vp -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -Sb -La -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(126,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -TO -xY -xY -jU -WJ -WJ -lK -le -mL -jA -EF -EF -EF -EF -EF -rH -nF -EF -EF -qF -jA -jA -wz -jA -le -xY -xY -yu -xY -xY -WJ -WJ -WJ -WJ -FK -WJ -WJ -Sr -TO -TO -TO -TO -TO -TO -Cz -Cz -Sr -dX -vv -WJ -WJ -WJ -WJ -le -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -TO -TO -TO -TO -TO -WO -WO -WO -jM -WO -WO -La -La -La -TG -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(127,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -La -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -xY -xY -kG -le -le -my -mV -qn -jA -jA -lo -EF -EF -ns -sf -nR -EF -EF -up -jA -jA -jA -yB -le -le -CL -le -le -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -Sr -WJ -WJ -vp -Sr -Sr -Sr -Sr -KA -WJ -sc -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -Rh -Cz -Ys -TO -fT -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(128,1,1) = {" -bx -bV -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -dD -rY -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -rn -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sc -sc -sc -sc -sc -sc -sc -sc -jq -Hr -sc -AM -AM -Nv -eb -eb -eb -eb -wO -wO -wO -wO -So -oq -wO -tZ -wO -eb -XK -eb -eb -zx -AM -AM -sc -sc -sc -Hr -sc -sc -sc -sc -sc -sc -sc -sc -BZ -sc -sc -sc -sc -sc -sc -sc -Km -sc -sc -sc -sc -sc -sc -sc -Hr -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -rn -Wb -Wb -Lt -tb -Wb -Wb -og -tb -dD -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -bV -bx -"} -(129,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -rY -bw -TG -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -xY -xY -WJ -le -me -jA -jA -jA -pu -nX -EF -EF -EF -rM -sT -tB -tL -rw -EF -vd -jA -pu -jA -Ah -le -WJ -le -WJ -le -mt -WJ -WJ -WJ -WJ -WJ -FP -WJ -WJ -WJ -WJ -WJ -WJ -WJ -xY -WJ -WJ -sc -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -xY -xY -Pd -WO -xV -xV -xY -iP -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -az -Rh -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(130,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -Ol -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -xY -xY -xY -Th -WJ -le -mI -jA -jA -EF -EF -oT -mu -kn -EF -wO -kn -EF -EF -EF -jA -jA -jA -jA -Aj -WJ -xY -WJ -WJ -WJ -xY -xY -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -sc -WJ -WJ -xY -WJ -WJ -WJ -WJ -WJ -xY -xV -xV -WO -WO -Pd -Ow -xV -xY -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -Xu -La -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(131,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -xY -xV -kc -xY -WJ -le -zM -jA -jA -EF -EF -EF -pO -EF -EF -WB -EF -EF -EF -EF -jA -wY -jA -yG -AL -xY -xY -xY -WJ -WJ -WJ -HJ -WJ -WJ -WJ -WJ -WJ -xY -WJ -WJ -WJ -xY -xY -WJ -WJ -WJ -WJ -Hr -WJ -WJ -WJ -WJ -WJ -Sr -WJ -WJ -xY -OO -xV -Ow -WO -WO -xV -Pd -Ow -xV -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -Cz -Rh -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(132,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -xY -xY -kZ -xY -WJ -le -jA -EF -EF -EF -nR -EF -mv -EF -wO -EF -tR -EF -EF -jA -jA -jA -le -xY -xl -kZ -xY -WJ -WJ -WJ -WJ -WJ -WJ -FK -WJ -WJ -WJ -WJ -xY -xY -xY -xV -xY -xV -Hm -xY -sc -WJ -WJ -WJ -Sr -Sr -Sr -vp -Sr -WJ -xY -xY -xV -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -xV -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -Cz -TG -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(133,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -xY -hB -WJ -xY -xY -WJ -le -jA -EF -EF -EF -EF -EF -EF -EF -wO -EF -tJ -EF -EF -jA -jA -ou -le -xY -xY -xV -xY -xY -xY -WJ -WJ -WJ -WJ -WJ -WJ -WJ -Gp -WJ -WJ -rj -hy -ID -WO -WO -xV -xV -Hr -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -xV -Pd -xV -yu -xY -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -pa -La -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(134,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -WJ -xY -xY -js -TO -TO -TO -TO -WJ -xY -hB -xY -hy -TO -EF -EF -EF -km -EF -jA -jA -jA -wO -EF -EF -EF -EF -jA -le -le -WJ -xl -xV -xY -xY -WJ -WJ -WJ -xY -xY -TO -TO -TO -TO -TO -TO -TO -xV -WO -WO -WO -Kr -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -DY -xV -xV -xY -hB -xY -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(135,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -WJ -WJ -WJ -WJ -xY -xY -xY -WJ -TO -TO -TO -TO -TO -TO -WJ -WJ -TO -TO -TO -EF -EF -nf -le -jA -jA -jA -me -eb -EF -EF -EF -EF -jA -WJ -WJ -xl -xY -xY -xl -CK -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Ow -WO -WO -xV -xY -WJ -WJ -WJ -WJ -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -Rh -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(136,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -WJ -WJ -WJ -xY -js -CL -xV -Vi -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -le -qf -ra -jA -WF -jA -EF -EF -EF -jA -le -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Ow -Pd -Tz -xY -WJ -Cz -Cz -UW -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(137,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -WJ -WJ -xY -WJ -Es -xV -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -ou -le -le -dS -Xw -le -EF -EF -EF -vk -le -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -hB -WJ -WJ -WJ -Uv -Cz -Cz -tb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(138,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -WJ -WJ -xY -WJ -xV -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -le -le -WJ -le -AM -ou -jA -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -Cz -Rh -Rh -Vl -iu -WX -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(139,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -bw -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -WJ -WJ -xY -WJ -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -le -xY -xY -xY -sc -WJ -le -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Cz -pa -Cz -Rh -Rh -iu -Rh -Cz -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(140,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -WJ -WJ -xY -Es -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -le -WJ -hB -nY -Hr -WJ -le -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Cz -RG -Rh -WO -jM -Rh -Rh -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(141,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -WJ -WJ -xY -xV -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -le -xY -xY -xY -Ci -hy -le -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Cz -RZ -WO -WO -jM -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(142,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -sc -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -WJ -WJ -xY -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -le -nY -TO -TO -tp -xY -le -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(143,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -dD -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -WJ -WJ -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -ou -xY -TO -TO -Wb -xY -my -EF -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(144,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -sW -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -WJ -WJ -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -le -TO -TO -TO -Wb -xY -WJ -le -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(145,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -dD -Cz -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -WJ -WJ -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -EF -WJ -TO -TO -TO -Wb -xY -WJ -le -EF -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(146,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -dD -La -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -WJ -WJ -hz -xY -iP -WO -WO -js -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -EF -WJ -TO -TO -TO -Wb -TO -WJ -le -km -EF -EF -EF -EF -EF -EF -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(147,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -La -do -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -Cz -WJ -WJ -rj -WJ -WJ -hz -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -le -WJ -TO -TO -TO -Wb -TO -TO -le -le -rw -EF -EF -EF -EF -EF -le -le -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(148,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -La -La -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -Cz -WJ -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -le -TO -TO -TO -TO -Wb -TO -TO -WJ -le -le -EF -EF -EF -EF -EF -EF -EF -le -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -hR -uW -bj -aE -"} -(149,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -La -La -WJ -Sr -Cz -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -Cz -WJ -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -EF -EF -EF -EF -EF -EF -EF -le -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WJ -WJ -hz -WJ -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -DM -uW -uW -uW -uW -RF -fy -uW -OQ -BU -bj -aE -"} -(150,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -La -bw -La -WJ -Cz -Cz -Cz -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Rh -tb -Cz -Te -WJ -zE -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -EF -EF -xY -WJ -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -Sr -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -ti -GN -GN -GN -GN -GN -GN -GN -em -GN -bj -aE -"} -(151,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -do -La -WJ -Cz -dI -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -HP -Cz -Rh -Rh -Rh -Rh -iu -Cz -Cz -WJ -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -EF -EF -EF -DN -xY -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -ti -GN -BY -uq -vS -GN -Wi -eP -Oj -GN -bj -aE -"} -(152,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -La -WJ -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Cz -Rh -Rh -Rh -Rh -Rh -Rh -Rn -iu -RZ -Cz -Cz -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -hP -le -xY -xY -xl -GK -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -Cz -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -ti -GN -Rl -Mb -mG -Yu -LU -Wv -LU -GN -bj -aE -"} -(153,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -dD -La -Sr -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Rh -Rh -Rh -Rh -Rh -Rh -Rh -Rh -Rh -Cz -iu -Rh -Cz -Cz -WJ -WJ -Sr -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -xY -xY -hB -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -qT -WJ -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -ti -GN -GN -GN -GN -GN -LU -Wv -LU -GN -bj -aE -"} -(154,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -dD -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Rh -Rh -Rh -Rh -Rh -Rh -Rh -Rh -Rh -Rh -Rh -iu -HP -Cz -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -EF -xl -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -WJ -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -Bo -GN -BG -LU -Sd -yJ -KF -Wv -ck -GN -bj -aE -"} -(155,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -sW -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Rh -Rh -Rh -Rh -Rh -wx -Cz -Rh -Rh -Rh -Rh -iu -TO -Cz -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -rw -EF -EF -EF -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -dX -Sr -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -ti -GN -sk -LU -Sd -kg -KF -Wv -LU -GN -bj -aE -"} -(156,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -WJ -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Rh -Rh -Rh -Rh -Rh -Rh -Rh -Rh -Rh -Rh -Rh -TO -Wb -TO -TO -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -js -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -ti -GN -kJ -kJ -LU -HI -LU -Wv -LU -GN -bj -aE -"} -(157,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Cz -pa -Rh -Rh -Rh -Rh -Rh -qJ -qJ -pa -TO -TO -TO -Wb -TO -hz -WJ -Sr -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -Hm -La -xY -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -ti -GN -XJ -wb -qK -lP -Ii -Se -Cc -GN -bj -aE -"} -(158,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Cz -Rh -Rh -Rh -Cz -Rh -Cz -TO -TO -TO -TO -TO -TO -Wb -TO -WJ -WJ -Sr -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -WO -WO -WO -WO -WO -La -Hb -Hn -TO -TO -TO -TO -TO -TO -TO -TO -Wb -xV -xV -xV -WO -WO -WO -WO -WO -WO -WO -WO -WO -TG -xY -MZ -xY -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -XU -mP -mP -mP -mP -mP -mP -CZ -Ru -CT -CT -aE -"} -(159,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Cz -Rh -Rh -Rh -Rh -Rh -pa -TO -TO -TO -TO -TO -TO -Wb -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -bw -Hb -Hb -FS -GD -EM -xY -WJ -WJ -TO -TO -TO -TO -TO -Wb -TO -xY -xV -Es -La -WO -WO -WO -WO -WO -WO -WO -CK -Es -xl -xY -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -ti -Nq -JU -Ae -WH -xv -Mw -kB -hs -ie -CT -aE -"} -(160,1,1) = {" -bx -bV -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -Wb -Wb -Wb -Wb -rn -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -iu -iu -iu -iu -tb -uR -Wb -Wb -Wb -Wb -Wb -Wb -Wb -rn -sc -sc -sc -sc -sc -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -wO -wO -wO -Wb -Wb -Wb -Wb -Wb -Wb -rn -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Hr -Hr -Dh -Hr -ef -Wb -Wb -Wb -Wb -Wb -Wb -Wb -rn -Wb -Hr -LK -MM -hI -jM -jM -jM -jM -jM -jM -jM -sW -ZQ -Hr -Hr -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -rn -Wb -Wb -Wb -Wb -Wb -Wb -Wb -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -zN -mP -jb -uJ -VD -hu -mP -Mr -lZ -in -CT -aE -"} -(161,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Cz -Rh -Cz -Cz -Uv -Rh -dI -TO -TO -TO -TO -TO -TO -TO -Wb -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -xY -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -Wb -TO -xY -xY -DY -La -NH -WO -WO -WO -WO -WO -WO -WO -PV -xY -xY -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -Bo -mP -nj -Zr -uJ -ka -mP -Yv -XX -Ym -CT -aE -"} -(162,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Cz -Cz -Cz -Rh -Cz -Rh -Rh -Rh -Rh -HP -TO -TO -TO -WJ -sc -WJ -WJ -WJ -hz -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -xY -WJ -TO -TO -TO -TO -TO -TO -TO -Wb -TO -xY -xV -CK -kZ -Hm -WO -WO -WO -WO -WO -WO -WO -La -xV -xY -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -ti -mP -Gg -uJ -uJ -Ai -mP -cC -XX -TC -CT -aE -"} -(163,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -pa -Cz -Cz -Cz -Cz -Cz -WJ -Cz -WJ -Sr -Sr -WJ -WJ -WJ -WJ -sc -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -Wb -TO -xY -Me -MQ -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -xV -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -ti -Nq -uC -Kq -uJ -uJ -Ec -Rb -XX -ph -CT -aE -"} -(164,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -hz -Rh -Cz -Cz -Rh -Cz -WJ -Sr -WJ -WJ -WJ -WJ -WJ -Sr -Sr -Sr -WJ -sc -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -xY -WJ -WJ -xY -js -WJ -TO -TO -TO -TO -TO -TO -TO -Wb -xY -xY -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -xV -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -ti -mP -mP -mP -mP -mP -mP -CT -cn -CT -CT -aE -"} -(165,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Cz -Cz -Cz -WJ -Sr -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -xO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -DY -La -xY -EM -js -nY -xY -WJ -TO -TO -TO -TO -TO -TO -TO -TO -Hr -xY -xV -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -DY -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Cz -Cz -Cz -Sr -WJ -dD -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -tI -cF -cF -MY -MY -tm -ST -DA -jc -jc -bj -aE -"} -(166,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -Cz -Cz -Cz -Cz -WJ -WJ -WJ -hz -WJ -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -Es -EJ -xY -xV -xV -Hm -xY -TO -TO -TO -TO -TO -TO -TO -TO -Hr -xY -Es -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -Es -xY -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -sc -WJ -Sr -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -xy -MY -MY -MY -jc -jc -jc -bj -aE -"} -(167,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -WJ -Sr -Sr -WJ -WJ -WJ -WJ -hz -WJ -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -La -jC -Fx -xY -xY -js -xY -le -Ip -TO -TO -TO -TO -WJ -sc -xY -xV -Hm -Hn -La -WO -WO -WO -WO -WO -WO -WO -WO -Hm -xY -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wn -WJ -HJ -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -xy -MY -MY -MY -jc -jc -jc -bj -aE -"} -(168,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -dX -Cz -WJ -WJ -WJ -Sr -WJ -Sr -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -EK -jA -qn -jA -zs -le -le -le -le -le -WJ -WJ -hy -WJ -Hr -xY -xY -MB -Es -CK -DY -WO -WO -WO -WO -WO -WO -Es -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -xy -MY -MY -MY -jc -jc -jc -bj -aE -"} -(169,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -Sr -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -EF -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -bw -Fs -xY -xY -xY -xY -Hw -jA -jA -IH -Is -le -WJ -le -oF -xY -jA -xY -La -xV -yD -xV -Hm -La -Es -CK -La -La -xY -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -RO -Ct -Ct -Ct -jc -jc -jc -bj -aE -"} -(170,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -Cz -WJ -WJ -Sr -WJ -Sr -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -WO -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Es -CL -FD -jA -pu -jA -jA -jA -jA -jA -jA -jA -Kv -le -AM -le -LB -xV -xY -xY -Hn -xY -La -La -xY -xV -xY -xY -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -kO -jc -jc -bj -aE -"} -(171,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -WJ -Sr -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -WO -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -xY -le -le -mI -jA -jA -zM -jA -jA -jA -Hw -le -vy -xY -js -xY -MZ -js -xY -xY -xV -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -kO -jc -jc -bj -aE -"} -(172,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -WO -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -le -le -xY -xY -JP -LC -le -le -xY -AM -xY -WJ -xY -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -kO -bY -GS -bj -aE -"} -(173,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -EF -WO -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -HJ -WJ -WJ -le -le -le -WJ -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -kO -jc -bj -bj -aE -"} -(174,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -jA -WO -EF -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -tb -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -kO -jc -bj -bj -aE -"} -(175,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -WO -WO -jA -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -sc -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -Nu -jc -bj -bj -aE -"} -(176,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -La -Sr -TO -TO -TO -TO -TO -TO -TO -TO -TO -hz -WJ -WJ -WJ -Sr -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jA -WO -WO -jA -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -dD -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -Nu -jc -bj -bj -aE -"} -(177,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -La -La -La -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -xY -jA -WO -WO -jA -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -vv -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -Nu -jc -bj -bj -aE -"} -(178,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -La -bw -La -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -hB -WO -WO -WO -jA -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -VJ -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -aK -ye -bj -bj -aE -"} -(179,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -TG -WJ -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -xY -WO -WO -WO -jA -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -sc -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -aK -ye -bj -bj -aE -"} -(180,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -La -La -Sr -TO -TO -TO -TO -TO -WJ -WJ -WJ -Sr -Sr -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -xY -WO -WO -WO -xY -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -tb -Cz -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -cv -bf -bj -bj -aE -"} -(181,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -La -Sr -La -Cz -Cz -TO -TO -WJ -WJ -WJ -Sr -Sr -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -xY -WO -WO -WO -QQ -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -bj -aE -"} -(182,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -La -La -dX -Cz -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -xY -WO -WO -WO -hB -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -bj -aE -"} -(183,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -La -La -La -WJ -TO -TO -TO -TO -WJ -WJ -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -hB -WO -WO -WO -le -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -bj -aE -"} -(184,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -La -La -WJ -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -Sr -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -xY -WO -WO -WO -WJ -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -bj -aE -"} -(185,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -La -Ol -bw -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -Sr -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -ml -WO -WO -WO -WJ -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -bj -aE -"} -(186,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -La -Sr -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WO -WO -WO -WJ -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(187,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -La -Sr -Sr -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WO -WO -WO -WJ -hB -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(188,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -dD -La -Sr -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -WJ -WJ -hz -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Sr -WO -WO -WO -Sr -WJ -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(189,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -dD -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Sr -WJ -WJ -Cz -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Cz -WO -WO -WO -WO -La -Sr -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(190,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -dD -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -Cz -Cz -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Cz -La -WO -WO -WO -WO -La -oM -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(191,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -La -La -La -bw -tb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WJ -Cz -pa -WJ -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Rh -Rh -WO -WO -WO -WO -WO -WO -Rh -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(192,1,1) = {" -bx -bV -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dD -dD -dD -tj -tb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -tb -tb -tb -sc -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -rn -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -jM -jM -jM -jM -jM -jM -jM -jM -jM -Wb -Wb -Wb -rn -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -rn -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -bV -bx -"} -(193,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -dD -La -La -La -TO -TO -TO -TO -TO -TO -TO -TO -La -fI -WJ -WJ -Cz -Cz -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(194,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -Ol -La -TO -TO -TO -TO -TO -TO -TO -Sr -fa -La -La -fq -Cz -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(195,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -La -La -dT -TO -TO -TO -TO -TO -TO -La -La -La -La -Sr -Cz -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(196,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -La -La -TO -TO -TO -TO -TO -La -La -WO -La -La -WJ -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(197,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -La -Ol -Sr -Sr -TO -TO -Sr -Ol -WO -WO -WO -La -La -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(198,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -La -La -La -WJ -TO -TO -La -La -WO -WO -WO -WO -WO -La -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(199,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -La -TO -TO -La -La -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(200,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -La -La -La -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(201,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -La -La -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -Wb -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(202,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -La -La -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -jM -WO -TO -TO -TO -TO -TO -TO -WO -WO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -TO -TO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(203,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -TO -TO -TO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(204,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(205,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(206,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(207,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(208,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(209,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(210,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(211,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(212,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(213,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(214,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(215,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(216,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(217,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(218,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(219,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(220,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(221,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(222,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(223,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(224,1,1) = {" -bx -bV -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -dd -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -bV -bx -"} -(225,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(226,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(227,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(228,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(229,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(230,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(231,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(232,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(233,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(234,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(235,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(236,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(237,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(238,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(239,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(240,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(241,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(242,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(243,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(244,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(245,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(246,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(247,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(248,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(249,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(250,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(251,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(252,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(253,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(254,1,1) = {" -aE -bj -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -jM -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -WO -bj -aE -"} -(255,1,1) = {" -aE -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bV -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bV -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bV -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bV -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bV -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bV -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bV -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -bj -aE -"} -(256,1,1) = {" -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -bx -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -bx -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -bx -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -bx -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -bx -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -bx -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -bx -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -aE -"} diff --git a/maps/southern_sun/southern_cross-4.dmm b/maps/southern_sun/southern_cross-4.dmm deleted file mode 100644 index b4ac0ccdd6..0000000000 --- a/maps/southern_sun/southern_cross-4.dmm +++ /dev/null @@ -1,93937 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/one) -"ab" = ( -/obj/structure/table/steel, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/path/plains) -"ac" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"ad" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"ae" = ( -/turf/simulated/floor/plating, -/area/surface/outpost/security/maa) -"af" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"ag" = ( -/obj/machinery/conveyor{ - id = "mining_internal" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"ah" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"ai" = ( -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Gym"; - dir = 1 - }, -/turf/simulated/floor/holofloor/wood, -/area/surface/outpost/main/gym) -"aj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"am" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"an" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"ao" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/gateway) -"ap" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/obj/machinery/computer/cryopod/gateway{ - pixel_y = 30 - }, -/obj/machinery/newscaster{ - pixel_x = 29 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/gateway) -"aq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Hallway 4"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"ar" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/random/powercell, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "SUBS - Left Wing"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_left) -"as" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"at" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"au" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/item/clothing/glasses/meson, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/emergencystorage) -"av" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"aw" = ( -/obj/machinery/vending/sol{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"ax" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"ay" = ( -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"az" = ( -/obj/structure/table/bench/marble, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"aA" = ( -/obj/structure/table/woodentable, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/material/ashtray, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"aB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"aD" = ( -/obj/effect/mist, -/turf/simulated/floor/water/pool, -/area/surface/outpost/civilian/sauna) -"aE" = ( -/obj/structure/fence/cut/large, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/outpost) -"aF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"aG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"aI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"aJ" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"aK" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"aL" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"aM" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/storage) -"aN" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 23; - pixel_y = 12 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"aO" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/main/exploration/containment) -"aP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"aQ" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/exterior) -"aR" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"aS" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"aT" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security) -"aV" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"aW" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/water/pool, -/area/surface/outpost/civilian/pool) -"aX" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"aY" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"aZ" = ( -/obj/structure/closet/crate, -/obj/item/tool/crowbar/red, -/obj/item/frame/light, -/obj/item/storage/box/lights/mixed, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"ba" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/civilian/emergency_storage) -"bb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "main5_airlock_control"; - pixel_x = 26; - pixel_y = -26; - tag_exterior_door = "main5_airlock_exterior"; - tag_interior_door = "main5_airlock_interior" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"bc" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges, -/obj/effect/zone_divider, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"bf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"bg" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/item/mining_scanner, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/head/helmet/space/void/mining, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"bh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"bi" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"bj" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "mining_north"; - name = "mining conveyor" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/exterior) -"bk" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main8_airlock_exterior"; - locked = 1; - name = "Main Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "main8_airlock_control"; - name = "External Access Button"; - pixel_x = -26 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/left_three) -"bl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"bm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"bn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"bo" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/restroom) -"bp" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Outpost Substation"; - req_access = list(11) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/engineering/smes) -"bq" = ( -/obj/structure/fence/post{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"br" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"bs" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/computer/crew{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"bt" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"bu" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/machinery/vending/cigarette{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"bv" = ( -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outpost/wall) -"bw" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_south) -"bx" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/table/glass, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/item/material/ashtray/plastic, -/obj/random/cigarettes, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"by" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"bz" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"bB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"bD" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"bE" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/structure/table/steel, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/item/extinguisher/mini, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"bG" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/left_three) -"bH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"bI" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"bK" = ( -/obj/item/universal_translator, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"bL" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"bM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"bN" = ( -/turf/simulated/wall, -/area/surface/outpost/mining_main/storage) -"bO" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/dorms/dorm_1) -"bP" = ( -/turf/simulated/floor/outdoors/rocks/sif/planetuse, -/area/surface/outside/plains/mountains) -"bQ" = ( -/obj/structure/boxingropeenter{ - dir = 8 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"bR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"bS" = ( -/obj/structure/table/glass, -/obj/item/paicard, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"bT" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"bV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/monitoring) -"bW" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor, -/obj/structure/bedsheetbin, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"bX" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/paleblue/bordercorner2, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet/l3closet/scientist, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"bY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"bZ" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"ca" = ( -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/monitoring) -"cb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"cc" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"cd" = ( -/obj/structure/boxingrope{ - layer = 4.1 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"ce" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"cf" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"cg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"ch" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"ci" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"cj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"ck" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/security) -"cl" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/machinery/gear_painter, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"cm" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/white/bordercorner2, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"cn" = ( -/obj/structure/ore_box, -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"co" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/machinery/lapvend, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"cp" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"cq" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/main/airlock/right_one) -"cr" = ( -/turf/simulated/wall, -/area/surface/outpost/mining_main/emergencystorage) -"cs" = ( -/obj/structure/table/standard, -/obj/item/towel{ - color = "#3fc0ea"; - name = "light blue towel"; - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/towel{ - color = "#3fc0ea"; - name = "light blue towel"; - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/towel{ - color = "#3fc0ea"; - name = "light blue towel"; - pixel_x = 2; - pixel_y = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_x = -4; - pixel_y = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"ct" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"cu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/radio/beacon, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"cv" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"cw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"cx" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/orangedouble, -/turf/simulated/floor/carpet/oracarpet, -/area/surface/outpost/main/dorms/dorm_1) -"cy" = ( -/obj/effect/step_trigger/teleporter/bridge/south_to_north, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/water, -/area/surface/outside/river/indalsalven) -"cz" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/surface/outpost/main/dorms/dorm_3) -"cA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"cB" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/two) -"cC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"cD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"cE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/corridor/right_lower) -"cF" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep/ocean, -/area/surface/outside/ocean) -"cG" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/heavyduty{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/surface/outpost/security/smes) -"cI" = ( -/obj/machinery/button/remote/blast_door{ - id = "garage2"; - name = "Garage Shutter Control"; - pixel_x = 22 - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/main/airlock/right_one) -"cJ" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/ignore_mapgen/sif, -/area/surface/outside/plains/mountains) -"cK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "civ1_airlock_control"; - pixel_x = -26; - pixel_y = 26; - tag_exterior_door = "civ1_airlock_exterior"; - tag_interior_door = "civ1_airlock_interior" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"cL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"cM" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"cN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"cO" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/storage) -"cP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"cQ" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"cR" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/cable/heavyduty{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"cS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/random/toolbox, -/turf/simulated/floor/plating, -/area/surface/outpost/security/maa) -"cT" = ( -/turf/simulated/floor/water/deep/pool, -/area/surface/outpost/civilian/pool) -"cU" = ( -/obj/machinery/mineral/equipment_vendor/survey, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"cW" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/white/bordercorner, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"cX" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Medical Supplies"; - req_access = null; - req_one_access = list(5,43) - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"cY" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Exploration Prep"; - req_access = null; - req_one_access = list(43,67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/machinery/door/firedoor/multi_tile/glass, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/exploration) -"cZ" = ( -/obj/structure/snowman{ - name = "Frosty" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"da" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"db" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange/bordercorner2{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"dc" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"dd" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/engineering/atmos_room) -"de" = ( -/obj/machinery/vending/medical{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Search and Rescue Port" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/search_and_rescue) -"df" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"dg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/structure/table/rack, -/obj/item/suit_cooling_unit, -/obj/item/suit_cooling_unit, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"dh" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"dj" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"dk" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"dm" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"dn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"do" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Hallway 4"; - dir = 1; - name = "MO Right Wing - Hallway Three" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"dp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/carpet/purcarpet, -/area/surface/outpost/main/dorms/dorm_2) -"dq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"dr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"dt" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"du" = ( -/turf/simulated/wall, -/area/surface/outpost/main/dorms/dorm_4) -"dv" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_north) -"dw" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 4 - }, -/obj/item/storage/box/nifsofts_mining, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"dx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"dy" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/dorms/dorm_6) -"dA" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/greendouble, -/turf/simulated/floor/carpet/turcarpet, -/area/surface/outpost/main/dorms/dorm_3) -"dB" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"dC" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "sauna_tint2" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "sauna_tint2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/sauna) -"dE" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Outpost Parallel - Main 2"; - charge = 2e+007; - cur_coils = 4; - input_attempt = 1; - input_level = 750000; - output_level = 100 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"dF" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"dG" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Laundry" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/laundry) -"dH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"dI" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/smes) -"dJ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"dK" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Showers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/showers) -"dL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"dM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"dN" = ( -/obj/structure/table/rack, -/obj/item/shovel, -/obj/item/tool/wrench, -/obj/item/pickaxe, -/obj/item/tool/crowbar, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"dO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"dP" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/civilian/smes) -"dQ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Reactor Room Internal Access"; - req_one_access = list(11) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/surface/outpost/engineering/reactor_smes) -"dR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/tcomm) -"dS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"dT" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/obj/machinery/meter, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"dU" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"dV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"dW" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/dice/d20, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"dX" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"dY" = ( -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/reactor_smes) -"dZ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/storage) -"ea" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"eb" = ( -/obj/structure/fence/corner{ - dir = 10 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"ec" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"ed" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/exploration) -"ef" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Hallway 6"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"eg" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"eh" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Emergency Storage" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/emergency_storage/one) -"ej" = ( -/obj/machinery/vending/loadout/loadout_misc, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 9 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Laundry 1"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"ek" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"el" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"em" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"en" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"eo" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"ep" = ( -/obj/structure/table/bench/marble, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"eq" = ( -/obj/structure/table/glass, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"er" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"es" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"et" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 4 - }, -/obj/machinery/computer/guestpass{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"eu" = ( -/turf/simulated/wall, -/area/surface/outpost/mining_main/tools) -"ev" = ( -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/machinery/door/blast/radproof{ - id = "EngineReactor"; - rad_resistance = 150 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/engineering/reactor_smes) -"ew" = ( -/obj/machinery/space_heater, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"ex" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"ez" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"eB" = ( -/obj/machinery/conveyor{ - id = "mining_north" - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/mining_main/exterior) -"eC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"eD" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/vending/giftvendor, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"eE" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"eF" = ( -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"eG" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9 - }, -/obj/machinery/suit_storage_unit/standard_unit, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"eH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"eI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"eJ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"eK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"eL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"eM" = ( -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/wall/solidrock, -/area/surface/outside/plains/mountains) -"eN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"eO" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/refinery) -"eP" = ( -/turf/simulated/wall, -/area/surface/outpost/mining_main) -"eQ" = ( -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"eR" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/emergency_storage) -"eS" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/landing_north) -"eT" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/purple/bordercorner, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"eU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"eV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/atmos_room) -"eW" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - operating = 0; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = -10 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"eX" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/emergencystorage) -"eY" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"fa" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 10 - }, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = -10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"fb" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/right_one) -"fc" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Outpost SMES Room"; - req_one_access = list(11) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/surface/outpost/engineering/reactor_smes) -"fd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"fe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"ff" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/surface/outside/plains/normal; - base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse; - landmark_tag = "outpost_nw"; - name = "Northwest Outpost Perimiter" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/normal) -"fg" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/storage/box/wormcan/sickly{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/wormcan/sickly{ - pixel_x = 3 - }, -/obj/machinery/camera/network/civilian{ - c_tag = "CO - Fishing 2"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"fi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"fj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"fk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"fl" = ( -/obj/item/banner/virgov, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall) -"fm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"fn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"fo" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/smes) -"fp" = ( -/turf/simulated/floor/water/shoreline, -/area/surface/outside/ocean) -"fq" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Locker Room" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/showers) -"fr" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"fs" = ( -/obj/structure/table/glass, -/obj/item/clothing/shoes/swimmingfins, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"ft" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"fu" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/monitoring) -"fv" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"fw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"fx" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"fy" = ( -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"fz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"fA" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"fB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"fD" = ( -/obj/machinery/mineral/input, -/obj/structure/plasticflaps/mining, -/obj/machinery/conveyor{ - dir = 8; - id = "mining_external" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"fE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall, -/area/surface/outpost/mining_main/exterior) -"fF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"fG" = ( -/obj/item/stool, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"fH" = ( -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Airlock Access 3"; - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"fI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/camera/emp_proof{ - c_tag = "ENG - Outpost Airlock"; - dir = 9; - name = "Engineering_Outpost"; - network = list("Engineering") - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"fJ" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"fK" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"fL" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/mining_main/exterior) -"fM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"fN" = ( -/obj/effect/floor_decal/stairs{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/gym) -"fO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"fP" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "sec1_airlock_control"; - name = "Internal Access Button"; - pixel_x = 5; - pixel_y = 26; - req_one_access = list(1) - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "sec1_airlock_interior"; - locked = 1; - name = "Security Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/security) -"fQ" = ( -/turf/simulated/wall, -/area/surface/outside/path/plains) -"fS" = ( -/obj/machinery/mineral/processing_unit, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"fT" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "main3_airlock_control"; - name = "External Access Button" - }, -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/landing_south) -"fU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"fV" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"fY" = ( -/obj/structure/table/rack, -/obj/item/shovel, -/obj/item/tool/wrench, -/obj/item/pickaxe, -/obj/item/tool/crowbar, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"fZ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"ga" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/exploration) -"gb" = ( -/turf/simulated/floor/reinforced, -/area/surface/outpost/main/exploration/containment) -"gc" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/black{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"gd" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"ge" = ( -/obj/item/clothing/suit/caution, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"gf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"gg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"gh" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 1 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"gj" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/search_and_rescue) -"gk" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/corridor/left_upper) -"gl" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/orange{ - dir = 9 - }, -/obj/effect/floor_decal/corner/orange{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"gm" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"gn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"go" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/gen_room) -"gp" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"gr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"gs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/storage/pill_bottle/dice_nerd, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"gu" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/outpost) -"gw" = ( -/obj/machinery/fusion_fuel_compressor, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/camera/emp_proof{ - c_tag = "ENG - Outpost Fuel Storage"; - dir = 6; - name = "Engineering_Outpost"; - network = list("Engineering") - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/storage) -"gx" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/path/plains) -"gy" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - frequency = 1438; - id = "rust_cooling_in"; - name = "Coolant Injector"; - pixel_y = 1; - power_rating = 30000; - use_power = 1; - volume_rate = 700 - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"gz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"gB" = ( -/obj/machinery/button/windowtint{ - id = "sauna_tint1"; - pixel_x = -5; - pixel_y = 22 - }, -/obj/machinery/button/windowtint{ - id = "sauna_tint2"; - pixel_x = 6; - pixel_y = 22 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"gC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"gD" = ( -/turf/simulated/floor/water/shoreline{ - dir = 9 - }, -/area/surface/outside/ocean) -"gE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"gG" = ( -/turf/unsimulated/wall/planetary/sif, -/area/surface/outside/plains/mountains) -"gH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"gI" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/two) -"gJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"gK" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall, -/area/surface/outpost/main/gen_room/smes_left) -"gL" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"gM" = ( -/obj/structure/table/bench/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"gO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"gP" = ( -/obj/machinery/atm{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"gQ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"gR" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/engineering/atmos_room) -"gS" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/corridor/right_upper) -"gT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"gV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"gW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"gX" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"gZ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"ha" = ( -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"hb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"hc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_6) -"hd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"he" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Airlock 1"; - dir = 4 - }, -/obj/item/melee/umbrella{ - color = "#7c0d0d" - }, -/obj/item/melee/umbrella{ - color = "#7c0d0d" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_one) -"hf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"hg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"hh" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = newlist(); - req_one_access = list(43,67) - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/item/gun/energy/locked/phasegun/pistol, -/obj/item/gun/energy/locked/phasegun/pistol, -/obj/item/gun/energy/locked/phasegun/pistol, -/obj/item/gun/energy/locked/phasegun/pistol, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"hi" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"hk" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"hl" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main7_airlock_exterior"; - locked = 1; - name = "Main Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "main7_airlock_control"; - name = "External Access Button"; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/left_two) -"hm" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/fitness/punching_bag/clown, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"hn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"ho" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/structure/flora/pottedplant/bamboo, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"hq" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/tools) -"hr" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "civ2_airlock_control"; - name = "Internal Access Button"; - pixel_x = 26; - pixel_y = 5 - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "civ2_airlock_interior"; - locked = 1; - name = "Civilian Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/civilian/sauna) -"hs" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/obj/machinery/camera/network/civilian{ - c_tag = "CO - Airlock Access 2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"ht" = ( -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"hu" = ( -/obj/machinery/disposal, -/obj/machinery/light_construct{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"hv" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/path/plains) -"hw" = ( -/obj/structure/table/reinforced, -/obj/item/tool/crowbar/red, -/obj/item/flashlight, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_three) -"hx" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/random/powercell, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/smes) -"hy" = ( -/obj/structure/cable/blue, -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Shuttle Landing"; - charge = 5e+006; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"hA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/machinery/camera/network/security{ - c_tag = "SO - Airlock Access"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"hB" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_one) -"hC" = ( -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall) -"hD" = ( -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "production1"; - name = "Production Shutters" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/mining_main/refinery) -"hE" = ( -/obj/effect/landmark/event_spawn/dronepod_landing, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/normal) -"hF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"hG" = ( -/obj/effect/step_trigger/teleporter/bridge/east_to_west, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water, -/area/surface/outside/river/indalsalven) -"hH" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"hI" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/exploration/containment) -"hJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"hK" = ( -/turf/simulated/floor/outdoors/snow, -/area/surface/outside/plains/outpost) -"hL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"hM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"hN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"hO" = ( -/turf/simulated/floor/water/shoreline{ - dir = 8 - }, -/area/surface/outside/ocean) -"hP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"hQ" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/symbol/lo{ - pixel_x = -32 - }, -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"hR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"hS" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Tool Storage"; - req_one_access = list(48) - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/tools) -"hT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"hU" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_south) -"hV" = ( -/obj/structure/fence/corner{ - dir = 4 - }, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/outpost) -"hW" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/right_two) -"hX" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_three) -"hZ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"ib" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/emergency_storage/two) -"ic" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/left_three) -"id" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/closet/wardrobe/pjs, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"ie" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor/right_lower) -"if" = ( -/turf/simulated/floor/water/deep, -/area/surface/outside/river/indalsalven) -"ig" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"ih" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 22 - }, -/obj/item/pickaxe, -/obj/item/gps/mining, -/obj/item/clothing/head/hardhat/orange, -/obj/machinery/vending/wallmed1{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"ii" = ( -/obj/machinery/teleport/hub, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/teleporter) -"ij" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/water/deep/pool, -/area/surface/outpost/civilian/pool) -"il" = ( -/obj/structure/fence/corner, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/outpost) -"im" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_internal" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"in" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor) -"io" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"ip" = ( -/obj/effect/shuttle_landmark{ - landmark_tag = "response_ship_planet"; - name = "Sif Surface East" - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/normal) -"iq" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/gen_room) -"ir" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"is" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"it" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"iu" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"iw" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"ix" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"iy" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"iz" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"iA" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/tools) -"iC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"iD" = ( -/obj/machinery/power/port_gen/pacman, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"iE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"iF" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/plains/normal) -"iG" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/engineering/atmos_room) -"iH" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/reactor_smes) -"iI" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_three) -"iJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/mob/living/simple_mob/animal/passive/mouse/mining, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"iK" = ( -/obj/structure/table/woodentable, -/obj/structure/flora/pottedplant/small, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"iL" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/grille, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/engineering/atmos_room) -"iM" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/left_one) -"iN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"iO" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Central Hall"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"iP" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/wall) -"iQ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"iR" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"iS" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"iT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/air_sensor{ - frequency = 1438; - id_tag = "rustengine_sensor"; - output = 63 - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"iU" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "ENG_Outpost_airlock_control"; - pixel_x = 26; - pixel_y = 26; - tag_exterior_door = "ENG_Outpost_airlock_exterior"; - tag_interior_door = "ENG_Outpost_airlock_interior" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"iV" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor/right_lower) -"iW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"iX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"iY" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"iZ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/sauna) -"ja" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"jb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"jc" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"jd" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"je" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass_engineering{ - name = "Reactor Monitoring Room" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/engineering/monitoring) -"jf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"jg" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/security) -"ji" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/civilian/sauna) -"jj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"jk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"jl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"jm" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"jn" = ( -/obj/item/stack/material/wood, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"jo" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"jp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"jq" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"jr" = ( -/obj/item/reagent_containers/glass/bucket/wood, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 22 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"js" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"jt" = ( -/obj/machinery/door/firedoor/glass/hidden{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"ju" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "mining2_airlock_exterior"; - locked = 1; - name = "Mining Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "mining2_airlock_control"; - name = "External Access Button"; - pixel_x = -26; - req_one_access = list(48,10) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/mining_main/tools) -"jv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"jw" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/clothing/mask/gas, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_two) -"jx" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/light, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/landing_north) -"jy" = ( -/obj/machinery/computer/guestpass{ - pixel_y = 28 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "sec1_airlock_control"; - pixel_x = 26; - pixel_y = 26; - req_one_access = list(1); - tag_exterior_door = "sec1_airlock_exterior"; - tag_interior_door = "sec1_airlock_interior" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"jz" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"jA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Teleporter Hallway" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"jD" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"jE" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/tool/crowbar/red, -/obj/item/flashlight, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_one) -"jF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"jG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"jH" = ( -/obj/structure/sign/warning/caution{ - desc = "This appears to be a sign warning people that the other side is dangerous. It also says that NanoTrasen cannot guarantee your safety beyond this point."; - name = "\improper WARNING: NO ACCESS" - }, -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outpost/wall) -"jI" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"jJ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"jK" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -21; - pixel_y = -11 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"jL" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"jM" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/item/storage/box/donkpockets, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"jN" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/landing_south) -"jO" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"jQ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atm{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"jR" = ( -/obj/machinery/vending/foodasian{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"jS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"jT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"jU" = ( -/obj/item/stock_parts/motor, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"jV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"jW" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"jX" = ( -/obj/effect/step_trigger/teleporter/bridge/north_to_south, -/obj/structure/railing, -/turf/simulated/floor/water, -/area/surface/outside/river/indalsalven) -"jY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"jZ" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"ka" = ( -/obj/structure/closet/athletic_mixed, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"kb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/multi_tile/metal{ - name = "Fauna Containment"; - req_one_access = list(1,43) - }, -/obj/machinery/door/firedoor/multi_tile/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/exploration/containment) -"kc" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"kd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"ke" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"kf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"kg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"kh" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"ki" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/mining_main/exterior) -"kj" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/machinery/vending/cigarette{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"kk" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/table/standard, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/gloves/boxing/blue, -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"kl" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/bluedouble, -/turf/simulated/floor/carpet/blue, -/area/surface/outpost/main/dorms/dorm_5) -"km" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/light, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"kn" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/item/mining_scanner, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/head/helmet/space/void/mining, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"ko" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"kq" = ( -/obj/structure/table/woodentable, -/obj/item/storage/box/matches, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"ks" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/two) -"ku" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Teleporter Hallway"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"kv" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/landing_south) -"kw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"kx" = ( -/turf/simulated/wall, -/area/surface/outpost/main/gen_room/smes_right) -"ky" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/path/plains) -"kz" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/teleporter) -"kA" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"kB" = ( -/obj/structure/table/bench/standard, -/turf/simulated/floor/plating, -/area/surface/outpost/security/maa) -"kC" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "main7_airlock_control"; - name = "Internal Access Button"; - pixel_x = 6; - pixel_y = -26 - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main7_airlock_interior"; - locked = 1; - name = "Main Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/left_two) -"kD" = ( -/obj/structure/table/bench/marble, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"kE" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = -26 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"kF" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"kG" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"kH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"kI" = ( -/obj/structure/table/steel, -/obj/random/junk, -/obj/random/tool, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "SUBS - Main Outpost"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"kJ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/obj/structure/reagent_dispensers/water_cooler/full, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"kK" = ( -/obj/machinery/sleep_console{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/search_and_rescue) -"kL" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/engineering/smes) -"kM" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"kN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"kO" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"kP" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/gen_room/smes_right) -"kQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"kR" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"kS" = ( -/obj/machinery/conveyor{ - id = "mining_internal" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"kT" = ( -/obj/item/pickaxe, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/outside/plains/mountains) -"kU" = ( -/obj/machinery/mineral/input, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"kV" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"kW" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/highsecurity{ - name = "Teleporter Access"; - req_access = newlist(); - req_one_access = list(17) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/teleporter) -"kX" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/unary/heater/sauna{ - dir = 8; - icon_state = "heater_1"; - use_power = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/civilian/sauna) -"kY" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"kZ" = ( -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"la" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"lb" = ( -/obj/structure/toilet, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_1) -"lc" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/engineering/monitoring) -"ld" = ( -/turf/simulated/wall, -/area/surface/outpost/main/dorms/dorm_1) -"le" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"lf" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/regular, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"lg" = ( -/obj/machinery/power/generator{ - anchored = 1; - dir = 8 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"lh" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/radio{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Airlock 3" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_three) -"li" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloor, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"lj" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main) -"lk" = ( -/obj/item/stool/padded, -/obj/machinery/camera/network/civilian{ - c_tag = "CO - Pool 2"; - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"ll" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"lm" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "main8_airlock_control"; - name = "Internal Access Button"; - pixel_x = -26; - pixel_y = -6 - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main8_airlock_interior"; - locked = 1; - name = "Main Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/left_three) -"lo" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"lp" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"lq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/gym) -"lr" = ( -/obj/machinery/vending/snack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Hallway 2"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"ls" = ( -/obj/machinery/vending/loadout, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"lt" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"lu" = ( -/obj/item/clothing/head/hardhat/orange, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"lw" = ( -/obj/effect/landmark/event_spawn/dronepod_landing, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/normal) -"lx" = ( -/obj/structure/table/marble, -/obj/item/starcaster_news, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"ly" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_6) -"lz" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security/maa) -"lA" = ( -/turf/simulated/wall/dungeon{ - icon = 'icons/obj/doors/shuttledoors.dmi'; - icon_state = "door_locked"; - name = "Wall Gate" - }, -/area/surface/outpost/wall) -"lB" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"lC" = ( -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/machinery/door/blast/radproof{ - rad_resistance = 150 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"lD" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/surface/outpost/main/dorms/dorm_2) -"lE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"lF" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"lG" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/smes) -"lI" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"lK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"lL" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"lM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"lN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"lO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"lP" = ( -/turf/simulated/wall, -/area/surface/outpost/mining_main/cave) -"lQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"lR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"lS" = ( -/obj/machinery/door/firedoor/glass/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"lT" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_three) -"lU" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"lV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/network/main_outpost{ - c_tag = "ATV Garage 2"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"lW" = ( -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/atmos_room) -"lX" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Outpost Parallel - Main 1"; - charge = 2e+007; - cur_coils = 4; - input_attempt = 1; - input_level = 750000; - output_level = 750000 - }, -/obj/structure/cable, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"lY" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"lZ" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/smes) -"ma" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_south) -"mb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"mc" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/left_two) -"md" = ( -/obj/structure/catwalk, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"mf" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"mh" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"mi" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"mj" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"mk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"ml" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"mm" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"mn" = ( -/obj/structure/boxingrope{ - dir = 1 - }, -/obj/structure/boxingrope{ - dir = 4 - }, -/obj/structure/boxingrope{ - dir = 6 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"mo" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_1) -"mp" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/wall) -"mq" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/bordercorner{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"mr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"ms" = ( -/obj/structure/ore_box, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"mt" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"mu" = ( -/obj/item/bikehorn/rubberducky, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"mv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"mw" = ( -/obj/machinery/door/firedoor/glass/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"mx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 10 - }, -/obj/machinery/light, -/obj/structure/closet/secure_closet/pilot, -/obj/item/cataloguer/compact, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"my" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"mz" = ( -/obj/structure/table/standard, -/obj/item/soap/syndie, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_6) -"mA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_5) -"mB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"mC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/purcarpet, -/area/surface/outpost/main/dorms/dorm_2) -"mD" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"mE" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"mF" = ( -/obj/machinery/vending/fishing{ - dir = 8 - }, -/obj/effect/floor_decal/corner/orange{ - dir = 6 - }, -/obj/effect/floor_decal/corner/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"mG" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"mH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 6 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"mI" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/tools) -"mJ" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/exploration/containment) -"mK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"mL" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/table/glass, -/obj/machinery/light, -/obj/item/communicator, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"mM" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"mN" = ( -/obj/structure/table/rack, -/obj/item/material/fishing_net, -/obj/item/material/fishing_net, -/obj/item/material/fishing_net, -/obj/item/material/fishing_net, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"mO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/gateway) -"mP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 9 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"mQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"mR" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/obj/effect/zone_divider, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"mS" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "civ1_airlock_exterior"; - locked = 1; - name = "Civilian Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "civ1_airlock_control"; - name = "External Access Button"; - pixel_x = -26 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/civilian/fishing) -"mT" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = -10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"mU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_2) -"mV" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"mW" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/porta_turret/industrial/teleport_defense, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/teleporter) -"mX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"mY" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/catwalk, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/camera/emp_proof{ - c_tag = "SUBS - Eng Outpost"; - dir = 4; - name = "Engineering_Outpost"; - network = list("Engineering Outpost") - }, -/obj/machinery/light_switch{ - pixel_x = -11; - pixel_y = 21 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/smes) -"mZ" = ( -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/outside/plains/mountains) -"na" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"nc" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"nd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"ne" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/shoreline{ - dir = 8 - }, -/area/surface/outside/ocean) -"nf" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "ENG - Outpost Auxiliary Room"; - dir = 10; - name = "Engineering_Outpost"; - network = list("Engineering") - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"ng" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"nh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"ni" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"nj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"nk" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"nl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"nm" = ( -/obj/structure/table/rack/shelf, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/item/gun/energy/locked/phasegun/rifle{ - pixel_y = 3 - }, -/obj/item/gun/energy/locked/phasegun/rifle{ - pixel_y = -4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/machinery/camera/network/mining{ - c_tag = "PO - Mining Hallway 1" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"nn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"no" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"np" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/tools) -"nq" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/main/airlock/right_two) -"nr" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"ns" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"nt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"nu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"nv" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"nw" = ( -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/tcomm) -"nx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"ny" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_left) -"nz" = ( -/obj/effect/floor_decal/borderfloor/cee, -/obj/effect/floor_decal/industrial/danger/cee, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Containment Pen"; - req_access = newlist(); - req_one_access = list(43,1) - }, -/obj/machinery/door/window/brigdoor/eastright{ - name = "Containment Pen"; - req_access = newlist(); - req_one_access = list(43,1) - }, -/obj/machinery/door/blast/regular/open{ - id = "pen"; - name = "Containment Lockdown Blast Doors" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"nA" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"nC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"nD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"nE" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/browndouble, -/turf/simulated/floor/carpet/bcarpet, -/area/surface/outpost/main/dorms/dorm_4) -"nF" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/smes) -"nG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"nH" = ( -/obj/structure/fence{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"nI" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall/r_wall, -/area/surface/outpost/security/smes) -"nJ" = ( -/obj/structure/table/rack/shelf/steel, -/obj/fiftyspawner/phoronglass, -/obj/fiftyspawner/rglass, -/obj/fiftyspawner/rods, -/obj/fiftyspawner/steel, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Mining Outpost Power 1"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"nK" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"nL" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor/left_lower) -"nM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"nN" = ( -/obj/machinery/power/port_gen/pacman, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Mining Outpost Power 2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"nO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"nP" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"nQ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"nR" = ( -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Engineering Outpost"; - charge = 5e+006; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/obj/structure/cable/blue, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/smes) -"nS" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/water/pool, -/area/surface/outpost/civilian/pool) -"nT" = ( -/obj/structure/sign/warning/radioactive, -/turf/simulated/wall/r_wall, -/area/surface/outpost/engineering/reactor_smes) -"nU" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/gen_room/smes_left) -"nV" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/civilian/fishing) -"nW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"nX" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"nY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/monitoring) -"nZ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"oa" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"ob" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"oc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/network/main_outpost{ - c_tag = "ATV Garage 1"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"od" = ( -/obj/structure/table, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"oe" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_north) -"of" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 5 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"og" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"oh" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/vending/wallmed1{ - name = "Emergency NanoMed"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"oi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"oj" = ( -/obj/structure/table/standard, -/obj/item/soap/deluxe, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_1) -"ok" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"ol" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"om" = ( -/obj/structure/closet/secure_closet/explorer, -/obj/item/clothing/mask/gas/half, -/obj/item/cataloguer, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"on" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"oo" = ( -/obj/structure/closet/secure_closet/explorer, -/obj/item/pickaxe, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/cataloguer, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"op" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"os" = ( -/obj/structure/table/standard, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/random/soap, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"ot" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"ou" = ( -/obj/structure/table/reinforced, -/obj/item/tool/crowbar/red, -/obj/item/flashlight, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_three) -"ow" = ( -/obj/structure/flora/pottedplant/tropical, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"ox" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"oy" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"oA" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/heavyduty{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"oB" = ( -/obj/structure/table/steel, -/obj/item/storage/box/lights/mixed, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/one) -"oC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"oD" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/engineering/monitoring) -"oE" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/obj/structure/catwalk, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/path/plains) -"oF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 9 - }, -/obj/machinery/computer/timeclock/premade/north, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"oH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"oI" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "mining1_airlock_control"; - name = "Internal Access Button"; - pixel_x = 5; - pixel_y = -26; - req_one_access = list(48) - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "mining1_airlock_interior"; - locked = 1; - name = "Mining Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/mining_main/storage) -"oJ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/blue/bordercorner2, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"oL" = ( -/obj/structure/ore_box, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"oM" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/corridor) -"oN" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"oO" = ( -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"oP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"oQ" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"oR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/left_one) -"oS" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"oT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/carpet, -/area/surface/outpost/main/dorms/dorm_6) -"oU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"oV" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"oX" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/engineering/atmos_room) -"oY" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"oZ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"pa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/oracarpet, -/area/surface/outpost/main/dorms/dorm_1) -"pb" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"pc" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/item/storage/laundry_basket, -/obj/effect/floor_decal/corner/white/border{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"pd" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/search_and_rescue) -"pe" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"pf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/restroom) -"pg" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"ph" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"pi" = ( -/obj/structure/table/woodentable, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/lipstick/random, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"pj" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"pk" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/item/beach_ball, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"pm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/atmos_room) -"pn" = ( -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Airlock Access 2"; - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"po" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/emergency_storage) -"pp" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"pr" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"ps" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"pt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"pu" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"pv" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"pw" = ( -/obj/structure/fence/end{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"px" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor/border_only, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"py" = ( -/obj/structure/closet/crate, -/obj/item/stack/material/phoron{ - amount = 25 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"pz" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/machinery/lapvend{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"pA" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"pB" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_4) -"pC" = ( -/turf/simulated/mineral/ignore_mapgen/sif, -/area/surface/outside/plains/mountains) -"pD" = ( -/obj/structure/table/rack/shelf, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/item/tank/oxygen{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/tank/oxygen{ - pixel_x = 1; - pixel_y = -5 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"pE" = ( -/obj/structure/stasis_cage, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/exploration/containment) -"pF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"pG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"pH" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"pI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_6) -"pJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/vehicle/train/engine/quadbike{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"pK" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_2) -"pL" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"pM" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/fishing) -"pN" = ( -/turf/simulated/wall, -/area/surface/outpost/main/search_and_rescue) -"pO" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_one) -"pP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"pQ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"pR" = ( -/obj/structure/closet, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/obj/item/clothing/gloves/duty, -/obj/item/clothing/gloves/duty, -/obj/item/clothing/under/serviceoveralls, -/obj/item/clothing/under/serviceoveralls, -/obj/item/clothing/accessory/storage/webbing, -/obj/item/clothing/accessory/storage/webbing, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"pS" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/sauna) -"pT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"pU" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"pV" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/dust/corner, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"pW" = ( -/turf/simulated/floor/water/shoreline/corner{ - dir = 1 - }, -/area/surface/outside/ocean) -"pX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"pY" = ( -/obj/item/stack/flag/green{ - pixel_x = -4 - }, -/obj/item/stack/flag/red, -/obj/item/stack/flag/yellow{ - pixel_x = 4 - }, -/obj/structure/table/rack, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"pZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"qa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"qb" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"qc" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"qd" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 5; - tag_north = 2; - tag_south = 1; - tag_west = 6 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"qe" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"qf" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"qg" = ( -/turf/simulated/wall, -/area/surface/outpost/main/bar) -"qh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"qi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"qj" = ( -/obj/machinery/computer/timeclock/premade/east, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"qk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/emp_proof{ - c_tag = "ENG - Outpost Reactor Room Access"; - dir = 10; - name = "Engineering_Outpost"; - network = list("Engineering") - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/monitoring) -"ql" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/structure/closet/secure_closet/medical_wall{ - name = "O- Blood Locker"; - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/item/reagent_containers/blood/OPlus, -/obj/item/reagent_containers/blood/OPlus, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"qm" = ( -/obj/structure/table/bench/standard, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"qn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"qo" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/item/tank/emergency/oxygen/double, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_two) -"qp" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/obj/structure/coatrack, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"qq" = ( -/obj/machinery/atmospherics/binary/circulator{ - anchored = 1; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"qr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"qs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Reactor Auxiliary Room"; - req_one_access = list(11) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/yellow{ - d1 = 9; - d2 = 10; - icon_state = "9-10" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"qt" = ( -/obj/structure/flora/pottedplant/dead, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"qu" = ( -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"qv" = ( -/obj/machinery/mineral/stacking_machine, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"qw" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Outpost SMES Room"; - req_one_access = list(11) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/surface/outpost/engineering/reactor_smes) -"qx" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"qy" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"qA" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"qB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"qC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"qD" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"qE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/restroom) -"qF" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"qG" = ( -/turf/simulated/floor/water/pool, -/area/surface/outpost/civilian/pool) -"qH" = ( -/obj/structure/table/glass, -/obj/item/inflatable_duck, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"qI" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"qJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"qK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"qL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"qM" = ( -/obj/item/modular_computer/console/preset/security, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"qN" = ( -/turf/simulated/wall, -/area/surface/outpost/civilian/smes) -"qO" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"qP" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Locker Room" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/showers) -"qQ" = ( -/obj/machinery/cryopod/robot/door/gateway, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"qR" = ( -/obj/structure/table/bench/wooden, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"qT" = ( -/turf/simulated/wall, -/area/surface/outpost/main/exploration) -"qU" = ( -/obj/machinery/conveyor_switch{ - id = "mining_external" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"qV" = ( -/turf/simulated/wall, -/area/surface/outpost/main/corridor/left_lower) -"qW" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/power/thermoregulator, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"qX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"qY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"qZ" = ( -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Airlock Access 2"; - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"ra" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"rb" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/stack/material/lead{ - amount = 30 - }, -/obj/fiftyspawner/plastic, -/obj/fiftyspawner/plasteel, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/item/stack/material/copper{ - amount = 25 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"rc" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"rd" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/regular, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"re" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"rf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/microwave{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"rg" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "main5_airlock_control"; - name = "Internal Access Button"; - pixel_x = 5; - pixel_y = -26 - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main5_airlock_interior"; - locked = 1; - name = "Main Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/right_three) -"rh" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Construction Area" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/corridor/right_lower) -"ri" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"rj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/multi_tile/glass, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Construction Area" - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/corridor/left_upper) -"rk" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"rl" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/two) -"rm" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"rn" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"ro" = ( -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Civilian"; - charge = 500000; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/smes) -"rq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"rr" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "civ2_airlock_exterior"; - locked = 1; - name = "Civilian Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "civ2_airlock_control"; - name = "External Access Button"; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/civilian/sauna) -"rt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"ru" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/sauna) -"rv" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"rw" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"ry" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"rz" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"rA" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"rB" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"rC" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"rD" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/engineering/monitoring) -"rE" = ( -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Airlock Access 1" - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"rF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"rG" = ( -/obj/machinery/vending/fitness{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"rH" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/storage) -"rI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/exploration) -"rK" = ( -/obj/structure/table/standard, -/obj/item/soap/deluxe, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_2) -"rL" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 2; - tag_north = 5; - tag_west = 1; - use_power = 0 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"rM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/uxstorage) -"rN" = ( -/obj/structure/closet/lasertag/red, -/obj/item/stack/flag/red, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"rO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"rP" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_one) -"rQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"rR" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"rS" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/tcomm) -"rT" = ( -/obj/structure/table/steel, -/obj/random/tech_supply, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"rU" = ( -/obj/machinery/vending/loadout/clothing, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"rV" = ( -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall) -"rW" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/item/cell/high, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/mining_main) -"rY" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/exterior) -"rZ" = ( -/obj/structure/table/rack, -/obj/item/stack/cable_coil/silver, -/obj/item/stack/cable_coil/silver, -/obj/item/stack/cable_coil/silver, -/obj/item/stack/cable_coil/silver, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"sa" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"sb" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Custodial Closet"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"sc" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"sd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"se" = ( -/obj/item/stool/padded, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"sf" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 8 - }, -/obj/machinery/button/remote/blast_door{ - id = "production1"; - name = "Production Shutters"; - pixel_x = -20; - pixel_y = -10; - req_one_access = list(48) - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/mining_main/refinery) -"sg" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"sh" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Outpost Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/corridor/left_lower) -"si" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/landing_north) -"sj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"sk" = ( -/obj/structure/table/steel, -/obj/random/tool, -/obj/random/tool, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"sl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/surface/outpost/security/maa) -"sm" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"sn" = ( -/obj/structure/table/rack/shelf, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/item/gps/mining{ - pixel_x = -5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/item/gps/mining{ - pixel_x = 5 - }, -/obj/item/gps/mining{ - pixel_x = -5 - }, -/obj/item/gps/mining{ - pixel_x = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"so" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"sp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"sq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"sr" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"ss" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"st" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"su" = ( -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/sauna) -"sv" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"sw" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/search_and_rescue) -"sx" = ( -/obj/structure/closet/secure_closet/sar, -/obj/item/storage/pill_bottle/spaceacillin, -/obj/item/roller/adv, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/search_and_rescue) -"sy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"sz" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Hallway 3"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"sA" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "production1"; - name = "Production Shutters" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/mining_main/refinery) -"sB" = ( -/obj/structure/table/marble, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"sC" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/storage) -"sD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "garage2"; - name = "Garage Shutters" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/right_one) -"sE" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"sF" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"sG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/restroom) -"sH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"sI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"sJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"sK" = ( -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/vending/coffee{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"sL" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/emergency_storage) -"sM" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/window/basic, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_north) -"sN" = ( -/obj/structure/table/reinforced, -/obj/item/tool/crowbar/red, -/obj/item/flashlight, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_two) -"sO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/turcarpet, -/area/surface/outpost/main/dorms/dorm_3) -"sP" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"sQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Central Hall"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"sR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"sS" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/heavyduty, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/smes) -"sT" = ( -/obj/structure/table/marble, -/obj/random/tech_supply, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"sV" = ( -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/machinery/door/blast/radproof{ - dir = 4; - id = "EngineReactor"; - rad_resistance = 150 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/engineering/reactor_smes) -"sW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_5) -"sX" = ( -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"sY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"ta" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"tb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/emp_proof{ - c_tag = "ENG - Outpost Reactor Room East"; - dir = 4; - name = "Reactor_Room"; - network = list("Engine") - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"tc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"td" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_one) -"te" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/gen_room/smes_left) -"tf" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 9 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"tg" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 9 - }, -/obj/structure/table/glass, -/obj/machinery/recharger, -/obj/item/tool/screwdriver, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"th" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/white/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"ti" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/fishing) -"tj" = ( -/turf/simulated/wall, -/area/surface/outpost/civilian/pool) -"tk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/machinery/camera/network/mining{ - c_tag = "PO - Airlock Access 1"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"tl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"tm" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/emergencystorage) -"tn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"to" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/rocks/sif/planetuse, -/area/surface/outside/plains/normal) -"tp" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central6, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/landing_south) -"tq" = ( -/obj/structure/catwalk, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/storage) -"tr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"ts" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/normal) -"tt" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"tu" = ( -/obj/structure/catwalk, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"tv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"tw" = ( -/obj/item/banner/nt, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/normal) -"tx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"ty" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"tz" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Master at Arms" - }, -/obj/machinery/door/firedoor/glass, -/obj/item/tape/engineering, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/security/maa) -"tA" = ( -/obj/machinery/disposal, -/obj/machinery/button/remote/airlock{ - id = "dorm1"; - name = "Door Lock Control"; - pixel_y = -25; - specialfunctions = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"tB" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"tC" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"tD" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"tE" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor) -"tF" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light/small, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Outpost Reactor Power Input"; - name_tag = "Outpost Reactor Input" - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/storage) -"tG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/machinery/computer/general_air_control/supermatter_core{ - input_tag = "rust_cooling_in"; - name = "Engine Cooling Control"; - output_tag = "rust_cooling_out"; - sensors = list("rustengine_sensor"="Engine Temperature") - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/reactor_smes) -"tH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/blue, -/area/surface/outpost/main/dorms/dorm_5) -"tI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"tJ" = ( -/obj/structure/boxingrope{ - dir = 8 - }, -/obj/structure/boxingrope, -/obj/structure/boxingrope{ - dir = 9; - layer = 4.1 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"tK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/tcomm) -"tL" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - dir = 1; - id = "Reactor Gyrotron"; - id_tag = "Reactor Gyrotron" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"tM" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/right_two) -"tN" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"tO" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"tP" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"tQ" = ( -/obj/structure/table/bench/wooden, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"tR" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"tT" = ( -/obj/structure/plasticflaps/mining, -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"tU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/power/hydromagnetic_trap, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"tV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"tW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"tX" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/structure/flora/pottedplant/bamboo, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"tY" = ( -/turf/simulated/floor/water/shoreline/corner{ - dir = 8 - }, -/area/surface/outside/ocean) -"tZ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_internal" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"ua" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/sauna) -"ub" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/closet/toolcloset, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"uc" = ( -/obj/structure/closet/secure_closet/guncabinet/phase{ - name = "phase weapon cabinet"; - req_access = newlist(); - req_one_access = list(43,67) - }, -/obj/item/clothing/accessory/holster/hip, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Exploration Prep"; - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"ud" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/fusion_fuel_injector/mapped{ - dir = 8; - id_tag = "Reactor Fuel Injectors" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"ue" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/landing_north) -"uf" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/starcaster_news, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"ug" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"uh" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/right_three) -"ui" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/bar) -"uj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 4 - }, -/obj/machinery/turretid/stun{ - check_records = 0; - control_area = "\improper Main Outpost Teleporter"; - name = "Main Outpost Teleporter turret control"; - pixel_y = 24; - req_access = list(19) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"uk" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/machinery/door/firedoor/multi_tile/glass, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"ul" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"um" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/button/windowtint{ - id = "dorm_tint5"; - pixel_x = -22 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"un" = ( -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"up" = ( -/obj/machinery/light/small{ - brightness_color = "#DA0205"; - brightness_power = 1; - brightness_range = 5; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"uq" = ( -/obj/structure/table/steel, -/obj/item/storage/box/lights/mixed, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/emergencystorage) -"ur" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"us" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/refinery) -"ut" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"uu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera/network/telecom{ - c_tag = "Tcoms - Main Outpost"; - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/tcomm) -"uv" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering{ - name = "SMES Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/security/smes) -"uw" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/security) -"ux" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor) -"uz" = ( -/turf/simulated/floor/weird_things/dark{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outside/plains/mountains) -"uA" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"uB" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/fusion_fuel_injector/mapped{ - dir = 8; - id_tag = "Reactor Fuel Injectors" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"uC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"uD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"uE" = ( -/turf/simulated/floor/water, -/area/surface/outside/lake/romsele) -"uF" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/gen_room) -"uG" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"uH" = ( -/obj/structure/snowman/borg, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"uJ" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"uK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"uL" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"uN" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"uO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/machinery/door/blast/radproof{ - id = "EngineReactor"; - rad_resistance = 150 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"uP" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"uQ" = ( -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"uR" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"uS" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"uT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"uU" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/gen_room/smes_left) -"uV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"uW" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"uX" = ( -/obj/item/stool/padded, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"uY" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"uZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_left) -"vb" = ( -/turf/simulated/wall, -/area/surface/outpost/main/showers) -"vc" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Showers" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/showers) -"vd" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"ve" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/one) -"vf" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor/right_upper) -"vg" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/security) -"vh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"vi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"vj" = ( -/obj/effect/engine_setup/pump_max, -/obj/machinery/atmospherics/binary/pump/high_power, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"vk" = ( -/obj/machinery/light, -/obj/effect/landmark{ - name = "JoinLateSifPlains" - }, -/obj/effect/landmark/start{ - name = "Outsider" - }, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall) -"vl" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_three) -"vm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"vn" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"vo" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/storage) -"vp" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main) -"vq" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/left_two) -"vr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"vs" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"vt" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"vv" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/restroom) -"vw" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"vx" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "main4_airlock_control"; - name = "External Access Button" - }, -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/landing_north) -"vy" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/table/standard, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/gloves/boxing, -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"vz" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/camera/network/mining{ - c_tag = "PO - Mining Production Room"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"vA" = ( -/obj/machinery/mineral/output, -/obj/machinery/conveyor{ - id = "mining_internal" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"vB" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/mountains) -"vC" = ( -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"vD" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"vE" = ( -/obj/structure/table/steel, -/obj/structure/closet/secure_closet/medical_wall/pills{ - pixel_y = 32 - }, -/obj/item/storage/pill_bottle/spaceacillin, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = 12 - }, -/obj/random/medical/pillbottle, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/search_and_rescue) -"vF" = ( -/obj/structure/table, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"vG" = ( -/obj/structure/boxingrope{ - dir = 1 - }, -/obj/structure/boxingrope{ - dir = 8 - }, -/obj/structure/boxingrope{ - dir = 9 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"vH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/atmos_room) -"vI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"vJ" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_4) -"vK" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"vM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Hallway 1"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"vN" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/white/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"vO" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/surface/outpost/security/maa) -"vP" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"vR" = ( -/obj/structure/boxingrope{ - dir = 1 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"vT" = ( -/obj/random/trash, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"vU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"vV" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"vW" = ( -/obj/machinery/vending/cola{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"vY" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/sauna) -"vZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"wa" = ( -/obj/machinery/light_construct, -/obj/structure/table/reinforced, -/obj/item/storage/box/donut/empty, -/turf/simulated/floor/holofloor/tiled/dark, -/area/surface/outpost/security/maa) -"wb" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/fishing) -"wc" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"wd" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"we" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"wf" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_external" - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/mining_main/refinery) -"wg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"wh" = ( -/turf/simulated/wall, -/area/surface/outpost/main/gym) -"wi" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"wj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"wk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"wl" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Long Range Teleporter Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/gateway) -"wm" = ( -/obj/machinery/vending/coffee{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"wn" = ( -/obj/structure/table/standard, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/random_multi/single_item/hand_tele, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"wo" = ( -/obj/effect/floor_decal/borderfloor/corner, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"wp" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main6_airlock_exterior"; - locked = 1; - name = "Main Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "main6_airlock_control"; - name = "External Access Button"; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/left_one) -"wq" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"wr" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"ws" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/left_three) -"wt" = ( -/obj/structure/closet/athletic_mixed, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"wu" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 8 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"wv" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"ww" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"wx" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"wy" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"wA" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"wC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"wD" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"wE" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/corner/purple/bordercorner2, -/obj/structure/table/rack, -/obj/item/weldingtool, -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"wG" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/corridor/left_lower) -"wH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/remote/blast_door{ - id = "garage2"; - name = "Garage Shutter Control"; - pixel_x = -6; - pixel_y = -22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"wI" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "main2_airlock_control"; - name = "Internal Access Button"; - pixel_x = -26; - pixel_y = -6 - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main2_airlock_interior"; - locked = 1; - name = "Main Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/right_one) -"wJ" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/outpost) -"wK" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "ENG_Outpost_airlock_control"; - name = "External Access Button"; - pixel_y = 26; - req_one_access = list(10) - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "ENG_Outpost_airlock_exterior"; - locked = 1; - name = "Engineering Outpost External" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/engineering/monitoring) -"wL" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"wM" = ( -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/mining_main/exterior) -"wN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"wO" = ( -/obj/item/towel{ - color = "#00FFFF"; - name = "cyan towel"; - pixel_x = 2; - pixel_y = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_5) -"wP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/emp_proof{ - c_tag = "ENG - Outpost Foyeur"; - dir = 10; - name = "Engineering Outpost"; - network = list("Engineering") - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/light_switch{ - pixel_x = -21; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"wQ" = ( -/obj/structure/table/bench/standard, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/search_and_rescue) -"wS" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"wT" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"wU" = ( -/obj/structure/toilet, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_3) -"wV" = ( -/obj/structure/closet/secure_closet{ - name = "hunting locker"; - req_one_access = list(1,43) - }, -/obj/item/gun/energy/netgun, -/obj/item/beartrap, -/obj/item/material/knife/tacknife/survival, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/item/clothing/shoes/boots/jungle, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Containment Pen"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"wW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"wX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"wY" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/reactor_smes) -"wZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"xb" = ( -/obj/machinery/vending/fishing{ - dir = 8 - }, -/obj/effect/floor_decal/corner/orange{ - dir = 6 - }, -/obj/effect/floor_decal/corner/orange{ - dir = 9 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"xd" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"xe" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"xh" = ( -/turf/simulated/floor/water/shoreline{ - dir = 6 - }, -/area/surface/outside/ocean) -"xi" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/security/smes) -"xk" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "mining1_airlock_control"; - name = "External Access Button"; - pixel_y = -26; - req_one_access = list(48) - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "mining1_airlock_exterior"; - locked = 1; - name = "Mining Outpost External" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/mining_main/storage) -"xl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"xm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_1) -"xn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"xo" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"xp" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"xq" = ( -/turf/simulated/floor/wood{ - nitrogen = 93.7835; - outdoors = 1; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outside/path/plains) -"xr" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"xs" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"xt" = ( -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 22 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"xv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Airlock 3" - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/left_three) -"xw" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"xx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"xy" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "ENG - Outpost Reactor Room South"; - dir = 4; - name = "Reactor_Room"; - network = list("Engine") - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"xz" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor) -"xA" = ( -/obj/structure/bed/chair, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/landmark/start{ - name = "Explorer" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"xB" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/mineral/input, -/obj/structure/sign/warning/moving_parts{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/refinery) -"xC" = ( -/obj/item/stack/material/wood, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"xD" = ( -/obj/machinery/mineral/input, -/obj/machinery/conveyor{ - id = "mining_internal" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"xE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"xF" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"xG" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/search_and_rescue) -"xH" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/landing_south) -"xI" = ( -/obj/machinery/telecomms/relay/preset/southerncross/cave, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/tcomm) -"xJ" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"xK" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"xL" = ( -/turf/simulated/floor/water, -/area/surface/outside/ocean) -"xM" = ( -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction/yjunction, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"xN" = ( -/obj/structure/table/standard, -/obj/item/soap/nanotrasen, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_5) -"xO" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"xP" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/two) -"xQ" = ( -/obj/structure/fence/end, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"xR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Central Hall" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"xS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_5) -"xT" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"xU" = ( -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 5; - pixel_y = 2 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"xV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"xW" = ( -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"xY" = ( -/obj/structure/table/glass, -/obj/item/inflatable{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/inflatable{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/inflatable{ - pixel_x = -2; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"xZ" = ( -/obj/structure/table/bench/standard, -/obj/random/maintenance/engineering, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/security/maa) -"ya" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"yb" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"yc" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"yd" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gateway) -"ye" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_alc, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"yg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"yh" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"yi" = ( -/obj/structure/table/bench/wooden, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"yj" = ( -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/plains/normal) -"yk" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor) -"yl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/gateway) -"ym" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_1) -"yn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"yo" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/structure/dogbed, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"yp" = ( -/obj/structure/fence{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/outpost) -"yq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"ys" = ( -/obj/structure/table/reinforced, -/obj/item/tool/crowbar/red, -/obj/item/flashlight, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_two) -"yt" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 9; - icon_state = "2-9" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"yu" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_three) -"yv" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/normal) -"yx" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_three) -"yy" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"yz" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"yA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Airlock 2" - }, -/obj/item/melee/umbrella{ - color = "#7c0d0d" - }, -/obj/item/melee/umbrella{ - color = "#7c0d0d" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_two) -"yB" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 8; - start_pressure = 4559.63 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"yC" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/light_switch{ - pixel_x = -21; - pixel_y = -21 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"yD" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"yE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"yF" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"yG" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"yH" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/mining_main/exterior) -"yI" = ( -/obj/machinery/atmospherics/pipe/tank/phoron{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"yJ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_two) -"yK" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"yL" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/dorms/dorm_5) -"yM" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"yN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"yO" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/path/plains) -"yP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "main1_airlock_control"; - pixel_x = -26; - pixel_y = -26; - tag_exterior_door = "main1_airlock_exterior"; - tag_interior_door = "main1_airlock_interior" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"yQ" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main) -"yR" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"yS" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"yT" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/normal) -"yV" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/structure/window/basic, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/item/mining_scanner, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/head/helmet/space/void/mining, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"yW" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/security/maa) -"yX" = ( -/obj/structure/sign/warning/radioactive, -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/monitoring) -"yY" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"yZ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"za" = ( -/turf/simulated/floor/water/shoreline{ - dir = 4 - }, -/area/surface/outside/ocean) -"zb" = ( -/obj/structure/sign/warning/radioactive, -/turf/simulated/wall/r_wall, -/area/surface/outpost/engineering/atmos_room) -"zc" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/obj/random/soap, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_4) -"zd" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"zf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"zg" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/mountains) -"zh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"zi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"zj" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/engineering/atmos_room) -"zk" = ( -/obj/machinery/mineral/unloading_machine, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/mining_main/exterior) -"zl" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"zm" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/table/glass, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/item/reagent_containers/food/drinks/britcup, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"zn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"zo" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"zp" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/surface/outside/plains/normal; - base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse; - landmark_tag = "outpost_w"; - name = "West Outpost Perimiter" - }, -/turf/simulated/floor/outdoors/grass/sif/planetuse{ - tree_chance = 0 - }, -/area/surface/outside/plains/normal) -"zq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"zr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"zs" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/structure/coatrack, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"zt" = ( -/obj/item/stool, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"zu" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"zv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"zw" = ( -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/normal) -"zx" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"zz" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"zB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"zC" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/surface/outside/plains/normal; - base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse; - landmark_tag = "outpost_s"; - name = "South of Outpost" - }, -/turf/simulated/floor/outdoors/grass/sif/planetuse{ - tree_chance = 0 - }, -/area/surface/outside/plains/normal) -"zD" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "dorm_tint6" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "dorm_tint6" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/dorms/dorm_6) -"zE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/recharger, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/item/tool/wrench, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"zF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"zH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"zI" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Fuel Storage Room"; - req_one_access = list(11) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/storage) -"zJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"zL" = ( -/obj/structure/table/steel, -/obj/random/tech_supply, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"zM" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "civ1_airlock_control"; - name = "Internal Access Button"; - pixel_x = -26; - pixel_y = 5 - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "civ1_airlock_interior"; - locked = 1; - name = "Civilian Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/civilian/fishing) -"zN" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"zO" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"zP" = ( -/obj/structure/table/steel, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/storage/toolbox/electrical, -/obj/item/clothing/shoes/galoshes, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/smes) -"zQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"zR" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "dorm_tint5" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "dorm_tint5" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/dorms/dorm_5) -"zS" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/dorms/dorm_4) -"zU" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/wall) -"zV" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor) -"zW" = ( -/obj/machinery/vending/snack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"zX" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_north) -"zY" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/purpledouble, -/turf/simulated/floor/carpet/purcarpet, -/area/surface/outpost/main/dorms/dorm_2) -"zZ" = ( -/obj/structure/fence/corner{ - dir = 9 - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/outpost) -"Aa" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/left_two) -"Ac" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Ad" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Ae" = ( -/obj/machinery/light, -/obj/item/book/manual/rust_engine, -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"Af" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"Ag" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"Ah" = ( -/obj/structure/table/woodentable, -/obj/item/deck/cards, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"Ai" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"Aj" = ( -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"Ak" = ( -/obj/effect/map_effect/portal/line/side_a, -/obj/effect/map_effect/perma_light/concentrated, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/mining_main/exterior) -"Am" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/disposal, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/smes) -"An" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"Ao" = ( -/turf/simulated/floor/water, -/area/surface/outside/river/faxalven) -"Ap" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Aq" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Ar" = ( -/obj/structure/table/steel, -/obj/item/storage/box/backup_kit{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/box/cdeathalarm_kit, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"As" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/engineering/smes) -"Au" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Av" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/structure/flora/pottedplant/xmas, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Aw" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/random/powercell, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "SUBS - Right Wing"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"Az" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "main6_airlock_control"; - pixel_x = 26; - pixel_y = 26; - tag_exterior_door = "main6_airlock_exterior"; - tag_interior_door = "main6_airlock_interior" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"AA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"AB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"AC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"AD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"AE" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"AF" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"AG" = ( -/obj/structure/table/steel, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/blue, -/obj/item/storage/toolbox/electrical, -/turf/simulated/floor/plating, -/area/surface/outpost/security/smes) -"AH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"AI" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"AJ" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 6 - }, -/obj/item/tool/wrench, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"AK" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/mining_main/refinery) -"AL" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/path/plains) -"AM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"AN" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"AO" = ( -/obj/effect/floor_decal/borderfloor/full, -/obj/effect/floor_decal/industrial/danger/full, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/shieldwallgen{ - anchored = 1; - req_access = list(1,43); - state = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"AP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/item/glass_jar, -/obj/structure/table/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"AQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"AR" = ( -/obj/structure/table/steel, -/obj/random/tool, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"AT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"AU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"AV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"AW" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/tcomm) -"AX" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main) -"AY" = ( -/obj/effect/landmark/start{ - name = "Search and Rescue" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"AZ" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"Ba" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Bb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Bc" = ( -/obj/structure/catwalk, -/obj/machinery/power/terminal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"Bd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"Be" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"Bf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Bg" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"Bh" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/emergency_storage) -"Bi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Bj" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Bk" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/table/bench/steel, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/smes) -"Bl" = ( -/turf/simulated/wall, -/area/surface/outpost/main/emergency_storage/one) -"Bm" = ( -/turf/simulated/wall, -/area/surface/outpost/main/dorms/dorm_5) -"Bn" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/holofloor/wood, -/area/surface/outpost/main/gym) -"Bo" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Bp" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"Bq" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"Br" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/stairs{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/fishing) -"Bs" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Bt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/effect/floor_decal/borderfloor/corner, -/obj/item/extinguisher/mini, -/obj/effect/floor_decal/corner/yellow/bordercorner, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"Bu" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/fitness/punching_bag/clown, -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Bv" = ( -/obj/structure/catwalk, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/smes) -"Bw" = ( -/obj/structure/boxingrope{ - dir = 4 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"Bx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"BA" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"BB" = ( -/obj/machinery/telecomms/relay/preset/southerncross/planet, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/tcomm) -"BC" = ( -/turf/simulated/floor/holofloor/wood, -/area/surface/outpost/main/gym) -"BD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"BE" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/sauna) -"BF" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"BG" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/tool/crowbar/red, -/obj/item/flashlight, -/obj/machinery/light, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Landing South Airlock"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_south) -"BH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/obj/machinery/camera/network/civilian{ - c_tag = "CO - Airlock Access 1" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"BI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Landing North Airlock Access" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"BJ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/sauna) -"BK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/tools) -"BL" = ( -/obj/structure/table/woodentable, -/obj/item/toy/bouquet, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"BM" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"BN" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/ender{ - icon_state = "1-2"; - id = "surface_cave" - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/exterior) -"BO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_3) -"BP" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"BQ" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/path/plains) -"BR" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"BS" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"BT" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/landing_north) -"BU" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/water/deep/pool, -/area/surface/outpost/civilian/pool) -"BV" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"BW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"BX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"BZ" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Cb" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main3_airlock_exterior"; - locked = 1; - name = "Landing South External" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/landing_south) -"Cc" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Search and Rescue Starboard"; - dir = 8 - }, -/obj/structure/window/reinforced{ - health = 1e+006; - req_access = list(5) - }, -/obj/structure/table/rack, -/obj/item/storage/belt/medical/emt, -/obj/item/storage/belt/medical/emt, -/obj/item/storage/belt/medical/emt, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/southleft{ - dir = 8; - name = "EMT Supplies"; - req_access = list(5); - req_one_access = list(5,43) - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"Cd" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central6, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/landing_north) -"Ce" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"Cf" = ( -/turf/simulated/floor/water, -/area/surface/outside/river/indalsalven) -"Cg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"Ch" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Reactor Room External Access"; - req_one_access = list(11) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/surface/outpost/engineering/monitoring) -"Ci" = ( -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outside/plains/mountains) -"Ck" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"Cl" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/fusion_core/mapped{ - id_tag = "Outpost Fusion Core" - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"Cm" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Cn" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/laundry) -"Co" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/effect/landmark{ - name = "JoinLateGateway" - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"Cp" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/restroom) -"Cr" = ( -/obj/structure/closet/crate{ - name = "Tritium Storage" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/item/fuel_assembly/tritium, -/obj/item/fuel_assembly/tritium, -/obj/item/fuel_assembly/tritium, -/obj/machinery/light_switch{ - pixel_x = -11; - pixel_y = 21 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/storage) -"Cs" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Cu" = ( -/obj/structure/sign/warning/radioactive, -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/auxiliary_storage) -"Cv" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Cw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Cx" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"Cy" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Hallway 5"; - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Cz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"CA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"CB" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 7; - tag_north = 2; - tag_south = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"CC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"CD" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"CE" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Emergency Storage" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/civilian/emergency_storage) -"CF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"CG" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"CH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/visible/supply, -/obj/machinery/atmospherics/pipe/manifold4w/visible/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"CI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"CM" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"CN" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"CO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_6) -"CP" = ( -/obj/structure/closet/l3closet/janitor, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"CQ" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/storage) -"CR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"CS" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/computer/cryopod/gateway{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/wall) -"CT" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/right_one) -"CU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"CW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"CX" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"CY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"CZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"Db" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Dc" = ( -/turf/simulated/wall, -/area/surface/outpost/mining_main/exterior) -"Dd" = ( -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"De" = ( -/obj/machinery/mineral/unloading_machine, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"Df" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Dh" = ( -/obj/structure/fence{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"Di" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Dj" = ( -/obj/machinery/atmospherics/unary/cryo_cell{ - layer = 3.3 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/search_and_rescue) -"Dk" = ( -/obj/structure/closet, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/orange/bordercorner2{ - dir = 5 - }, -/obj/item/storage/backpack/dufflebag, -/obj/item/clothing/shoes/boots/winter/climbing, -/obj/item/clothing/shoes/boots/winter/climbing, -/obj/machinery/camera/network/civilian{ - c_tag = "CO - Fishing 1"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Dl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/machinery/light{ - dir = 8 - }, -/obj/random/maintenance/engineering, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"Dn" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_three) -"Do" = ( -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"Dp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"Dq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"Dr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Ds" = ( -/obj/effect/map_effect/portal/master/side_a/plains_to_caves, -/turf/simulated/wall/solidrock, -/area/surface/outside/plains/mountains) -"Dt" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Du" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 9 - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"Dv" = ( -/turf/simulated/wall, -/area/surface/outpost/main/dorms/dorm_6) -"Dw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Dx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/engineering{ - name = "SMES Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/gen_room/smes_left) -"Dz" = ( -/obj/structure/closet/jcloset, -/obj/item/soap/nanotrasen, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"DA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass/hidden, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"DB" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"DC" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"DD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/machinery/vending/loadout/gadget, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"DE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"DG" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 1 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"DH" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"DJ" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"DK" = ( -/obj/machinery/conveyor{ - id = "mining_internal" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"DL" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/random/maintenance/engineering, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"DM" = ( -/obj/structure/closet/lasertag/blue, -/obj/item/stack/flag/blue, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"DN" = ( -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/drinks/bottle/wine, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"DP" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall) -"DQ" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/normal) -"DT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"DU" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"DW" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/camera/emp_proof{ - c_tag = "ENG - Outpost SMES Room"; - dir = 10; - name = "Engineering_Outpost"; - network = list("Engineering") - }, -/obj/machinery/light_switch{ - pixel_x = -21; - pixel_y = -11 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/reactor_smes) -"DX" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_three) -"DY" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_6) -"DZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Ea" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atm{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Eb" = ( -/obj/structure/fence, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/outpost) -"Ec" = ( -/obj/effect/step_trigger/teleporter/bridge/north_to_south, -/obj/structure/railing, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/normal) -"Ed" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/fishing) -"Ee" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/radio{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_three) -"Ef" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Eg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet, -/area/surface/outpost/main/dorms/dorm_6) -"Ei" = ( -/obj/structure/table/steel, -/obj/item/tool/crowbar, -/obj/item/tool/crowbar, -/obj/item/storage/toolbox/mechanical, -/obj/item/multitool, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/corridor/right_upper) -"Ej" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"Ek" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/surface/outpost/security/maa) -"El" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"Em" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"En" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange/bordercorner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Eo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/tcomm) -"Ep" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/left_one) -"Eq" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/wall) -"Er" = ( -/obj/machinery/telecomms/relay/preset/southerncross/wild, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/tcomm) -"Et" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/reddouble, -/turf/simulated/floor/carpet, -/area/surface/outpost/main/dorms/dorm_6) -"Eu" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/mining_main/exterior) -"Ev" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"Ew" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Ex" = ( -/obj/effect/landmark{ - name = "bluespacerift" - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/path/plains) -"Ey" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/normal) -"EA" = ( -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"EB" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"EC" = ( -/obj/machinery/atm{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"ED" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"EE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"EF" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"EG" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/construction_area) -"EH" = ( -/obj/structure/table/woodentable, -/obj/item/material/kitchen/utensil/fork/plastic{ - pixel_x = 7 - }, -/obj/item/reagent_containers/food/snacks/pastatomato, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"EI" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"EJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Reactor Room Internal Access"; - req_one_access = list(11) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/techfloor/grid, -/area/surface/outpost/engineering/reactor_smes) -"EK" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"EL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"EM" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/white/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"EN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"EO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"EP" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/zone_divider, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"EQ" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/corridor/right_lower) -"ER" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"ES" = ( -/obj/machinery/teleport/station, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/teleporter) -"ET" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"EU" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"EV" = ( -/obj/structure/table/steel, -/obj/item/stack/material/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/cable_coil, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/corridor/right_upper) -"EW" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/restroom) -"EX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"EY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/random/action_figure, -/obj/item/coin/silver, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"EZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Fa" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Fb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"Fc" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_north" - }, -/obj/machinery/mineral/input, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/mining_main/exterior) -"Fd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"Fe" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"Ff" = ( -/obj/machinery/cablelayer, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"Fg" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"Fi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"Fj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Fk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"Fl" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gym) -"Fm" = ( -/obj/structure/closet/secure_closet{ - name = "hunting locker"; - req_one_access = list(1,43) - }, -/obj/item/gun/energy/netgun, -/obj/item/beartrap, -/obj/item/material/knife/tacknife/survival, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/item/clothing/shoes/boots/jungle, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"Fn" = ( -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"Fo" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Fp" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Fq" = ( -/obj/machinery/disposal, -/obj/machinery/button/remote/airlock{ - id = "dorm6"; - name = "Door Lock Control"; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"Fr" = ( -/obj/structure/table/reinforced, -/obj/item/tool/crowbar/red, -/obj/item/flashlight, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_one) -"Fs" = ( -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/drinks/h_chocolate, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"Ft" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/right_one) -"Fu" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/corner/brown/full, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"Fv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Fy" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 6 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Laundry 2"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Fz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"FA" = ( -/obj/item/banner/nt, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall) -"FB" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 4 - }, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"FC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"FD" = ( -/obj/effect/step_trigger/teleporter/bridge/north_to_south, -/obj/structure/railing, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/indalsalven) -"FE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"FF" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "main7_airlock_control"; - pixel_x = 26; - pixel_y = -26; - tag_exterior_door = "main7_airlock_exterior"; - tag_interior_door = "main7_airlock_interior" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"FH" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall) -"FI" = ( -/obj/structure/table/reinforced, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/item/gps/security, -/turf/simulated/floor/holofloor/tiled/dark, -/area/surface/outpost/security/maa) -"FJ" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_2) -"FK" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/refinery) -"FL" = ( -/turf/simulated/wall, -/area/surface/outpost/main/dorms/dorm_3) -"FM" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"FN" = ( -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"FO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/symbol/em{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"FP" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"FQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass/hidden, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"FR" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/civilian/pool) -"FS" = ( -/obj/structure/table/steel, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"FU" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/landing_north) -"FV" = ( -/obj/structure/boxingrope{ - dir = 8 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"FW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"FX" = ( -/obj/item/banner/nt, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"FY" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/gen_room/smes_right) -"FZ" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/structure/disposalpipe/segment, -/obj/random/powercell, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"Ga" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/refinery) -"Gb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"Gc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Gd" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/right_one) -"Ge" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Gf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "civ2_airlock_control"; - pixel_x = 26; - pixel_y = 26; - tag_exterior_door = "civ2_airlock_exterior"; - tag_interior_door = "civ2_airlock_interior" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Gg" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Gh" = ( -/obj/random/trash, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"Gi" = ( -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Left Wing"; - charge = 5e+006; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_left) -"Gj" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"Gk" = ( -/obj/structure/snowman/spider, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"Gl" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/random/powercell, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "SUBS - Security Checkpoint" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security/smes) -"Gm" = ( -/obj/structure/undies_wardrobe, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Gn" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"Gp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"Gq" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/landing_north) -"Gr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"Gs" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/ocean) -"Gt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Gu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Gv" = ( -/turf/simulated/floor/water/shoreline/corner{ - dir = 4 - }, -/area/surface/outside/ocean) -"Gw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Gx" = ( -/obj/structure/table/steel, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/storage/toolbox/electrical, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_left) -"Gy" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Gz" = ( -/obj/structure/ore_box, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"GA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"GC" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/corridor/right_upper) -"GD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"GE" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/path/plains) -"GF" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"GG" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"GH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"GI" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/reactor_smes) -"GJ" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/right_two) -"GK" = ( -/obj/effect/floor_decal/stairs{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/fishing) -"GL" = ( -/obj/machinery/door/airlock/hatch{ - icon_state = "door_locked"; - id_tag = "engine_access_hatch"; - locked = 1; - name = "Reactor Core"; - rad_resistance = 150; - req_access = list(11) - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/engineering/reactor_smes) -"GM" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"GN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"GO" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/closet/secure_closet/engineering_welding, -/obj/random/maintenance/engineering, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"GP" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/tools) -"GQ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"GR" = ( -/obj/effect/landmark/event_spawn/dronepod_landing, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/normal) -"GT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Mining Storage"; - req_one_access = list(48) - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/uxstorage) -"GU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"GV" = ( -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"GW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"GX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"GY" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/item/flashlight/lamp, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"GZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"Ha" = ( -/obj/effect/step_trigger/teleporter/bridge/east_to_west, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water, -/area/surface/outside/river/faxalven) -"Hb" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/security) -"Hc" = ( -/obj/machinery/pipedispenser/disposal, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"Hd" = ( -/obj/structure/closet/wardrobe/black, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"He" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Hf" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/head/radiation, -/obj/item/clothing/head/radiation, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/suit/radiation, -/obj/item/geiger, -/obj/item/geiger, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/atmos_room) -"Hg" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/right_two) -"Hh" = ( -/turf/simulated/wall, -/area/surface/outpost/main/gen_room/smes_left) -"Hi" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/white/bordercorner2, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Hj" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security/maa) -"Hk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Hl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Hm" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Hn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"Ho" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/tools) -"Hp" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"Hq" = ( -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"Hr" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/symbol/gu{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Hs" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"Ht" = ( -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Hu" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/fishing) -"Hv" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"Hw" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"Hx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_2) -"Hy" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/restroom) -"Hz" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/gen_room/smes_right) -"HA" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"HB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/teleporter) -"HC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"HD" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/right_one) -"HE" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/left_one) -"HF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 6; - d2 = 8; - icon_state = "6-8" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"HG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"HH" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 8; - pixel_x = -5 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"HI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"HK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"HL" = ( -/obj/machinery/shower, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_5) -"HM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"HN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Hallway 2"; - dir = 4; - name = "security camera" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"HO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"HP" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/right_two) -"HQ" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"HR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"HS" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"HU" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"HV" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/river/indalsalven) -"HW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"HX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"HY" = ( -/obj/item/towel{ - color = "#FF6666"; - name = "light red towel" - }, -/obj/structure/sink{ - pixel_y = 16 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_6) -"HZ" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Ib" = ( -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/storage) -"Ic" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Id" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Ie" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/fishing) -"If" = ( -/obj/machinery/door/airlock{ - id_tag = "dorm1"; - name = "Dorm 1" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_1) -"Ig" = ( -/turf/simulated/floor/water/deep/ocean, -/area/surface/outside/ocean) -"Ih" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"Ii" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/mining_main) -"Ij" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"Ik" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden{ - dir = 2 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Il" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"Im" = ( -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Mining"; - charge = 5e+006; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"In" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"Ip" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/exploration) -"Iq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Ir" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/landing_south) -"Is" = ( -/obj/item/towel{ - color = "#90ee90"; - name = "green towel" - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_3) -"It" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"Iu" = ( -/obj/machinery/disposal, -/obj/machinery/button/remote/airlock{ - id = "dorm2"; - name = "Door Lock Control"; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"Iv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"Iw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Ix" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/exploration/containment) -"Iy" = ( -/obj/machinery/mineral/processing_unit_console, -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/refinery) -"Iz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"IA" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"IC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"ID" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main4_airlock_exterior"; - locked = 1; - name = "Landing North External" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/landing_north) -"IE" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/tools) -"IF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_3) -"IG" = ( -/obj/effect/overmap/visitable/planet/Sif, -/turf/simulated/mineral/sif, -/area/surface/outside/plains/mountains) -"IH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"II" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/search_and_rescue) -"IJ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"IK" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/clothing/mask/gas, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_two) -"IM" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"IN" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Laundry" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/machinery/door/firedoor/multi_tile/glass, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/laundry) -"IO" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"IP" = ( -/obj/structure/closet/secure_closet/guncabinet/phase{ - req_one_access = null - }, -/obj/item/clothing/accessory/holster/hip, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"IQ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor/left_lower) -"IR" = ( -/obj/structure/closet/secure_closet/explorer, -/obj/item/clothing/accessory/holster/hip, -/obj/item/cataloguer, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"IS" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"IT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"IU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"IV" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central4, -/obj/machinery/conveyor_switch/oneway{ - id = "mining_internal"; - name = "mining conveyor" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"IW" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"IX" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "main2_airlock_control"; - pixel_x = -26; - pixel_y = -26; - tag_exterior_door = "main2_airlock_exterior"; - tag_interior_door = "main2_airlock_interior" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"IY" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/item/packageWrap, -/obj/item/packageWrap, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 5 - }, -/obj/machinery/button/remote/blast_door{ - id = "production1"; - name = "Production Shutters"; - pixel_x = 22; - req_one_access = list(48) - }, -/obj/item/hand_labeler, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"IZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Ja" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Jb" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "SUBS - Civilian"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/smes) -"Jc" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"Jd" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 10 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Teleporter"; - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"Je" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_three) -"Jf" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/hologram/holopad, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Jg" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_one) -"Jh" = ( -/obj/machinery/door/airlock{ - id_tag = "dorm2"; - name = "Dorm 2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_2) -"Ji" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Jj" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Jk" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "SMES Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/civilian/smes) -"Jl" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Jm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Jn" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/restroom) -"Jo" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main3_airlock_interior"; - locked = 1; - name = "Landing South Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/landing_south) -"Jq" = ( -/turf/simulated/wall, -/area/surface/outpost/main/corridor) -"Js" = ( -/obj/structure/table/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/recharger, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"Jt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Ju" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Jv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"Jw" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/security) -"Jx" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/sauna) -"Jy" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "mining2_airlock_control"; - pixel_x = -26; - pixel_y = -26; - req_one_access = list(48,10); - tag_exterior_door = "mining2_airlock_exterior"; - tag_interior_door = "mining2_airlock_interior" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"Jz" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"JA" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/sauna) -"JB" = ( -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Teleporter"; - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"JC" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"JD" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"JE" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/water/pool, -/area/surface/outpost/civilian/pool) -"JF" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"JG" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_south) -"JH" = ( -/obj/structure/sign/warning/caution{ - desc = "This appears to be a sign warning people that the other side is dangerous. It also says that NanoTrasen cannot guarantee your safety beyond this point."; - name = "\improper WARNING: NO ACCESS" - }, -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/surface/outpost/wall) -"JJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"JK" = ( -/obj/structure/sign/warning/radioactive, -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/reactor_smes) -"JL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"JM" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"JN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"JO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/obj/machinery/camera/network/mining{ - c_tag = "PO - Mining Storage"; - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"JP" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_two) -"JQ" = ( -/obj/effect/step_trigger/teleporter/bridge/south_to_north, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/indalsalven) -"JR" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"JS" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/white/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"JT" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/smes) -"JU" = ( -/obj/structure/table/standard, -/obj/item/soap, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_3) -"JV" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 8 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"JW" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/gen_room/smes_right) -"JX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/surface/outpost/main/dorms/dorm_4) -"JY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"JZ" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges, -/obj/effect/zone_divider, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"Ka" = ( -/turf/simulated/floor/water/shoreline{ - dir = 10 - }, -/area/surface/outside/ocean) -"Kb" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/laundry) -"Kd" = ( -/turf/simulated/floor/water/shoreline/corner, -/area/surface/outside/ocean) -"Ke" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/civilian/sauna) -"Kf" = ( -/obj/structure/table/steel, -/obj/random/junk, -/obj/random/maintenance/engineering, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"Kg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Kh" = ( -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_x = 5; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/civilian/sauna) -"Ki" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"Kj" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"Kk" = ( -/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"Kl" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Km" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Kn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"Ko" = ( -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Kp" = ( -/obj/effect/landmark/start{ - name = "Explorer" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"Kr" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Reactor Room External Access"; - req_one_access = list(11) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/techfloor/grid, -/area/surface/outpost/engineering/atmos_room) -"Ks" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"Kt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/landing_south) -"Ku" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/gateway) -"Kv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"Kw" = ( -/obj/effect/step_trigger/teleporter/bridge/west_to_east, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/indalsalven) -"Kx" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Ky" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gateway) -"Kz" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant/bamboo, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"KA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"KB" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/surface/outpost/wall) -"KC" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"KD" = ( -/obj/structure/table/bench/standard, -/obj/item/radio/intercom/department/security{ - dir = 1; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/security/maa) -"KE" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/obj/effect/overlay/snow/floor, -/obj/effect/zone_divider, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"KF" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"KG" = ( -/obj/structure/table/rack/shelf, -/turf/simulated/floor/holofloor/tiled/dark, -/area/surface/outpost/security/maa) -"KH" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"KI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/oracarpet, -/area/surface/outpost/main/dorms/dorm_1) -"KK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"KL" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"KM" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"KN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/machinery/door/firedoor/multi_tile/glass, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Production Area"; - req_one_access = list(48) - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main) -"KO" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"KP" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/engineering/atmos_room) -"KQ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"KR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"KS" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"KT" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"KU" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Emergency Storage" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/mining_main/emergencystorage) -"KV" = ( -/obj/structure/bed/chair/comfy/black, -/obj/machinery/button/windowtint{ - id = "dorm_tint6"; - pixel_x = -22 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"KW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/power/terminal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_left) -"KX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"KY" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"KZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"La" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"Lb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"Lc" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"Ld" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/engine{ - dir = 1; - external_pressure_bound = 100; - external_pressure_bound_default = 0; - frequency = 1438; - icon_state = "map_vent_in"; - id_tag = "rust_cooling_out"; - initialize_directions = 1; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"Le" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/orange/bordercorner2{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Lf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"Lg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Lh" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"Li" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Lj" = ( -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"Lk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Ll" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/tools) -"Lm" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/emergency_storage) -"Ln" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/boxingrope{ - dir = 1 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"Lo" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Lp" = ( -/obj/structure/table/steel, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/storage/toolbox/electrical, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"Lq" = ( -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/radproof{ - dir = 4; - rad_resistance = 150 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/monitoring) -"Lr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"Ls" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Lt" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"Lu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering{ - name = "Atmos Room"; - req_one_access = list(12) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/mining_main/tools) -"Lv" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/surface/outpost/main/dorms/dorm_4) -"Lw" = ( -/obj/structure/sign/warning/radioactive, -/turf/simulated/wall/r_wall, -/area/surface/outpost/engineering/monitoring) -"Lx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Ly" = ( -/obj/structure/fence/end{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"Lz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"LA" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"LC" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall, -/area/surface/outpost/main/gen_room/smes_right) -"LD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/melee/umbrella{ - color = "#7c0d0d" - }, -/obj/item/melee/umbrella{ - color = "#7c0d0d" - }, -/obj/item/melee/umbrella{ - color = "#7c0d0d" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_south) -"LE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/right_one) -"LF" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "sauna_tint1" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/sauna) -"LG" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"LH" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"LI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"LJ" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/window/basic, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_south) -"LK" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "main6_airlock_control"; - name = "Internal Access Button"; - pixel_x = 26; - pixel_y = 5 - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main6_airlock_interior"; - locked = 1; - name = "Main Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/left_one) -"LL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"LM" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"LN" = ( -/turf/simulated/wall, -/area/surface/outpost/civilian/emergency_storage) -"LO" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/vending/fitness{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"LP" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/obj/structure/flora/pottedplant/flower, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"LQ" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"LR" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"LS" = ( -/obj/effect/step_trigger/teleporter/bridge/west_to_east, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water, -/area/surface/outside/river/faxalven) -"LT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"LU" = ( -/obj/structure/cable/blue, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - operating = 0; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = -10 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"LV" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Long Range Teleporter Access" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/gateway) -"LW" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"LX" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"LY" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"LZ" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"Ma" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/corridor/right_upper) -"Mb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"Mc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Me" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/table/glass, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"Mf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Mg" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor/right_lower) -"Mh" = ( -/turf/simulated/floor/water/shoreline{ - dir = 5 - }, -/area/surface/outside/ocean) -"Mi" = ( -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Mj" = ( -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"Mk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"Ml" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Mm" = ( -/obj/structure/table/bench/standard, -/obj/item/radio/intercom/department/medbay{ - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/search_and_rescue) -"Mn" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"Mo" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"Mp" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Mq" = ( -/obj/item/clothing/under/bathrobe, -/obj/item/clothing/under/bathrobe, -/obj/item/clothing/under/bathrobe, -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Mr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"Ms" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Mt" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"Mu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security/maa) -"Mv" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"Mx" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering{ - name = "SMES Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/gen_room/smes_right) -"My" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Gym" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/gym) -"Mz" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"MA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"MB" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Medical Supplies"; - req_access = null; - req_one_access = list(5,43) - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"MC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"MD" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/zone_divider, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"ME" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/laundry) -"MF" = ( -/obj/structure/catwalk, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security/smes) -"MG" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/one) -"MH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"MI" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"MJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"MK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"ML" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/refinery) -"MM" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/corner/orange{ - dir = 9 - }, -/obj/effect/floor_decal/corner/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"MN" = ( -/turf/simulated/wall, -/area/surface/outpost/main/laundry) -"MO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"MP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"MQ" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"MR" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"MT" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/machinery/door/blast/radproof{ - dir = 4; - rad_resistance = 150 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/monitoring) -"MU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/machinery/photocopier/faxmachine{ - department = "Outpost Laundry" - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"MV" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/pool) -"MW" = ( -/obj/structure/table/steel, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = -22 - }, -/obj/structure/cable/blue, -/obj/item/storage/toolbox/electrical, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"MX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"MY" = ( -/obj/machinery/atmospherics/binary/circulator{ - anchored = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"MZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Na" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/outpost) -"Nb" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/restroom) -"Nc" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/highsecurity{ - name = "Telecommunication Hub"; - req_one_access = list(61) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/tcomm) -"Nd" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"Ne" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Nf" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"Nh" = ( -/obj/machinery/camera/network/civilian{ - c_tag = "CO - Sauna"; - dir = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Ni" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_one) -"Nj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Nk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Hallway 3"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Nm" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Nn" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/fishing) -"No" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"Np" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"Nq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"Ns" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Nt" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Nu" = ( -/obj/machinery/disposal, -/obj/machinery/button/remote/airlock{ - id = "dorm5"; - name = "Door Lock Control"; - pixel_y = -25; - specialfunctions = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"Nv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Nw" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_three) -"Nx" = ( -/obj/structure/table/steel, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"Ny" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/smes) -"Nz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_4) -"NA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"NB" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/left_two) -"NC" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/ore_box, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"NE" = ( -/obj/machinery/disposal, -/obj/machinery/button/remote/airlock{ - id = "dorm4"; - name = "Door Lock Control"; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"NF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"NG" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/right_three) -"NH" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"NI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"NJ" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"NK" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"NL" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/random/powercell, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room) -"NM" = ( -/obj/structure/fence/end{ - dir = 1 - }, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/outpost) -"NN" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/refinery) -"NO" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/janitor) -"NP" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"NQ" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"NR" = ( -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/exterior) -"NU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"NV" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/landing_north) -"NW" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"NX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"NY" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall/r_wall, -/area/surface/outpost/engineering/smes) -"NZ" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 5; - d2 = 6; - icon_state = "5-6" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"Oa" = ( -/obj/structure/fence, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/outpost) -"Ob" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"Oc" = ( -/obj/structure/table/bench/steel, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/path/plains) -"Od" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Airlock 2" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_two) -"Oe" = ( -/obj/machinery/door/airlock{ - id_tag = "dorm3"; - name = "Dorm 3" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_3) -"Of" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/security/maa) -"Oh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/structure/closet, -/obj/effect/floor_decal/corner/white/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Oi" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Oj" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"Ol" = ( -/obj/structure/dark_portal/minion, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/outside/plains/mountains) -"Om" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Oo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"Op" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/search_and_rescue) -"Oq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Os" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/water/deep/pool, -/area/surface/outpost/civilian/pool) -"Ot" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Ou" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/white/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Ov" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"Ow" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_6) -"Ox" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "sec1_airlock_exterior"; - locked = 1; - name = "Security Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "sec1_airlock_control"; - name = "External Access Button"; - pixel_y = 26; - req_one_access = list(1) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/security) -"Oy" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_south) -"OA" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/landing_south) -"OB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "garage1"; - name = "Garage Shutters" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/right_two) -"OC" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/sauna) -"OD" = ( -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Airlock Access 1"; - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"OE" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"OF" = ( -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"OH" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "main1_airlock_control"; - name = "Internal Access Button"; - pixel_x = -6; - pixel_y = -26 - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main1_airlock_interior"; - locked = 1; - name = "Main Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/right_two) -"OI" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "main4_airlock_control"; - pixel_x = -5; - tag_exterior_door = "main4_airlock_exterior"; - tag_interior_door = "main4_airlock_interior" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "main4_airlock_control"; - name = "Internal Access Button"; - pixel_x = 5 - }, -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/landing_north) -"OJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"OK" = ( -/obj/effect/map_effect/portal/master/side_a/plains_to_caves/river, -/turf/simulated/wall/solidrock, -/area/surface/outside/plains/mountains) -"OL" = ( -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"OM" = ( -/obj/structure/fitness/punchingbag, -/turf/simulated/floor/holofloor/wood, -/area/surface/outpost/main/gym) -"ON" = ( -/obj/structure/table/standard, -/obj/item/stack/material/steel{ - amount = 10 - }, -/obj/item/storage/toolbox/mechanical, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"OO" = ( -/obj/item/towel{ - color = "#FF8C00"; - name = "orange towel" - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_1) -"OP" = ( -/obj/structure/showcase/sign{ - desc = "This appears to be a sign warning people that it is dangerous outside. Further reading suggests being properly equipped or acquiring an umbrella."; - name = "WARNING: HAIL STORMS" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"OQ" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/emergencystorage) -"OR" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"OS" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/engineering/monitoring) -"OT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"OU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"OV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"OW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"OX" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 4 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"OY" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/gen_room/smes_left) -"OZ" = ( -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/surface/outpost/main/laundry) -"Pa" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security/smes) -"Pb" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"Pc" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "mining2_airlock_control"; - name = "Internal Access Button"; - pixel_x = -26; - pixel_y = -6; - req_one_access = list(48,10) - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "mining2_airlock_interior"; - locked = 1; - name = "Mining Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/mining_main/tools) -"Pd" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Pe" = ( -/obj/machinery/door/firedoor/multi_tile/glass, -/obj/machinery/door/airlock/multi_tile/metal{ - name = "Sauna" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/sauna) -"Pf" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/water/pool, -/area/surface/outpost/civilian/pool) -"Pg" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/exploration/containment) -"Ph" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/obj/machinery/light{ - dir = 4 - }, -/obj/random/maintenance/engineering, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"Pi" = ( -/obj/structure/fence/cut/large, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/plains/outpost) -"Pj" = ( -/obj/structure/table/bench/marble, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"Pk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/corridor/left_upper) -"Pl" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"Pm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"Po" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 6 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"Ps" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 1 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"Pt" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Pu" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Pv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/engineering{ - name = "SMES Access" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/gen_room) -"Pw" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/engineering/atmos_room) -"Py" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/machinery/light, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"Pz" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"PA" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/item/clothing/gloves/yellow, -/obj/item/multitool{ - pixel_x = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/reactor_smes) -"PC" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"PD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"PE" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"PF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"PG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"PJ" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"PK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/structure/closet/crate, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"PL" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/right_three) -"PM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"PN" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"PO" = ( -/turf/simulated/floor/water/shoreline{ - dir = 1 - }, -/area/surface/outside/ocean) -"PQ" = ( -/obj/machinery/pipedispenser, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"PR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"PS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"PT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/melee/umbrella{ - color = "#7c0d0d" - }, -/obj/item/melee/umbrella{ - color = "#7c0d0d" - }, -/obj/item/melee/umbrella{ - color = "#7c0d0d" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_north) -"PU" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/river/faxalven) -"PV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"PW" = ( -/obj/effect/step_trigger/teleporter/bridge/east_to_west, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/indalsalven) -"PX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/teleporter) -"PY" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall, -/area/surface/outpost/civilian/smes) -"PZ" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Search and Rescue"; - req_one_access = null - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/machinery/door/firedoor/multi_tile/glass, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/search_and_rescue) -"Qa" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Qb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Qd" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Qe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/machinery/door/blast/radproof{ - id = "EngineReactor"; - rad_resistance = 150 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"Qf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/atmos_room) -"Qg" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"Qh" = ( -/obj/structure/table/steel, -/obj/item/storage/belt/utility/full, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"Qi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/roller{ - pixel_x = 8; - pixel_y = 1 - }, -/obj/item/roller{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/item/roller{ - pixel_x = -8; - pixel_y = 1 - }, -/obj/item/roller{ - pixel_x = -8; - pixel_y = 9 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"Qj" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/monitoring) -"Qk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "pen"; - pixel_x = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"Ql" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"Qn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"Qo" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/restroom) -"Qp" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Qq" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/orange/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Qr" = ( -/obj/structure/fence, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"Qt" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"Qu" = ( -/obj/random/junk, -/obj/random/junk, -/obj/random/contraband, -/turf/simulated/floor/plating, -/area/surface/outpost/main/laundry) -"Qv" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Air Tank Bypass Pump" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"Qx" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/heavyduty{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/smes) -"Qy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"Qz" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"QA" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"QB" = ( -/obj/structure/flora/pottedplant/stoutbush, -/obj/machinery/camera/network/security{ - c_tag = "SO - Security Checkpoint"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"QC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"QD" = ( -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Airlock Access 3"; - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"QG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"QH" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"QI" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/heavyduty{ - d2 = 2; - dir = 4; - icon_state = "0-4" - }, -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"QJ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor/right_lower) -"QK" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/wall) -"QL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"QM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"QN" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/emergencystorage) -"QO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/plaque, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/corridor/right_upper) -"QP" = ( -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/auxiliary_storage) -"QQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Hallway 1" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"QR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"QS" = ( -/obj/structure/fence, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"QT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "production1"; - name = "Production Shutters" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/mining_main/refinery) -"QU" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"QV" = ( -/obj/machinery/door/airlock{ - id_tag = "dorm5"; - name = "Dorm 5" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_5) -"QW" = ( -/turf/simulated/wall, -/area/surface/outpost/main/gateway) -"QX" = ( -/obj/item/stool/padded, -/obj/structure/boxingrope{ - dir = 4 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"QY" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/engineering/atmos_room) -"QZ" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/obj/structure/dogbed, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"Ra" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "main3_airlock_control"; - pixel_x = -5; - tag_exterior_door = "main3_airlock_exterior"; - tag_interior_door = "main3_airlock_interior" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "main3_airlock_control"; - name = "Internal Access Button"; - pixel_x = 5 - }, -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/airlock/landing_south) -"Rb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"Rc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"Rd" = ( -/obj/structure/boxingrope{ - dir = 4 - }, -/obj/structure/boxingrope, -/obj/structure/boxingrope{ - dir = 6; - layer = 4.1 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"Re" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Rf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Rg" = ( -/obj/machinery/door/airlock{ - id_tag = "dorm6"; - name = "Dorm 6" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_6) -"Rh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"Ri" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/door/firedoor/glass/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Rj" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Rk" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/one) -"Rl" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/item/handcuffs/fuzzy, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_left) -"Rm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"Rn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"Ro" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"Rp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/remote/blast_door{ - id = "garage1"; - name = "Garage Shutter Control"; - pixel_x = -6; - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"Rq" = ( -/obj/machinery/computer/gyrotron_control{ - id_tag = "Reactor Gyrotron" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 9 - }, -/obj/machinery/button/remote/blast_door/radproof{ - id = "EngineReactor"; - name = "Reactor Blast Doors"; - pixel_x = -25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/reactor_smes) -"Rr" = ( -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outside/lake/romsele) -"Rs" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"Ru" = ( -/obj/machinery/vending/loadout/costume, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Rv" = ( -/obj/machinery/computer/fusion_fuel_control{ - id_tag = "Reactor Fuel Injectors" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/reactor_smes) -"Rw" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/item/tank/emergency/oxygen/double, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/left_two) -"Rx" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/tool/crowbar/red, -/obj/item/flashlight, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Landing North Airlock" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_north) -"Ry" = ( -/obj/item/towel{ - color = "#b5651d"; - name = "brown towel" - }, -/obj/structure/sink{ - pixel_y = 16 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_4) -"Rz" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Hallway 1"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"RA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"RB" = ( -/obj/structure/table/steel, -/obj/item/storage/box/lights/mixed, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/emergency_storage) -"RC" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main5_airlock_exterior"; - locked = 1; - name = "Main Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "main5_airlock_control"; - name = "External Access Button"; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/right_three) -"RD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/table/glass, -/obj/item/clothing/accessory/stethoscope, -/obj/item/defib_kit/loaded, -/obj/item/defib_kit/compact/loaded, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"RE" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor) -"RF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/landing_south) -"RG" = ( -/obj/machinery/vending/loadout/accessory, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"RH" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"RI" = ( -/obj/structure/table/steel, -/obj/structure/closet/hydrant{ - pixel_y = -32 - }, -/obj/item/clothing/glasses/meson, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = -10 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"RJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"RK" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/path/plains) -"RL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"RN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"RO" = ( -/obj/effect/step_trigger/teleporter/bridge/west_to_east, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water, -/area/surface/outside/river/indalsalven) -"RP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/vehicle/train/engine/quadbike{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"RQ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Airlock 1"; - dir = 8 - }, -/obj/item/melee/umbrella{ - color = "#7c0d0d" - }, -/obj/item/melee/umbrella{ - color = "#7c0d0d" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_one) -"RR" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/light/flicker{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/wall) -"RS" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/backpack/parachute{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/backpack/parachute{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/backpack/parachute{ - pixel_x = -6; - pixel_y = -6 - }, -/obj/item/storage/backpack/parachute{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"RT" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 8 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"RV" = ( -/obj/structure/table/glass, -/obj/item/clothing/mask/snorkel, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"RW" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"RX" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/landing_north) -"RY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 6; - d2 = 9; - icon_state = "6-9" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"RZ" = ( -/obj/machinery/computer/teleporter{ - dir = 2 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/surface/outpost/main/teleporter) -"Sa" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Sb" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/uxstorage) -"Sc" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_one) -"Sd" = ( -/obj/machinery/vending/nifsoft_shop{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Se" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"Sf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/blue, -/area/surface/outpost/main/dorms/dorm_5) -"Sg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"Sh" = ( -/obj/machinery/mineral/stacking_unit_console, -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/refinery) -"Si" = ( -/obj/machinery/disposal, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Sj" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_internal" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"Sk" = ( -/obj/effect/zone_divider, -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outpost/wall) -"Sm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Sn" = ( -/obj/machinery/light, -/turf/simulated/floor/holofloor/wood, -/area/surface/outpost/main/gym) -"So" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_two) -"Sp" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Sq" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/box/bodybags, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"Sr" = ( -/obj/structure/fitness/weightlifter, -/turf/simulated/floor/holofloor/wood, -/area/surface/outpost/main/gym) -"Ss" = ( -/obj/structure/janitorialcart, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"Su" = ( -/obj/machinery/computer/secure_data, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"Sx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"Sy" = ( -/obj/machinery/fitness/heavy/lifter, -/turf/simulated/floor/holofloor/wood, -/area/surface/outpost/main/gym) -"Sz" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/landing_south) -"SA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"SB" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"SC" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_two) -"SD" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/white/bordercorner, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"SE" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "sauna_tint2" - }, -/obj/structure/window/reinforced/polarized{ - id = "sauna_tint2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/sauna) -"SF" = ( -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/drinks/bottle/champagne, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"SG" = ( -/obj/effect/landmark{ - name = "JoinLateSifPlains" - }, -/obj/effect/landmark/start{ - name = "Outsider" - }, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall) -"SH" = ( -/obj/structure/table/woodentable, -/obj/item/flame/candle/candelabra, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_1) -"SJ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main) -"SK" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/tools) -"SL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Right Wing - Hallway 5"; - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"SN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"SO" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall/r_wall{ - cached_rad_resistance = 150 - }, -/area/surface/outpost/engineering/monitoring) -"SP" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gym) -"SQ" = ( -/obj/structure/table/woodentable, -/obj/item/towel{ - color = "#FF6666"; - name = "light red towel" - }, -/obj/item/towel{ - color = "#FF6666"; - name = "light red towel"; - pixel_y = 3 - }, -/obj/item/towel{ - color = "#FF6666"; - name = "light red towel"; - pixel_y = 6 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"SR" = ( -/obj/structure/dispenser{ - phorontanks = 0 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"SS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"ST" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Gateway"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"SU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/overlay/snow/floor, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/path/plains) -"SV" = ( -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"SW" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/airlock/landing_south) -"SX" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"SY" = ( -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outside/plains/mountains) -"SZ" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/surface/outpost/main/dorms/dorm_1) -"Ta" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Tc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"Te" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/dorms/dorm_3) -"Tf" = ( -/obj/machinery/hyperpad/centre{ - map_pad_id = "pad_1_away"; - map_pad_link_id = "pad_1_station" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Tg" = ( -/obj/structure/closet/wardrobe/xenos, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"Th" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Ti" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 10 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"Tj" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"Tk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/computer/timeclock/premade/east, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Tl" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/gen_room) -"Tm" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_north) -"To" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 1 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"Tq" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/orange/bordercorner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Tr" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/item/storage/fancy/markers, -/obj/random/toy, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Ts" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"Tt" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 8 - }, -/obj/machinery/camera/network/mining{ - c_tag = "PO - Mining Hallway 2"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"Tu" = ( -/obj/structure/table, -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Tv" = ( -/obj/machinery/door/airlock{ - id_tag = "dorm4"; - name = "Dorm 4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/dorms/dorm_4) -"Tw" = ( -/obj/structure/table/steel, -/obj/item/tool/wrench, -/obj/item/tool/crowbar, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/machinery/light, -/obj/machinery/camera/network/mining{ - c_tag = "PO - Tool Storage"; - dir = 4 - }, -/obj/item/multitool, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"Tx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Ty" = ( -/obj/machinery/shower, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_1) -"Tz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/machinery/suit_cycler/mining, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"TA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_one) -"TB" = ( -/obj/structure/table/steel, -/obj/item/storage/box/lights/mixed, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/two) -"TC" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/obj/structure/closet/secure_closet/pilot, -/obj/item/cataloguer/compact, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"TD" = ( -/obj/structure/fence{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"TE" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"TF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/closet/toolcloset, -/obj/item/storage/belt, -/obj/item/storage/belt, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"TG" = ( -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"TH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"TI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"TK" = ( -/obj/structure/simple_door/sifwood, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outpost/wall) -"TL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"TM" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"TN" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/head/radiation, -/obj/item/clothing/head/radiation, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/suit/radiation, -/obj/item/geiger, -/obj/item/geiger, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"TO" = ( -/turf/simulated/wall, -/area/surface/outpost/main/restroom) -"TP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"TQ" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/left_three) -"TR" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/start{ - name = "Explorer" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"TS" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/mining_main/exterior) -"TT" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main4_airlock_interior"; - locked = 1; - name = "Landing North Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/landing_north) -"TU" = ( -/obj/machinery/atmospherics/unary/freezer{ - icon_state = "freezer" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/search_and_rescue) -"TV" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"TW" = ( -/obj/structure/closet/secure_closet/explorer, -/obj/item/binoculars, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/cataloguer, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"TX" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/left_two) -"TZ" = ( -/obj/structure/closet/crate/secure/gear{ - name = "explorer crate"; - req_access = list(43) - }, -/obj/item/storage/belt/utility/full, -/obj/item/storage/belt/utility/full, -/obj/effect/floor_decal/industrial/outline, -/obj/item/clothing/head/welding, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/corridor/right_upper) -"Ua" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"Ub" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Ud" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"Ue" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"Uf" = ( -/obj/structure/closet, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"Ug" = ( -/obj/machinery/atm{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Uh" = ( -/turf/simulated/wall, -/area/surface/outpost/civilian/sauna) -"Ui" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Airlock Access" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/airlock/left_two) -"Uj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Uk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Ul" = ( -/obj/structure/table/bench/wooden, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"Um" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "mining1_airlock_control"; - pixel_x = 26; - pixel_y = -26; - req_one_access = list(48); - tag_exterior_door = "mining1_airlock_exterior"; - tag_interior_door = "mining1_airlock_interior" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"Uo" = ( -/obj/machinery/fusion_fuel_injector/mapped{ - dir = 1; - id_tag = "Reactor Fuel Injectors" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"Up" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/engineering/atmos_room) -"Uq" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/water/deep/pool, -/area/surface/outpost/civilian/pool) -"Ur" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"Us" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"Ut" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Uu" = ( -/turf/simulated/wall, -/area/surface/outpost/mining_main/uxstorage) -"Uv" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"Uw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"Ux" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/railing, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"Uy" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/teleporter) -"Uz" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"UA" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/window/basic, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/right_one) -"UB" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"UC" = ( -/obj/effect/wingrille_spawn/reinforced_phoron, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/radproof{ - id = "EngineReactor"; - rad_resistance = 150 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/engineering/reactor_smes) -"UD" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/power/hydromagnetic_trap, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"UE" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main2_airlock_exterior"; - locked = 1; - name = "Main Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "main2_airlock_control"; - name = "External Access Button"; - pixel_x = -26 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/right_one) -"UF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"UG" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"UH" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/left_one) -"UI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"UJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"UK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"UL" = ( -/obj/structure/cable/blue, -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Security"; - charge = 5e+006; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security/smes) -"UM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"UN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"UO" = ( -/obj/machinery/vending/boozeomat, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"UP" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/normal) -"UQ" = ( -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Outpost Reactor Power Output"; - name_tag = "Outpost Reactor Power Output" - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"UR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"US" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"UT" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"UU" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/structure/closet/crate, -/obj/machinery/camera/network/mining{ - c_tag = "PO - Mining Stocking"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"UV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"UW" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/emergency_storage/one) -"UY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"UZ" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Va" = ( -/obj/machinery/computer/fusion_core_control{ - id_tag = "Outpost Fusion Core" - }, -/obj/machinery/camera/emp_proof{ - c_tag = "ENG - Outpost Reactor Monitoring"; - name = "Engineering_Outpost"; - network = list("Engineering") - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/reactor_smes) -"Vb" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/shoes/boots/winter, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/airlock/landing_north) -"Vc" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 4; - pixel_x = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"Vd" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"Ve" = ( -/obj/structure/fence/cut/medium, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"Vf" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Vg" = ( -/turf/simulated/wall/solidrock, -/area/surface/outside/plains/mountains) -"Vh" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/item/frame/extinguisher_cabinet, -/obj/item/extinguisher, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"Vj" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Vk" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/storage) -"Vn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "main8_airlock_control"; - pixel_x = -26; - pixel_y = -26; - tag_exterior_door = "main8_airlock_exterior"; - tag_interior_door = "main8_airlock_interior" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/left_three) -"Vo" = ( -/obj/machinery/mineral/unloading_machine{ - icon_state = "unloader-corner" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/mining_main/refinery) -"Vp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Vq" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/monitoring) -"Vr" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"Vs" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"Vt" = ( -/obj/machinery/button/remote/blast_door/radproof{ - name = "Engine Monitoring Room Blast Doors"; - pixel_x = 23 - }, -/obj/machinery/computer/security/engineering, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/reactor_smes) -"Vu" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"Vv" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/white/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Vw" = ( -/turf/simulated/wall/sifwood, -/area/surface/outpost/wall) -"Vy" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"Vz" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"VA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/surface/outpost/main/dorms/dorm_4) -"VB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_north) -"VC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO - Landing South Airlock Access"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"VD" = ( -/obj/effect/step_trigger/teleporter/bridge/south_to_north, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/normal) -"VE" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"VF" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/right_two) -"VG" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/surface/outpost/engineering/reactor_smes) -"VH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"VI" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Emergency Storage" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/emergency_storage/two) -"VJ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"VK" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/water/deep/pool, -/area/surface/outpost/civilian/pool) -"VL" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/outpost) -"VM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"VN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"VO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/auxiliary_storage) -"VP" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/gen_room) -"VQ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor/left_lower) -"VR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_two) -"VT" = ( -/obj/structure/table/steel, -/obj/random/junk, -/obj/random/action_figure, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"VU" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/machinery/mineral/equipment_vendor{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"VV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"VW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"VX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"VY" = ( -/obj/item/stool/padded, -/obj/machinery/camera/network/civilian{ - c_tag = "CO - Pool 1"; - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"VZ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor) -"Wa" = ( -/obj/machinery/scale, -/turf/simulated/floor/holofloor/wood, -/area/surface/outpost/main/gym) -"Wb" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/gym) -"Wc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"We" = ( -/obj/structure/closet/crate{ - name = "Deuterium Storage" - }, -/obj/item/fuel_assembly/deuterium, -/obj/item/fuel_assembly/deuterium, -/obj/item/fuel_assembly/deuterium, -/obj/item/fuel_assembly/deuterium, -/obj/item/fuel_assembly/deuterium, -/obj/item/fuel_assembly/deuterium, -/obj/item/fuel_assembly/deuterium, -/obj/item/fuel_assembly/deuterium, -/obj/item/fuel_assembly/deuterium, -/obj/item/fuel_assembly/deuterium, -/obj/item/fuel_assembly/deuterium, -/obj/item/fuel_assembly/deuterium, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/storage) -"Wg" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Wh" = ( -/obj/machinery/vending/nifsoft_shop{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Wi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"Wj" = ( -/obj/machinery/vending/loadout/overwear, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Wl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_4) -"Wm" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/structure/table/steel, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"Wn" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/outside/plains/mountains) -"Wo" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"Wp" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Wq" = ( -/obj/structure/table/rack, -/obj/item/material/fishing_rod/modern/cheap, -/obj/item/material/fishing_rod/modern/cheap, -/obj/item/material/fishing_rod/modern/cheap, -/obj/item/material/fishing_rod/modern/cheap, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"Wr" = ( -/obj/machinery/door/firedoor/glass, -/obj/item/tape/engineering, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/restroom) -"Ws" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Wt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"Wv" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/overlay/snow/floor/edges{ - dir = 8 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/obj/effect/zone_divider, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Ww" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Wx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/pool) -"Wy" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/obj/machinery/camera/network/mining{ - c_tag = "PO - Airlock Access 2"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"Wz" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "ENG_Outpost_airlock_control"; - name = "Internal Access Button"; - pixel_x = 5; - pixel_y = 26; - req_one_access = list(10) - }, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "ENG_Outpost_airlock_interior"; - locked = 1; - name = "Engineering Outpost Internal" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/engineering/monitoring) -"WA" = ( -/obj/structure/closet/secure_closet/sar, -/obj/item/storage/pill_bottle/spaceacillin, -/obj/item/roller/adv, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/search_and_rescue) -"WB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/engineering/atmos_room) -"WC" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"WD" = ( -/obj/random/toolbox, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"WE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_2) -"WG" = ( -/obj/structure/flora/pottedplant/tropical, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/sauna) -"WH" = ( -/obj/machinery/vending/cola{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"WI" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/head/radiation, -/obj/item/clothing/head/radiation, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/suit/radiation, -/obj/item/geiger, -/obj/item/geiger, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"WJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"WK" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "main1_airlock_exterior"; - locked = 1; - name = "Main Outpost External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "main1_airlock_control"; - name = "External Access Button"; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/surface/outpost/main/airlock/right_two) -"WL" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"WM" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/exploration/containment) -"WN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/teleporter) -"WO" = ( -/obj/machinery/disposal, -/obj/machinery/button/remote/airlock{ - id = "dorm3"; - name = "Door Lock Control"; - pixel_y = -25; - specialfunctions = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"WP" = ( -/turf/simulated/floor/outdoors/rocks/sif/planetuse, -/area/surface/outside/plains/normal) -"WQ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/exploration) -"WR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"WS" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"WT" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/restroom) -"WU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"WV" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/pool) -"WW" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"WX" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"WY" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/indalsalven) -"WZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Pool" - }, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/pool) -"Xa" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"Xb" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/white/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/dorms) -"Xc" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Xd" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloor, -/obj/item/material/ashtray/plastic, -/obj/machinery/recharger, -/obj/effect/floor_decal/corner/red/border, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"Xe" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Xf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Xg" = ( -/obj/machinery/button/remote/blast_door{ - id = "garage1"; - name = "Garage Shutter Control"; - pixel_x = 22; - req_one_access = list(48,43) - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/main/airlock/right_two) -"Xh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_4) -"Xi" = ( -/obj/machinery/fusion_fuel_injector/mapped{ - dir = 8; - id_tag = "Reactor Fuel Injectors" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"Xj" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_3) -"Xk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Xl" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/main/gateway) -"Xm" = ( -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/reactor_smes) -"Xn" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"Xo" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public{ - name = "Outpost Access" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Xp" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/obj/item/gps/security, -/obj/item/gps/security, -/obj/item/gps/security, -/obj/item/gps/security, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"Xq" = ( -/obj/structure/closet/toolcloset, -/obj/item/flashlight/maglight, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"Xr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration) -"Xs" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Xt" = ( -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"Xu" = ( -/turf/simulated/wall, -/area/surface/outpost/civilian/fishing) -"Xv" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/left_three) -"Xw" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/teleporter) -"Xx" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"Xy" = ( -/obj/effect/floor_decal/borderfloor/cee{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger/cee{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/westright{ - name = "Containment Pen"; - req_one_access = list(43,1) - }, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Containment Pen"; - req_one_access = list(43,1) - }, -/obj/machinery/door/blast/regular/open{ - id = "pen"; - name = "Containment Lockdown Blast Doors" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"Xz" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"XA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"XB" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"XC" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/turf/simulated/floor/carpet, -/area/surface/outpost/main/dorms/dorm_6) -"XD" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"XE" = ( -/turf/simulated/mineral/sif, -/area/surface/outside/plains/mountains) -"XF" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"XG" = ( -/obj/structure/catwalk, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security/smes) -"XH" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"XI" = ( -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"XJ" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"XK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"XL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"XM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/turcarpet, -/area/surface/outpost/main/dorms/dorm_3) -"XN" = ( -/turf/simulated/floor/water/deep, -/area/surface/outside/lake/romsele) -"XO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/main/search_and_rescue) -"XP" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/turf/simulated/floor/carpet/blue, -/area/surface/outpost/main/dorms/dorm_5) -"XQ" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/tools) -"XR" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/landing_south) -"XS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_one_access = list(26) - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/janitor) -"XT" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse{ - tree_chance = 0 - }, -/area/surface/outside/plains/normal) -"XU" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/white/bordercorner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"XV" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_4) -"XW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_upper) -"XX" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"XY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"XZ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/security) -"Ya" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/water/pool, -/area/surface/outpost/civilian/pool) -"Yb" = ( -/obj/machinery/shower, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_3) -"Yc" = ( -/turf/simulated/wall, -/area/surface/outpost/mining_main/refinery) -"Yd" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/holofloor/wood, -/area/surface/outpost/main/gym) -"Ye" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Yf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/white/bordercorner2, -/obj/structure/closet/emcloset, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"Yg" = ( -/obj/machinery/washing_machine, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"Yh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Yi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/tools) -"Yj" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"Yk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Yl" = ( -/obj/item/towel{ - color = "#800080"; - name = "purple towel" - }, -/obj/structure/sink{ - pixel_y = 16 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_2) -"Ym" = ( -/obj/structure/closet/crate/secure/gear{ - name = "explorer crate"; - req_access = list(43) - }, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/storage/firstaid/regular, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/corridor/right_upper) -"Yn" = ( -/obj/structure/fence{ - dir = 8 - }, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/surface/outside/plains/outpost) -"Yo" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"Yp" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gateway) -"Yq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/symbol/da{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Yr" = ( -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_two) -"Ys" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - operating = 0; - pixel_y = 24 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 22 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"Yt" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Yu" = ( -/obj/machinery/atmospherics/binary/pump/on, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"Yv" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_one) -"Yw" = ( -/turf/simulated/floor/water, -/area/surface/outside/plains/mountains) -"Yx" = ( -/obj/machinery/cryopod/robot/door/gateway/quiet, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/wall) -"Yy" = ( -/obj/effect/decal/remains/ribcage, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, -/area/surface/outside/plains/outpost) -"Yz" = ( -/turf/unsimulated/wall/planetary/sif, -/area/surface/outside/river/indalsalven) -"YA" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/mining_main/storage) -"YB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_2) -"YC" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/security) -"YD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"YE" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/structure/table/reinforced, -/obj/item/storage/box, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/surface/outpost/security/maa) -"YF" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/outpost) -"YG" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"YH" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/civilian/smes) -"YI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals1, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/refinery) -"YJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/machinery/computer/guestpass{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main) -"YK" = ( -/obj/effect/floor_decal/borderfloor, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/effect/floor_decal/corner/purple/border, -/obj/item/clothing/suit/caution, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"YL" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"YM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/blue, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = -10 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/civilian/fishing) -"YO" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/main/showers) -"YP" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - name = "Laundry" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/surface/outpost/main/laundry) -"YQ" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/condiment/small/saltshaker, -/turf/simulated/floor/plating, -/area/surface/outpost/main/bar) -"YR" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = 22; - pixel_y = -10 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"YS" = ( -/obj/machinery/vending/fitness{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gym) -"YT" = ( -/obj/effect/landmark/start{ - name = "Search and Rescue" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"YU" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"YV" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/engineering/monitoring) -"YW" = ( -/turf/simulated/wall, -/area/surface/outpost/main/dorms/dorm_2) -"YX" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"YZ" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"Za" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/camera/network/main_outpost{ - c_tag = "MO Left Wing - Hallway 1"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Zb" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/civilian/fishing) -"Zc" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"Zd" = ( -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Right Wing"; - charge = 5e+006; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"Ze" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"Zf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/white/bordercorner, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"Zg" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/refinery) -"Zh" = ( -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Zj" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/monotile, -/area/surface/outpost/mining_main/storage) -"Zk" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/structure/window/basic, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/item/mining_scanner, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/head/helmet/space/void/mining, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"Zl" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/surface/outpost/main/corridor/left_upper) -"Zm" = ( -/obj/structure/table/steel, -/obj/item/storage/box/lights/mixed, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple/bordercorner2{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 22; - pixel_y = -10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/janitor) -"Zn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"Zo" = ( -/obj/structure/table/steel, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/storage/toolbox/electrical, -/turf/simulated/floor/plating, -/area/surface/outpost/main/gen_room/smes_right) -"Zp" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/showers) -"Zq" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/sauna) -"Zr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"Zs" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/surface/outpost/wall) -"Zt" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/door/firedoor/glass/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_upper) -"Zu" = ( -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/plains/normal) -"Zv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 10 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/gateway) -"Zx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/right_lower) -"Zy" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/airlock/right_three) -"Zz" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor/left_lower) -"ZA" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera/network/engineering_outpost{ - c_tag = "ENG - Mining Outpost Power 2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/atmos_room) -"ZB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"ZC" = ( -/obj/item/stool/padded, -/obj/structure/boxingrope{ - dir = 8 - }, -/turf/simulated/floor/boxing, -/area/surface/outpost/main/gym) -"ZD" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/exploration/containment) -"ZE" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"ZF" = ( -/obj/effect/overlay/snow/floor, -/obj/machinery/light/small, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/overlay/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outpost/main/airlock/landing_north) -"ZG" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/civilian/pool) -"ZI" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/main/airlock/right_one) -"ZJ" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/effect/overlay/snow/floor/edges, -/turf/simulated/floor/tiled/steel/sif/planetuse, -/area/surface/outside/plains/outpost) -"ZK" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/engineering/smes) -"ZL" = ( -/obj/structure/table/bench/standard, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/main/exploration) -"ZM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_5) -"ZN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/steel_dirty, -/area/surface/outpost/mining_main/uxstorage) -"ZO" = ( -/obj/machinery/conveyor{ - id = "mining_north" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outpost/mining_main/exterior) -"ZP" = ( -/obj/random/technology_scanner, -/turf/simulated/floor/plating, -/area/surface/outpost/main/construction_area) -"ZQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/main/dorms/dorm_3) -"ZR" = ( -/obj/structure/table/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/item/backup_implanter{ - pixel_y = -6 - }, -/obj/item/backup_implanter{ - pixel_y = 6 - }, -/obj/item/backup_implanter{ - pixel_y = 12 - }, -/obj/item/backup_implanter, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/main/search_and_rescue) -"ZS" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) -"ZT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/mining_main/storage) -"ZU" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - external_pressure_bound = 140; - external_pressure_bound_default = 140; - icon_state = "map_vent_out"; - pressure_checks = 0; - pressure_checks_default = 0; - use_power = 1 - }, -/turf/simulated/floor/wood, -/area/surface/outpost/civilian/sauna) -"ZV" = ( -/obj/structure/toilet, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/main/dorms/dorm_5) -"ZW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/corridor) -"ZX" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/random/powercell, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/engineering/smes) -"ZY" = ( -/obj/machinery/washing_machine, -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/main/laundry) -"ZZ" = ( -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/civilian/pool) - -(1,1,1) = {" -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Yz -Yz -Yz -Yz -Yz -Yz -Yz -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -"} -(2,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Wn -XE -XE -XE -XE -XE -XE -XE -XE -Cf -Cf -Cf -Cf -if -Cf -Cf -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Wn -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -IG -Vg -"} -(3,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Wn -XE -XE -XE -XE -XE -XE -XE -XE -XE -Cf -Cf -Cf -if -if -Cf -Cf -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Wn -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Vg -"} -(4,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Wn -XE -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -XE -XE -XE -XE -XE -XE -XE -XE -zw -Ey -Ey -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -XE -XE -XE -XE -XE -XE -yT -yT -yT -yT -yT -yj -XE -XE -XE -XE -XE -XE -XE -XE -XE -Wn -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Vg -"} -(5,1,1) = {" -Vg -pC -XE -XE -XE -zw -zw -zw -zw -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -Wn -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Vg -"} -(6,1,1) = {" -Vg -pC -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Vg -"} -(7,1,1) = {" -Vg -pC -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -XE -XE -XE -XE -XE -XE -Vg -"} -(8,1,1) = {" -Vg -pC -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -XE -XE -XE -XE -Vg -"} -(9,1,1) = {" -Vg -pC -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -XE -XE -XE -Vg -"} -(10,1,1) = {" -Vg -pC -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -lw -yT -yT -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -XE -XE -XE -Vg -"} -(11,1,1) = {" -Vg -pC -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yj -yj -yj -yj -yj -yj -yj -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -XE -XE -XE -Vg -"} -(12,1,1) = {" -Vg -pC -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -GR -zw -zw -zw -zw -zw -zw -zw -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yj -yj -yj -yj -yj -yj -yj -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -XE -XE -Vg -"} -(13,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yj -yj -yj -yj -yj -yj -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -XE -XE -Vg -"} -(14,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yj -yj -yj -yj -yj -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -XE -XE -Vg -"} -(15,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yj -yj -yj -yj -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -XE -XE -Vg -"} -(16,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yj -yj -yj -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -XE -Vg -"} -(17,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yj -yj -yj -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -XE -Vg -"} -(18,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yj -yj -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -XE -Vg -"} -(19,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yj -yj -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -XE -Vg -"} -(20,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yj -yj -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -XE -Vg -"} -(21,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yj -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -Vg -"} -(22,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yj -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -Vg -"} -(23,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -Vg -"} -(24,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -Vg -"} -(25,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -Vg -"} -(26,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -Vg -"} -(27,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -Vg -"} -(28,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -Vg -"} -(29,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -Vg -"} -(30,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -Vg -"} -(31,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -Vg -"} -(32,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(33,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(34,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -ff -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(35,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(36,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(37,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XT -XT -XT -XT -XT -XT -XT -XT -XT -zp -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(38,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(39,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(40,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(41,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(42,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(43,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(44,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(45,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(46,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(47,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(48,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(49,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(50,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -if -Cf -Cf -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(51,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(52,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(53,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(54,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -DQ -yT -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(55,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -if -Cf -Cf -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -DQ -yT -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(56,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -DQ -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(57,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -DQ -yT -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(58,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -DQ -yT -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(59,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -if -Cf -Cf -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -DQ -yT -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(60,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -iF -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(61,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -GR -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -iF -yj -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(62,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(63,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(64,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(65,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -iF -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(66,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(67,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(68,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -Vg -"} -(69,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(70,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(71,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -UP -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -Vg -"} -(72,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -Vg -"} -(73,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -XE -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -XE -XE -Vg -"} -(74,1,1) = {" -Vg -pC -XE -XE -XE -XE -XE -XE -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -bv -bv -rV -"} -(75,1,1) = {" -Vg -pC -XE -XE -XE -XE -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -bv -bv -rV -"} -(76,1,1) = {" -Vg -pC -XE -XE -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gu -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XE -bv -bv -rV -"} -(77,1,1) = {" -Vg -pC -XE -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -zZ -Eb -Eb -Pi -Eb -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -Eb -Pi -QS -Eb -QS -QS -QS -Ve -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -Qr -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -QS -eb -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -bv -rV -"} -(78,1,1) = {" -Vg -pC -XE -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -yp -gu -ha -QP -QP -QP -QP -QP -QP -QP -QP -dY -dY -dY -JK -dY -dY -dY -dY -dY -dY -JK -dY -MT -SO -ca -ha -gu -ha -gu -gu -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -Id -PC -te -uU -nU -Lo -AN -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(79,1,1) = {" -Vg -pC -XE -ha -ha -ha -tf -Mn -ea -pA -ea -pA -ea -pA -ea -To -TD -ul -ED -Ej -vj -ry -pr -ss -VO -up -Bp -Qe -gy -zJ -zJ -zJ -IU -GL -nu -jK -xy -lC -Rq -iE -Py -ca -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -vn -OY -OY -ny -OY -OY -vn -ha -ha -ha -ha -ha -ha -Id -PC -PC -PC -PC -Lo -Lo -PC -PC -Lo -AN -ha -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(80,1,1) = {" -Vg -pC -XE -ha -ha -gu -so -DG -UG -dX -UG -dX -UG -dX -UG -ha -nH -Po -tN -Ej -ss -CY -lO -qq -qX -KQ -rL -dY -PV -vs -oU -IW -uG -sV -Uo -WW -Xm -lC -Rv -oP -rf -ca -oD -ZK -ZK -ZK -ZK -ha -ha -ha -ha -ha -ha -ha -ha -ft -PC -PC -Lo -PC -Lo -NJ -OY -ar -KW -Gi -OY -pj -PC -PC -PC -Lo -PC -Lo -NJ -ws -ws -Nw -Nw -Nw -ws -Nw -Nw -ws -TQ -gx -bT -ha -ha -gu -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(81,1,1) = {" -Vg -pC -XE -ha -ha -ha -IA -so -wy -wy -wy -wy -wy -wy -DG -Ps -Dh -mP -ha -QP -yh -Sx -qX -lg -Ud -aI -nf -JK -PV -UD -Cl -tU -uG -sV -tL -la -TV -JK -Va -kw -jM -ca -TN -ZK -mY -ZX -Qx -As -ha -ha -ha -ha -ft -PC -PC -NJ -yL -yL -yL -zR -zR -yL -OY -Gx -uZ -Rl -OY -dy -zD -zD -dy -dy -dy -gu -Yy -ws -xv -zo -yR -Vn -lm -yS -zn -bk -Xv -gx -GE -ha -ha -ha -gu -gu -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -if -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -bv -rV -"} -(82,1,1) = {" -Vg -pC -XE -ha -ha -ha -Vr -dX -wy -wy -wy -wy -wy -wy -rn -ha -nH -ha -ha -Cu -is -hP -dL -MY -Bp -ci -hF -dY -PV -Oj -VG -bI -uG -sV -Uo -OE -Xm -lC -tG -dq -yC -je -NK -bp -Bv -nR -ZK -kL -ha -ha -ha -ha -vn -yL -yL -yL -yL -zs -Zc -SF -xU -um -Hh -Hh -Dx -gK -Hh -KV -DN -EH -bD -qp -dy -dy -dy -ws -fn -cN -ac -fK -Dn -Pl -QD -Je -Xv -gx -GE -gx -ha -ha -ha -ha -ha -ha -ha -gu -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(83,1,1) = {" -Vg -pC -XE -ha -ha -ha -IA -so -wy -wy -wy -wy -wy -wy -jq -ha -nH -ha -ha -QP -is -mb -hR -io -Qy -Nq -qf -uO -Ld -oU -NW -oU -iT -JK -pQ -aX -Xm -lC -Vt -gE -Ae -yX -Ce -NY -ZK -ZK -ZK -kL -ha -ha -ha -ha -Bj -yL -xN -mA -sW -Sf -tH -AD -Iv -ZM -QV -sz -Ju -JN -Rg -mk -CI -eN -Eg -oT -hc -CO -mz -ws -zz -Ee -hX -ou -ws -bG -we -ws -TQ -gx -GE -gx -gx -gx -gx -gx -gx -gx -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(84,1,1) = {" -Vg -pC -pC -ha -ha -gu -Vr -dX -wy -wy -wy -wy -wy -wy -pA -ha -nH -ha -ha -QP -gd -Lj -Rs -Bp -dO -HF -vC -dY -dY -ev -UC -ev -JK -dY -iz -mf -CM -dY -ca -Lq -ca -ca -rQ -TF -GO -Dl -oD -vn -ha -ha -ha -ha -vn -yL -ZV -xS -Bm -kl -XP -Fk -XY -Nu -Bm -jv -yq -Ou -Dv -Fq -Ow -aP -XC -Et -Dv -pI -ly -ws -ic -Dn -ws -ws -ws -ws -ws -ws -vn -gx -GE -gx -gx -gx -gx -gx -gx -gx -gx -ha -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(85,1,1) = {" -Vg -cJ -cJ -bT -bT -wJ -EP -MD -KE -KE -KE -KE -KE -KE -JZ -bT -Yn -bT -bT -QP -vd -Lj -Tj -lo -EL -ch -RY -dY -NZ -ud -uB -Xi -tb -bt -Kj -CH -bZ -dQ -bV -nY -Ch -Jv -Qn -SA -yD -wP -oD -bc -bT -bT -bT -bT -mR -yL -HL -wO -Bm -Bm -Bm -Bm -Bm -Bm -Bm -eI -Lk -oa -Dv -Dv -Dv -Dv -Dv -Dv -Dv -HY -DY -Dv -Jj -GD -gk -rT -eW -Gg -MZ -EG -vn -GE -GE -Of -Hj -Hj -Hj -Of -GE -GE -GE -GE -bT -bT -Yn -bT -bT -bT -bT -bT -UP -UP -UP -UP -UP -UP -UP -UP -UP -UP -HV -HV -WY -WY -HV -HV -UP -UP -UP -UP -UP -UP -UP -UP -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -ts -yv -yv -yv -yv -yv -yv -yv -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -iF -Sk -Sk -Sk -rV -"} -(86,1,1) = {" -Vg -pC -pC -ha -ha -gu -Vr -dX -wy -wy -wy -wy -wy -wy -pA -ha -nH -ha -ha -QP -aV -mh -qW -dB -fd -uY -Vy -qs -Ql -yt -gW -Mk -Ua -wY -dY -qw -dY -JK -fu -qk -yX -cg -yD -Bt -DL -Ph -oD -LW -ha -ha -ha -ha -vn -yL -Bm -Bm -Bm -tX -vw -iK -BL -Xx -FL -pe -Fj -ya -du -nK -Fs -aA -bL -QZ -Dv -Dv -Dv -Dv -jG -qc -Zl -zL -BZ -bm -bY -yZ -vn -gx -GE -Of -cS -Mu -sl -Of -Of -Of -gx -gx -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(87,1,1) = {" -Vg -pC -pC -ha -ha -ha -IA -so -wy -wy -wy -wy -wy -wy -jq -ha -nH -ha -ha -QP -QP -QP -QP -QP -cA -LR -nP -Ib -Ib -zI -Ib -Xm -vt -fc -GI -iH -DW -dY -ca -ca -ca -WI -iU -YV -oD -oD -Lw -LW -ha -ha -ha -ha -vn -Te -JU -BO -IF -sO -XM -KA -fm -Hn -Oe -DZ -ng -Cv -Tv -UI -Xh -wC -JX -VA -Nz -XV -zc -du -fM -qc -Zl -XI -LL -IO -aZ -yZ -vn -gx -Of -Of -KD -xZ -kB -Ek -FI -Of -Of -gx -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -if -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(88,1,1) = {" -Vg -pC -pC -ha -ha -ha -IA -dX -wy -wy -wy -wy -wy -wy -pA -ha -nH -ha -ha -Ts -wy -gh -wu -gL -aN -Pz -dk -Ib -Cr -aM -Ib -nX -UQ -dY -dE -PA -lX -dY -yy -yy -oD -oD -Wz -oD -oD -ft -Lo -EU -ha -ha -ha -ha -Bj -Te -wU -Xj -FL -dA -cz -YD -ZQ -WO -FL -UJ -ir -oJ -du -NE -mQ -HI -Lv -nE -zS -Wl -vJ -du -uV -Cy -gk -Ml -Bi -bY -WD -EG -vn -gx -lz -an -kH -wN -wN -wN -lE -wa -yW -gx -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(89,1,1) = {" -Vg -pC -pC -ha -ha -ha -of -wy -wy -YF -YF -YF -wy -wy -UG -ha -nH -ha -ha -RT -so -pA -OX -QP -QP -QP -QP -Ib -gw -tF -Ib -nT -EJ -dY -dY -QI -dY -wY -yy -yy -Vq -XX -ml -rD -Qj -LW -hK -hK -ha -ha -ha -ha -Bj -Te -Yb -Is -FL -FL -FL -FL -FL -FL -FL -Rf -aB -km -du -du -du -du -du -du -du -Ry -pB -du -hn -jm -rj -Lg -Uk -lu -aS -EG -vn -gx -lz -Cx -nd -vO -cD -HU -mV -KG -yW -gx -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -bv -rV -"} -(90,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -gu -gu -ha -ha -ha -gu -gu -ha -ha -nH -ha -ha -JV -Vr -RT -Vr -iL -Pw -Pw -dd -Ib -We -tq -Ib -eV -Qf -vH -lW -DB -yy -yy -QH -yy -Vq -fI -hL -CD -Qj -LW -hK -hK -ha -ha -ha -ha -Bj -Te -FL -FL -FL -yo -NQ -kq -SH -fV -ld -Vp -em -Ja -YW -MQ -Ah -pi -bz -LP -du -du -du -du -Gt -rB -Pk -eF -rF -zt -eF -EG -vn -gx -lz -UB -nd -wj -eU -xo -mV -ae -yW -gx -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(91,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -gu -gu -gu -ha -ha -ha -ha -ha -ha -nH -ha -ha -RT -Vr -RT -Vr -iL -Pw -Pw -Pw -Ib -Ib -Ib -Ib -Hf -WB -pm -lW -DB -yy -EB -ha -yy -oD -oD -wK -oD -oD -vn -hK -hK -ha -ha -ha -ha -Bj -bO -oj -mo -xm -pa -KI -Lf -Fz -HC -If -DZ -er -Cv -Jh -Qg -pG -cw -mC -dp -Hx -mU -rK -YW -sy -JS -Zl -od -Gu -mB -ZP -yZ -vn -gx -Of -Of -Ys -jd -ge -GW -mK -Of -Of -gx -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(92,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -gu -gu -gu -ha -ha -nH -ha -ha -of -UG -dX -UG -iL -Pw -Pw -Pw -iG -QY -zj -lW -lW -Kr -lW -lW -DB -yy -EB -ha -WL -OS -lc -lc -OS -lc -LW -hK -hK -ha -ha -ha -ha -Bj -bO -lb -ym -ld -cx -SZ -gf -CR -tA -ld -jv -ct -Xb -YW -Iu -fB -WE -lD -zY -YW -YB -FJ -YW -ec -sP -Zl -Mi -qL -bY -Tu -yZ -LW -ha -GE -Of -Of -yn -dm -YE -hu -Of -gx -gx -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yT -yT -yj -bv -bv -rV -"} -(93,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -gu -gu -gu -ha -ha -nH -ha -ha -ha -KP -KP -KP -KP -KP -An -KP -KP -KP -AE -KP -AR -AZ -rb -KP -DB -yy -EB -ha -ha -gx -gx -gx -gx -gx -HZ -PC -PC -PC -Lo -PC -Lo -NJ -bO -Ty -OO -ld -ld -ld -ld -ld -ld -ld -eI -ct -by -YW -YW -YW -YW -YW -YW -YW -Yl -pK -YW -Gt -sP -gk -FS -wx -Xq -EG -EG -LW -ha -bT -gx -Of -tz -Of -Of -xi -xi -xi -xi -gx -ha -nH -ha -ha -ha -ha -ha -zw -zw -zw -zw -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yT -yT -yT -fl -KB -bv -bv -bv -"} -(94,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -gu -ha -ha -ha -ha -ha -ha -nH -ha -ha -KP -KP -av -av -av -yI -fv -KP -Ih -pg -eH -Ob -oO -iy -nJ -KP -DB -yy -EB -ha -ha -ha -gx -gx -gx -gx -vn -iM -pO -pO -iM -iM -iM -iM -iM -iM -ld -ld -sK -Sd -hQ -zm -BS -ld -Ik -mw -Ri -YW -MI -Cs -BS -Ta -pz -YW -YW -YW -YW -uD -RW -gk -EG -EG -EG -EG -ft -NJ -gu -vg -vg -vg -qb -MH -GY -xi -Gl -UL -xi -yy -ha -nH -ha -ha -ha -ha -ha -zw -zw -zw -zw -Cf -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yT -yT -yT -hC -SG -lA -hC -DP -hC -"} -(95,1,1) = {" -Vg -pC -pC -ha -ha -gu -gu -ha -ha -gu -ha -ha -ha -ha -ha -ha -nH -ha -ha -KP -ZA -mE -xr -xr -qd -CB -dT -dh -Ro -zv -Vu -oO -iy -lU -KP -oX -yy -yy -ha -ha -ha -gx -gx -gx -gx -HE -iM -Fn -Ep -iM -Fr -td -Jg -he -iM -oF -jj -aF -aF -aF -aF -aF -aF -wS -EN -xJ -aF -aF -aF -aF -aF -aF -DA -ty -NF -ty -VE -XH -ty -kf -kj -gk -ft -hH -ha -ha -XZ -IP -GA -cb -kh -li -xi -MF -Pa -cG -ZE -ha -nH -ha -ha -ha -ha -ha -zw -zw -zw -zw -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yT -yj -yj -yj -yT -yT -yT -hC -vk -JH -hC -hC -hC -"} -(96,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -KP -qy -uP -hZ -hZ -jY -jY -Qv -Yu -Ro -mm -IT -zh -oN -FZ -oA -Up -yy -EB -ha -ha -ha -gx -ha -gx -gx -UH -Sc -rE -oy -Ni -LM -TA -Hs -jT -Ni -fi -Ad -CW -CW -aj -dV -fe -Tx -PD -mX -ax -jS -vr -dV -dV -dV -dV -lS -rt -jo -Ba -Rc -qC -Li -ut -LO -gk -LW -ha -ha -ha -XZ -kQ -Mr -bl -fx -Xd -xi -XG -AG -xi -vD -ha -nH -ha -ha -ha -ha -ha -zw -zw -zw -Cf -Cf -if -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yT -yT -yj -yj -yj -yj -yT -yT -hC -SG -lA -hC -FH -hC -"} -(97,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -gu -ha -ha -ha -ha -nH -ha -ha -KP -dU -yB -yB -yB -as -Kk -fZ -PQ -Hc -Ff -Mo -oO -Af -KP -KP -gR -yy -yy -ha -ha -ha -gx -ha -gx -gx -UH -wp -mD -oS -LK -Az -tI -pP -uT -oR -IJ -Dw -vN -Nv -Mc -wX -hN -MP -Qa -Ko -JF -eC -HX -Nv -Zn -aq -FO -en -gJ -XW -sm -yg -zf -aR -Nj -tC -gk -LW -ha -ha -ha -vg -xt -WS -nA -fx -zx -xi -uv -nI -xi -vn -ha -nH -ha -ha -ha -ha -ha -zw -zw -Cf -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yT -FA -KB -bv -bv -bv -"} -(98,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -zb -KP -KP -KP -KP -KP -KP -KP -KP -KP -KP -nN -oO -AF -Im -KP -vn -yy -yy -ha -ha -gx -gx -gx -gx -gx -HE -iM -rP -rP -iM -rP -rP -rP -iM -iM -Bf -op -Xs -qV -QU -WH -lr -MN -dG -Cn -YP -Cn -Cn -MN -MN -Kb -Kb -Aa -Aa -TX -Ui -ib -ib -VI -ib -ib -gk -LW -ha -ha -ha -XZ -Su -cp -OJ -Cz -BP -hT -XB -Xp -jg -vn -ha -nH -ha -ha -ha -ha -ha -zw -zw -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yT -yT -yj -bv -bv -rV -"} -(99,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -Sb -oL -Gz -El -Fu -Uu -eX -OQ -au -KP -py -oO -Hv -ub -KP -vn -yy -EB -ha -ha -gx -gx -gx -gx -gx -ra -LQ -LQ -LQ -Lo -LQ -Lo -LQ -ZE -IQ -da -Cm -Oi -MN -MN -MN -MN -MN -jQ -un -Zr -EY -Tr -mT -MU -Kb -OZ -Aa -yA -Pb -xx -ib -TB -xP -ks -ib -ft -NJ -ha -ha -ha -XZ -qM -gC -QG -sp -wq -yc -Uw -mv -vg -vn -ha -bq -ha -ha -ha -ha -ha -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yT -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(100,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -Sb -ms -cn -ZN -Lt -Uu -uq -tm -QN -KP -iD -oO -uK -MW -KP -pj -ZE -yy -ha -ha -gx -gx -gx -gx -gx -vn -ha -ha -ha -ha -ha -ha -ha -vn -IQ -da -Uj -nk -MN -ej -DD -gs -KK -SB -bf -Iz -NX -jp -GN -id -Kb -Qu -Aa -qo -Fg -LG -ib -cB -rl -gI -ib -vn -ha -ha -ha -ha -vg -vg -vg -vg -jy -YC -QB -vg -vg -vg -vn -ha -nH -ha -ha -ha -ha -ha -zw -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yT -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(101,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -Sb -Sb -nO -Mb -mj -Uu -cr -KU -cr -XQ -XQ -XQ -Lu -SK -XQ -XQ -vn -EB -ha -ft -oE -oE -oE -oE -oE -hH -ha -ha -ha -ha -gu -ha -ha -Bj -IQ -da -yN -YU -Cn -RJ -SB -SB -cW -HW -HW -HW -NU -xO -rq -Hd -Kb -Kb -Aa -Rw -Rh -ex -ib -ib -ib -ib -ib -vn -ha -ha -ha -ha -bT -ha -ha -vg -fP -uw -vg -vg -ft -Lo -NJ -ha -nH -ha -ha -ha -ha -ha -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -bv -rV -"} -(102,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -Sb -uQ -iJ -JO -Uu -Ti -ek -PK -eu -Qh -fa -sH -sk -Tw -XQ -pj -Lo -Lo -it -gx -gx -gx -gx -ha -ha -ha -ha -gu -gu -ha -ha -ha -Bj -wG -Df -qi -iw -Cn -qr -SB -EE -Av -ZY -ZY -cl -AI -RJ -ni -Th -Kb -ha -Aa -ys -ta -FF -yJ -ft -LQ -LQ -LQ -yb -JR -PC -LQ -AN -bT -ha -ha -XZ -lN -kR -Jw -jg -vn -ha -ha -ha -nH -ha -ha -ha -ha -ha -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(103,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -Sb -Sb -rM -GT -Uu -sY -Mv -UU -eu -aG -lQ -pT -sd -Yg -XQ -np -np -XQ -GP -gx -gx -gx -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -Bj -IQ -da -qB -nQ -IN -jD -SB -rq -Kl -cj -cj -cj -cj -CX -SB -bW -Kb -ha -Aa -Aa -TX -kC -Aa -LW -ha -ha -ha -ha -ha -ha -ha -Ap -bT -ha -ha -XZ -Ij -hA -qO -jg -vn -ha -ha -ha -nH -ha -ha -ha -ha -Cf -Cf -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(104,1,1) = {" -Vg -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -yQ -Nf -Ov -ol -OR -kM -bE -eu -tV -ph -EO -Yi -Jy -Pc -pp -lt -ju -Ho -gx -gx -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -Bj -IQ -da -Ls -Xf -ME -oi -qJ -tR -ob -ob -ob -MC -SB -SB -cW -pc -Kb -ha -JP -mc -SC -iQ -yJ -LW -ha -ha -ha -ha -ha -ha -ha -Bj -bT -ha -ha -vg -Ox -aT -vg -vg -vn -ha -ha -ha -nH -ha -ha -ha -ha -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(105,1,1) = {" -Vg -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -yQ -yQ -YJ -JL -kg -bh -zB -Wm -eu -eu -iA -BK -hS -eu -XQ -qx -Wy -IE -Ho -gx -gx -ha -ha -gu -ha -ha -ha -ha -ha -ha -ha -ha -vn -wG -TP -Ls -th -Cn -Oh -Gm -ls -RG -rU -Ru -Wj -mM -uA -Fy -Kb -Kb -ha -JP -DU -qZ -df -yJ -LW -ha -ha -ha -ha -ha -ha -ha -pv -Wv -KC -HS -ck -Hb -Hb -ck -Hb -Ub -ha -ha -ha -Ly -ha -ha -ha -ha -Cf -if -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -bv -rV -"} -(106,1,1) = {" -Vg -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -lj -Ii -hM -vi -AX -AX -kM -VU -eP -pY -le -rw -zH -Tt -Vk -mI -rA -XQ -Ll -gx -gx -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -Bj -IQ -da -Ls -Rz -Kb -Kb -Kb -Kb -Kb -Kb -Kb -Kb -Kb -Kb -Kb -Kb -ha -ha -Aa -Aa -So -hl -Aa -vn -ha -ha -ha -ha -ha -ha -ha -vn -bT -ha -ha -gx -gx -gx -gx -gx -ha -ha -ha -ha -ha -ha -ha -ha -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(107,1,1) = {" -Vg -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -lj -rW -hM -vi -AX -AX -sa -yz -KN -Il -Bd -Np -ZT -YZ -Vk -hq -hq -XQ -DB -gx -gx -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -Bj -IQ -da -Ls -YU -FN -nL -ha -ha -ha -Id -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -vq -NB -NB -vq -hH -gu -ha -ha -gu -ha -gu -gu -vn -bT -ha -gx -gx -gx -gx -gx -ha -ha -ha -ha -ha -ha -ha -ha -Cf -Cf -Cf -if -Cf -Cf -Cf -zw -tw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(108,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -lj -Ii -hg -iW -Wt -Gr -BD -eY -vp -cv -LI -Rn -aL -Vd -Vk -KS -wc -wc -el -gx -gx -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -Bj -IQ -da -Ls -YU -Zz -nL -ha -ha -ha -Bj -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -gx -ha -gu -ha -ha -ha -ha -ha -ha -Bj -bT -gx -gx -gx -gx -gx -ha -ha -ha -FX -ha -ha -ha -ha -ha -Cf -Cf -if -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(109,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -yQ -yQ -ih -IY -qD -xV -qD -sr -SJ -dw -FB -UY -qA -FP -Vk -ZJ -ha -ha -ha -gx -gx -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -Bj -wG -tr -Nm -qn -wG -wG -ha -ha -ha -Bj -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -gx -ha -ha -ha -ha -gx -gx -gx -gx -AL -GE -gx -gx -gx -gx -gx -gx -gx -gx -gx -ha -ha -ha -fQ -RO -RO -Kw -Kw -RO -RO -RO -fQ -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -bv -rV -"} -(110,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -FK -Yc -Yc -sA -QT -hD -Yc -lP -bN -hk -Lb -dt -Vk -Vk -ZJ -ha -ha -ha -gx -gx -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -Bj -wG -sh -VQ -sh -wG -ha -ha -ha -ha -LW -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -ha -ha -ha -gx -gx -gx -gx -gx -AL -GE -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -xq -xq -xq -xq -xq -xq -xq -xq -xq -gx -gx -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(111,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -FK -xB -sf -AH -qa -dJ -AK -eO -bN -Tz -nG -Tc -dg -Vk -ZJ -ha -ha -ha -gx -gx -ha -ha -uH -ha -ha -ha -gx -gx -ha -ha -ha -Bj -oM -kO -Hm -Dt -oM -ha -ha -ha -ha -LW -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -ha -gx -gx -gx -gx -gx -gx -AL -GE -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -xq -xq -xq -xq -xq -xq -xq -xq -xq -gx -gx -gx -gx -gx -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(112,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -FK -De -zu -iN -DE -Dq -zu -tT -Vk -sn -RN -aL -rm -cO -ZJ -ha -ha -ha -gx -gx -ha -ha -ha -Gk -ha -gx -gx -ha -ha -ha -ha -Bj -oM -Yt -Hm -EF -oM -ha -ha -ha -ha -vn -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -ha -ha -gx -gx -gx -gx -gx -gx -AL -GE -gx -ha -ha -gx -gx -gx -gx -ha -ha -ha -ha -ha -fQ -hG -PW -PW -PW -hG -hG -hG -fQ -zw -gx -gx -gx -gx -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(113,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -FK -im -zu -us -KH -IV -zu -zO -Vk -nm -RN -aL -ww -cO -DB -ha -ha -ha -gx -gx -ha -ha -uH -ha -ha -gx -gx -gx -gx -ha -ha -Bj -ux -RA -Hm -DJ -oM -ha -ha -ha -ha -LW -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -ha -gx -gx -gx -gx -gx -gx -ha -LW -bT -ha -ha -ha -ha -ha -ha -ha -ha -FX -ha -ha -ha -ha -Cf -if -if -Cf -Cf -Cf -Cf -zw -zw -zw -zw -zw -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -bv -rV -"} -(114,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -FK -Sj -FK -Zg -vz -YI -Sh -gm -Vk -bg -RN -aL -Zk -Vk -ZJ -ha -ha -gx -gx -gx -ha -ha -gx -ha -ha -gx -Oc -Oc -gx -ha -ha -Bj -ux -RA -Hm -Za -Tl -Tl -Tl -Tl -Tl -LW -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -ha -ha -gx -gx -gx -gx -ha -ha -LW -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -Cf -Cf -if -Cf -Cf -Cf -zw -zw -zw -tw -zw -zw -zw -zw -zw -zw -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(115,1,1) = {" -Vg -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -FK -FK -tZ -zu -zu -Iy -zu -zu -qv -Vk -kn -hb -ZT -yV -cO -DB -ha -ha -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -gx -ha -ha -Bj -ux -RA -Hm -Ww -Tl -fA -kI -Kf -Tl -vn -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -gx -ha -gx -gx -gx -gx -ha -ha -Ap -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -Cf -Cf -if -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(116,1,1) = {" -Vg -pC -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -FK -ag -vA -kS -xD -fS -DK -kS -kU -Vk -dN -Um -Fi -fY -cO -ZJ -ha -ha -gx -gx -ha -gx -gx -gx -gx -ha -gx -Oc -Oc -gx -ha -ha -Bj -oM -iS -zQ -Bb -Pv -AB -Gh -NL -Tl -iq -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -Oc -ab -Oc -gx -gx -gx -gx -gx -ha -ha -ha -Bj -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -pw -ha -ha -Cf -if -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(117,1,1) = {" -Vg -pC -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -FK -LY -Vo -FK -FK -FK -FK -FK -Vk -Vk -sC -oI -Vk -Vk -Vk -DB -ha -gx -gx -gx -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -ha -ha -Bj -oM -EC -VW -Zf -uF -Gp -dx -Dp -cR -VP -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -Oc -ab -Oc -gx -gx -gx -gx -gx -gx -ha -ha -Bj -dP -dP -dP -dP -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -yj -yj -yj -yj -yj -yj -yj -yj -yj -bv -bv -bv -rV -"} -(118,1,1) = {" -Vg -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -FK -Ga -fD -FK -yy -Hr -yy -NC -rH -Zj -Bq -ot -cO -KS -wc -el -ha -gx -gx -gx -ha -ha -gu -ha -ha -ha -gx -gx -gx -gx -ha -ha -Bj -ux -Gc -VH -Qz -Tl -Lp -rC -hy -Tl -go -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ha -ha -ha -nF -dP -ro -hx -dP -ti -ti -nV -ha -ha -ha -ha -ha -nH -ha -ha -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -yj -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(119,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -wL -XF -wf -wL -yy -yy -yy -yy -rH -UT -tk -gQ -cO -ZJ -ha -ha -gx -gx -gx -gx -ha -ha -ha -ha -gu -ha -gx -gx -ha -ha -ha -ha -vn -ux -RA -VW -gz -Tl -Tl -Tl -Tl -Tl -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ha -ha -ha -fo -sS -JT -lG -qN -MM -gl -nV -nV -nV -ha -ha -ha -nH -ha -ha -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -hE -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -yj -yj -yj -yj -yj -yj -bv -bv -rV -"} -(120,1,1) = {" -Vg -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -wL -XF -wf -wL -yy -yy -yy -yy -Vk -Vk -dZ -xk -Vk -DB -ha -ha -gx -gx -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -cZ -ha -gu -ha -vn -ux -RA -VW -vM -oM -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -Oc -ab -Oc -gx -gx -gx -gx -gx -xK -wr -jz -YH -dP -zP -Jb -qN -gP -br -YM -fg -nV -ha -ha -ha -nH -ha -ha -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -uE -uE -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -yj -yj -yj -yj -yj -bv -bv -rV -"} -(121,1,1) = {" -Vg -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -Ly -ha -ha -ha -ha -wL -XF -wf -wL -yy -yy -yy -yy -yy -vo -YA -YA -CQ -ur -gx -gx -gx -gx -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gu -gu -Bj -oM -kc -VW -HQ -oM -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -Oc -ab -Oc -gx -gx -gx -gx -gx -wb -nV -ti -ti -dP -PY -Jk -qN -Ms -jL -XJ -mN -pM -ha -ha -ha -nH -ha -ha -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -uE -uE -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -yj -yj -yj -bv -bv -bv -rV -"} -(122,1,1) = {" -Vg -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -wL -kV -wf -wL -yy -yy -yy -yy -yy -pV -Xe -Xe -Qd -ha -gx -gx -ha -ha -ha -Id -PC -Lo -PC -Lo -Lo -PC -PC -PC -Lo -PC -Lo -PC -NJ -oM -CC -VW -jF -oM -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -gx -ha -gx -gx -gx -Hu -mS -sc -MO -zM -cK -Pd -Le -uS -PF -XJ -Wq -pM -ha -ha -ha -nH -ha -ha -Cf -Cf -if -if -Cf -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -yj -yj -yj -bv -bv -rV -"} -(123,1,1) = {" -Ds -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -wL -XF -wf -qU -yy -yy -yy -yy -yy -vP -gx -gx -gx -gx -gx -gx -ha -ha -ha -Bj -FU -eS -eS -eS -FU -FU -oM -oM -xz -xz -xz -oM -oM -oM -rR -Lz -px -oM -oM -xz -xz -xz -xz -oM -jN -jN -OA -OA -OA -jN -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -Hu -Nn -BH -mG -Ie -db -He -XJ -MX -Au -EZ -rZ -nV -ha -ha -ha -nH -ha -ha -Cf -Cf -if -if -Cf -zw -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -uE -uE -uE -yj -yj -yj -bv -bv -rV -"} -(124,1,1) = {" -eM -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -FX -ha -wL -XF -wf -wL -yy -yy -yy -yy -pV -Qd -gx -gx -gx -gx -gx -ft -PC -PC -Lo -NJ -FU -Tm -Vb -oe -dv -Gq -eD -Db -TM -pH -NH -Db -ht -RE -ad -fj -GF -zV -HA -Hm -TM -pH -NH -lF -Ir -Oy -bw -hU -ma -jN -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -wb -nV -Ht -Zb -nV -PN -xe -Tq -fO -En -XJ -ON -pM -ha -ha -ha -nH -ha -ha -Cf -Cf -if -if -Cf -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -uE -uE -yj -yj -bv -bv -rV -"} -(125,1,1) = {" -NR -rY -rY -BN -ky -yO -BQ -hv -hv -hv -BQ -BQ -hv -BQ -hv -hv -BQ -BQ -BQ -hv -BQ -ML -NN -fJ -xF -Xe -Xe -Xe -Xe -Qd -gx -gx -gx -gx -gx -gx -ZF -FU -eS -eS -eS -FU -HR -Qt -Qt -FE -Gq -Hm -Hm -Hm -Hm -Hm -Hm -Hm -Jq -nr -VH -iO -Jq -Hm -Hm -TM -pH -NH -Hm -Ir -UN -GM -GM -GG -jN -OA -OA -OA -jN -kv -ha -ha -gx -gx -gx -gx -Qp -nV -Ed -Ed -nV -pR -He -YG -Ie -oC -vI -rd -pM -ha -ha -ha -nH -ha -ha -Cf -Cf -if -Cf -Cf -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -uE -yj -bv -bv -bv -rV -"} -(126,1,1) = {" -Ak -wM -TS -fL -gx -RK -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -Ex -gx -gx -gx -gx -gx -gx -RX -ID -Fb -It -nM -TT -mt -UK -UK -mr -ue -qh -LT -vK -vK -vK -vK -OV -ug -Ws -fj -CF -rR -Fo -Hm -Hm -Hm -pb -VV -Kt -jl -rO -rO -XL -Jo -nn -MA -WU -Cb -Sz -gx -gx -gx -gx -gx -gx -MR -wr -KF -Yo -nV -Dk -He -Qq -Ie -mF -xb -nV -nV -ha -ha -ha -nH -ha -ha -Cf -Cf -if -if -Cf -zw -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -yj -yj -yj -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -uE -yj -yj -bv -bv -rV -"} -(127,1,1) = {" -Ak -wM -wM -wM -gx -RK -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -RX -vx -BI -Cd -jx -OI -HO -Qt -DH -xW -FU -xR -dH -VM -VM -VM -VM -dH -FW -VM -sF -wg -FW -dH -VM -VM -VM -dH -sQ -jN -TG -XR -GM -gr -Ra -SW -tp -VC -fT -Sz -gx -gx -gx -gx -gx -ha -ha -ha -ha -rc -nV -Xu -Br -GK -nV -nV -nV -nV -ha -ha -ha -ha -nH -ha -ha -Cf -Cf -if -if -Cf -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -yj -yj -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -yj -yj -bv -bv -rV -"} -(128,1,1) = {" -Ak -wM -yH -fL -gx -RK -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -RX -ID -Fb -It -nM -TT -IH -QM -QM -vV -si -fw -vm -Hm -Hm -Hm -Hm -AC -rR -VJ -VW -ps -ug -eL -vK -vK -vK -hf -ZW -RF -TE -at -at -Mt -Jo -nn -MA -WU -Cb -Sz -gx -gx -gx -gx -gx -gx -ha -ha -ha -Qp -Nn -uf -OW -Oq -pM -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -Cf -Cf -if -if -Cf -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -yj -yj -uE -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -uE -yj -bv -bv -rV -"} -(129,1,1) = {" -NR -rY -rY -Fc -bj -aQ -Dc -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -gx -ha -ha -ha -ha -ha -gx -gx -gx -gx -ha -NV -FU -BT -BT -BT -FU -zq -Qt -Qt -VB -Gq -Hm -Hm -Hm -Hm -Hm -Hm -Hm -Jq -CU -VH -fk -Jq -Hm -AA -AA -AA -Hm -Hm -Ir -Xa -GM -GM -Gj -jN -xH -xH -xH -jN -kv -ha -ha -gx -gx -gx -gx -ha -jZ -wr -aY -Nn -ow -tD -tl -pM -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -Cf -Cf -if -if -Cf -zw -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yj -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -bv -bv -bv -rV -"} -(130,1,1) = {" -eM -pC -Dc -zk -ki -fE -Dc -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -FX -ha -ha -gx -gx -gx -gx -gx -ha -ha -OP -ha -gx -gx -gx -ha -ha -Ap -ha -ha -ha -ha -FU -Rx -zX -sM -PT -Gq -BV -xd -TM -pH -NH -ET -Bs -zV -KX -DT -KL -yk -Rj -jR -rG -aw -Gy -Nt -Ir -LD -JG -LJ -BG -jN -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -xK -aY -FR -FR -FR -tj -Wx -WZ -FR -FR -FR -FR -ha -ha -ha -ha -nH -ha -ha -Cf -Cf -if -if -Cf -Cf -zw -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -yj -bv -bv -rV -"} -(131,1,1) = {" -eM -pC -Dc -ZO -eB -Eu -Dc -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -Xg -HP -HP -HP -nq -ha -ha -ha -ha -gx -gx -gx -ha -ha -Ap -ha -ha -ha -ha -FU -BT -BT -BT -FU -FU -oM -oM -tE -in -tE -oM -oM -oM -rR -Lz -lI -oM -oM -tE -in -tE -tE -oM -jN -jN -xH -xH -xH -jN -ha -ha -ha -ha -ha -OP -ha -gx -gx -gx -gx -Qp -FR -FR -wt -ka -ZZ -jc -oV -tt -nc -NP -FR -FR -ha -ha -ha -nH -ha -ha -Cf -Cf -if -if -if -Cf -zw -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -PU -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -yT -yT -yT -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -bv -bv -bv -"} -(132,1,1) = {" -Vg -pC -Dc -Dc -Dc -Dc -Dc -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -GJ -OB -OB -OB -GJ -ha -ha -ha -ha -gx -gx -gx -ha -ha -Bj -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -oM -XD -VW -Yh -oM -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -Qp -WV -se -FC -OL -OL -dS -OL -OL -OL -Lx -lk -ZG -ha -ha -ha -nH -ha -ha -ha -Cf -Cf -if -if -Cf -Cf -zw -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -PU -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -yT -Ey -yT -yT -yT -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -uE -Rr -"} -(133,1,1) = {" -Vg -XE -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -pw -ha -ha -ha -ha -ha -GJ -Rp -Be -nl -GJ -ha -ha -ha -VF -HP -HP -hW -LX -Lo -hH -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -oM -Yt -VW -Dr -VZ -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -Qp -WV -xY -xE -PR -PR -Kg -Cw -Cw -Cw -VN -fs -ZG -ha -ha -ha -nH -ha -ha -ha -ha -Cf -Cf -if -Cf -Cf -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -PU -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -uE -uE -uE -uE -uE -uE -uE -Ey -Ey -Ey -Ey -Ey -Ey -Ey -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -yT -Ey -Ey -Ey -yT -yT -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -Rr -"} -(134,1,1) = {" -Vg -XE -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -GJ -Be -pJ -Be -GJ -ha -ha -GJ -GJ -Uz -WK -GJ -LW -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -oM -oM -oM -oM -oM -oM -jA -VH -Iw -oM -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -dP -Am -SU -SU -SU -SU -aY -FR -se -QR -Pf -Ya -Ya -Ya -Ya -aW -xn -se -FR -ha -ha -ha -nH -ha -ha -ha -ha -Cf -Cf -if -if -Cf -zw -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -PU -Ao -Ao -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -uE -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -uE -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -yT -yT -Ey -Ey -Ey -yT -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -Rr -"} -(135,1,1) = {" -Vg -XE -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -GJ -VR -Be -oc -GJ -ha -ha -yM -Yr -pn -Wi -Us -LW -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ux -Hm -JB -Hm -pb -uk -Hm -VW -Dr -NO -NO -NO -NO -NO -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -dP -Ny -gx -gx -gx -gx -FR -FR -Mp -QR -nS -qG -qG -qG -qG -JE -xn -OL -FR -FR -ha -ha -nH -ha -ha -ha -ha -ha -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -PU -Ao -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -yT -yT -yT -yT -yT -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -Rr -"} -(136,1,1) = {" -Vg -XE -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -GJ -GJ -Do -GJ -GJ -ha -ha -yM -Hg -pU -js -Us -LW -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -oM -eo -TI -iX -UR -VM -VM -JJ -Dr -NO -CP -Dz -Ss -NO -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -dP -lZ -gx -gx -gx -gx -WV -eq -se -QR -nS -qG -qG -qG -qG -JE -xn -OL -Ze -ZG -ha -ha -nH -ha -ha -ha -ha -ha -zw -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -PU -Ao -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -Rr -"} -(137,1,1) = {" -Vg -XE -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -GJ -GJ -EI -OH -GJ -LW -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ux -Ot -Tf -yK -Di -oM -pu -VW -pX -NO -Xt -Ck -sb -NO -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -dP -dI -gx -gx -gx -gx -WV -se -OL -QR -nS -qG -pk -oY -cT -BU -xn -OL -Ze -ZG -ha -ha -nH -ha -ha -ha -ha -ha -zw -Cf -if -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -PU -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -uE -Rr -"} -(138,1,1) = {" -Vg -XE -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -GJ -sN -aK -yP -Us -vn -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -oM -YL -ox -og -on -uk -Hm -sR -Em -XS -pF -Pm -YK -NO -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -dP -Bk -gx -gx -gx -gx -FR -qH -OL -QR -nS -qG -ZS -Jf -cT -BU -GX -WC -Si -FR -ha -ha -nH -ha -ha -ha -ha -ha -zw -Cf -if -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ao -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -bv -bv -bv -"} -(139,1,1) = {" -Vg -XE -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -GJ -IK -Hw -Se -Us -LW -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ux -Hm -BV -Hm -ZB -Hm -Hm -VW -Jz -NO -Zm -xw -ko -NO -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -WV -se -OL -QR -nS -qG -LA -Wp -cT -BU -xn -OL -Ze -ZG -ha -ha -nH -ha -ha -ha -ha -ha -zw -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ao -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -yj -bv -bv -rV -"} -(140,1,1) = {" -Vg -XE -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -GJ -jw -yY -Lr -Us -pj -PC -PC -Lo -PC -AN -ha -ha -ha -ha -ha -ha -ha -ha -ha -oM -oM -oM -oM -oM -oM -Ug -VW -ok -NO -NO -NO -NO -NO -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -WV -eq -se -QR -VK -cT -cT -cT -cT -BU -xn -OL -Ze -ZG -ha -ha -nH -ha -ha -ha -ha -ha -zw -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ao -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -bv -bv -bv -rV -"} -(141,1,1) = {" -Vg -XE -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -ha -ha -gj -gj -sw -sw -sw -GJ -Od -bM -PM -GJ -ed -ed -ed -Ip -Ip -pj -ZE -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -oM -Jm -lM -ku -oM -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gu -ha -ha -ha -gx -gx -gx -gx -FR -FR -Ic -QR -VK -cT -cT -cT -cT -BU -xn -OL -FR -FR -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -Cf -Cf -if -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -Ey -Ey -Ey -Ey -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ao -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -yj -bv -bv -rV -"} -(142,1,1) = {" -Vg -XE -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -ha -gj -gj -de -WA -WA -sx -GJ -GJ -EI -tM -GJ -oo -om -IR -TW -Ip -Ip -pj -AN -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ux -RA -Hm -ok -VZ -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gu -ha -ha -ha -ha -gx -gx -gx -ha -FR -se -QR -Os -Uq -Uq -Uq -Uq -ij -xn -se -FR -ha -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ao -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -yj -bv -bv -rV -"} -(143,1,1) = {" -Vg -XE -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -gj -gj -vE -wQ -wQ -wQ -Mm -pN -EV -tx -XU -qT -ZL -qm -qm -qm -RI -Ip -Ip -LW -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -oM -eJ -Hm -oQ -oM -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gu -ha -ha -ha -gu -gx -gx -gx -ha -WV -RV -AV -PR -PR -qY -Cw -Cw -Cw -vU -bS -ZG -ha -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -Ey -bv -bv -rV -"} -(144,1,1) = {" -Vg -XE -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -xG -kK -BR -rz -FM -uN -Jc -pN -Ei -af -ef -qT -bH -NI -NI -NI -tn -mx -Ip -LW -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -EQ -Xo -Ac -Xo -EQ -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gu -ha -ha -ha -ha -gx -gx -gx -gx -ha -WV -VY -gV -OL -OL -UV -OL -OL -OL -HK -se -ZG -ha -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -Cf -Cf -if -if -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -uE -bv -bv -bv -rV -"} -(145,1,1) = {" -Vg -XE -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -xG -II -Yj -tc -ZR -CG -tg -pd -GC -af -qI -WQ -EX -TR -EK -Ar -Ag -TC -ga -LW -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -EQ -EQ -Aq -Sa -Ye -EQ -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -ha -FR -FR -ew -YX -YR -Fp -ke -qj -DM -rN -FR -FR -ha -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -Cf -Cf -if -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -Ey -Ey -bv -bv -rV -"} -(146,1,1) = {" -Vg -XE -pC -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -xG -Qi -In -YT -Gn -lR -KZ -PZ -iY -yG -jJ -cY -Ur -xA -Js -Nx -iR -KT -ga -vn -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -QJ -Ut -kd -kF -Sp -iV -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -gx -ha -ha -FR -FR -FR -tj -MV -WZ -FR -FR -FR -FR -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -Cf -Cf -if -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Zu -Ao -Ao -Ao -Ao -Zu -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -uE -Ey -Ey -bv -bv -rV -"} -(147,1,1) = {" -Vg -XE -pC -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -xG -eg -fy -fy -cC -AY -nv -XO -CN -gX -pZ -rI -kN -Vs -uJ -Xr -Oo -KT -ga -LW -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gu -QJ -ay -kd -TL -Sp -iV -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -ha -ha -ha -ha -ha -iZ -WG -AT -iu -JA -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -zw -zw -Ey -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -uE -Ey -Ey -Ey -bv -bv -rV -"} -(148,1,1) = {" -Vg -XE -pC -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -gj -Sq -cX -bs -RD -MB -bX -pd -TZ -Hk -Hi -WQ -vh -lL -Kp -eT -fz -Ev -ga -FY -kP -JW -ha -ha -ha -YO -YO -YO -YO -YO -YO -YO -vb -kd -yE -Sp -iV -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -ha -ha -ha -ha -ha -ha -iZ -dW -wd -IS -JA -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -zw -Ey -Ey -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Zu -Ao -Ao -Ao -Ao -Zu -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -uE -uE -Ey -Ey -bv -bv -bv -rV -"} -(149,1,1) = {" -Vg -XE -pC -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -gj -Dj -rv -Xn -gg -zN -Me -pd -Ym -Hk -kE -qT -cU -ah -Kp -KT -No -kx -Hz -Ue -Hz -Hz -YO -YO -YO -YO -Vz -re -KO -re -Uf -Nd -vb -Qb -yE -Ji -EQ -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -ha -ha -ha -gu -ha -ha -ha -Ke -Uh -ua -su -Ke -Ke -Ke -Ke -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -Ey -Ey -Ey -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -XN -XN -XN -XN -XN -XN -XN -uE -uE -uE -uE -uE -uE -uE -Ey -Ey -Ey -Ey -bv -bv -rV -"} -(150,1,1) = {" -Vg -XE -pC -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -gj -TU -KY -ql -Op -Cc -AJ -pd -gS -Hk -kE -qT -hh -ah -wA -KT -pD -kx -Aw -Bc -Zd -kx -Vc -wi -Vc -vb -oh -Hq -Hq -Hq -XA -LZ -vb -MJ -GU -Sp -iV -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -ha -ha -ha -ha -ha -ha -ha -Ke -jW -no -Nh -Uh -ji -ji -Ke -Ke -ha -ha -ha -nH -ha -ha -ha -ha -ha -Ey -Ey -Ey -Cf -Cf -if -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -fQ -LS -LS -LS -LS -fQ -Ey -Ey -gx -GE -gx -gx -gx -gx -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -XN -XN -uE -uE -uE -uE -uE -uE -uE -Ey -Ey -Ey -Ey -Ey -Ey -bv -bv -rV -"} -(151,1,1) = {" -Vg -XE -pC -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -Ku -Ku -QW -QW -QW -Ky -Ky -QW -QW -Ea -kA -qT -uc -hd -US -Rm -RS -kx -VT -md -zd -kx -sj -mu -ce -vc -ns -Pj -kD -ep -az -aJ -vb -Gw -ja -Sp -iV -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -ha -ha -ha -ha -ha -Ke -OC -OC -Ke -SQ -AQ -KR -LF -iC -ZU -Ul -SE -ha -ha -ha -nH -ha -ha -ha -ha -ha -Ey -Ey -Ey -Cf -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -xq -xq -xq -xq -xq -xq -gx -gx -gx -GE -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -bv -bv -rV -"} -(152,1,1) = {" -Vg -XE -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -ha -Ku -eE -ST -Xl -mO -Rb -Zv -Ky -Hk -gZ -qT -qT -WQ -WQ -WQ -qT -kx -jO -tu -Zo -kx -HH -Zp -HH -vb -os -gp -Fd -gp -es -Ai -fq -sg -nj -Pt -EQ -Mg -Mg -EQ -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -gx -gx -gx -gx -gx -ru -Ke -kZ -Jx -Ke -Mq -bB -SV -LF -BF -qR -qR -SE -ha -ha -ha -nH -ha -ha -ha -ha -ha -Ey -Ey -Ey -Ey -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -Ey -Ey -Ey -gx -gx -gx -gx -gx -gx -xq -xq -xq -xq -xq -xq -gx -gx -gx -GE -gx -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -bv -bv -bv -rV -"} -(153,1,1) = {" -Vg -XE -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -ha -yd -JM -qQ -Co -mO -uW -PE -Ky -jf -Vf -HG -eQ -sX -Zh -Dd -rk -kx -kx -Mx -LC -kx -vb -dK -vb -vb -vb -vb -vb -vb -qP -vb -vb -QQ -ll -Sp -tO -Vj -UZ -EQ -EQ -CT -CT -oZ -oZ -oZ -CT -oZ -oZ -CT -Gd -gx -gx -gx -gx -gx -gx -gx -gx -gx -pS -iZ -hs -cf -vY -Kz -BA -oH -Pe -uR -aD -aD -Ke -ha -ha -ha -nH -ha -ha -ha -ha -ha -Ey -Ey -Ey -Ey -Cf -Cf -if -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -fQ -Ha -Ha -Ha -Ha -fQ -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -Ey -Ey -Ey -Vw -Vw -Vw -Vw -Vw -Ey -Ey -bv -bv -rV -"} -(154,1,1) = {" -Vg -XE -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -ha -yd -JM -EA -Co -mO -Sg -Bg -LV -dr -SX -Ge -JY -zr -Jt -Om -uC -zr -Nk -sE -tW -FQ -am -GQ -ri -PS -bR -HN -BW -sJ -sv -lK -Zx -Jl -ll -BM -Zx -Zx -Zx -Zx -xs -LE -my -Gb -st -IX -wI -jk -Xz -UE -fb -gx -gx -gx -gx -gx -gx -gx -gx -gx -pS -rr -RL -QC -hr -Gf -Ne -xT -BJ -IM -aD -aD -Ke -ha -ha -ha -nH -ha -ha -ha -ha -VL -Ey -Ey -Ey -Ey -Cf -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -XT -XT -XT -XT -XT -XT -XT -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -uE -uE -uE -uE -uE -uE -Ey -Ey -Ey -Ey -Vw -Eq -CS -QK -Vw -Ey -Ey -bv -bv -rV -"} -(155,1,1) = {" -Vg -XE -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -ha -yd -JM -qQ -Co -yl -Ks -qu -Yp -xM -QO -Mf -WJ -AU -Sm -tv -Bo -IC -sq -tB -Sm -jt -MK -cQ -gH -Pu -JC -MK -fF -Iq -WR -MK -MK -MK -jb -pt -MK -UM -MK -nD -ix -dF -hi -Hp -TH -lB -dF -Yv -OD -ZI -fb -gx -gx -gx -gx -gx -gx -gx -gx -gx -BE -Ke -Zq -Zq -ba -LN -CE -LN -Uh -gB -yi -yi -SE -ha -ha -ha -nH -ha -ha -ha -ha -VL -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -Ey -Ey -gx -yT -yT -yT -yT -yT -yT -XT -XT -XT -XT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -uE -uE -Ey -Ey -Ey -Ey -Ey -Vw -RR -Yx -mp -Vw -Ey -Ey -bv -bv -rV -"} -(156,1,1) = {" -Vg -XE -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -ha -Ku -RH -PJ -uL -ao -ER -OT -wl -Wg -SX -EM -UF -UF -UF -UF -UF -ez -tP -Vv -UF -NA -gO -Tk -wW -Ew -Xc -nt -gO -gO -gO -gO -gO -hJ -wW -kY -nt -sI -wW -na -dM -CT -RQ -hB -UA -jE -CT -HD -DC -CT -Ft -gx -gx -ha -gx -gx -gx -gx -gx -ha -ha -ha -ha -ha -ba -RB -Bh -LN -jr -gc -jI -tQ -SE -ha -ha -ha -nH -ha -ha -ha -ha -VL -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -gx -yT -yT -yT -yT -yT -yT -XT -XT -XT -XT -XT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Vw -iP -Zs -zU -Vw -Ey -bv -bv -bv -rV -"} -(157,1,1) = {" -Vg -XE -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -mJ -mJ -mJ -mJ -mJ -ap -Tg -Yf -Ky -Ns -SD -mH -Ma -vW -zW -wm -Wh -Ma -HM -Zt -Bl -Bl -Bl -Bl -wh -lq -My -SP -SP -SP -SP -wh -wh -TO -TO -WT -TO -TO -ie -cE -rh -CT -CT -CT -CT -CT -CT -Ki -Ki -CT -ha -ha -ha -ha -gx -gx -gx -gx -ha -ha -ha -ha -ha -ha -ba -Lm -sL -LN -Kh -kX -Ke -Ke -Ke -ha -ha -ha -nH -ha -ha -ha -ha -VL -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -yT -yT -yT -yT -yT -yT -yT -XT -XT -XT -XT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Vw -Vw -TK -Vw -Vw -Ey -Ey -bv -bv -rV -"} -(158,1,1) = {" -Vg -XE -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -mJ -pE -pE -wE -mJ -mJ -mJ -mJ -mJ -PG -gZ -kG -Uy -Uy -Uy -Uy -Uy -Uy -wZ -bi -Bl -Rk -oB -Bl -lf -fU -xl -ho -gM -gM -cc -cs -wT -vv -sG -pf -Jn -Wr -OF -Kn -pL -LU -wv -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gx -gx -gx -gx -gx -ha -ha -ha -ha -ha -ha -ba -eR -po -ba -dC -dC -Ke -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -VL -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -yT -yT -yT -yT -yT -yT -yT -XT -XT -XT -XT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -Ey -Ey -Ey -Ey -bv -bv -rV -"} -(159,1,1) = {" -Vg -XE -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -WM -pE -pE -mq -wV -Fm -zE -Lc -mJ -jf -gZ -mL -Uy -RZ -PX -Kv -Jd -Uy -Fv -nW -eh -aa -UW -Bl -Kx -Re -wk -Hl -wo -IZ -IZ -IZ -IZ -TO -bo -qE -Hy -TO -OF -XK -OF -uX -wv -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -cq -fb -fb -fb -cI -ha -ha -ha -ha -ha -ha -ba -ba -ba -ba -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -VL -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -yT -yT -yT -yT -yT -yT -yT -yT -XT -XT -XT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -Ey -Ey -Ey -Ey -yT -yT -Ey -Ey -Ey -bv -bv -rV -"} -(160,1,1) = {" -Vg -XE -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -WM -Mz -OU -jV -bn -bn -cL -GZ -kb -cP -cM -LH -Uy -ES -mW -Xw -eG -Uy -Yq -cm -Bl -ve -MG -Bl -CA -Km -QA -fr -qe -Bn -BC -BC -Yd -TO -EW -TO -Nb -TO -mi -SS -wD -wD -wv -ha -ha -ha -ha -ha -ha -ha -ha -gu -ha -CT -sD -sD -sD -CT -ha -ha -ha -ha -ha -ha -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -VL -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -XT -XT -XT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -Ey -Ey -Ey -yT -Ey -Ey -Ey -bv -bv -bv -rV -"} -(161,1,1) = {" -Vg -XE -pC -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -WM -bK -vZ -xp -JD -Mz -dj -Lh -Ix -qK -KM -Uy -Uy -ii -HB -cu -nC -kW -Xk -do -Bl -Bl -Bl -Bl -zl -Ux -fN -YS -nZ -BC -Sr -BC -Sr -TO -Qo -TO -Cp -TO -Fe -VX -OF -xC -ui -ha -ha -ha -ha -ha -ha -ha -ha -gu -ha -CT -eK -eK -wH -CT -ha -ha -ha -ha -ha -ha -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -VL -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XT -XT -XT -XT -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -Ey -Ey -Ey -Ey -Ey -bv -bv -rV -"} -(162,1,1) = {" -Vg -XE -pC -pC -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -mJ -AP -Bx -ZD -nx -nx -Qk -qF -mJ -et -KM -Uy -Du -WN -kz -Cg -Uy -Uy -uj -Vf -HG -Ef -wh -vG -ZC -FV -bQ -tJ -kJ -BC -BC -BC -ai -TO -TO -TO -TO -TO -vT -VX -jU -OF -wv -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -CT -eK -RP -eK -CT -ha -ha -ha -ha -ha -ha -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -VL -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -if -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XT -zC -XT -XT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -Ey -Ey -Ey -bv -bv -rV -"} -(163,1,1) = {" -Vg -XE -pC -pC -pC -pC -pC -pC -pC -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -mJ -mJ -AO -Pg -Xy -nz -Pg -AO -mJ -dn -SL -Uy -wn -GH -dc -SR -Uy -co -Fa -Bo -gZ -bx -wh -vR -Mj -Mj -Mj -cd -vy -BC -Sy -BC -Sy -qg -ye -OF -sT -OF -nh -gT -vF -vF -wv -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -CT -lV -eK -gn -CT -ha -ha -ha -ha -ha -ha -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -VL -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -if -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -Ey -Ey -bv -bv -rV -"} -(164,1,1) = {" -Vg -XE -pC -pC -pC -pC -pC -pC -pC -pC -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -ha -mJ -mJ -hI -gb -gb -hI -uh -uh -vl -PL -uh -AW -Nc -rS -AW -Uy -Ma -zi -Wc -Yk -bu -wh -Ln -Mj -Mj -Mj -cd -kk -BC -BC -BC -Sn -qg -sB -OF -YQ -uX -OF -AM -uX -fG -wv -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -CT -CT -Aj -CT -CT -ha -ha -ha -ha -ha -ha -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -VL -VL -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -if -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -fl -KB -bv -bv -bv -"} -(165,1,1) = {" -Vg -XE -pC -pC -pC -pC -pC -pC -pC -pC -pC -ha -ha -ha -ha -ha -nH -ha -ha -ha -ha -ha -ha -ha -mJ -gb -gb -gb -gb -uh -lh -zF -SN -uh -uu -Eo -tK -tK -dR -Ma -vf -vf -vf -Ma -Wb -vR -Mj -Mj -Mj -cd -Bu -BC -OM -BC -Wa -qg -UO -OF -lx -uX -jn -AM -qt -ui -ui -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -ha -VL -VL -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -hC -SG -lA -hC -DP -hC -"} -(166,1,1) = {" -Vg -XE -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -ha -ha -ha -nH -ha -ha -ha -ha -ha -ha -ha -mJ -aO -gb -gb -aO -uh -yx -WX -Wo -uh -BB -xI -nw -nw -Er -AW -ha -ha -ha -ha -Wb -mn -Bw -Bw -QX -Rd -hm -BC -BC -BC -Wa -qg -Vh -OF -OF -GV -Uv -La -ui -ui -ha -ha -ha -ha -ha -ha -ha -ha -ha -gu -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -ha -VL -VL -VL -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -hC -vk -jH -hC -hC -hC -"} -(167,1,1) = {" -Vg -XE -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -ha -nH -ha -ha -ha -ha -ha -ha -ha -mJ -mJ -mJ -mJ -mJ -uh -lT -BX -QL -uh -AW -AW -AW -AW -AW -AW -ha -ha -ha -ha -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Fl -Fl -Fl -Fl -ui -ui -ui -ui -ui -ui -ui -ui -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -ha -VL -VL -VL -VL -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -hC -SG -lA -hC -FH -hC -"} -(168,1,1) = {" -Vg -XE -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -ha -nH -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -uh -hw -lp -bb -yu -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gu -ha -ha -ha -ha -ha -ha -ha -ha -ha -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -VL -VL -VL -VL -VL -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ao -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -FA -KB -bv -bv -bv -"} -(169,1,1) = {" -Vg -XE -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -gu -yp -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -uh -uh -vl -rg -uh -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -gu -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -bT -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -nH -VL -VL -VL -VL -VL -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -if -Cf -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ao -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -Ey -bv -bv -rV -"} -(170,1,1) = {" -Vg -Wn -cJ -cJ -cJ -cJ -cJ -cJ -cJ -cJ -cJ -cJ -cJ -cJ -cJ -cJ -hV -Oa -Qr -Qr -Qr -Qr -Oa -Oa -xQ -bT -bT -bT -bT -iI -NG -CZ -Zy -yu -bT -wJ -wJ -wJ -NM -Oa -Oa -Oa -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Oa -aE -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -Qr -il -Na -Na -Na -Na -Na -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -HV -HV -HV -HV -WY -WY -HV -HV -HV -HV -yv -yv -yv -yv -GE -GE -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -PU -PU -PU -PU -PU -PU -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -DQ -DQ -DQ -DQ -DQ -DQ -DQ -DQ -DQ -DQ -DQ -DQ -DQ -DQ -DQ -DQ -DQ -DQ -DQ -DQ -DQ -DQ -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -yv -Sk -Sk -rV -"} -(171,1,1) = {" -Vg -XE -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -gu -ha -ha -ha -ha -iI -yF -fH -ig -yu -ha -gu -gu -gu -gu -gu -gu -gu -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -bT -ha -ha -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -if -if -Cf -Cf -Cf -Cf -Cf -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -bv -bv -rV -"} -(172,1,1) = {" -Vg -XE -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -ha -uh -uh -DX -RC -uh -ha -zg -zg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -Na -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -if -if -Cf -Cf -Cf -Cf -Cf -fQ -xq -xq -fQ -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -bv -bv -bv -rV -"} -(173,1,1) = {" -Vg -XE -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -XE -XE -XE -XE -XE -XE -XE -XE -pC -ha -ha -lY -yy -yy -lY -zg -zg -zg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -VL -VL -VL -VL -VL -Na -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -if -if -if -Cf -Cf -Cf -jX -xq -xq -VD -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -bv -bv -rV -"} -(174,1,1) = {" -Vg -XE -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -XE -XE -XE -XE -XE -XE -XE -XE -zg -ha -ha -ha -ha -zg -zg -zg -zg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -ha -ha -ha -ha -ha -VL -VL -VL -VL -VL -VL -VL -VL -Na -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -if -if -if -if -if -jX -xq -xq -cy -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -bv -bv -rV -"} -(175,1,1) = {" -Vg -XE -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -XE -XE -XE -XE -XE -XE -XE -XE -zg -ha -ha -zg -zg -zg -zg -zg -zg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -ha -ha -ha -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -Na -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -VL -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -Cf -Cf -if -if -FD -xq -xq -cy -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -bv -bv -rV -"} -(176,1,1) = {" -Vg -XE -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -XE -XE -XE -XE -XE -XE -XE -XE -zg -zg -zg -zg -zg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -ha -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -Cf -if -FD -xq -xq -JQ -Cf -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -bv -bv -bv -rV -"} -(177,1,1) = {" -Vg -XE -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -XE -XE -XE -XE -XE -XE -XE -XE -zg -zg -zg -zg -zg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -FD -xq -xq -JQ -if -Cf -Cf -Cf -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -bv -bv -rV -"} -(178,1,1) = {" -Vg -XE -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -XE -XE -XE -XE -XE -XE -XE -XE -zg -zg -zg -pC -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -jX -xq -xq -JQ -if -if -if -Cf -Cf -Cf -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -bv -bv -rV -"} -(179,1,1) = {" -Vg -XE -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -pC -XE -XE -XE -XE -XE -XE -XE -XE -XE -zg -zg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -jX -xq -xq -cy -Cf -Cf -if -if -if -if -Cf -Cf -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -bv -bv -rV -"} -(180,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ec -xq -xq -cy -Cf -Cf -Cf -Cf -Cf -if -if -if -Cf -Cf -Cf -Cf -Ey -Ey -Ao -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -bv -bv -bv -rV -"} -(181,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -fQ -xq -xq -fQ -Ey -Ey -Cf -Cf -Cf -Cf -Cf -if -if -if -Cf -Cf -Cf -Ey -Ao -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -bv -bv -rV -"} -(182,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -if -if -if -Cf -Cf -Cf -Cf -Ao -Ao -Ao -Ao -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -Vg -"} -(183,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Ao -Ao -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -Vg -"} -(184,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -Cf -if -Cf -Cf -Cf -Ao -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -XE -Vg -"} -(185,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -if -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -XE -Vg -"} -(186,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -XE -Vg -"} -(187,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -XE -Vg -"} -(188,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -XE -Vg -"} -(189,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -if -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -XE -Vg -"} -(190,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -if -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -XE -Vg -"} -(191,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -if -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -Vg -"} -(192,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -if -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -Vg -"} -(193,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -mZ -mZ -mZ -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -if -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -Vg -"} -(194,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -mZ -uz -uz -mZ -mZ -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -if -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -Vg -"} -(195,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -mZ -uz -mZ -uz -uz -uz -mZ -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -if -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -Vg -"} -(196,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -mZ -uz -uz -Ol -uz -mZ -mZ -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -if -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -Vg -"} -(197,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -mZ -uz -uz -uz -uz -mZ -kT -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -if -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -Vg -"} -(198,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -uz -mZ -uz -uz -mZ -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -if -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -hE -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -Vg -"} -(199,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -mZ -mZ -mZ -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -if -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -Vg -"} -(200,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -if -if -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -Vg -"} -(201,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -Ey -Ey -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -if -if -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -Vg -"} -(202,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -vB -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -if -Cf -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -Vg -"} -(203,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zg -yT -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -if -Cf -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -Vg -"} -(204,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zg -yT -yT -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -Ey -Ey -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -Vg -"} -(205,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zg -yT -yT -yT -yT -yT -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -Ey -Ey -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -Vg -"} -(206,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zg -zg -yT -yT -yT -yT -yT -DQ -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -Ey -Ey -yT -yT -ip -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -Vg -"} -(207,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zg -zg -zg -yT -yT -yT -yT -yT -DQ -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -Ey -Ey -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Cf -Cf -Cf -Cf -Cf -yT -yT -Cf -Cf -Cf -Cf -Cf -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -Vg -"} -(208,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zg -zg -zg -zg -yT -yT -yT -yT -yT -DQ -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -yT -yT -yT -yT -yT -Ey -Ey -yT -yT -yT -yT -yT -Cf -Cf -Cf -Cf -Cf -yT -yT -yT -Cf -Cf -Cf -Cf -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -Vg -"} -(209,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zg -zg -zg -zg -zg -yT -yT -yT -yT -yT -DQ -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Cf -Cf -Cf -Cf -Cf -yT -yT -yT -Cf -Cf -Cf -Cf -Cf -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -Vg -"} -(210,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zg -zg -zg -zg -zg -zg -yT -yT -yT -yT -yT -DQ -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Cf -Cf -Cf -Cf -yT -yT -yT -yT -yT -Cf -Cf -Cf -Cf -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -XE -XE -XE -Vg -"} -(211,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zg -zg -zg -zg -zg -zg -zg -zg -yT -yT -yT -yT -yT -DQ -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Cf -Cf -Cf -Cf -yT -yT -yT -yT -yT -Cf -Cf -Cf -Cf -Cf -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -yT -yT -yT -XE -XE -XE -Vg -"} -(212,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zg -zg -zg -zg -zg -zg -zg -zg -zg -yT -yT -yT -yT -yT -DQ -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Cf -Cf -Cf -Cf -Cf -yT -yT -yT -yT -yT -yT -Cf -Cf -Cf -Cf -Cf -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Ey -Ey -Ey -Ey -Ey -Ey -Ey -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -Vg -"} -(213,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zg -zg -zg -zg -zg -zg -zg -bP -bP -bP -WP -yT -yT -yT -yT -DQ -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -Cf -Cf -Cf -Cf -yT -yT -yT -WP -WP -WP -WP -Cf -Cf -Cf -Cf -Cf -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -DQ -yT -yT -yT -yT -yT -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -Vg -"} -(214,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zg -zg -zg -zg -zg -bP -bP -bP -bP -bP -bP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -Cf -Cf -Cf -Cf -WP -WP -WP -WP -WP -WP -WP -WP -Cf -Cf -Cf -Cf -Cf -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -Vg -"} -(215,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zg -zg -zg -zg -zg -bP -bP -bP -bP -bP -bP -bP -bP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -Cf -Cf -Cf -Cf -Cf -WP -WP -WP -WP -WP -WP -WP -WP -WP -Cf -Cf -Cf -Cf -Cf -WP -WP -WP -WP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -Vg -"} -(216,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zg -zg -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -WP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -Cf -Cf -Cf -Cf -Cf -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -Cf -Cf -Cf -Cf -Cf -WP -WP -WP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -Vg -"} -(217,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zg -zg -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -WP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -fp -xL -xL -xL -PO -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -Cf -Cf -Cf -Cf -Cf -WP -WP -WP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -Vg -"} -(218,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -zg -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -WP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -fp -xL -xL -xL -PO -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -fp -xL -xL -xL -tY -WP -WP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -Vg -"} -(219,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -WP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -fp -xL -xL -gD -Gv -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -pW -Ka -xL -xL -PO -WP -WP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -Vg -"} -(220,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -bP -bP -Kd -tY -bP -bP -bP -bP -bP -bP -bP -WP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -Kd -xh -xL -xL -PO -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -pW -Ka -xL -PO -WP -WP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -Vg -"} -(221,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -Kd -hO -hO -xh -Mh -tY -bP -bP -bP -bP -bP -bP -WP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -fp -xL -xL -gD -Gv -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -fp -xL -Mh -tY -WP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -Vg -"} -(222,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -bP -Kd -hO -xh -xL -xL -xL -xL -Mh -tY -bP -bP -bP -bP -bP -WP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -fp -xL -xL -PO -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -fp -xL -xL -Mh -tY -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -Vg -"} -(223,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -bP -bP -Kd -xh -xL -xL -xL -xL -xL -xL -xL -Mh -hO -tY -bP -bP -bP -WP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -fp -xL -xL -PO -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -pW -Ka -xL -xL -PO -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -Vg -"} -(224,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -bP -bP -Kd -hO -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Mh -tY -bP -bP -WP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -Kd -hO -hO -hO -tY -WP -WP -WP -WP -WP -WP -Kd -xh -xL -xL -PO -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -fp -xL -xL -Mh -hO -tY -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -Vg -"} -(225,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Kd -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Mh -tY -bP -WP -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -Kd -hO -hO -hO -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -Kd -xh -xL -xL -xL -Mh -hO -hO -tY -WP -WP -WP -fp -xL -xL -xL -PO -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -Kd -hO -xh -xL -xL -xL -xL -Mh -tY -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -Vg -"} -(226,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Kd -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Mh -hO -tY -WP -WP -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -Kd -hO -hO -xh -xL -xL -xL -Mh -hO -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -Kd -hO -hO -hO -hO -xh -xL -xL -xL -xL -xL -xL -xL -Mh -hO -hO -hO -xh -xL -xL -xL -PO -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -Kd -hO -hO -hO -xh -xL -xL -xL -xL -xL -xL -xL -Mh -hO -hO -ne -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -Kd -hO -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -Vg -"} -(227,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Kd -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Mh -hO -tY -WP -WP -WP -to -WP -WP -WP -WP -WP -WP -WP -WP -Kd -hO -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -Mh -hO -hO -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -Kd -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -PO -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -Kd -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Gs -Mh -hO -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -Kd -hO -xh -xL -Mh -hO -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -Vg -"} -(228,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Kd -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Mh -hO -hO -hO -ne -hO -hO -hO -hO -hO -hO -hO -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Mh -hO -hO -tY -WP -WP -WP -WP -WP -WP -Kd -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Mh -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Gs -xL -xL -Mh -hO -hO -hO -tY -WP -WP -WP -WP -WP -WP -WP -Kd -hO -xh -xL -xL -xL -xL -xL -Mh -hO -hO -hO -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -Vg -"} -(229,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -XE -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Kd -hO -hO -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Gs -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Mh -hO -hO -hO -hO -hO -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Gs -xL -xL -xL -xL -xL -xL -Mh -hO -hO -hO -hO -hO -hO -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Mh -hO -hO -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -Vg -"} -(230,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Kd -hO -hO -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Gs -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -xL -xL -xL -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Gs -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Mh -hO -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -Vg -"} -(231,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Kd -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Gs -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Gs -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Mh -hO -hO -hO -hO -hO -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -Vg -"} -(232,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Kd -hO -hO -hO -hO -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -xL -Gs -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -Ig -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Gs -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -PO -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -Vg -"} -(233,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Kd -hO -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -Gs -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -Mh -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -Vg -"} -(234,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Kd -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -Gs -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -Mh -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -XE -Vg -"} -(235,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Kd -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -Gs -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -gD -za -Ka -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -Mh -hO -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -XE -Vg -"} -(236,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -bP -bP -Kd -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -Gs -xL -xL -xL -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -gD -Gv -WP -pW -Ka -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -Mh -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -XE -Vg -"} -(237,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -bP -Kd -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Gs -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -gD -za -za -Gv -WP -WP -WP -pW -Ka -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -PO -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -XE -Vg -"} -(238,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -Kd -hO -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -gD -Gv -WP -WP -WP -WP -yT -yT -WP -pW -Ka -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -Mh -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -XE -Vg -"} -(239,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -Kd -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -PO -WP -yT -WP -WP -yT -yT -yT -yT -WP -pW -Ka -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -Mh -hO -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -XE -Vg -"} -(240,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -bP -bP -bP -Kd -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -PO -WP -yT -yT -yT -yT -Ey -yT -yT -WP -WP -fp -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -xL -Mh -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -XE -XE -Vg -"} -(241,1,1) = {" -OK -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -Kd -hO -hO -hO -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -PO -WP -WP -yT -yT -Ey -Ey -Ey -yT -yT -WP -pW -Ka -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -Mh -hO -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -XE -XE -Vg -"} -(242,1,1) = {" -eM -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -Kd -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -Mh -tY -WP -yT -yT -Ey -Ey -Ey -yT -yT -yT -WP -fp -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -xL -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -XE -XE -XE -Vg -"} -(243,1,1) = {" -eM -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Kd -hO -xh -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -PO -WP -WP -yT -Ey -Ey -Ey -Ey -yT -yT -WP -fp -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -Mh -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -XE -XE -XE -Vg -"} -(244,1,1) = {" -Ci -SY -SY -SY -SY -SY -SY -SY -SY -SY -SY -SY -SY -SY -SY -SY -Yw -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -Mh -tY -WP -yT -yT -yT -Ey -Ey -yT -yT -WP -fp -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -Mh -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -XE -XE -XE -XE -Vg -"} -(245,1,1) = {" -Ci -SY -SY -SY -SY -SY -SY -SY -SY -SY -SY -SY -SY -SY -SY -SY -Yw -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -PO -WP -WP -WP -yT -yT -Ey -yT -yT -WP -fp -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -PO -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -XE -XE -XE -XE -XE -Vg -"} -(246,1,1) = {" -Ci -SY -SY -SY -SY -SY -SY -SY -SY -SY -SY -SY -SY -SY -SY -Yw -Yw -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -Mh -tY -WP -WP -yT -yT -Ey -yT -yT -WP -fp -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -Mh -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -yT -XE -XE -XE -XE -XE -XE -XE -XE -Vg -"} -(247,1,1) = {" -eM -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -pW -za -za -Ka -xL -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -Mh -tY -WP -yT -yT -yT -yT -yT -WP -fp -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -Mh -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -yT -yT -yT -XE -XE -XE -XE -XE -XE -XE -XE -XE -Vg -"} -(248,1,1) = {" -eM -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -fp -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -PO -WP -WP -yT -yT -yT -WP -WP -fp -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -Mh -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -yT -yT -yT -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Vg -"} -(249,1,1) = {" -eM -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -fp -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -Mh -hO -tY -WP -yT -yT -WP -Kd -xh -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -Mh -tY -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Vg -"} -(250,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -fp -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -Mh -tY -WP -WP -WP -fp -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -PO -WP -WP -WP -WP -WP -WP -WP -WP -WP -WP -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Vg -"} -(251,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -Kd -xh -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -Mh -tY -WP -WP -fp -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -PO -WP -WP -WP -WP -WP -WP -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Vg -"} -(252,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -bP -bP -Kd -xh -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -Mh -hO -hO -xh -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -Mh -tY -WP -WP -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Vg -"} -(253,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -bP -bP -pW -Ka -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -PO -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Vg -"} -(254,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -fp -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -PO -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Vg -"} -(255,1,1) = {" -Vg -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -fp -xL -xL -xL -xL -xL -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -cF -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -Ig -xL -xL -xL -xL -PO -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -Vg -"} -(256,1,1) = {" -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -gG -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -Vg -"} diff --git a/maps/southern_sun/southern_cross-5.dmm b/maps/southern_sun/southern_cross-5.dmm deleted file mode 100644 index e09ca1a7fe..0000000000 --- a/maps/southern_sun/southern_cross-5.dmm +++ /dev/null @@ -1,70656 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall) -"ab" = ( -/turf/simulated/mineral/sif, -/area/surface/cave/unexplored/deep) -"ac" = ( -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/deep) -"ad" = ( -/turf/simulated/wall/solidrock, -/area/surface/cave/unexplored/deep) -"ae" = ( -/turf/simulated/mineral/sif, -/area/surface/cave/unexplored/normal) -"af" = ( -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/normal) -"ag" = ( -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/unexplored/normal) -"ah" = ( -/obj/machinery/conveyor{ - id = "anolongstorage" - }, -/turf/simulated/floor/plating{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/research/xenoarcheology) -"ai" = ( -/turf/simulated/floor/plating{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/research/xenoarcheology) -"aj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/research/xenoarcheology) -"ak" = ( -/obj/machinery/conveyor_switch{ - id = "anolongstorage"; - req_access = list(65) - }, -/turf/simulated/floor/plating{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/research/xenoarcheology) -"al" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating{ - temperature = 243.15; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/surface/outpost/research/xenoarcheology) -"am" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology) -"an" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology) -"ao" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1397; - master_tag = "xenoarch2_airlock_control"; - name = "Xenoarch Access Button"; - pixel_x = 24; - req_access = list(47) - }, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1397; - icon_state = "door_locked"; - id_tag = "xenoarch2_airlock_exterior"; - locked = 1; - name = "Research Exterior Airlock" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"ap" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"aq" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"ar" = ( -/obj/machinery/conveyor{ - id = "anolongstorage" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"as" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"at" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"au" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/computer/guestpass{ - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"av" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/anomaly) -"aw" = ( -/obj/machinery/conveyor{ - id = "anolongstorage" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/anomaly) -"ax" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/anomaly) -"ay" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"az" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"aA" = ( -/obj/structure/closet/excavation, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"aB" = ( -/obj/structure/closet/excavation, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"aC" = ( -/obj/structure/closet/excavation, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/alarm{ - pixel_y = 23 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"aD" = ( -/obj/machinery/conveyor_switch{ - id = "anolongstorage"; - req_access = list(65) - }, -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"aE" = ( -/obj/machinery/conveyor{ - id = "anolongstorage" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"aF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenoarch Airlock 2"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"aG" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"aH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"aI" = ( -/obj/machinery/conveyor{ - id = "anolongstorage" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/anomaly) -"aJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/conveyor_switch{ - id = "anolongstorage"; - req_access = list(65) - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/anomaly) -"aK" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"aL" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"aM" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"aN" = ( -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"aO" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"aP" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"aQ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/machinery/alarm{ - pixel_y = 23 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"aR" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"aS" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"aT" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"aU" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"aV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"aW" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"aX" = ( -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1397; - icon_state = "door_locked"; - id_tag = "xenoarch2_airlock_interior"; - locked = 1; - name = "Research Interior Airlock" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1397; - master_tag = "xenoarch2_airlock_control"; - name = "Research Access Button"; - pixel_x = 26; - pixel_y = 6; - req_access = null - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"aY" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"aZ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"ba" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"bb" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"bc" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"bd" = ( -/obj/structure/sign/warning/nosmoking_2, -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"be" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"bf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"bg" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"bh" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"bi" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bj" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bk" = ( -/obj/item/storage/excavation, -/obj/item/pickaxe, -/obj/item/tool/wrench, -/obj/item/measuring_tape, -/obj/item/stack/flag/yellow, -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bm" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bn" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"bp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - frequency = 1397; - id_tag = "xenoarch2_airlock_control"; - name = "Research Access Console"; - pixel_x = 26; - pixel_y = 26; - tag_exterior_door = "xenoarch2_airlock_exterior"; - tag_interior_door = "xenoarch2_airlock_interior" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"bq" = ( -/obj/machinery/shower{ - pixel_y = 3 - }, -/obj/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology) -"br" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/anomaly) -"bs" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"bt" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"bu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"bv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research{ - name = "Long Term Storage"; - req_access = list(65) - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"bw" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"bx" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"by" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"bz" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/light_switch{ - name = "light switch "; - pixel_x = 36 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"bA" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bD" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bE" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bF" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bG" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_research{ - name = "Expedition Prep"; - req_access = list(65) - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"bI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"bJ" = ( -/obj/machinery/space_heater, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"bK" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/anomaly) -"bL" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"bM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"bN" = ( -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"bO" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"bP" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/anomaly_container, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"bQ" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light/small, -/obj/structure/anomaly_container, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"bR" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Long Term Storage"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"bS" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/obj/structure/anomaly_container, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/longtermstorage) -"bT" = ( -/obj/effect/floor_decal/corner/purple/full, -/obj/machinery/suspension_gen, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bU" = ( -/obj/machinery/suspension_gen, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bV" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bW" = ( -/obj/item/storage/excavation, -/obj/item/pickaxe, -/obj/item/tool/wrench, -/obj/item/measuring_tape, -/obj/item/stack/flag/yellow, -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Expedition Prep"; - dir = 1 - }, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_y = -27 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bX" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/item/storage/belt/archaeology, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/item/clothing/mask/breath, -/obj/structure/window/reinforced, -/obj/machinery/door/window/northleft, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bY" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/item/storage/belt/archaeology, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/item/clothing/mask/breath, -/obj/structure/window/reinforced, -/obj/machinery/door/window/northright, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"bZ" = ( -/obj/structure/table/steel, -/obj/item/suit_cooling_unit, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = -24 - }, -/obj/structure/cable/blue, -/obj/item/suit_cooling_unit, -/obj/item/gps/science, -/obj/item/gps/science, -/obj/item/gps/science, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/exp_prep) -"ca" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"cb" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular/open{ - closed_layer = 10; - id = "biohazardshutters"; - layer = 1; - name = "Biohazard Shutters"; - open_layer = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/isolation_a) -"cc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"cd" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 21 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"ce" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/power/emitter{ - anchored = 1; - dir = 1; - state = 2 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"cf" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"cg" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 1; - tag_north = 2; - tag_west = 3 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"ch" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"ci" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/bio_suit/anomaly, -/obj/item/clothing/head/bio_hood/anomaly, -/obj/item/clothing/mask/breath, -/obj/item/clothing/glasses/science, -/obj/item/clothing/gloves/sterile/latex, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -35 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"cj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"ck" = ( -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenoarch Hallway 2"; - dir = 8 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"cl" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Anomalous Materials 2"; - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"cm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"cn" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/scrubber/huge, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/anomaly) -"co" = ( -/obj/machinery/computer/area_atmos, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/anomaly) -"cp" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"cq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/research{ - name = "Isolation Room 1"; - req_access = list(65) - }, -/obj/machinery/door/blast/regular/open{ - closed_layer = 10; - id = "biohazardshutters"; - layer = 1; - name = "Biohazard Shutters"; - open_layer = 1 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_a) -"cr" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_a) -"cs" = ( -/obj/structure/bed, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_a) -"ct" = ( -/obj/structure/table/standard, -/obj/item/flashlight/lamp, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_a) -"cu" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/isolation_a) -"cv" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/cave) -"cw" = ( -/obj/effect/map_effect/perma_light/concentrated/incandescent, -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"cx" = ( -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outpost/wall/checkpoint) -"cy" = ( -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outpost/wall/checkpoint) -"cz" = ( -/obj/effect/map_effect/perma_light/concentrated/incandescent, -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outpost/wall/checkpoint) -"cA" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/medical) -"cB" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"cC" = ( -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"cD" = ( -/obj/structure/table/rack, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/firstaid/regular, -/obj/random/medical/lite, -/obj/structure/extinguisher_cabinet{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"cE" = ( -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/medical) -"cF" = ( -/obj/structure/closet/secure_closet/xenoarchaeologist{ - req_access = list(47) - }, -/obj/item/clothing/suit/storage/hooded/wintercoat/science, -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"cG" = ( -/obj/structure/closet/secure_closet/xenoarchaeologist{ - req_access = list(47) - }, -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/item/clothing/suit/storage/hooded/wintercoat/science, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"cH" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/obj/structure/bookcase/manuals/xenoarchaeology, -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"cI" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology) -"cJ" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/bio_suit/anomaly, -/obj/item/clothing/head/bio_hood/anomaly, -/obj/item/clothing/mask/breath, -/obj/item/clothing/glasses/science, -/obj/item/clothing/gloves/sterile/latex, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"cK" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"cL" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"cM" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_research{ - name = "Anomalous Materials"; - req_access = list(65) - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"cN" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"cO" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"cP" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"cQ" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"cR" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"cS" = ( -/obj/machinery/atmospherics/valve/digital/open{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/anomaly) -"cT" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/blast/regular/open{ - closed_layer = 10; - id = "biohazardshutters"; - layer = 1; - name = "Biohazard Shutters"; - open_layer = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/isolation_a) -"cU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_a) -"cV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_a) -"cW" = ( -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_a) -"cX" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"cY" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"cZ" = ( -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"da" = ( -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"db" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"dc" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"dd" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"de" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"df" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"dg" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/bio_suit/anomaly, -/obj/item/clothing/head/bio_hood/anomaly, -/obj/item/clothing/mask/breath, -/obj/item/clothing/glasses/science, -/obj/item/clothing/gloves/sterile/latex, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"dh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"di" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"dj" = ( -/obj/structure/table/standard, -/obj/item/clothing/head/welding, -/obj/item/weldingtool, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/anomaly) -"dk" = ( -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/anomaly) -"dl" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/dropper{ - pixel_y = -4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/anomaly) -"dm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"dn" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"do" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_medical{ - name = "First-Aid Station"; - req_one_access = newlist() - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"dp" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_a) -"dq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "isolation_one"; - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_a) -"dr" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Isolation Cell 1"; - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_a) -"ds" = ( -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/cave/explored/deep) -"dt" = ( -/obj/machinery/door/airlock/voidcraft{ - name = "Wilderness Containment" - }, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"du" = ( -/obj/structure/bed/chair/office/light, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -36 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"dv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"dw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"dx" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/item/tool/screwdriver{ - pixel_y = 15 - }, -/obj/item/melee/baton/loaded, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/multitool, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/anomaly) -"dy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"dz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"dA" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/light_switch{ - name = "light switch "; - pixel_x = 36 - }, -/obj/structure/table/standard, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/item/storage/box/glasses/square{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/storage/box/cups, -/obj/item/hand_labeler, -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"dB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_research{ - name = "Outpost Hallway"; - req_access = list(47) - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"dC" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - id = "biohazardshutters"; - name = "Biohazard Shutters"; - pixel_x = 40 - }, -/obj/machinery/button/remote/blast_door{ - id = "xenoarch_cell2"; - name = "Cell 2"; - pixel_x = 26 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"dD" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"dE" = ( -/obj/machinery/artifact_scanpad, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/anomaly) -"dF" = ( -/obj/machinery/artifact_analyser, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/anomaly) -"dG" = ( -/obj/machinery/artifact_harvester, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/bluegrid, -/area/surface/outpost/research/xenoarcheology/anomaly) -"dH" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/anomaly) -"dJ" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/cell_charger, -/obj/item/cell/high, -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 2; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"dK" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"dL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/machinery/recharger, -/obj/item/defib_kit/loaded, -/obj/item/radio{ - frequency = 1487; - icon_state = "med_walkietalkie"; - name = "Medbay Emergency Radio Link" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenoarch First-Aid"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"dM" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/adv{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/o2, -/obj/machinery/vending/wallmed1{ - name = "NanoMed Wall"; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/medical) -"dN" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/medical) -"dO" = ( -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"dP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"dQ" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/clipboard, -/obj/item/pen, -/obj/item/taperecorder, -/obj/item/folder, -/obj/item/stamp, -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"dR" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"dS" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"dT" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"dU" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"dV" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/item/cell/high, -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 2; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"dW" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/anomaly) -"dX" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"dY" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"dZ" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"ea" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/isolation_b) -"eb" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_b) -"ec" = ( -/obj/machinery/artifact_scanpad, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_b) -"ed" = ( -/obj/machinery/artifact_analyser, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_b) -"ee" = ( -/obj/machinery/door/blast/regular{ - id = "xenoarch_cell2" - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_b) -"ef" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/surface/outpost/wall/checkpoint) -"eg" = ( -/obj/structure/showcase/sign{ - pixel_y = -5 - }, -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outpost/wall/checkpoint) -"eh" = ( -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/outpost/research/xenoarcheology/exterior) -"ei" = ( -/obj/item/banner/nt, -/obj/effect/zone_divider, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/outpost/research/xenoarcheology/exterior) -"ej" = ( -/obj/structure/sign/greencross{ - desc = "White cross in a green field, you can get medical aid here."; - name = "First-Aid" - }, -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/medical) -"ek" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"el" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"em" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/item/camera_film{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/camera, -/obj/machinery/recharger, -/obj/item/tape_roll, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenoarch Crew Area"; - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/surface/outpost/research/xenoarcheology) -"en" = ( -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology) -"eo" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"ep" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/atmoscontrol/laptop{ - monitored_alarm_ids = list("isolation_one","isolation_two","isolation_three"); - req_access = null; - req_one_access = null - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"eq" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"er" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"es" = ( -/obj/machinery/atmospherics/valve/digital/open{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/anomaly) -"et" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/research{ - name = "Isolation Room 2"; - req_access = list(65) - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_b) -"eu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_b) -"ev" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_b) -"ew" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_b) -"ex" = ( -/obj/effect/zone_divider, -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall) -"ey" = ( -/obj/structure/table/steel, -/obj/item/tool/screwdriver, -/obj/item/tool/crowbar, -/obj/item/tool/wrench, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"ez" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"eA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenoarch Airlock 1"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"eB" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"eC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"eD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"eE" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"eF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"eG" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/camera, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"eH" = ( -/obj/structure/table/reinforced, -/obj/item/folder, -/obj/item/pen, -/obj/item/tape_roll, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/item/geiger, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"eI" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/anomaly) -"eJ" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"eK" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"eL" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"eM" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/isolation_b) -"eN" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_b) -"eO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "isolation_two"; - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_b) -"eP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Isolation Cell 2"; - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_b) -"eQ" = ( -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "xenoarch1_airlock_exterior"; - locked = 1; - name = "Research Exterior Airlock" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "xenoarch1_airlock_control"; - name = "Xenoarch Access Button"; - pixel_y = -24; - req_access = null - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"eR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/rust/part_rusted1, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"eS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"eT" = ( -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "xenoarch1_airlock_interior"; - locked = 1; - name = "Research Interior Airlock" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "xenoarch1_airlock_control"; - name = "Research Access Button"; - pixel_x = -6; - pixel_y = -26; - req_access = null - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"eU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "xenoarch1_airlock_control"; - name = "Research Access Console"; - pixel_x = -26; - pixel_y = -26; - tag_exterior_door = "xenoarch1_airlock_exterior"; - tag_interior_door = "xenoarch1_airlock_interior" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"eV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"eW" = ( -/obj/structure/cable/blue{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"eX" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"eY" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"eZ" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"fa" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"fb" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenoarch Hallway 1"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"fe" = ( -/obj/item/anobattery{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/anobattery{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/anobattery{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/anobattery{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/anomaly) -"ff" = ( -/obj/item/anodevice{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/anodevice, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/anomaly) -"fg" = ( -/obj/machinery/artifact_harvester, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/surface/outpost/research/xenoarcheology/anomaly) -"fh" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/anomaly) -"fi" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"fj" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/isolation_b) -"fk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"fl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology) -"fm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"fn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/noticeboard/anomaly{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"fo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"fp" = ( -/obj/effect/floor_decal/corner/purple, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"fq" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"fr" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"fs" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"ft" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"fu" = ( -/obj/machinery/artifact_scanpad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/bluegrid, -/area/surface/outpost/research/xenoarcheology/anomaly) -"fv" = ( -/obj/machinery/artifact_scanpad, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor/bluegrid, -/area/surface/outpost/research/xenoarcheology/anomaly) -"fw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"fx" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"fy" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/isolation_c) -"fz" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_c) -"fA" = ( -/obj/machinery/artifact_scanpad, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_c) -"fB" = ( -/obj/machinery/artifact_analyser, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_c) -"fC" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/isolation_c) -"fD" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/smes) -"fE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/smes) -"fF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/smes) -"fG" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - name = "Generator Room"; - req_one_access = list(12,47) - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"fH" = ( -/obj/structure/sign/warning/high_voltage, -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/smes) -"fI" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"fJ" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"fK" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology) -"fL" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_research{ - name = "Anomalous Materials"; - req_access = list(65) - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"fM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"fN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/blue{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"fO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"fP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"fQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"fR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/research{ - name = "Isolation Room 3"; - req_access = list(65) - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_c) -"fS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_c) -"fT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_c) -"fU" = ( -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_c) -"fV" = ( -/obj/machinery/power/smes/buildable/outpost_substation{ - RCon_tag = "Outpost - Xenoarch"; - charge = 500000; - input_attempt = 1; - input_level = 150000; - output_level = 150000 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"fW" = ( -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/anomaly_container, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"fX" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/steel, -/obj/random/tool, -/obj/random/tool, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Xenoarchaeology SMES" - }, -/obj/item/airlock_electronics, -/obj/item/airlock_electronics, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"fY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/steel, -/obj/item/storage/toolbox/mechanical, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"fZ" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/anomaly_container, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"ga" = ( -/obj/machinery/atmospherics/binary/pump/on{ - target_pressure = 200 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"gb" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/random/powercell, -/obj/random/maintenance/clean, -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/light_switch{ - name = "light switch "; - pixel_x = 36 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"gc" = ( -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/smes) -"gd" = ( -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/restroom) -"ge" = ( -/obj/machinery/door/airlock{ - name = "Research Restroom" - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"gf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Anomalous Materials 1"; - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"gg" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"gh" = ( -/obj/machinery/atmospherics/unary/heater{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"gi" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 1; - icon_state = "freezer" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"gj" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/corner/purple, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/anomaly_container, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"gk" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/isolation_c) -"gl" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_c) -"gm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "isolation_one"; - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_c) -"gn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 8 - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Isolation Cell 3"; - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/surface/outpost/research/xenoarcheology/isolation_c) -"go" = ( -/obj/item/stack/flag/green, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/deep) -"gp" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"gq" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"gr" = ( -/obj/item/stack/flag/red{ - amount = 1 - }, -/obj/effect/zone_divider, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/deep) -"gs" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"gt" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"gu" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/heavyduty{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"gv" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"gw" = ( -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"gx" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1; - target_pressure = 200 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"gy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"gz" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"gA" = ( -/obj/structure/table/steel, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"gB" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = 11; - pixel_y = 24 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"gC" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"gD" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"gE" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/restroom) -"gF" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/analysis) -"gG" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Sample Preparation"; - req_access = list(65) - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"gH" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Sample Preparation"; - req_access = list(65) - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"gI" = ( -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/analysis) -"gJ" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/analysis) -"gK" = ( -/turf/simulated/wall/r_wall, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"gL" = ( -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/cave/explored/normal) -"gM" = ( -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/research/xenoarcheology/exterior) -"gN" = ( -/obj/structure/cable, -/obj/machinery/power/port_gen/pacman, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"gO" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"gP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"gQ" = ( -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"gR" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 7; - tag_north = 1; - tag_south = 2 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"gS" = ( -/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"gT" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"gU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"gV" = ( -/obj/structure/table/standard, -/obj/item/towel{ - color = "#800080"; - name = "purple towel" - }, -/obj/item/towel{ - color = "#800080"; - name = "purple towel" - }, -/obj/item/towel{ - color = "#800080"; - name = "purple towel" - }, -/obj/random/soap, -/obj/random/soap, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"gW" = ( -/obj/item/reagent_containers/glass/bottle/toxin, -/obj/item/reagent_containers/glass/beaker/sulphuric{ - name = "beaker 'sulphuric acid'" - }, -/obj/structure/table/glass, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -36 - }, -/obj/structure/cable/blue{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"gX" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"gY" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"gZ" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/research_outpost{ - c_tag = "OPR - Sample Preparation" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"ha" = ( -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"hb" = ( -/obj/structure/reagent_dispensers/coolanttank, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"hc" = ( -/obj/structure/reagent_dispensers/coolanttank, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"hd" = ( -/turf/simulated/wall, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"he" = ( -/obj/machinery/space_heater, -/obj/structure/cable/blue{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"hf" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"hg" = ( -/obj/structure/closet/crate, -/obj/item/stack/material/phoron{ - amount = 25 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"hh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"hi" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"hj" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 5; - tag_north = 1; - tag_south = 2 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"hk" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"hl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"hm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"hn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"ho" = ( -/obj/machinery/chemical_dispenser/full, -/obj/structure/sign/warning/nosmoking_2{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"hp" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"hq" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"hr" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/door/window/westright, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"hs" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"ht" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"hu" = ( -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"hv" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock{ - name = "Emergency Storage" - }, -/obj/structure/cable/blue{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"hw" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"hx" = ( -/obj/item/weldpack, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"hy" = ( -/obj/structure/closet/toolcloset, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"hz" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/sterile/latex, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/item/storage/box/monkeycubes, -/turf/simulated/floor/tiled, -/area/surface/outpost/research/xenoarcheology/anomaly) -"hA" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"hB" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"hC" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 6; - tag_north = 1; - tag_west = 2 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"hD" = ( -/obj/machinery/atmospherics/pipe/tank/phoron{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"hE" = ( -/obj/structure/curtain/open/shower, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/shower{ - dir = 4; - pixel_x = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"hF" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/machinery/recharge_station, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"hG" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/research/xenoarcheology/restroom) -"hH" = ( -/obj/machinery/chem_master, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"hI" = ( -/obj/item/stool/padded, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"hJ" = ( -/obj/effect/floor_decal/corner/beige, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"hK" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"hL" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"hM" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"hN" = ( -/obj/item/clothing/glasses/meson, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"hO" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"hP" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"hQ" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1; - start_pressure = 740 - }, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"hR" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1; - start_pressure = 740 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"hS" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1; - start_pressure = 740 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"hT" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"hU" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"hV" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/obj/effect/floor_decal/corner/beige/full, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"hW" = ( -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper{ - pixel_y = -4 - }, -/obj/structure/table/glass, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"hX" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/corner/beige/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/analysis) -"hY" = ( -/obj/machinery/radiocarbon_spectrometer, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/analysis) -"hZ" = ( -/obj/item/stack/nanopaste, -/obj/item/stack/nanopaste, -/obj/item/stack/nanopaste, -/obj/item/reagent_containers/glass/bucket, -/obj/structure/closet/crate/secure/science{ - req_access = list(65) - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/analysis) -"ia" = ( -/obj/machinery/radiocarbon_spectrometer, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/analysis) -"ib" = ( -/obj/machinery/radiocarbon_spectrometer, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/surface/outpost/research/xenoarcheology/analysis) -"ic" = ( -/obj/structure/table/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/clothing/accessory/armband/science, -/obj/item/clothing/glasses/science, -/obj/item/suit_cooling_unit, -/obj/item/extinguisher, -/obj/item/flashlight, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/emergencystorage) -"id" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/cave/unexplored/deep) -"ie" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/cave/unexplored/normal) -"if" = ( -/obj/item/stack/flag/green, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/normal) -"ig" = ( -/obj/item/stack/flag/red{ - amount = 1 - }, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/normal) -"ih" = ( -/obj/structure/table/standard, -/obj/item/flame/lighter/random, -/obj/item/tool/crowbar, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/research/xenoarcheology/anomaly) -"ii" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"ij" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"ik" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"il" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/research/xenoarcheology/exterior) -"im" = ( -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"in" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"io" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/research/xenoarcheology/smes) -"ip" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/turf/simulated/wall/r_wall, -/area/surface/outpost/mining_main/cave) -"iq" = ( -/obj/vehicle/train/engine{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"ir" = ( -/obj/machinery/mining/brace, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"is" = ( -/obj/machinery/mining/drill, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"it" = ( -/obj/vehicle/train/trolley{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"iw" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/heavyduty{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"ix" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"iz" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/ore_box, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"iA" = ( -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"iB" = ( -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outpost/wall) -"iH" = ( -/obj/effect/map_effect/portal/master/side_b/caves_to_plains/river{ - dir = 1 - }, -/turf/simulated/wall/solidrock, -/area/surface/cave/unexplored/normal) -"jK" = ( -/obj/structure/table/marble, -/obj/item/book/manual/anomaly_testing, -/turf/simulated/floor/concrete, -/area/surface/cave/explored/trader) -"jU" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/drinks/bottle/specialwhiskey, -/turf/simulated/floor/concrete, -/area/surface/cave/explored/trader) -"kx" = ( -/obj/structure/table/marble, -/turf/simulated/floor/concrete, -/area/surface/cave/explored/trader) -"ky" = ( -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/cave/explored/deep) -"kQ" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/effect/zone_divider, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"kX" = ( -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall/checkpoint) -"ld" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/cave/unexplored/normal) -"lV" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/normal) -"md" = ( -/turf/simulated/wall/solidrock, -/area/surface/cave/unexplored/normal) -"nr" = ( -/turf/simulated/mineral/sif, -/area/surface/cave/explored/trader) -"nx" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/outpost/research/xenoarcheology/exterior) -"og" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/zone_divider, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"ot" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/deep) -"oy" = ( -/obj/item/stack/flag/green, -/obj/effect/zone_divider, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/deep) -"oO" = ( -/obj/item/stool, -/turf/simulated/floor/concrete, -/area/surface/cave/explored/trader) -"pQ" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/cave/explored/normal) -"pV" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Outpost Maintenance Hatch"; - normalspeed = 0; - req_one_access = list(1,5,10,12,31,47,48,50) - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/research/xenoarcheology/exterior) -"qC" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outpost/wall/checkpoint) -"qH" = ( -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outpost/wall/checkpoint) -"rc" = ( -/obj/structure/simple_door/sandstone, -/obj/structure/simple_door/sandstone, -/turf/simulated/floor/concrete, -/area/surface/cave/explored/trader) -"rd" = ( -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall) -"sj" = ( -/obj/effect/map_effect/portal/master/side_a/caves_to_wilderness, -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall) -"st" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/turf/simulated/wall/solidrock, -/area/surface/cave/explored/trader) -"sH" = ( -/obj/structure/simple_door/sandstone, -/turf/simulated/floor/concrete, -/area/surface/cave/explored/trader) -"tf" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/outpost/research/xenoarcheology/exterior) -"tl" = ( -/obj/structure/cable/heavyduty{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/research/xenoarcheology/exterior) -"xh" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"xS" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/drinks/cans/nukie_lemon, -/turf/simulated/floor/concrete, -/area/surface/cave/explored/trader) -"zJ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/research/xenoarcheology/exterior) -"zL" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/normal) -"BT" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/obj/effect/map_effect/perma_light/concentrated/incandescent, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"Co" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"Cv" = ( -/obj/structure/bed, -/obj/item/bedsheet/cosmos, -/mob/living/simple_mob/humanoid/starhunter/trader/miner, -/turf/simulated/floor/concrete, -/area/surface/cave/explored/trader) -"Cx" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/turf/simulated/wall/solidrock, -/area/surface/cave/unexplored/normal) -"Dg" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/effect/zone_divider, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/research/xenoarcheology/exterior) -"EC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/zone_divider, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/outpost/research/xenoarcheology/exterior) -"EJ" = ( -/obj/item/banner/nt, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/cave/explored/deep) -"EX" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/cave/unexplored/deep) -"FH" = ( -/obj/item/banner/virgov, -/obj/effect/zone_divider, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/cave/explored/deep) -"FU" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/outpost/research/xenoarcheology/exterior) -"Hs" = ( -/obj/effect/map_effect/portal/master/side_b/caves_to_plains{ - dir = 1 - }, -/turf/simulated/wall/solidrock, -/area/surface/cave/unexplored/normal) -"HL" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/breakfast_wrap, -/turf/simulated/floor/concrete, -/area/surface/cave/explored/trader) -"In" = ( -/obj/structure/bed, -/obj/item/bedsheet/cosmos, -/mob/living/simple_mob/humanoid/starhunter/trader/farmer, -/turf/simulated/floor/concrete, -/area/surface/cave/explored/trader) -"Jk" = ( -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall/checkpoint) -"LO" = ( -/turf/simulated/wall/solidrock, -/area/surface/cave/explored/trader) -"Nm" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/obj/effect/map_effect/perma_light/concentrated/incandescent, -/obj/effect/zone_divider, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"NL" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/deep) -"Ox" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/cave/explored/deep) -"Ph" = ( -/obj/machinery/light/small, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/outpost/research/xenoarcheology/exterior) -"PH" = ( -/obj/structure/table/steel, -/obj/item/storage/box/lights/bulbs{ - pixel_y = 5 - }, -/obj/item/storage/toolbox/emergency{ - pixel_y = 3; - starts_with = list(/obj/item/tool/crowbar/red,/obj/item/extinguisher/mini,/obj/item/radio,/obj/item/light/bulb) - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/research/xenoarcheology/exterior) -"Qd" = ( -/obj/machinery/vending/starhunter_farmer, -/turf/simulated/floor/concrete, -/area/surface/cave/explored/trader) -"Qs" = ( -/obj/structure/table/marble, -/obj/item/book/manual/engineering_singularity_safety, -/turf/simulated/floor/concrete, -/area/surface/cave/explored/trader) -"Qy" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/research/xenoarcheology/exterior) -"RM" = ( -/turf/simulated/wall/sandstone, -/area/surface/cave/explored/trader) -"RX" = ( -/obj/structure/cable/ender{ - icon_state = "1-2"; - id = "surface_cave" - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"St" = ( -/obj/machinery/vending/starhunter_miner, -/turf/simulated/floor/concrete, -/area/surface/cave/explored/trader) -"SI" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/bacon_and_eggs, -/turf/simulated/floor/concrete, -/area/surface/cave/explored/trader) -"Ug" = ( -/obj/effect/map_effect/portal/master/side_a/caves_to_wilderness/river, -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall) -"VK" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/mining_main/cave) -"VP" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/cave/explored/normal) -"YU" = ( -/turf/simulated/floor/concrete, -/area/surface/cave/explored/trader) -"YY" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/surface/outpost/research/xenoarcheology/exterior) -"Zo" = ( -/obj/item/stack/flag/green, -/obj/effect/zone_divider, -/turf/simulated/mineral/floor/ignore_mapgen/sif, -/area/surface/cave/explored/normal) - -(1,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ex -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ex -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ex -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ex -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ex -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ex -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ex -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(2,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(3,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(4,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(5,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(6,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(7,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(8,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(9,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(10,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(11,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(12,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(13,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(14,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(15,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(16,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(17,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(18,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(19,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(20,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(21,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(22,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(23,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(24,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(25,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(26,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(27,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(28,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(29,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(30,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(31,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(32,1,1) = {" -ex -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ld -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -zL -zL -zL -zL -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ld -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ld -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ex -"} -(33,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(34,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(35,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(36,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(37,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(38,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(39,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(40,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(41,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(42,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(43,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(44,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(45,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(46,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(47,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(48,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(49,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(50,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(51,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(52,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(53,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(54,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(55,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(56,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(57,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(58,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(59,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(60,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(61,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(62,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(63,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(64,1,1) = {" -ex -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -id -id -id -id -id -id -id -id -id -id -ot -ot -ot -ot -ot -ot -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ld -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ld -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ld -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ex -"} -(65,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(66,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(67,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(68,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(69,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(70,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(71,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(72,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(73,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(74,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(75,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(76,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(77,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(78,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(79,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(80,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(81,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(82,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(83,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(84,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(85,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(86,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(87,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(88,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ot -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(89,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ot -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(90,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ot -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ie -af -af -af -af -af -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(91,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ot -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -ae -ae -ae -af -af -af -af -af -zL -af -af -af -af -af -ae -ae -ae -ae -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(92,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ot -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -af -af -af -af -af -zL -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(93,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ot -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -zL -af -ae -ae -ae -ae -af -af -af -af -af -ae -ae -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(94,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ot -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(95,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ot -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -if -af -if -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(96,1,1) = {" -ex -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -ot -ot -ot -ot -NL -ot -ot -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -zL -ie -ie -ie -ie -ld -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -zL -ie -ie -ie -zL -zL -zL -zL -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ld -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ld -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ex -"} -(97,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ot -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -ae -ae -ae -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(98,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ot -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -ae -ae -ae -ae -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(99,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ot -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(100,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ot -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ie -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(101,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -id -ab -ab -ab -ab -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -zL -af -af -af -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(102,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -zL -af -ae -ae -ae -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(103,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -ie -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(104,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -ae -ae -ie -ae -ae -ae -ae -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(105,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -ae -ae -ie -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(106,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -ae -ae -ie -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(107,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -ae -ie -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(108,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -ie -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(109,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -zL -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(110,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -zL -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(111,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -zL -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(112,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -zL -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(113,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(114,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(115,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(116,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(117,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -id -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(118,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -ab -id -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -cv -gp -gs -gs -gs -gs -gs -gs -gs -gs -ii -cv -ae -ae -ae -ae -ae -ae -ae -aa -"} -(119,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ab -ab -ab -id -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -dD -im -im -im -ir -im -ir -im -ir -im -im -iz -ae -ae -ae -ae -ae -ae -ae -aa -"} -(120,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ab -ac -ot -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -dV -im -im -im -is -im -is -im -is -im -im -iz -ae -ae -ae -ae -ae -ae -ae -aa -"} -(121,1,1) = {" -aa -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ot -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -go -ac -ac -ac -ac -ac -ot -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -af -af -af -af -af -af -af -af -af -af -zL -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -dJ -im -im -im -ir -im -ir -im -ir -im -iw -cv -ae -ae -ae -ae -ae -ae -ae -aa -"} -(122,1,1) = {" -sj -ad -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ot -ac -go -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ot -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -af -af -af -af -af -af -af -af -zL -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ey -im -im -im -im -im -im -im -im -im -ix -iz -ae -ae -ae -ae -ae -ae -ae -aa -"} -(123,1,1) = {" -rd -ad -ad -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -go -ac -ac -ac -ac -ac -ac -ac -ot -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ot -af -af -af -af -af -af -ae -af -ae -ae -af -af -af -af -ae -ae -ae -ae -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -zL -af -af -af -af -af -af -ae -ae -ae -ae -ae -dD -im -im -im -iq -it -it -it -im -im -ix -iz -ae -ae -ae -ae -ae -md -Hs -aa -"} -(124,1,1) = {" -cy -cx -cx -cx -ef -EJ -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ac -go -ac -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ot -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ot -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -ae -zL -af -af -af -af -af -af -af -af -ae -ae -ae -cv -gq -gt -gt -gt -gt -gt -gt -gt -gt -ik -cv -ae -ae -ae -ae -ae -md -Cx -aa -"} -(125,1,1) = {" -cw -cZ -cZ -cX -dt -cZ -ky -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ot -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ot -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ot -ig -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -if -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -if -af -af -if -ae -ae -ie -af -af -af -af -af -af -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -ij -in -in -in -in -in -RX -cv -ip -cv -"} -(126,1,1) = {" -cw -cZ -cZ -cZ -eg -cZ -ky -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ot -ac -ac -ac -ab -ab -ab -ab -ab -go -ac -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -go -ac -ac -ac -ac -ac -ac -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ie -ae -ae -af -af -af -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -il -eh -eh -eh -eh -eh -VK -Co -BT -iA -"} -(127,1,1) = {" -cw -cZ -cZ -cY -dt -cZ -ky -ac -ac -ac -go -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ot -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ac -ac -ac -ac -ac -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -af -af -af -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ie -ae -ae -af -af -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -il -eh -eh -eh -eh -iA -VK -iA -BT -iA -"} -(128,1,1) = {" -cy -cx -cx -cx -ef -FH -ot -ot -ot -ot -ot -ot -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -id -ot -ot -ot -ot -ot -ot -ot -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -oy -ot -ot -ot -ot -EX -id -ot -ot -ot -ot -ot -ot -ot -ot -ot -ot -ot -ot -ot -ot -ot -ot -ot -ot -id -id -id -id -id -id -ot -ot -ot -ot -ot -ot -NL -ot -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -ie -ie -ie -zL -zL -ie -ie -ie -ie -ie -ie -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -ie -ie -ie -ie -ie -ie -ld -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ld -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -zL -zL -zL -ie -ie -ie -ld -ie -ie -zL -tf -tf -tf -EC -tf -tf -tf -tf -tf -tf -tf -EC -ei -Qy -Qy -Qy -ei -EC -Dg -tf -tf -tf -tf -tf -kQ -og -Nm -xh -"} -(129,1,1) = {" -rd -ad -ad -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ot -ab -ab -ab -ab -ac -ac -ab -ab -go -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ot -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -if -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ae -ie -ae -af -eh -eh -eh -ap -ap -ap -ap -ap -ap -cA -cA -cA -cA -cA -an -eQ -am -fD -fD -gu -fD -fD -fD -fD -fD -pV -cv -ip -cv -"} -(130,1,1) = {" -rd -ad -ad -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ot -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ot -ac -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ot -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ae -ie -ae -af -eh -eh -ap -ap -aR -bi -bA -bT -ap -cB -da -du -dK -dN -ez -eR -fk -fD -fV -gv -gN -hg -hy -fD -fD -il -md -Cx -aa -"} -(131,1,1) = {" -aa -ad -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ot -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ot -ac -ac -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ae -ie -af -af -eh -eh -aq -az -aS -aT -aT -bU -ap -cC -db -dv -dL -dN -eA -eS -fl -fD -fW -gw -gw -gw -gw -hP -fD -il -md -Cx -aa -"} -(132,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -go -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ot -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ot -ac -ac -ac -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ae -zL -af -af -eh -Ph -ap -aA -aT -bj -bB -bV -ap -cD -dc -dw -dM -cA -an -eT -am -fD -fX -gw -gO -gO -io -hQ -fD -il -PH -md -aa -"} -(133,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ac -ac -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ot -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ac -ac -ac -ac -ab -ab -ab -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -zL -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ae -zL -af -af -eh -eh -ap -aB -aU -bk -bC -bW -ap -cE -cE -do -dN -ej -eB -eU -fm -fE -fY -gx -gP -hh -hA -hR -fD -tl -eh -md -aa -"} -(134,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ot -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ac -ac -ac -ac -ab -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -ae -ae -af -af -af -af -zL -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -tf -eh -eh -eh -eh -ap -aC -aT -bl -bD -bX -ap -cF -dd -dy -dO -ek -eB -eV -fn -fF -fZ -gy -gQ -hi -hB -hS -fD -YY -eh -md -aa -"} -(135,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -zL -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -af -tf -eh -eh -eh -eh -aq -aD -aV -aT -bE -bY -ap -cG -de -dz -dP -el -eC -eW -fo -fG -ga -gz -gR -hj -hC -hT -fD -eh -eh -ae -aa -"} -(136,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -af -tf -eh -ah -ah -ah -ar -aE -aW -bm -bF -bZ -ap -cH -df -dA -dQ -em -eD -eX -fp -fH -gb -gA -gS -hk -hD -hU -fD -eh -eh -ae -aa -"} -(137,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -tf -eh -ai -ak -am -ap -ap -ap -bn -bG -ap -ap -cI -an -am -cI -en -eE -eY -fq -fD -gc -gd -gd -gd -gd -fD -fD -eh -eh -ae -aa -"} -(138,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -af -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -if -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -tf -eh -ai -ai -an -as -aF -an -bo -bH -ca -ci -cJ -dg -an -dR -eo -eF -eZ -fr -fI -gd -gB -gT -hl -hE -gE -eh -eh -eh -ae -aa -"} -(139,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -af -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -tf -eh -aj -aj -ao -at -aG -aX -bp -bI -cc -cj -cK -dh -dB -dS -dS -dS -fa -fs -fJ -ge -gC -gU -hm -hF -gE -nx -eh -eh -ae -aa -"} -(140,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ot -af -af -af -af -af -af -af -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -tf -eh -aj -al -am -au -aH -am -bq -bJ -cd -ck -cL -di -an -dT -dT -dT -fb -ft -fK -gd -gD -gV -hn -hG -gE -eh -eh -eh -ae -aa -"} -(141,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ac -ac -ac -ac -ac -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ot -ig -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -tf -eh -ai -ak -am -av -av -av -br -bK -av -av -cM -ax -av -ax -bK -ax -av -ax -fL -av -gE -gd -gd -gd -gJ -gJ -eh -eh -ae -aa -"} -(142,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -id -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -tf -eh -ah -ah -ah -aw -aI -aY -bs -bL -ce -cl -cN -dj -dx -dU -ep -eG -dG -fu -fM -gf -gF -gW -ho -hH -hV -gJ -eh -eh -ae -aa -"} -(143,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -tf -eh -eh -eh -eh -ax -aJ -aZ -bt -bM -bM -cm -cO -dk -dE -hz -bN -eH -fe -dk -fN -gg -gG -gX -hp -hI -hW -gF -eh -eh -ae -aa -"} -(144,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ac -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -tf -eh -eh -eh -Ph -av -aK -ba -bu -bN -cf -cn -cP -dk -dF -dW -bN -eI -ff -dk -fO -gh -gF -gY -hq -hJ -hX -gJ -nx -eh -ae -aa -"} -(145,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ot -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -go -ac -ac -go -ab -ab -ac -ac -ab -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -zL -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -zL -af -af -eh -eh -av -aL -bb -bu -bO -cg -cn -cQ -dl -ih -dX -eq -eJ -fg -fv -fP -gi -gF -gZ -hr -hK -hY -gJ -eh -eh -ae -aa -"} -(146,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ac -ot -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -af -af -af -zL -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -zL -af -af -eh -eh -ax -aM -bc -bu -bN -ch -co -cR -dm -dH -dY -er -eK -fh -fw -fQ -bN -gH -ha -hs -hL -hZ -gF -eh -eh -ae -aa -"} -(147,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ot -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -zL -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -zL -af -af -eh -eh -ay -aN -bd -bv -aN -aN -cp -cS -dn -dC -dZ -es -eL -fi -fx -es -gj -gI -hb -ht -hM -ia -gJ -eh -eh -ae -aa -"} -(148,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ot -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -zL -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -zL -af -af -eh -eh -ay -aO -be -bw -bP -ay -cb -cq -cT -cu -ea -et -eM -fj -fy -fR -gk -gJ -hc -hu -hL -ib -gJ -eh -eh -ae -aa -"} -(149,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -zL -af -af -eh -eh -ay -aP -bf -bx -bQ -ay -cr -cU -dp -cu -eb -eu -eN -fj -fz -fS -gl -gK -hd -hv -hd -hd -gK -eh -eh -ae -aa -"} -(150,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -if -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -zL -af -af -eh -Ph -ay -aQ -bg -by -bR -ay -cs -cV -dq -cu -ec -ev -eO -fj -fA -fT -gm -gK -he -hw -hN -ic -gK -nx -eh -ae -aa -"} -(151,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ac -ac -ac -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -zL -af -af -eh -eh -ay -ay -bh -bz -bS -ay -ct -cW -dr -cu -ed -ew -eP -fj -fB -fU -gn -gK -hf -hx -hO -gK -gK -eh -eh -ae -aa -"} -(152,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ac -ac -ac -ac -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -zL -af -af -eh -eh -eh -ay -ay -ay -ay -ay -cu -cu -cu -cu -ee -ee -ee -fj -fC -fC -fC -gK -gK -gK -gK -gK -eh -eh -eh -ae -aa -"} -(153,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ac -ac -ac -ac -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -if -af -af -Zo -ae -af -af -eh -eh -eh -FU -eh -eh -eh -eh -eh -eh -zJ -gM -gM -gM -zJ -eh -eh -eh -eh -eh -eh -FU -eh -eh -eh -ae -ae -aa -"} -(154,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ot -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ie -ae -ae -af -af -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -eh -ae -ae -aa -"} -(155,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ac -ac -ot -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ie -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(156,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -ac -ac -ac -ot -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(157,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ac -ac -ac -ac -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -if -af -af -af -af -if -ae -ae -af -af -af -af -af -ae -af -af -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(158,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(159,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -if -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(160,1,1) = {" -ex -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -id -id -id -id -id -id -id -id -id -id -ot -ot -ot -ot -ot -ot -ot -ot -ot -ot -id -id -id -id -id -id -id -id -id -id -id -EX -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -id -id -id -id -id -id -id -id -id -id -id -ot -ot -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ld -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ld -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -zL -zL -zL -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ld -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ex -"} -(161,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ab -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(162,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(163,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(164,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(165,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ot -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(166,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ot -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(167,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ot -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(168,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(169,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(170,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(171,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(172,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(173,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(174,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(175,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(176,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(177,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(178,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(179,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(180,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(181,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(182,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(183,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(184,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(185,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(186,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(187,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(188,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(189,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -zL -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(190,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -zL -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(191,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -zL -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(192,1,1) = {" -ex -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -ot -ot -id -id -id -id -EX -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ld -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -zL -zL -zL -lV -zL -zL -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ld -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ex -"} -(193,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -zL -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(194,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -zL -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(195,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -zL -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(196,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(197,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(198,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(199,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(200,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ot -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(201,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ab -ot -ig -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(202,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -id -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(203,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ot -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(204,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ot -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(205,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(206,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(207,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(208,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(209,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(210,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(211,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(212,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(213,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(214,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(215,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(216,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(217,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -af -zL -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(218,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -af -af -af -zL -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(219,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -zL -af -af -af -af -af -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(220,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ie -ae -ae -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(221,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(222,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -af -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(223,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(224,1,1) = {" -ex -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -id -EX -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -zL -zL -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ld -ie -zL -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ld -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ld -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ex -"} -(225,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(226,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -zL -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(227,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -zL -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(228,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -zL -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(229,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -zL -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(230,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(231,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(232,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(233,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(234,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(235,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(236,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(237,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(238,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(239,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aa -"} -(240,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -md -md -aa -"} -(241,1,1) = {" -Ug -ad -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -md -iH -aa -"} -(242,1,1) = {" -rd -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ot -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -md -Cx -aa -"} -(243,1,1) = {" -cy -cx -eg -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gr -af -gL -gL -gL -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -ae -ae -md -Cx -aa -"} -(244,1,1) = {" -cz -qC -qH -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ab -ab -ds -ds -ds -ds -ds -ds -Ox -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -Ox -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -Ox -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -Ox -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -pQ -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -pQ -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -pQ -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -VP -iB -"} -(245,1,1) = {" -cz -qH -qH -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -Ox -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -Ox -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -Ox -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -Ox -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -pQ -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -pQ -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -pQ -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -VP -iB -"} -(246,1,1) = {" -cz -qH -qH -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -Ox -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ab -ab -ab -ds -ds -ds -ds -ds -Ox -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -Ox -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -ds -Ox -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -pQ -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -pQ -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -pQ -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -gL -VP -iB -"} -(247,1,1) = {" -Jk -kX -kX -ac -ac -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -af -af -ie -ae -ae -ae -ae -ae -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -af -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -ae -RM -RM -RM -RM -RM -RM -RM -RM -RM -RM -rc -RM -LO -st -aa -"} -(248,1,1) = {" -rd -ad -ad -ac -ac -ac -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -af -af -af -af -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -af -af -af -ae -ae -ae -ae -ae -ae -ae -ae -RM -YU -YU -YU -sH -YU -YU -YU -YU -YU -YU -RM -LO -st -aa -"} -(249,1,1) = {" -rd -ad -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -RM -YU -YU -YU -RM -YU -YU -YU -YU -YU -YU -RM -LO -st -aa -"} -(250,1,1) = {" -aa -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -RM -Cv -Qs -kx -RM -Qd -oO -xS -SI -oO -YU -RM -LO -LO -aa -"} -(251,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -RM -RM -RM -RM -RM -YU -YU -kx -kx -YU -YU -RM -nr -nr -aa -"} -(252,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -RM -In -jK -kx -RM -St -oO -HL -jU -oO -YU -RM -nr -nr -aa -"} -(253,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -RM -YU -YU -YU -RM -YU -YU -YU -YU -YU -YU -RM -nr -nr -aa -"} -(254,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -RM -YU -YU -YU -sH -YU -YU -YU -YU -YU -YU -RM -nr -nr -aa -"} -(255,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -id -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ie -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -RM -RM -RM -RM -RM -RM -RM -RM -RM -RM -RM -RM -nr -nr -aa -"} -(256,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ex -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ex -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ex -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ex -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ex -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ex -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ex -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} diff --git a/maps/southern_sun/southern_cross-9.dmm b/maps/southern_sun/southern_cross-9.dmm deleted file mode 100644 index e553b6fcdd..0000000000 --- a/maps/southern_sun/southern_cross-9.dmm +++ /dev/null @@ -1,67945 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall/checkpoint) -"ab" = ( -/turf/simulated/wall/solidrock, -/area/surface/outside/wilderness/mountains) -"ac" = ( -/turf/simulated/mineral/sif, -/area/surface/outside/wilderness/mountains) -"ad" = ( -/obj/effect/zone_divider, -/turf/simulated/wall/solidrock, -/area/surface/outside/wilderness/mountains) -"ae" = ( -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/wilderness/deep) -"ag" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/wilderness/deep) -"ah" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/wilderness/deep) -"ai" = ( -/turf/simulated/floor/outdoors/dirt, -/area/surface/outside/wilderness/deep) -"aj" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/wilderness/deep) -"ak" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/sif, -/area/surface/outside/wilderness/mountains) -"am" = ( -/turf/simulated/floor/water, -/area/surface/outside/river/svartan) -"an" = ( -/turf/simulated/floor/water/deep, -/area/surface/outside/river/svartan) -"ao" = ( -/turf/simulated/floor/outdoors/dirt, -/area/surface/outside/path/wilderness) -"ap" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/wilderness/normal) -"aq" = ( -/turf/simulated/floor/plating/sif/planetuse, -/area/surface/outside/path/wilderness) -"as" = ( -/turf/simulated/wall/wood, -/area/surface/outside/path/wilderness) -"at" = ( -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/wilderness/normal) -"au" = ( -/obj/effect/step_trigger/teleporter/bridge/west_to_east, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water, -/area/surface/outside/river/svartan) -"av" = ( -/obj/effect/step_trigger/teleporter/bridge/east_to_west, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water, -/area/surface/outside/river/svartan) -"aw" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/wilderness/deep) -"ax" = ( -/obj/effect/step_trigger/teleporter/bridge/east_to_west/small, -/turf/simulated/floor/water, -/area/surface/outside/river/svartan) -"ay" = ( -/obj/effect/step_trigger/teleporter/bridge/west_to_east, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/svartan) -"az" = ( -/obj/effect/step_trigger/teleporter/bridge/east_to_west, -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/svartan) -"aA" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt, -/area/surface/outside/wilderness/deep) -"aB" = ( -/obj/effect/step_trigger/teleporter/bridge/west_to_east/small, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/svartan) -"aC" = ( -/obj/structure/showcase/sign{ - desc = "This appears to be a sign warning people that the other side is extremely hazardous."; - icon_state = "wilderness2"; - pixel_y = -5 - }, -/turf/simulated/wall/wood, -/area/surface/outside/path/wilderness) -"aD" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/wilderness/normal) -"aE" = ( -/obj/effect/step_trigger/teleporter/bridge/west_to_east, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/svartan) -"aF" = ( -/obj/effect/step_trigger/teleporter/bridge/east_to_west, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/svartan) -"aG" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/wilderness/normal) -"aH" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/wilderness/normal) -"aI" = ( -/turf/simulated/floor/outdoors/dirt, -/area/surface/outside/wilderness/normal) -"aJ" = ( -/turf/simulated/floor/outdoors/rocks/sif/planetuse, -/area/surface/outside/wilderness/deep) -"aK" = ( -/turf/simulated/floor/water, -/area/surface/outside/ocean) -"aM" = ( -/turf/simulated/floor/outdoors/rocks/sif/planetuse, -/area/surface/outside/wilderness/normal) -"aN" = ( -/turf/simulated/floor/water/deep/ocean, -/area/surface/outside/ocean) -"aO" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/wilderness/deep) -"aP" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/wilderness/deep) -"aQ" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/wilderness/deep) -"aR" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/river/svartan) -"aS" = ( -/turf/simulated/floor/wood{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15; - outdoors = 1 - }, -/area/surface/outside/path/wilderness) -"aT" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"aU" = ( -/turf/simulated/wall/log_sif, -/area/surface/outpost/shelter/utilityroom) -"aV" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse{ - tree_chance = 0 - }, -/area/surface/outside/wilderness/normal) -"aW" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/path/wilderness) -"aX" = ( -/obj/structure/ladder/up, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"aY" = ( -/obj/effect/map_effect/portal/master/side_b/wilderness_to_caves/river{ - dir = 1 - }, -/turf/simulated/wall/solidrock, -/area/surface/outside/wilderness/mountains) -"aZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "wilderness_shelter_1st_floor"; - layer = 4; - name = "Wilderness Shelter Shutters" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"ba" = ( -/turf/simulated/wall/log_sif, -/area/surface/outpost/shelter) -"bb" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/svartan) -"bc" = ( -/obj/structure/simple_door/sifwood, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "wilderness_shelter_1st_floor"; - layer = 4; - name = "Wilderness Shelter Shutters" - }, -/obj/machinery/atmospheric_field_generator/perma/underdoors, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"bd" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/power/thermoregulator/southerncross{ - dir = 4; - pixel_x = -26; - pixel_y = 2 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"be" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"bf" = ( -/obj/machinery/button/remote/blast_door{ - id = "wilderness_shelter_1st_floor"; - name = "Wilderness Shelter Shutters"; - pixel_y = 26 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"bg" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/radio/subspace{ - desc = "A heavy duty radio that can pick up all manor of shortwave and subspace frequencies. It's a bit bulkier than a normal radio thanks to the extra hardware. An engraving on the frame reads: IF FOUND, RETURN TO WILDERNESS SHELTER!"; - name = "Wilderness Shelter subspace radio" - }, -/obj/item/spaceflare{ - pixel_y = -10; - pixel_x = 5 - }, -/obj/item/spaceflare{ - pixel_y = -10; - pixel_x = -5 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"bh" = ( -/obj/random/junk, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"bi" = ( -/obj/machinery/camera/network/carrier{ - c_tag = "WILD - Shelter First Floor"; - dir = 8 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"bj" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/machinery/cell_charger, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = -24; - pixel_y = -4 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"bk" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/wilderness/mountains) -"bl" = ( -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"bm" = ( -/obj/item/banner/nt, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"bn" = ( -/obj/item/banner/virgov, -/obj/effect/zone_divider, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"bo" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/surface/outpost/wall/checkpoint) -"bp" = ( -/obj/machinery/door/airlock/voidcraft{ - name = "Wilderness Containment" - }, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"bq" = ( -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outpost/wall/checkpoint) -"br" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/obj/effect/map_effect/perma_light/concentrated/incandescent, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"bs" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"bt" = ( -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 8 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"bu" = ( -/turf/simulated/floor/water, -/area/surface/outpost/wall/checkpoint) -"bv" = ( -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"bw" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "mining_dock_1"; - name = "shuttle bay controller"; - pixel_y = -26; - tag_door = "mining_dock_1_door" - }, -/obj/machinery/alarm/sifwilderness{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/sifwooden_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"bx" = ( -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/shuttle/shuttle3/mining) -"by" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/machinery/photocopier/faxmachine, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"bz" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"bA" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse{ - tree_chance = 0 - }, -/area/shuttle/shuttle3/mining) -"bB" = ( -/obj/item/banner/virgov, -/obj/machinery/light/small, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "mining_dock_3"; - name = "shuttle bay controller"; - pixel_y = -26; - tag_door = "mining_dock_3_door" - }, -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"bC" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/turf/simulated/wall/solidrock, -/area/surface/outpost/wall/checkpoint) -"bD" = ( -/obj/effect/shuttle_landmark{ - docking_controller = "mining_dock_3"; - landmark_tag = "shuttle3_mining"; - name = "Wilderness Landing Site" - }, -/turf/simulated/floor/outdoors/grass/sif/planetuse{ - tree_chance = 0 - }, -/area/shuttle/shuttle3/mining) -"bE" = ( -/turf/simulated/wall/rsifwood, -/area/surface/outpost/shelter/exterior) -"bF" = ( -/turf/simulated/mineral/sif, -/turf/simulated/mineral/sif, -/area/surface/outside/wilderness/mountains) -"bG" = ( -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/shelter/dorms) -"bR" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"bX" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/turf/simulated/wall/solidrock, -/area/surface/outside/wilderness/mountains) -"ca" = ( -/obj/structure/bed/chair/bay/comfy/blue, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"cr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "wilderness_shelter_2nd_floor"; - layer = 4; - name = "Wilderness Shelter Shutters" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"cA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/log_sif, -/area/surface/outpost/shelter) -"cD" = ( -/obj/machinery/camera/network/carrier{ - c_tag = "WILD - Shelter Crew Dorms"; - dir = 4 - }, -/obj/structure/table/sifwooden_reinforced, -/obj/item/flashlight/lamp/green, -/turf/simulated/floor/carpet/turcarpet, -/area/surface/outpost/shelter/dorms) -"cG" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/ocean) -"cH" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"dd" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/obj/item/stack/marker_beacon, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"dh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"dO" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/water, -/area/surface/outpost/wall/checkpoint) -"el" = ( -/obj/structure/reagent_dispensers/watertank/high, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"er" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/river/svartan) -"es" = ( -/obj/structure/closet/medical_wall{ - name = "Wilderness Shelter first-aid closet"; - pixel_y = 31; - starts_with = list(/obj/item/roller,/obj/item/bodybag/cryobag,/obj/item/storage/firstaid/regular=2,/obj/item/storage/pill_bottle/spaceacillin) - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"ez" = ( -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"fY" = ( -/obj/effect/zone_divider, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "wilderness_shelter_1st_floor"; - name = "Wilderness Shelter Shutters"; - pixel_y = -26; - req_one_access = list(1,5,10,12,13,18,31,43,47,48,50) - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"gi" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"gy" = ( -/obj/machinery/light/small, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"gE" = ( -/obj/machinery/vending/tool, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"gV" = ( -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/button/remote/blast_door{ - id = "wilderness_shelter_Utility"; - name = "Wilderness Shelter Shutters"; - pixel_y = 26 - }, -/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/plating, -/area/surface/outpost/shelter/utilityroom) -"hf" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/machinery/cell_charger, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -5 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -5 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -5 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -5 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"hu" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/frame{ - anchored = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"hw" = ( -/turf/simulated/mineral/sif, -/area/surface/outside/river/svartan) -"hX" = ( -/obj/effect/zone_divider, -/obj/item/stack/marker_beacon, -/turf/simulated/floor/outdoors/grass/sif/planetuse{ - tree_chance = 0 - }, -/area/surface/outpost/shelter/exterior) -"ib" = ( -/obj/structure/simple_door/sifwood, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"iB" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse{ - tree_chance = 0 - }, -/area/surface/outpost/shelter/exterior) -"iV" = ( -/obj/structure/table/standard, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"jf" = ( -/obj/effect/shuttle_landmark{ - landmark_tag = "wilderness_s"; - name = "Wilderness Shelter"; - base_area = /area/surface/outpost/shelter/exterior; - base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse - }, -/turf/simulated/floor/outdoors/grass/sif/planetuse{ - tree_chance = 0 - }, -/area/surface/outpost/shelter/exterior) -"ji" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/planetuse{ - tree_chance = 0 - }, -/area/surface/outpost/shelter/exterior) -"jX" = ( -/obj/structure/table/rack/shelf, -/obj/item/soap/nanotrasen, -/obj/item/soap/nanotrasen, -/obj/item/towel/random, -/obj/item/towel/random, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/shelter/dorms) -"kd" = ( -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse{ - tree_chance = 0 - }, -/area/surface/outside/wilderness/deep) -"kh" = ( -/obj/structure/boulder, -/turf/simulated/floor/outdoors/rocks/sif/planetuse, -/area/surface/outside/river/svartan) -"kU" = ( -/obj/effect/shuttle_landmark{ - landmark_tag = "wilderness_se"; - name = "Southeast of Wilderness"; - base_area = /area/surface/outside/wilderness/normal; - base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse - }, -/turf/simulated/floor/outdoors/grass/sif/planetuse{ - tree_chance = 0 - }, -/area/surface/outside/wilderness/normal) -"kZ" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/wilderness/normal) -"ld" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/obj/effect/map_effect/perma_light/concentrated/incandescent, -/turf/simulated/floor/water, -/area/surface/outpost/wall/checkpoint) -"ln" = ( -/obj/machinery/camera/network/carrier{ - c_tag = "WILD - Shelter Second Floor Utilities" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"lX" = ( -/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/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"mh" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/obj/item/floor_painter, -/obj/item/reagent_containers/spray/cleaner, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"mj" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/frame{ - anchored = 1 - }, -/obj/item/geiger/wall/south, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"mP" = ( -/obj/structure/toilet, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/shelter/dorms) -"mR" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 1 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/surface/outpost/shelter/dorms) -"nA" = ( -/obj/item/stack/marker_beacon, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"nN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"op" = ( -/obj/machinery/alarm/sifwilderness{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"oO" = ( -/obj/effect/step_trigger/teleporter/bridge/east_to_west, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/river/svartan) -"oS" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, -/area/surface/outside/wilderness/normal) -"oU" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/yellowdouble, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"oW" = ( -/obj/structure/simple_door/sifwood, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"pn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"pQ" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "wilderness_shelter_2nd_floor_2"; - name = "Wilderness Shelter Shutters"; - pixel_x = -26 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"qe" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "WILD - Shelter First Aid"; - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/table/rack, -/obj/item/tool/crowbar, -/obj/item/tool/crowbar, -/obj/item/roller, -/obj/item/roller, -/obj/item/storage/box/bodybags{ - pixel_x = 8; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"qf" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/structure/closet/hydrant{ - pixel_y = -32 - }, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/obj/item/tool/crowbar/red, -/obj/item/tool/crowbar/red, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"qq" = ( -/obj/structure/coatrack, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"qr" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/path/wilderness) -"qW" = ( -/turf/unsimulated/wall/planetary/sif, -/area/surface/outside/wilderness/mountains) -"rl" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/item/storage/toolbox/emergency{ - pixel_y = 6 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -1 - }, -/obj/machinery/alarm/sifwilderness{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"ru" = ( -/obj/structure/boulder, -/turf/simulated/floor/wood{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15; - outdoors = 1 - }, -/area/surface/outside/river/svartan) -"rv" = ( -/obj/machinery/bluespace_beacon{ - alpha = 0; - desc = "A device that draws power from bluespace and creates a permanent tracking beacon. This one has a cloaking field. How keen of you to notice!"; - name = "Wilderness Shelter Bluespace Gigabeacon" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"sC" = ( -/obj/structure/railing, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/svartan) -"sJ" = ( -/obj/structure/closet/medical_wall{ - name = "Wilderness Shelter first-aid closet"; - pixel_y = 31; - starts_with = list(/obj/item/roller,/obj/item/bodybag/cryobag,/obj/item/storage/firstaid/regular=2,/obj/item/storage/pill_bottle/spaceacillin) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"sR" = ( -/obj/effect/zone_divider, -/obj/item/stack/marker_beacon, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"td" = ( -/obj/structure/curtain/medical{ - name = "medical curtain" - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"tx" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/exterior) -"tB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"tK" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "wilderness_shelter_Utility"; - name = "Wilderness Shelter Shutters"; - pixel_x = 24; - req_one_access = list(1,5,10,12,13,18,31,43,47,48,50) - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/exterior) -"tO" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/planetuse{ - tree_chance = 0 - }, -/area/surface/outside/wilderness/normal) -"tS" = ( -/obj/structure/closet, -/obj/item/storage/box/lights/bulbs, -/obj/item/storage/box/lights/mixed, -/obj/item/melee/umbrella/random, -/obj/item/melee/umbrella/random, -/obj/item/melee/umbrella/random, -/obj/item/melee/umbrella/random, -/obj/item/melee/umbrella/random, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"ub" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/frame{ - anchored = 1 - }, -/obj/machinery/camera/network/carrier{ - c_tag = "WILD - Shelter Utility Room"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"uc" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/ocean) -"uu" = ( -/obj/machinery/light{ - layer = 3 - }, -/obj/machinery/autolathe, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"vq" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/item/storage/box{ - max_storage_space = 20; - name = "box of 7.62mm practice clips"; - pixel_x = 3; - pixel_y = 3; - starts_with = list(/obj/item/ammo_magazine/clip/c762/practice=10) - }, -/obj/item/storage/bag/trash{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/storage/bag/trash{ - pixel_x = -9; - pixel_y = -5 - }, -/obj/item/storage/box{ - max_storage_space = 20; - name = "box of 7.62mm practice clips"; - pixel_x = 3; - pixel_y = -1; - starts_with = list(/obj/item/ammo_magazine/clip/c762/practice=10) - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = -24; - pixel_y = -4 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"vz" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"vO" = ( -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/obj/machinery/button/windowtint{ - id = "dorm_wildey"; - pixel_x = -22 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"wg" = ( -/obj/machinery/light, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"xj" = ( -/obj/structure/closet/walllocker_double/survival/north{ - name = "Wilderness Shelter Emergency Survival Wall Cabinet"; - starts_with = list(/obj/item/gps=5,/obj/item/material/knife/tacknife/survival=5,/obj/random/mre=5,/obj/item/flashlight/color/yellow=5,/obj/item/flashlight/flare=5,/obj/item/reagent_containers/food/drinks/cans/waterbottle=5,/obj/item/whetstone) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"xt" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt, -/area/surface/outside/path/wilderness) -"xA" = ( -/obj/machinery/light/bigfloorlamp, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"xM" = ( -/obj/machinery/camera/network/carrier{ - c_tag = "WILD - Shelter First Floor Exterior"; - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"xZ" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"yb" = ( -/obj/machinery/power/thermoregulator/southerncross{ - pixel_x = 1; - pixel_y = 26 - }, -/obj/structure/table/standard, -/obj/fiftyspawner/plastic, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"ys" = ( -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"yv" = ( -/obj/machinery/camera/network/carrier{ - c_tag = "WILD - Shelter Utility Exterior"; - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"yL" = ( -/obj/item/stack/marker_beacon, -/turf/simulated/floor/outdoors/grass/sif/planetuse{ - tree_chance = 0 - }, -/area/surface/outpost/shelter/exterior) -"yZ" = ( -/obj/structure/closet/secure_closet/medical_wall{ - name = "Wilderness Shelter defibrillator closet"; - pixel_y = 31; - req_access = null; - req_one_access = list(1,3,43,66,67); - starts_with = list(/obj/item/defib_kit/loaded) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"zb" = ( -/obj/structure/table/rack, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/rglass, -/obj/fiftyspawner/rglass, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"zv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"As" = ( -/turf/simulated/floor/wood{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15; - outdoors = 1 - }, -/area/surface/outside/river/svartan) -"AB" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/rocks/sif/planetuse, -/area/surface/outside/wilderness/normal) -"AP" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"AY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"AZ" = ( -/obj/machinery/atmospheric_field_generator/perma/underdoors, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/simple_door/sifwood, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "wilderness_shelter_Utility"; - layer = 3; - name = "Wilderness Shelter Shutters" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"Ba" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"Bz" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/item/gun/projectile/shotgun/pump/rifle/practice{ - pixel_y = -3 - }, -/obj/item/gun/projectile/shotgun/pump/rifle/practice{ - pixel_y = 6 - }, -/obj/item/binoculars{ - pixel_x = 5; - pixel_y = -3 - }, -/obj/item/binoculars{ - pixel_x = 5; - pixel_y = -3 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"BY" = ( -/obj/structure/simple_door/sifwood, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"Cb" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/shelter/dorms) -"CI" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"CJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"Dk" = ( -/obj/structure/sign/department/medbay{ - name = "FIRST AID" - }, -/turf/simulated/wall/log_sif, -/area/surface/outpost/shelter) -"EB" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "wilderness_shelter_2nd_floor"; - name = "Wilderness Shelter Shutters"; - pixel_x = 26 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"EF" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/carpet/sblucarpet, -/area/surface/outpost/shelter/dorms) -"FY" = ( -/obj/structure/closet/hydrant{ - pixel_y = -26 - }, -/obj/structure/table/standard, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"Ga" = ( -/obj/effect/zone_divider, -/turf/unsimulated/wall/planetary/sif, -/area/surface/outside/wilderness/mountains) -"Gd" = ( -/obj/structure/table/rack, -/obj/item/circuitboard/machine/rtg/advanced, -/obj/item/circuitboard/machine/rtg/advanced, -/obj/item/circuitboard/machine/rtg/advanced, -/obj/item/stack/cable_coil, -/obj/item/storage/belt/utility/full, -/obj/random/powercell, -/obj/random/powercell, -/obj/random/powercell, -/obj/fiftyspawner/rods, -/obj/fiftyspawner/rods, -/obj/fiftyspawner/rods, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"Ge" = ( -/turf/simulated/wall/log_sif, -/area/surface/outpost/shelter/dorms) -"Gw" = ( -/obj/structure/reagent_dispensers/fueltank/high, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"GG" = ( -/obj/machinery/light, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "om_wilderness"; - name = "shuttle bay controller"; - pixel_y = -29 - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"HZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/shelter/dorms) -"Iw" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"Ix" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"IA" = ( -/obj/structure/curtain/medical{ - name = "medical curtain" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"ID" = ( -/obj/machinery/power/thermoregulator/southerncross{ - dir = 8; - pixel_x = 26; - pixel_y = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"IZ" = ( -/turf/simulated/mineral/sif, -/area/surface/outside/wilderness/normal) -"Jk" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/vending/engivend{ - desc = "Spare tool vending for the Wilderness Shelter. What? Did you expect some witty description?"; - name = "Wild Shelter-Vend"; - products = list(/obj/item/geiger=4,/obj/item/cell/high=10,/obj/item/airlock_electronics=10,/obj/item/module/power_control=10,/obj/item/circuitboard/airalarm=10,/obj/item/circuitboard/firealarm=10,/obj/item/circuitboard/status_display=2,/obj/item/circuitboard/ai_status_display=2,/obj/item/circuitboard/newscaster=2,/obj/item/circuitboard/holopad=2,/obj/item/circuitboard/intercom=4,/obj/item/circuitboard/security/telescreen/entertainment=4,/obj/item/stock_parts/motor=2,/obj/item/stock_parts/spring=2,/obj/item/stock_parts/gear=2,/obj/item/circuitboard/atm,/obj/item/circuitboard/guestpass,/obj/item/circuitboard/keycard_auth,/obj/item/circuitboard/geiger,/obj/item/circuitboard/photocopier,/obj/item/circuitboard/fax,/obj/item/circuitboard/request,/obj/item/circuitboard/microwave,/obj/item/circuitboard/washing,/obj/item/circuitboard/scanner_console,/obj/item/circuitboard/sleeper_console,/obj/item/circuitboard/body_scanner,/obj/item/circuitboard/medical_kiosk,/obj/item/circuitboard/sleeper,/obj/item/circuitboard/dna_analyzer); - req_access = null - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"Jq" = ( -/obj/machinery/sleep_console{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"Ki" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/simulated/floor/carpet/turcarpet, -/area/surface/outpost/shelter/dorms) -"KU" = ( -/obj/machinery/light/small, -/obj/structure/closet/secure_closet/guncabinet{ - req_one_access = list(1,3,43,67) - }, -/obj/item/storage/box/syndie_kit{ - max_storage_space = 20; - name = "box of 7.62mm clips"; - starts_with = list(/obj/item/ammo_magazine/clip/c762=10) - }, -/obj/item/storage/box/syndie_kit{ - max_storage_space = 20; - name = "box of 7.62mm clips"; - starts_with = list(/obj/item/ammo_magazine/clip/c762=10) - }, -/obj/item/binoculars, -/obj/item/binoculars, -/obj/item/gun/projectile/shotgun/pump/rifle{ - pixel_y = -3 - }, -/obj/item/gun/projectile/shotgun/pump/rifle{ - pixel_y = 6 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"KX" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"Lv" = ( -/obj/effect/zone_divider, -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/svartan) -"Lx" = ( -/obj/structure/curtain/open/bed, -/turf/simulated/floor/carpet/sblucarpet, -/area/surface/outpost/shelter/dorms) -"LI" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water, -/area/surface/outside/river/svartan) -"Mk" = ( -/obj/structure/simple_door/sifwood, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"Ml" = ( -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"MC" = ( -/obj/effect/decal/remains/human{ - desc = "They look like human remains. They have a strange aura about them, an aura of a former valley explorer" - }, -/obj/item/clothing/suit/armor/pcarrier/explorer, -/turf/simulated/floor/wood{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15; - outdoors = 1 - }, -/area/surface/outside/river/svartan) -"No" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep/ocean, -/area/surface/outside/ocean) -"Nq" = ( -/obj/effect/map_effect/portal/master/side_b/wilderness_to_caves{ - dir = 1 - }, -/turf/simulated/wall/solidrock, -/area/surface/outside/wilderness/mountains) -"NL" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 1 - }, -/turf/simulated/shuttle/wall/voidcraft, -/area/surface/outpost/wall/checkpoint) -"Oy" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/dorms) -"OU" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/vending/wallmed1{ - name = "Emergency NanoMed"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"Pa" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -24 - }, -/turf/simulated/floor/tiled/freezer, -/area/surface/outpost/shelter/dorms) -"Px" = ( -/obj/machinery/camera/network/carrier{ - c_tag = "WILD - Shelter Second Floor"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"Qz" = ( -/obj/structure/boulder, -/turf/simulated/floor/water/deep, -/area/surface/outside/river/svartan) -"Rc" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"Rq" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse{ - tree_chance = 0 - }, -/area/surface/outside/wilderness/deep) -"Rr" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/item/stack/material/log/sif{ - amount = 25; - icon_state = "sheet-log_3"; - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/stack/material/log/sif{ - amount = 25; - icon_state = "sheet-log_3"; - pixel_x = 5; - pixel_y = 2 - }, -/obj/item/stack/tile/wood/sif{ - amount = 60; - icon_state = "tile-sifwood_3" - }, -/obj/item/stack/material/wood/sif{ - amount = 50; - icon_state = "sheet-wood_3"; - pixel_y = 2 - }, -/obj/item/chainsaw{ - layer = 3.01 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"Rw" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/power/thermoregulator/southerncross{ - dir = 4; - pixel_x = -26; - pixel_y = 2 - }, -/obj/structure/closet/crate/bin, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter) -"Sd" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/shuttle/floor/voidcraft/external, -/area/surface/outpost/wall/checkpoint) -"St" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/wilderness/normal) -"SE" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"SI" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/power/rtg/fake_gen{ - desc = "A simple power generator, used in small outposts to reliably provide power for decades."; - name = "Wilderness Shelter power generator"; - power_gen = 9000 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"ST" = ( -/obj/effect/zone_divider, -/turf/simulated/wall/wood, -/area/surface/outside/path/wilderness) -"Uj" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/item/radio/off{ - pixel_y = 6 - }, -/obj/item/radio/off{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/radio/off{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/radio/off, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"Us" = ( -/obj/effect/zone_divider, -/obj/effect/shuttle_landmark/automatic/clearing{ - name = "Northwest Outpost Perimiter"; - base_area = /area/surface/outside/plains/normal; - base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse; - landmark_tag = "outpost_nw" - }, -/turf/simulated/floor/outdoors/dirt/sif/planetuse, -/area/surface/outside/wilderness/normal) -"UK" = ( -/obj/structure/simple_door/sifwood, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"VK" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/exterior) -"Wo" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/closet/walllocker_double/survival/north{ - name = "Wilderness Shelter Emergency Food Wall Cabinet"; - starts_with = list(/obj/random/mre=20,/obj/item/reagent_containers/food/drinks/cans/waterbottle=20) - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"WB" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/obj/item/stack/material/phoron{ - amount = 2 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"WE" = ( -/obj/structure/closet/secure_closet/medical_wall{ - name = "Wilderness Shelter defibrillator closet"; - pixel_y = 31; - req_access = null; - req_one_access = list(1,3,43,66,67); - starts_with = list(/obj/item/defib_kit/loaded) - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/surface/outpost/shelter) -"WL" = ( -/obj/effect/shuttle_landmark{ - landmark_tag = "wilderness_w"; - name = "West of Wilderness"; - base_area = /area/surface/outside/wilderness/deep; - base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse - }, -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse{ - tree_chance = 0 - }, -/area/surface/outside/wilderness/deep) -"Xn" = ( -/obj/structure/table/rack, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"Xw" = ( -/obj/item/stack/marker_beacon, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outpost/shelter/exterior) -"XD" = ( -/turf/simulated/wall/solidrock, -/area/surface/outside/wilderness/deep) -"XK" = ( -/obj/structure/table/standard, -/obj/structure/bedsheetbin{ - pixel_x = 2 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/simulated/floor/wood/sif, -/area/surface/outpost/shelter/utilityroom) -"Yc" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "dorm_wildey" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "dorm_wildey" - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "wilderness_shelter_2nd_floor_2"; - layer = 4; - name = "Wilderness Shelter Shutters" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/dorms) -"Yq" = ( -/obj/machinery/power/thermoregulator/southerncross{ - pixel_x = 1; - pixel_y = 26 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"YL" = ( -/turf/simulated/mineral/sif, -/area/surface/outpost/wall/checkpoint) -"Za" = ( -/turf/simulated/mineral/sif, -/area/surface/outside/wilderness/deep) -"Zs" = ( -/obj/effect/shuttle_landmark{ - landmark_tag = "wilderness_n"; - name = "North of Wilderness"; - base_area = /area/surface/outside/wilderness/deep; - base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse - }, -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse{ - tree_chance = 0 - }, -/area/surface/outside/wilderness/deep) -"Zt" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/surface/outpost/shelter/utilityroom) -"Zz" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/item/deck/cah{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/deck/cah/black{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/deck/cards{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/deck/holder{ - pixel_x = -9; - pixel_y = 1 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/surface/outpost/shelter/dorms) -"ZG" = ( -/obj/structure/showcase/sign{ - desc = "This appears to be a sign warning people that the other side is extremely hazardous."; - icon_state = "wilderness2"; - pixel_y = -5 - }, -/obj/effect/zone_divider, -/turf/simulated/wall/wood, -/area/surface/outside/path/wilderness) -"ZU" = ( -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/shuttle/shuttle3/mining) - -(1,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -XD -XD -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(2,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -Za -Za -ac -ac -Qz -kh -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -"} -(3,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ah -ah -Za -ac -kh -an -an -hw -ru -IZ -IZ -ap -ap -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -"} -(4,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ac -ac -ac -ac -ac -ae -ae -ae -ae -ag -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ah -ah -aw -ah -ah -ah -kh -MC -an -sC -ru -As -ap -ap -ap -ap -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -"} -(5,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ae -ae -ae -ag -ae -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aw -ah -ah -ah -LI -LI -an -an -LI -LI -am -ap -ap -ap -ap -ap -ap -at -ac -ac -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ak -ac -ac -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -at -at -at -at -aD -at -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -"} -(6,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ah -am -am -an -an -am -am -am -at -ap -ap -ap -ap -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -"} -(7,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -at -at -at -at -at -at -at -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -"} -(8,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -ac -ac -ac -ac -ac -ac -ac -at -at -at -at -at -at -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -"} -(9,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -"} -(10,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ac -ac -ab -"} -(11,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ac -ac -ab -"} -(12,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -kd -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ac -ac -ab -"} -(13,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -kd -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ac -ab -"} -(14,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -kd -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ac -ab -"} -(15,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -kd -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ab -"} -(16,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -kd -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ab -"} -(17,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -kd -ae -ae -am -am -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ab -"} -(18,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -kd -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ab -"} -(19,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -kd -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ab -"} -(20,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -kd -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ab -"} -(21,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -kd -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ab -"} -(22,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -WL -kd -kd -Rq -kd -kd -kd -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ab -"} -(23,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -kd -ae -ae -am -am -an -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ab -"} -(24,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -kd -ae -ae -am -am -an -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ab -"} -(25,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -kd -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ab -"} -(26,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -kd -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ab -"} -(27,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -kd -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ab -"} -(28,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -kd -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ab -"} -(29,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -kd -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ab -"} -(30,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -kd -ae -ae -ae -ae -am -am -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ab -"} -(31,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -am -am -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ac -ab -"} -(32,1,1) = {" -ad -ak -ak -ak -ak -ak -ak -ak -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -aR -aR -bb -aR -aR -aR -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -oS -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -oS -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -oS -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -ak -ak -ak -ak -ak -ad -"} -(33,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(34,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(35,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(36,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(37,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(38,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(39,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(40,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(41,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(42,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(43,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(44,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(45,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(46,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(47,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(48,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(49,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(50,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(51,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(52,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -an -am -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(53,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(54,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(55,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(56,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(57,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(58,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(59,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(60,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ao -ao -ae -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(61,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ao -aq -au -au -ay -an -au -au -as -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(62,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ai -ae -ao -aS -aS -aS -aS -aB -aS -aS -aS -ao -ao -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(63,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -aS -aS -ax -aS -aS -aS -aS -aS -at -ao -ao -ao -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(64,1,1) = {" -ad -ak -ak -ak -ak -ak -ak -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ST -oO -aR -az -az -oO -oO -ZG -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -oS -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -oS -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -oS -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -ak -ak -ak -ak -ad -"} -(65,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(66,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(67,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(68,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(69,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(70,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(71,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ac -ab -"} -(72,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(73,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(74,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(75,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(76,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(77,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(78,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(79,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(80,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(81,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(82,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(83,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ab -"} -(84,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ab -"} -(85,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ab -"} -(86,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ab -"} -(87,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ab -"} -(88,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ab -"} -(89,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ab -"} -(90,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ab -"} -(91,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ab -"} -(92,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ab -"} -(93,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ab -"} -(94,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ab -"} -(95,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ab -"} -(96,1,1) = {" -ad -ak -ak -ak -ak -ak -ak -ag -ag -ag -ag -ag -ag -ag -aw -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aR -aR -bb -aR -aR -aR -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -oS -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -oS -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -oS -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -ak -ak -ad -"} -(97,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ah -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ab -"} -(98,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ae -ae -ae -ae -ah -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ab -"} -(99,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -am -am -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ab -"} -(100,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -ac -ac -ac -ab -"} -(101,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ae -ae -ai -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -aG -at -at -ac -ac -ac -ab -"} -(102,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -am -am -am -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -aG -at -at -at -ac -ac -ac -ab -"} -(103,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -am -am -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -ac -ac -ac -ab -"} -(104,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -am -am -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -aG -at -at -at -aG -aG -at -ac -ac -ac -ab -"} -(105,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -am -am -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -aG -aG -at -at -at -ac -ac -ac -ab -"} -(106,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -ac -ac -ac -ac -ab -"} -(107,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -at -at -at -at -at -aG -aG -ac -ac -ac -ac -ab -"} -(108,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -aG -at -at -at -aG -aG -at -ac -ac -ac -ac -ab -"} -(109,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -aG -at -aG -aG -at -aG -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(110,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -kd -ah -ah -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -aG -aG -at -at -aG -at -at -aG -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(111,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -ah -ah -ah -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -aG -aG -at -at -at -at -at -at -at -at -aG -aG -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(112,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -ah -ah -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -aG -at -at -at -at -at -at -aG -at -at -at -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(113,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -ah -ah -ah -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -aG -aG -at -at -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(114,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -ah -ah -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -aG -at -at -at -aG -at -at -at -aG -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(115,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -ah -ah -ah -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -am -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -aG -aG -at -at -at -aG -aG -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(116,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -ah -ah -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -am -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ac -ac -ab -"} -(117,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -ah -ah -ah -kd -kd -kd -kd -kd -Zs -kd -kd -kd -kd -kd -Rq -kd -kd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -am -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ac -ac -ab -"} -(118,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -ah -ah -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -am -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -aG -at -at -aG -at -at -at -at -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ac -ac -ab -"} -(119,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -ah -ah -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -am -am -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -aG -at -aG -aG -at -at -aG -at -at -aG -at -at -aG -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ac -ac -ab -"} -(120,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -ah -ah -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -am -am -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aH -aG -at -at -at -at -at -aG -at -at -aG -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ac -ac -ab -"} -(121,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -ah -ah -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -an -an -am -am -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -aD -at -at -at -at -at -aG -aG -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -ab -ab -"} -(122,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -ai -ah -ah -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -an -an -am -am -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -aG -at -at -at -aD -aG -aG -at -at -at -at -at -at -at -at -aG -aG -aG -aG -ap -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -Nq -ab -"} -(123,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -ai -ah -ah -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Rq -kd -kd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -an -an -am -am -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aH -aG -at -at -at -at -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -ap -aG -aG -aG -aG -aG -aG -aG -aG -bk -ac -ac -ab -bX -ab -"} -(124,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -kd -kd -kd -kd -ah -ah -kd -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -an -an -am -am -am -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -aG -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -aG -aG -aG -at -aG -aG -aG -aG -ap -aG -aG -ap -aG -aG -aG -aG -aG -aW -bm -bo -bq -bq -NL -bq -"} -(125,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ai -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -an -an -am -am -am -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -aD -at -at -at -at -aG -aG -aG -aG -at -aG -aG -aG -aG -aG -aG -aG -aG -ap -aG -aG -ap -aG -aG -aG -bl -bl -bp -Sd -bl -br -bl -"} -(126,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ai -ai -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -aD -at -aG -aG -aG -aG -at -aG -aG -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ap -aG -aG -aW -bl -bl -bq -bl -bl -br -bl -"} -(127,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ai -ai -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -aG -at -at -aG -aH -aG -aG -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -bl -bl -bp -cH -bl -br -bl -"} -(128,1,1) = {" -ad -ak -ak -ak -ak -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aA -aA -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aR -aR -bb -bb -bb -aR -aR -aD -aD -aD -aD -aD -aD -aD -oS -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -oS -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aH -aD -aD -aD -aD -aD -aD -aD -aH -aD -aD -aH -aH -kZ -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -qr -qr -qr -bn -bo -bq -bq -NL -bq -"} -(129,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ai -ai -ai -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -at -at -at -aG -at -at -at -at -aG -aG -aG -at -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -aG -bk -ac -ac -ab -bX -ab -"} -(130,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ai -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -at -at -aG -aG -at -at -at -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -aW -aG -ac -ac -ac -ab -bX -ab -"} -(131,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -aG -at -at -at -at -at -at -at -at -at -aG -aG -at -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -aG -aG -ac -ac -ac -ab -ab -ab -"} -(132,1,1) = {" -ab -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -at -at -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -aW -aG -aG -ac -ac -ac -ac -ac -ab -"} -(133,1,1) = {" -ab -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -aG -at -at -at -at -aG -aG -at -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -aW -aG -aG -aG -ac -ac -ac -ac -ab -"} -(134,1,1) = {" -ab -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(135,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -aW -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(136,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -at -at -at -at -at -aG -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -aG -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(137,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -an -am -am -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -aG -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(138,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -an -am -am -am -am -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -aD -at -at -at -at -aG -at -at -at -at -aG -at -at -at -aG -at -at -aG -aG -aG -aG -aG -aG -at -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aV -aV -aV -aG -aG -aG -aG -aG -aG -aG -aV -aG -aG -aG -aW -aW -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(139,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -aG -at -at -at -aD -at -aG -at -at -aG -at -at -at -at -aG -at -at -at -at -at -aG -aG -aG -aG -aG -aG -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aV -aV -aV -aV -ap -ap -ap -bA -bA -bA -bx -bx -bx -bx -aG -aG -aG -aW -aW -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(140,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -at -aD -at -at -at -at -aG -at -at -aG -at -at -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aV -bA -bx -bA -bx -bA -bA -bA -bA -bA -bx -bx -bx -bA -aG -aG -aG -aW -aW -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(141,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ai -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -an -am -am -am -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -at -at -at -at -aD -aG -at -at -at -at -at -at -aG -at -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aV -bx -bx -bA -bA -bA -bA -bx -bx -bx -bx -bx -bx -bx -aV -aG -aG -aG -aW -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(142,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ai -ai -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -am -am -am -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -aG -at -at -at -at -aG -at -at -aH -aG -at -at -at -at -at -aG -aG -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aV -bA -bx -bA -bA -bx -bx -bx -bx -bx -bx -bx -bx -aV -aV -aG -aG -aG -aW -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(143,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ai -ai -ai -ai -ai -ai -ai -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -am -am -am -at -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -at -aG -aG -at -at -aH -at -at -aG -at -at -at -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -bA -bx -bA -bA -bx -bx -bx -bx -bx -bx -bx -bx -aV -ap -ap -aG -aG -aW -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(144,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ai -ai -ai -ai -ai -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -an -am -am -am -am -at -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -aG -at -at -at -at -aH -at -aG -aG -at -at -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -bx -bA -bA -bx -bx -bA -bA -bA -bx -bA -bA -bx -aV -ap -aG -aG -aG -aW -aW -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(145,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ai -ai -ai -ai -ai -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -an -an -am -am -am -am -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -at -at -at -aG -at -at -at -at -aD -at -aG -at -at -at -aG -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -bA -bA -bA -bx -bA -bA -bx -bx -bx -bA -bA -bx -bA -aV -aG -aG -aG -aW -aW -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(146,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ai -ai -ai -ai -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -an -am -am -am -am -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -aG -at -at -at -at -at -at -aG -at -at -at -at -aD -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aV -aV -bx -bA -bA -bx -bA -bx -bA -bA -bD -bA -bA -bA -bA -aG -aG -aG -aW -aW -aG -aG -ap -aG -aG -aG -aG -ac -ac -ab -"} -(147,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ai -ai -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -an -an -am -am -am -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -at -aG -at -at -at -at -aG -at -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aV -aV -aV -aV -aV -aV -aV -ap -bA -bA -bA -bA -bA -bA -bA -aV -aG -aW -aW -aW -aG -aG -aG -aG -aG -aG -aG -ac -ac -ab -"} -(148,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -an -an -am -am -am -at -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -aG -at -at -at -at -aG -at -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aV -aV -ap -ap -aV -aV -aV -aV -aV -aV -aV -aW -aW -aW -aW -aW -aW -aW -aW -aG -aG -aG -aG -ap -ap -aG -aG -ac -ac -ab -"} -(149,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -an -am -am -am -am -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -at -at -at -at -at -at -aG -at -at -aG -at -at -at -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aV -tO -aV -ap -aV -aV -aV -aV -aV -aV -aV -aV -ap -aV -aV -aV -aW -aW -aW -aW -aW -aT -bz -bz -bz -bz -bz -bz -bz -aT -aX -ac -ab -"} -(150,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -an -am -am -am -am -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -aG -aG -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -at -aG -at -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aV -tO -aV -ap -ap -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aG -aW -wg -bE -bz -bz -bz -bE -bz -aT -gy -bE -ac -ab -"} -(151,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -an -an -am -am -am -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -aG -aG -aG -aG -aG -aG -at -aG -at -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aV -aV -tO -aV -aV -aV -ap -ap -ap -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aW -aW -aT -bz -bz -bz -bz -bz -bz -aT -aT -bz -ac -ab -"} -(152,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ai -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -an -an -am -am -am -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -aG -at -aG -aG -at -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aV -ap -St -aV -ap -aV -ap -ap -aV -ap -aV -ap -ap -aV -ap -ap -aV -aV -aW -aW -aW -aW -aT -bz -bz -aT -bz -bz -aT -bz -aT -aT -ac -ab -"} -(153,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -an -am -am -am -at -at -aD -at -at -at -at -at -at -at -at -at -at -at -at -at -at -aG -at -at -aG -aG -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aV -ap -Us -ap -aV -aV -aV -aV -aV -ap -ap -aV -aV -aV -ap -aV -aV -ap -aW -aV -aV -aW -aT -bz -bz -bz -aT -aT -bz -bz -aT -bz -ac -ab -"} -(154,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -an -an -am -am -am -at -aD -at -at -at -at -at -at -at -aG -aG -at -at -at -at -aG -aG -at -at -at -aG -aG -aG -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aV -aV -tO -ap -aV -aV -aV -aV -ap -ap -ap -aV -aV -ap -ap -aV -ap -ap -aW -aV -aV -aW -wg -bE -bz -aT -aT -bE -bz -aT -aT -bE -ac -ab -"} -(155,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -an -an -am -am -am -at -aD -at -at -at -at -at -at -at -aG -at -at -at -at -at -aG -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aV -aV -St -ap -aV -aV -aV -aV -ap -ap -ap -aV -aV -aV -ap -aV -ap -ap -aV -aV -aV -aW -aT -bz -aT -bz -bz -yv -bz -bz -aT -bz -ac -ab -"} -(156,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -an -am -am -am -at -aD -at -at -at -at -at -at -aG -aG -at -at -at -at -at -aG -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aV -ap -tO -aV -aV -aV -aV -aV -ap -ap -ap -aV -ap -aV -ap -ap -ap -ap -aV -aV -aV -aW -aT -aT -aT -aT -aT -aT -aT -aT -aT -bz -ac -ab -"} -(157,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -an -an -am -am -am -aD -at -at -at -at -at -at -at -at -at -aG -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -at -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aV -ap -tO -aV -aV -aV -ap -ap -aV -ap -aV -aV -ap -ap -aV -ap -ap -ap -aV -aV -aV -aW -aT -aT -aT -aT -aT -aT -KX -VK -tK -tx -ac -ab -"} -(158,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -an -an -am -am -am -aD -at -at -at -at -at -at -at -at -at -aG -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -at -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aV -aV -tO -aV -aV -ap -aV -aV -aV -ap -aV -ap -ap -ap -aV -aV -ap -aV -aV -aV -aV -aW -wg -ba -ba -ba -ba -ba -ba -AZ -aU -aU -aU -ab -"} -(159,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -an -am -am -am -aD -at -at -at -at -at -at -at -at -aG -aG -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aV -tO -aV -aV -aV -aV -ap -ap -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aT -aZ -bd -bg -bj -bw -cA -gV -tB -SI -aU -ab -"} -(160,1,1) = {" -ad -ak -ak -ak -ak -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aw -aw -aw -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aR -aR -aR -aR -bb -bb -aR -aR -er -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -kZ -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -dd -ji -ji -ji -ji -hX -ji -ji -Iw -ji -hX -Iw -ji -ji -ji -ji -hX -tO -tO -qr -fY -ba -bf -bh -bt -by -ba -Yq -AY -WB -aU -ab -"} -(161,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -an -am -am -aR -at -at -at -at -aG -aG -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ji -iB -iB -iB -iB -iB -iB -iB -iB -iB -iB -aT -aT -iB -iB -iB -iB -aV -aV -aV -aT -bc -bv -bv -bv -bB -ba -Jk -AY -mj -aU -ab -"} -(162,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -an -am -am -aR -am -at -at -at -aG -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ji -iB -iB -iB -aT -iB -iB -iB -iB -iB -iB -iB -iB -iB -iB -iB -iB -aV -aV -aW -xM -ba -bv -bv -bv -be -ba -gE -AY -hu -aU -ab -"} -(163,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -an -an -am -aR -am -at -at -aG -aG -at -at -at -aG -aG -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ji -iB -iB -iB -iB -iB -iB -iB -iB -iB -iB -aT -aT -aT -iB -iB -iB -aV -aV -aW -aT -aZ -Rc -bi -bv -bv -Mk -ys -AY -ub -aU -ab -"} -(164,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -an -an -an -aR -am -am -at -at -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ji -iB -iB -iB -iB -iB -iB -aT -aT -iB -iB -aT -aT -iB -iB -aT -aT -aV -aV -aW -GG -ba -ba -Dk -IA -td -ba -Gd -AY -Rr -aU -ab -"} -(165,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -an -an -aR -am -am -at -at -at -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ji -iB -iB -aT -iB -iB -aT -aT -aT -aT -iB -iB -aT -iB -aT -aT -iB -aV -aV -aW -aT -bz -bz -ba -OU -SE -ba -Xn -AY -el -aU -ab -"} -(166,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ah -ah -ah -ae -ae -ae -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -an -an -aR -am -am -at -aG -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -hX -iB -iB -aT -aT -iB -iB -aT -aT -aT -iB -iB -iB -iB -aT -iB -nA -aV -aV -aW -aT -aT -bz -ba -WE -Jq -ba -zb -AY -Gw -aU -ab -"} -(167,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -an -am -aR -am -am -at -aG -at -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ji -iB -iB -aT -aT -aT -iB -iB -aT -aT -aT -iB -iB -aT -aT -iB -iB -aW -aW -aW -aT -aT -bz -ba -es -bs -ba -Uj -AY -qf -aU -ab -"} -(168,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -am -am -am -am -am -aR -am -am -aG -aG -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -Iw -iB -iB -aT -aT -iB -aT -iB -aT -aT -aT -iB -iB -aT -aT -iB -iB -aW -aW -aW -aT -aT -xA -ba -Wo -qe -ba -mh -AY -Zt -aU -ab -"} -(169,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -am -am -am -am -am -aR -am -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -hX -iB -iB -aT -iB -iB -aT -iB -iB -aT -iB -iB -iB -iB -aT -aT -yL -aV -aW -aW -aT -ba -ba -ba -Mk -ba -ba -aU -UK -aU -aU -ab -"} -(170,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -am -am -am -am -an -aR -am -am -at -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ji -iB -iB -iB -iB -aT -aT -aT -iB -iB -iB -aT -aT -iB -iB -aT -aT -aV -aV -aW -aT -cr -Rw -vq -bv -rl -ba -ln -pn -CI -aU -ab -"} -(171,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -am -am -am -am -an -aR -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ji -iB -iB -iB -iB -bz -bz -iB -iB -iB -iB -aT -aT -aT -iB -aT -aT -aV -aV -aW -aT -ba -yZ -bv -bv -Bz -ba -Ix -pn -iV -aU -ab -"} -(172,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -am -am -an -an -aR -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -vz -iB -iB -iB -iB -bz -bz -iB -iB -iB -iB -iB -iB -jf -iB -iB -iB -aV -aV -aW -aT -ba -xj -rv -bv -KU -ba -XK -pn -uu -aU -ab -"} -(173,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -aR -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -vz -bz -bz -aT -iB -iB -iB -aT -iB -iB -iB -iB -iB -iB -iB -iB -iB -aV -aV -aW -bz -ba -sJ -bv -ca -hf -ba -yb -pn -FY -aU -ab -"} -(174,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -aR -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -vz -bz -bz -bz -iB -iB -iB -aT -aT -iB -aT -iB -iB -aT -iB -iB -iB -aV -aV -aW -aT -cr -EB -Px -dh -dh -ib -zv -lX -tS -aU -ab -"} -(175,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -am -am -am -an -an -aR -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -sR -bz -bz -bz -bz -Xw -bz -bz -bz -iB -nA -iB -iB -iB -aT -iB -yL -aV -aV -aW -aT -ba -ba -ba -ba -ba -ba -aU -BY -aU -aU -ab -"} -(176,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -am -an -an -aR -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aV -aV -ap -aV -aV -aV -aV -ap -aV -aW -aW -aT -bz -Ge -mP -Pa -jX -Ge -CJ -nN -xZ -Ge -ab -"} -(177,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -am -an -am -aR -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -ap -aG -aG -aG -aG -aG -aG -aG -aG -aW -aG -bz -Ge -Cb -bG -HZ -oW -ez -nN -qq -Ge -ab -"} -(178,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -am -am -am -an -am -aR -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -bz -Ge -Ge -Ge -Ge -Ge -ez -nN -ez -Ge -ab -"} -(179,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -ae -aj -aj -aj -aj -aj -aj -aj -aj -am -am -am -an -an -am -aR -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -bz -Yc -vO -pQ -Ki -cD -mR -nN -Ml -Ge -ab -"} -(180,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -am -an -an -am -aR -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -bz -Yc -ez -ez -Ki -Zz -mR -nN -Ba -Ge -ab -"} -(181,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -am -an -an -am -aR -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -bz -Ge -Lx -Lx -ez -bR -ez -nN -qq -Ge -ab -"} -(182,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -am -am -an -an -am -aR -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -bz -Ge -oU -EF -op -AP -Oy -ID -gi -Ge -ab -"} -(183,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -am -am -an -an -am -aR -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -bz -Ge -Ge -Ge -Ge -Ge -Ge -Ge -Ge -Ge -ab -"} -(184,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -am -an -an -am -am -aR -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aT -bz -bz -bz -bz -bz -bz -ac -ac -ac -ab -"} -(185,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -ae -aj -aj -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -am -am -an -an -am -am -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -bz -bz -bz -bz -bz -bz -ac -ac -ac -ab -"} -(186,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -am -am -an -an -am -am -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -aG -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(187,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -aj -aj -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -am -an -an -am -am -am -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -aG -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(188,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -an -am -am -am -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aG -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(189,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -ae -ae -ae -ae -ae -ag -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -am -an -an -an -am -am -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(190,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -ae -ae -ae -ae -ag -ae -aj -aj -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -an -am -am -am -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(191,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -ae -ae -ae -ag -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -an -an -an -am -am -am -am -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(192,1,1) = {" -ad -ak -ak -ak -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aA -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aP -ag -ag -ag -ag -aP -aP -ag -ag -ag -aQ -aP -ag -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aR -aR -bb -bb -bb -aR -aR -aR -aR -aH -kZ -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -kZ -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -kZ -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -qr -aH -aH -aH -aH -aH -ak -ak -ak -ad -"} -(193,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -ae -ae -ae -ae -ae -ae -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -an -an -am -am -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(194,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -ae -ae -ae -ae -ae -ae -ag -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -an -an -am -am -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(195,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ai -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ai -aj -aj -ai -aj -aj -aj -aj -aj -aj -aj -as -au -aE -aE -aE -aE -au -au -aC -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(196,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ai -ai -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ao -aj -aj -ao -ao -aS -aS -aS -aS -aS -aS -aS -aS -aS -ao -xt -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aG -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(197,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ai -ai -ai -ai -ai -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -ae -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ao -aj -aj -ao -ao -aS -aS -aS -aS -aS -aS -aS -aS -aS -ao -xt -ao -ao -ao -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aG -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(198,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ai -ai -ai -ae -ae -ai -ae -ae -aj -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -ae -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -as -av -av -aF -aF -aF -av -av -as -aG -aH -ao -ao -ao -aG -aG -aI -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(199,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -aj -ae -ae -ae -ae -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -an -an -an -an -am -am -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aI -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -ZU -aG -aG -aG -ac -ac -ac -ac -ab -"} -(200,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -ae -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -an -an -an -an -am -am -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(201,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -ae -ae -ae -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -an -am -am -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aI -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aW -aW -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(202,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -ae -ae -ae -aj -ae -ae -aj -ae -ae -ae -aj -aj -ae -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -an -am -am -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aG -aG -aG -aW -aW -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(203,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -am -am -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aG -aG -aG -aW -aW -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(204,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -am -am -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aG -aG -aG -aW -aW -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(205,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -an -am -am -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aG -aG -aW -aW -aW -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(206,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -am -am -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aG -aG -aW -aW -aW -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(207,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -am -am -am -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aG -aG -aW -aW -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(208,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -am -am -am -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aG -aG -aW -aW -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(209,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -am -am -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aG -aG -aW -aW -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(210,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -aj -ae -aj -aj -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -am -an -am -am -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aG -aG -aW -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(211,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -aj -ae -ae -ae -aj -ae -aj -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -am -am -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aG -aG -aW -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(212,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -am -am -aR -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aG -aW -aW -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(213,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -an -am -aR -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aV -aV -aV -aV -aV -aV -aV -aV -kU -aV -aV -aV -aV -aV -aV -aV -aG -aW -aW -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(214,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -ae -aj -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -an -am -aR -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -St -ap -aV -aV -aV -aV -aV -ap -ap -ap -ap -aV -aV -aV -aV -aV -aV -aV -aG -aW -aW -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(215,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -ae -aj -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -am -an -an -am -aR -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ap -ap -ap -ap -ap -St -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -aG -aG -aG -aG -aW -aW -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(216,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -am -aR -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ap -ap -ap -ap -ap -ap -ap -ap -ap -St -ap -aM -aM -aM -ap -ap -ap -aM -aM -ap -ap -ap -ap -ap -ap -aG -aG -aG -aW -aW -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ab -"} -(217,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -an -aR -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -aM -aM -AB -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -ap -ap -ap -aG -aG -aW -aW -aG -aG -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(218,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -an -aR -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ap -ap -ap -ap -ap -ap -aM -aM -aM -aM -aM -aM -aM -aM -AB -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -ap -ap -ap -aG -aW -aW -aG -aG -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(219,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -aj -ae -ae -aj -ae -aj -aj -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -am -an -bb -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ap -ap -ap -ap -ap -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -AB -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -ap -ap -ap -aW -aW -aG -aG -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(220,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -bb -am -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ap -ap -ap -ap -ap -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -AB -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -ap -ap -aW -aG -aG -aG -aG -aG -aG -aG -ac -ac -ac -ac -ab -"} -(221,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -an -bb -am -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ap -ap -ap -ap -ap -ap -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -AB -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aM -aM -aM -aM -aM -aM -aM -ap -aW -aW -aG -aG -aG -aG -aG -ac -ac -ac -ac -ac -ab -"} -(222,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -an -bb -an -am -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ap -ap -ap -ap -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aK -aK -uc -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aM -aM -aM -aM -aM -ap -ap -aW -aG -aG -aG -aG -aG -ac -ac -ac -ac -ac -ab -"} -(223,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -aj -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -an -bb -an -am -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -ap -ap -ap -ap -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aK -aK -aK -uc -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aM -aM -aM -aM -aM -aM -aW -aG -aG -aG -aG -aG -ac -ac -ac -ac -ac -ab -"} -(224,1,1) = {" -ad -ak -ak -ak -ak -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -aO -ag -ag -aP -aP -ag -ag -ag -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aQ -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aR -aR -Lv -bb -aR -aR -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -kZ -aH -aH -aH -aH -aH -aH -aH -St -St -St -St -St -AB -AB -AB -AB -AB -AB -AB -AB -AB -AB -AB -AB -AB -uc -uc -uc -uc -uc -uc -cG -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -AB -AB -AB -AB -qr -AB -AB -aH -aH -aH -ak -ak -ak -ak -ak -ad -"} -(225,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ag -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -bb -an -am -am -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -ap -ap -ap -aM -aM -aM -aM -aM -aM -aM -aM -aM -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -uc -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aM -aW -aW -aM -aM -aM -aM -aG -ac -ac -ac -ac -ac -ab -"} -(226,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ag -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -bb -an -an -am -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -aG -ap -ap -aM -aM -aM -aM -aM -aM -aM -aM -aM -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -uc -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aW -aW -aM -aM -aM -aM -aM -ac -ac -ac -ac -ac -ab -"} -(227,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ag -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -am -aR -an -an -am -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -aG -ap -ap -aM -aM -aM -aM -aM -aM -aM -aM -aM -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -uc -aK -aK -aK -aK -aK -aN -aN -aN -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aS -aS -aK -aM -aM -aM -aM -ac -ac -ac -ac -ac -ab -"} -(228,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -aP -aj -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -aR -an -an -am -am -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -aG -aG -ap -ap -aM -aM -aM -aM -aM -aM -aM -aM -aM -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -uc -aK -aK -aK -aN -aN -aN -aN -aN -aN -aK -aK -aK -aK -aK -aK -aK -aK -aK -aS -aS -aK -aK -aK -aK -aM -ac -ac -ac -ac -ac -ab -"} -(229,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -ae -ag -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -am -aR -am -an -an -am -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -aG -ap -ap -ap -aM -aM -aM -aM -aM -aM -aM -aM -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -uc -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -aK -aK -aK -aK -aK -aS -aS -aK -aK -aK -aK -aK -aK -ac -ac -ac -ac -ab -"} -(230,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aR -am -an -an -am -am -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aH -aG -ap -ap -aM -aM -aM -aM -aM -aM -aM -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -ac -ac -ac -ac -ab -"} -(231,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -ae -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aR -am -an -an -an -am -am -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -St -ap -ap -aM -aM -aM -aM -aM -aM -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -ac -ac -ac -ac -ab -"} -(232,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aR -am -an -an -an -an -am -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ap -St -ap -aM -aM -aM -aM -aM -aM -aM -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -ac -ac -ac -ac -ab -"} -(233,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -am -am -an -an -an -am -am -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ap -ap -St -aM -aM -aM -aM -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -ac -ac -ac -ab -"} -(234,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -am -am -am -an -an -an -am -am -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ap -ap -ap -AB -aM -aM -aM -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -aK -aK -aK -aK -aK -aK -ac -ac -ac -ab -"} -(235,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -ae -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ae -aP -ae -am -am -am -an -an -am -am -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ap -ap -aM -aM -AB -aM -aM -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -aK -aK -aK -aK -ac -ac -ac -ab -"} -(236,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -ae -am -am -am -am -an -an -am -am -am -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ap -ap -ap -ap -aM -aM -aM -AB -aM -aM -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -aK -aK -ac -ac -ac -ac -ab -"} -(237,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -aj -aj -ae -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ag -ae -ae -am -am -am -am -an -an -am -am -am -ap -ap -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ap -ap -ap -ap -ap -aM -aM -aM -AB -aM -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -aK -ac -ac -ac -ac -ab -"} -(238,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -ae -ae -aj -ae -ae -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ae -ae -ae -aj -ae -ag -ae -ae -ae -ae -am -am -am -an -am -am -am -ap -ap -ap -aG -aG -aG -aG -aG -aG -aG -ap -ap -ap -ap -ap -ap -aM -aM -aM -aM -AB -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -aK -ac -ac -ac -ac -ab -"} -(239,1,1) = {" -ab -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -aj -ae -ae -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ae -ae -aj -ae -ae -ae -ag -aj -ae -ae -ae -aj -am -am -am -an -am -am -am -aM -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -aM -aM -aM -aM -aM -aM -aM -aK -uc -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -ac -ac -ac -ac -ac -ab -"} -(240,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -aj -aj -ae -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -aj -am -am -an -an -am -am -aM -aM -aM -ap -ap -ap -ap -ap -ap -ap -aM -aM -aM -aM -aM -aM -aM -aK -aK -uc -aK -aK -aK -aK -aK -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -ac -ac -ac -ab -ab -ab -"} -(241,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -aj -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ae -ae -ae -ae -ae -aj -ag -ae -ae -ae -ae -ae -ae -ae -am -am -an -am -am -am -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aM -aK -aK -aK -aK -aK -uc -aK -aK -aK -aK -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -ac -ac -ac -ab -aY -ab -"} -(242,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -aj -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ae -ae -ae -ae -aj -aP -ae -ae -aj -aj -ae -ae -ah -ah -am -am -am -am -am -am -aM -aM -aM -aM -aM -aM -aM -aM -aM -aK -aK -aK -aK -aK -aK -aK -aK -uc -aK -aK -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -ac -ac -ab -bX -ab -"} -(243,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ae -ae -ae -ae -ae -ag -ae -ae -ae -aj -ae -ae -ah -aJ -am -am -am -an -an -am -am -aM -aM -aM -aM -aM -aM -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -uc -aK -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -bq -bq -NL -bq -"} -(244,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -aj -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ah -ah -aJ -aJ -am -am -am -an -an -am -am -am -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -uc -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -bu -dO -bu -ld -bu -"} -(245,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ah -aJ -aJ -aJ -am -am -an -an -an -am -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -uc -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -bu -bu -bu -ld -bu -"} -(246,1,1) = {" -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ae -aj -ae -ae -ae -ag -ae -ae -ae -ae -ae -ah -ah -ah -aJ -aJ -aJ -am -am -am -an -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -uc -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -bu -bu -bu -ld -bu -"} -(247,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ae -ae -aj -ae -ae -aj -ag -ae -ae -aj -aj -ah -ah -ah -ah -ah -aJ -aJ -aJ -am -am -aK -aK -aN -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -YL -aa -bC -aa -"} -(248,1,1) = {" -ab -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ae -ae -ae -ae -ae -ae -ak -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -aJ -aJ -am -aK -aK -aK -aN -aN -aK -aK -aK -aK -aK -aK -aK -aK -aK -aK -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -ac -ac -ab -bX -ab -"} -(249,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ae -ae -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -aK -ac -ac -ab -bX -ab -"} -(250,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aK -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -aK -aK -ac -ab -ab -ab -"} -(251,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ag -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -ac -ac -ac -ac -ac -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aK -aK -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -aK -aK -ac -ac -ac -ab -"} -(252,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aj -aj -aj -aj -aj -aj -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aj -aj -aj -aj -aj -ac -ac -ac -ac -ac -ac -ac -aj -aj -aj -aj -aP -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -aK -aK -aK -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -aK -aK -ac -ac -ac -ab -"} -(253,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aP -aj -aj -aj -aj -aj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -aK -aK -aK -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -aK -aK -ac -ac -ac -ab -"} -(254,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -bF -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -aK -aK -aK -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -aK -aK -aK -ac -ac -ab -"} -(255,1,1) = {" -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ak -ac -ac -ac -ac -ac -ac -ac -ac -aK -aK -aK -aK -aK -aK -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -No -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aN -aK -aK -aK -aK -aK -ac -ac -ab -"} -(256,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -ab -ab -ab -ab -ab -ab -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -Ga -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -Ga -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -qW -ab -ab -"} diff --git a/maps/southern_sun/southern_cross-casino.dmm b/maps/southern_sun/southern_cross-casino.dmm deleted file mode 100644 index 27b220d6fe..0000000000 --- a/maps/southern_sun/southern_cross-casino.dmm +++ /dev/null @@ -1,46915 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/effect/zone_divider, -/mob/living/simple_mob/animal/passive/penguin{ - hovering = 1 - }, -/turf/simulated/floor/outdoors/ice, -/area/surface/outside/plains/outpost) -"ab" = ( -/turf/simulated/wall/golddiamond, -/area/casino/casino_ship/wing_left) -"ac" = ( -/turf/simulated/wall/golddiamond, -/area/casino/casino_ship) -"ad" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"ae" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"af" = ( -/obj/structure/reagent_dispensers/watertank/high, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"ag" = ( -/obj/structure/bed/chair/oldsofa/right{ - dir = 8 - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"ah" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"ai" = ( -/mob/living/simple_mob/animal/sif/glitterfly, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"aj" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/structure/sign/christmas/lights, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"ak" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"al" = ( -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath, -/obj/structure/event/present, -/obj/item/a_gift, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"am" = ( -/obj/structure/sign/christmas/lights{ - dir = 4 - }, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/casino/casino_ship) -"an" = ( -/mob/living/simple_mob/animal/passive/gaslamp/snow{ - hovering = 1 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"ao" = ( -/obj/structure/sign/christmas/lights{ - dir = 1 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"ap" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"aq" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"ar" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"as" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"at" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"au" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"av" = ( -/turf/unsimulated/wall, -/area/surface/outside/plains/outpost) -"aw" = ( -/turf/unsimulated/wall, -/area/surface/outside/plains/mountains) -"ax" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 4; - icon_state = "spline_fancy_corner" - }, -/obj/effect/floor_decal/spline/fancy, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"ay" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath, -/obj/structure/event/present, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"az" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"aA" = ( -/mob/living/simple_mob/animal/sif/diyaab{ - hovering = 1 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"aB" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"aC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"aD" = ( -/obj/machinery/vending/snack, -/obj/structure/sign/christmas/wreath, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"aE" = ( -/obj/structure/sign/christmas/wreath, -/obj/structure/event/present, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"aF" = ( -/obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"aG" = ( -/turf/simulated/floor/water, -/area/surface/outside/plains/outpost) -"aH" = ( -/turf/simulated/floor/water/deep, -/area/surface/outside/plains/outpost) -"aI" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"aJ" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"aK" = ( -/mob/living/simple_mob/animal/passive/mouse/white, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"aL" = ( -/obj/structure/bed/chair/sofa/right/yellow{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"aM" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"aN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"aO" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"aP" = ( -/turf/simulated/wall/golddiamond, -/area/casino/casino_ship/dorms) -"aQ" = ( -/obj/structure/table/reinforced, -/obj/item/storage/dicecup{ - pixel_x = -8 - }, -/obj/item/storage/dicecup, -/obj/item/storage/dicecup{ - pixel_x = 8 - }, -/obj/item/storage/dicecup{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/storage/dicecup{ - pixel_y = 8 - }, -/obj/item/storage/dicecup{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"aR" = ( -/obj/structure/table/reinforced, -/obj/item/storage/pill_bottle/dice{ - pixel_x = -8; - pixel_y = -8 - }, -/obj/item/storage/pill_bottle/dice, -/obj/item/storage/pill_bottle/dice{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"aS" = ( -/obj/effect/blocker, -/turf/simulated/mineral/ignore_mapgen/cave, -/area/surface/outside/plains/mountains) -"aT" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/casino/casino_ship) -"aU" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/flora/bboulder2, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"aV" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"aW" = ( -/obj/structure/noticeboard{ - name = "Sentient prize board" - }, -/turf/simulated/wall/golddiamond, -/area/casino/casino_ship) -"aX" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"aY" = ( -/obj/machinery/button/remote/blast_door{ - id = "Casinoboth 1"; - name = "Casino Shutter"; - pixel_x = -5; - pixel_y = 29; - req_one_access = list(200) - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "CasinoEmergency2"; - name = "Middle emergency shutters"; - pixel_x = 28; - pixel_y = -3; - req_access = list(160) - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"aZ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"ba" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/flora/ausbushes/genericbush, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"bb" = ( -/mob/living/simple_mob/animal/sif/glitterfly, -/turf/simulated/floor/water, -/area/surface/outside/plains/outpost) -"bc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/flora/ausbushes/genericbush, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"bd" = ( -/mob/living/simple_mob/animal/sif/tymisian, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"be" = ( -/obj/structure/sign/christmas/wreath, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"bf" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"bg" = ( -/obj/structure/flora/tree/winter1, -/mob/living/simple_mob/animal/sif/glitterfly, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"bh" = ( -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"bi" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"bj" = ( -/obj/structure/flora/ausbushes/genericbush, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"bk" = ( -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"bl" = ( -/obj/effect/blocker, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"bm" = ( -/obj/structure/closet/cabinet, -/obj/item/storage/box/fluff/swimsuit, -/obj/item/storage/box/fluff/swimsuit, -/obj/item/storage/box/fluff/swimsuit, -/obj/item/storage/box/fluff/swimsuit/earth, -/obj/item/storage/box/fluff/swimsuit/earth, -/obj/item/storage/box/fluff/swimsuit/purple, -/obj/item/storage/box/fluff/swimsuit/red, -/obj/item/storage/box/fluff/swimsuit/white, -/obj/item/clothing/mask/snorkel, -/obj/item/clothing/mask/snorkel, -/obj/item/clothing/mask/snorkel, -/obj/item/clothing/mask/snorkel, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"bn" = ( -/obj/machinery/door/airlock/security{ - name = "Cell 2"; - req_access = list(201); - req_one_access = list() - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_right) -"bo" = ( -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"bp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"bq" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship/dorms) -"br" = ( -/obj/effect/blocker, -/turf/simulated/floor/water, -/area/surface/outside/plains/outpost) -"bs" = ( -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"bt" = ( -/obj/machinery/door/airlock/silver{ - name = "General storage"; - req_access = list(160) - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"bu" = ( -/obj/effect/blocker, -/turf/simulated/floor/water/deep, -/area/surface/outside/plains/outpost) -"bv" = ( -/turf/simulated/floor/carpet, -/area/submap/lonehome) -"bw" = ( -/obj/effect/simple_portal/linked{ - portal_id = 7 - }, -/turf/simulated/floor/redgrid/animated, -/area/casino/casino_ship) -"bx" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/casino/casino_ship) -"by" = ( -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"bz" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/structure/flora/tree/pine/xmas/presents, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"bA" = ( -/obj/machinery/door/airlock/security{ - name = "Cell 1"; - req_access = list(201); - req_one_access = list() - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_right) -"bB" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath, -/obj/structure/event/present, -/obj/structure/event/present, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"bC" = ( -/obj/machinery/door/airlock/silver{ - id_tag = "casinodorm5"; - name = "Dorm room 5" - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"bD" = ( -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"bE" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -8 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 8 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"bF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/lily2, -/obj/structure/sign/christmas/lights, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/casino/casino_ship) -"bG" = ( -/obj/effect/zone_divider, -/turf/unsimulated/wall, -/area/surface/outside/plains/outpost) -"bH" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"bI" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/sif/siffet, -/turf/simulated/floor/carpet, -/area/submap/lonehome) -"bJ" = ( -/obj/structure/flora/grass/both, -/mob/living/simple_mob/animal/sif/diyaab{ - hovering = 1 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"bK" = ( -/turf/simulated/floor/outdoors/ice, -/area/surface/outside/plains/outpost) -"bL" = ( -/obj/structure/flora/tree/pine{ - desc = "A wondrous decorated Christmas tree. It has presents!"; - icon_state = "pinepresents" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"bM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - id = "CasinoEmergency2"; - layer = 3.5; - name = "Casino emergency shutter" - }, -/turf/simulated/floor, -/area/casino/casino_ship) -"bN" = ( -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"bO" = ( -/obj/machinery/casino_chip_exchanger{ - pixel_x = -32 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"bP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - id = "CasinoEmergency2"; - layer = 3.5; - name = "Casino emergency shutter" - }, -/turf/simulated/floor, -/area/casino/casino_ship) -"bQ" = ( -/obj/machinery/casino_chip_exchanger{ - pixel_x = -32 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"bR" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_y = 6 - }, -/obj/item/pen/blue, -/obj/item/pen/blue{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen/blue{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"bS" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"bT" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "screen"; - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"bU" = ( -/obj/structure/flora/tree/pine, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"bV" = ( -/obj/structure/table/rack/shelf, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/item/reagent_containers/glass/bucket/wood{ - pixel_y = 6 - }, -/obj/item/reagent_containers/glass/bucket/wood, -/obj/effect/mist, -/turf/simulated/floor/tiled/techmaint, -/area/casino/casino_ship) -"bW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - id = "CasinoEmergency2"; - layer = 3.5; - name = "Casino emergency shutter" - }, -/turf/simulated/floor, -/area/casino/casino_ship) -"bX" = ( -/obj/structure/sink{ - pixel_x = 16; - pixel_y = 24 - }, -/obj/structure/toilet{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/casino/casino_ship/wing_right) -"bY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"bZ" = ( -/obj/structure/closet/jcloset, -/obj/item/soap/deluxe, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/item/lightreplacer, -/obj/item/lightreplacer, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"ca" = ( -/obj/effect/blocker, -/obj/structure/flora/tree/dead, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"cb" = ( -/mob/living/simple_mob/vore/horse/big, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"cc" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/submap/lonehome) -"cd" = ( -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"ce" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"cf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/structure/sink/kitchen{ - pixel_y = 17 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"cg" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"ch" = ( -/obj/structure/flora/bboulder1, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"ci" = ( -/obj/structure/closet/athletic_mixed, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"cj" = ( -/mob/living/simple_mob/vore/rabbit/white, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"ck" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/unsimulated/mineral, -/area/surface/outside/plains/mountains) -"cl" = ( -/obj/structure/table/steel, -/obj/item/reagent_containers/spray/chemsprayer, -/obj/structure/reagent_dispensers/space_cleaner{ - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"cm" = ( -/obj/machinery/atmospherics/unary/heater/sauna{ - dir = 4; - icon_state = "heater_1"; - use_power = 1 - }, -/obj/effect/mist, -/turf/simulated/floor/tiled/techmaint, -/area/casino/casino_ship) -"cn" = ( -/mob/living/simple_mob/vore/rabbit/brown, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"co" = ( -/obj/structure/closet/secure_closet/security{ - req_access = list(201) - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"cp" = ( -/obj/machinery/atmospherics/unary/engine/biggest{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt, -/area/surface/outside/plains/outpost) -"cq" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/turf/simulated/wall/golddiamond, -/area/casino/casino_ship/wing_left) -"cr" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"cs" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"ct" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"cu" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"cv" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"cw" = ( -/obj/structure/table/steel, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"cx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "CasinoEmergency2"; - layer = 3.5; - name = "Casino emergency shutter" - }, -/turf/simulated/floor, -/area/casino/casino_ship) -"cy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "CasinoEmergency2"; - layer = 3.5; - name = "Casino emergency shutter" - }, -/turf/simulated/floor, -/area/casino/casino_ship) -"cz" = ( -/obj/structure/flora/lily2, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/casino/casino_ship) -"cA" = ( -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"cB" = ( -/obj/structure/flora/grass/green, -/mob/living/simple_mob/vore/rabbit/brown, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"cC" = ( -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"cD" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/sign/christmas/wreath, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"cE" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/wall/solidrock{ - block_tele = 1 - }, -/area/surface/outside/plains/mountains) -"cF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"cG" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"cH" = ( -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"cI" = ( -/obj/structure/table/glass, -/obj/item/toy/eight_ball, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"cJ" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/flora/ausbushes/genericbush, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"cK" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship/dorms) -"cL" = ( -/obj/structure/flora/lily1, -/turf/simulated/floor/water/indoors, -/area/casino/casino_ship) -"cM" = ( -/obj/structure/bed/chair/oldsofa{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"cN" = ( -/obj/structure/flora/tree/winter1, -/obj/structure/flora/grass/brown, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"cO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/mineral/ignore_mapgen/cave, -/area/surface/outside/plains/mountains) -"cP" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"cQ" = ( -/obj/structure/flora/tree/pine{ - desc = "A wondrous decorated Christmas tree. It has presents!"; - icon_state = "pinepresents" - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"cR" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/flora/bboulder2, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"cS" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/sign/christmas/lights, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"cT" = ( -/obj/structure/flora/tree/pine{ - icon_state = "pine_2" - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"cU" = ( -/obj/machinery/door/airlock/silver{ - name = "Sauna" - }, -/obj/structure/fans/tiny, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"cV" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"cW" = ( -/obj/structure/bed/chair/oldsofa/left{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"cX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"cY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"cZ" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"da" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 6 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"db" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/stack/material/log/sif{ - amount = 25 - }, -/obj/item/stack/material/log/sif{ - amount = 25 - }, -/turf/simulated/floor/plating, -/area/submap/lonehome) -"dc" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"dd" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship) -"de" = ( -/turf/simulated/floor/tiled/dark, -/area/casino/casino_ship/wing_right) -"df" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"dg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/fancyblack, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"dh" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 6 - }, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"di" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"dj" = ( -/obj/effect/mist, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"dk" = ( -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"dl" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"dm" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 8; - icon_state = "spline_fancy_corner" - }, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"dn" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"do" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"dp" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"dq" = ( -/obj/structure/flora/tree/winter, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"dr" = ( -/turf/simulated/floor/outdoors/dirt, -/area/casino/casino_ship/wing_left) -"ds" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 5 - }, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"dt" = ( -/obj/structure/ledge/ledge_stairs{ - pixel_y = -3 - }, -/turf/simulated/floor/outdoors/dirt, -/area/surface/outside/plains/outpost) -"du" = ( -/obj/structure/table/fancyblack, -/obj/effect/floor_decal/spline/fancy, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"dv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/submap/lonehome) -"dw" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"dx" = ( -/obj/structure/table/sifwoodentable, -/obj/item/flame/candle/candelabra/everburn, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"dy" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/casino/casino_ship) -"dz" = ( -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"dA" = ( -/obj/structure/janitorialcart, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"dB" = ( -/obj/structure/table/bench/sifwooden, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/obj/effect/mist, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"dC" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/reagent_containers/food/snacks/tamales, -/obj/structure/sign/christmas/lights{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"dD" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"dE" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/flora/ausbushes/genericbush, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"dF" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/flora/bboulder2, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"dG" = ( -/obj/structure/closet/gmcloset, -/obj/item/glass_jar, -/obj/item/retail_scanner/civilian, -/obj/item/retail_scanner/civilian, -/obj/item/clothing/head/that{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/flame/lighter/random, -/obj/item/flame/lighter/random, -/obj/item/flame/lighter/random, -/obj/item/flame/lighter/random, -/obj/item/flame/lighter/random, -/obj/item/storage/fancy/blackcandle_box, -/obj/item/storage/fancy/blackcandle_box, -/obj/item/storage/fancy/blackcandle_box, -/obj/item/storage/fancy/blackcandle_box, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"dH" = ( -/obj/structure/flora/grass/brown, -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"dI" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"dJ" = ( -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"dK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "CasinoEmergency2"; - layer = 3.5; - name = "Casino emergency shutter" - }, -/turf/simulated/floor, -/area/casino/casino_ship) -"dL" = ( -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath, -/obj/structure/event/present, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"dM" = ( -/obj/structure/table/glass, -/obj/item/communicator, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 2; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"dN" = ( -/obj/machinery/light, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"dO" = ( -/obj/structure/bed/chair/oldsofa/right{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"dP" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"dQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/solidrock{ - block_tele = 1 - }, -/area/surface/outside/plains/mountains) -"dR" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"dS" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/casino/casino_ship) -"dT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_left) -"dU" = ( -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"dV" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"dW" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "screen"; - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 1; - icon_state = "spline_fancy_cee" - }, -/obj/structure/sign/christmas/lights{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"dX" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_left) -"dY" = ( -/obj/structure/flora/ausbushes/genericbush, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/christmas/lights{ - dir = 4 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"dZ" = ( -/obj/structure/curtain/open/bed, -/turf/simulated/floor/carpet/purcarpet, -/area/casino/casino_ship) -"ea" = ( -/obj/machinery/slot_machine, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/christmas/lights{ - dir = 1 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"eb" = ( -/obj/machinery/slot_machine, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/christmas/lights{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"ec" = ( -/obj/machinery/atm{ - pixel_x = -32 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"ed" = ( -/obj/structure/bed/chair/oldsofa{ - dir = 8 - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"ee" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloor, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"ef" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"eg" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/lily3, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/casino/casino_ship) -"eh" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"ei" = ( -/obj/structure/table/steel, -/obj/item/flame/candle/everburn, -/obj/machinery/light/floortube/flicker{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/submap/lonehome) -"ej" = ( -/obj/machinery/shower{ - dir = 4; - pixel_x = 5 - }, -/obj/structure/curtain/open/shower/engineering, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship/dorms) -"ek" = ( -/obj/structure/bed/chair/oldsofa, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"el" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/sign/christmas/lights, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"em" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"en" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "screen"; - pixel_y = -32 - }, -/obj/machinery/light, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"eo" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"ep" = ( -/turf/simulated/floor/outdoors/dirt, -/area/casino/casino_ship/wing_right) -"eq" = ( -/obj/machinery/slot_machine, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"er" = ( -/obj/structure/flora/lily2, -/turf/simulated/floor/water/indoors, -/area/casino/casino_ship) -"es" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/cedouble, -/turf/simulated/floor/carpet/purcarpet, -/area/casino/casino_ship) -"et" = ( -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/casino/casino_ship) -"eu" = ( -/obj/structure/table/glass, -/obj/item/book/codex/casino, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"ev" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"ew" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"ex" = ( -/obj/structure/curtain/open/bed{ - name = "casino curtain" - }, -/obj/structure/sign/christmas/lights{ - dir = 1 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"ey" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "screen"; - pixel_y = 32 - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"ez" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"eA" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/hotspring{ - can_atmos_pass = 0; - color = "cyan"; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"eB" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"eC" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"eD" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"eE" = ( -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship) -"eF" = ( -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"eG" = ( -/obj/structure/flora/tree/pine{ - icon_state = "pine_3" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"eH" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"eI" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/obj/structure/sign/christmas/lights{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"eJ" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/starcaster_news, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"eK" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "screen"; - pixel_y = 32 - }, -/obj/item/communicator, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"eL" = ( -/obj/structure/table/glass, -/turf/simulated/floor/carpet/purcarpet, -/area/casino/casino_ship) -"eM" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"eN" = ( -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"eO" = ( -/obj/structure/bed/chair/oldsofa{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/christmas/lights{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"eP" = ( -/obj/structure/flora/lily1, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/casino/casino_ship) -"eQ" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 10 - }, -/obj/structure/event/present, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"eR" = ( -/obj/machinery/door/airlock/security{ - name = "Holding cells"; - req_access = list(201); - req_one_access = list() - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_right) -"eS" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/turf/simulated/wall/golddiamond, -/area/casino/casino_ship/wing_right) -"eT" = ( -/obj/structure/table/reinforced, -/obj/item/storage/laundry_basket, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"eU" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/casino/casino_ship) -"eV" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/casino/casino_ship) -"eW" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/casino/casino_ship) -"eX" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/structure/event/present, -/obj/structure/event/present, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"eY" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship/dorms) -"eZ" = ( -/obj/item/stool/padded, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"fa" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/structure/event/present, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"fb" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 6 - }, -/obj/structure/event/present, -/obj/item/a_gift, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"fc" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/structure/event/present, -/obj/item/a_gift, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"fd" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"fe" = ( -/obj/structure/table/marble, -/obj/item/paper_bin{ - pixel_y = 6 - }, -/obj/item/pen/blue, -/obj/item/folder/red, -/obj/item/spacecasinocash/c1000, -/obj/item/spacecasinocash/c1000, -/obj/item/spacecasinocash/c1000, -/obj/item/spacecasinocash/c1000, -/obj/item/spacecasinocash/c1000, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "Casino Front Desk"; - layer = 3.2; - name = "Front Desk Shutters" - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"ff" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 5 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath, -/obj/structure/event/present, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"fg" = ( -/obj/item/telecube/mated, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"fh" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"fi" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"fj" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"fk" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/starcaster_news, -/obj/structure/sign/christmas/lights, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"fl" = ( -/obj/structure/table/fancyblack, -/obj/effect/floor_decal/spline/fancy{ - dir = 8; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"fm" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "screen"; - pixel_y = -32 - }, -/obj/item/book/codex/casino, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"fn" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"fo" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/tape, -/obj/item/pen, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"fp" = ( -/obj/structure/table/fancyblack, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"fq" = ( -/obj/machinery/door/window/westright{ - dir = 1; - layer = 3.1; - name = "Both access"; - req_access = list(200) - }, -/obj/machinery/door/blast/shutters{ - id = "Casinoboth 1"; - layer = 3.2; - name = "Exchange booth shutters 1" - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"fr" = ( -/obj/machinery/light, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"fs" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/sign/christmas/lights{ - dir = 4 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"ft" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"fu" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/obj/structure/sign/christmas/lights, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"fv" = ( -/obj/structure/table/glass, -/obj/structure/event/present, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"fw" = ( -/obj/structure/table/wooden_reinforced, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"fx" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"fy" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/gun/energy/sizegun, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"fz" = ( -/mob/living/simple_mob/animal/giant_spider/carrier, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"fA" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "screen"; - pixel_y = -32 - }, -/obj/random/plushie, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"fB" = ( -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"fC" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 1; - icon_state = "spline_fancy_corner" - }, -/obj/structure/sign/christmas/lights{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"fD" = ( -/obj/structure/bed/chair/oldsofa/left{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/christmas/lights{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"fE" = ( -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/casino/casino_ship) -"fF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/sign/christmas/lights{ - dir = 1 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"fG" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/condiment/small/packet/coffee{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/condiment/small/packet/coffee, -/obj/item/reagent_containers/food/condiment/small/packet/coffee{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/reagent_containers/food/condiment/small/sugar{ - pixel_x = -6; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/bottle/cream{ - pixel_x = -5; - pixel_y = 17 - }, -/obj/item/reagent_containers/food/condiment/small/sugar{ - pixel_x = -6; - pixel_y = -1 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"fH" = ( -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/obj/structure/sign/christmas/lights{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"fI" = ( -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"fJ" = ( -/obj/item/book/codex/casino, -/obj/structure/table/marble, -/obj/machinery/button/remote/airlock{ - id = "managerdoor"; - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/card/id/casino/manager, -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"fK" = ( -/obj/structure/flora/lily1, -/obj/structure/sign/christmas/lights{ - dir = 1 - }, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/casino/casino_ship) -"fL" = ( -/obj/structure/flora/lily2, -/obj/structure/sign/christmas/lights{ - dir = 1 - }, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/casino/casino_ship) -"fM" = ( -/obj/machinery/vending/snack, -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/obj/structure/sign/christmas/lights{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"fN" = ( -/obj/machinery/power/smes/buildable/hybrid, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/submap/lonehome) -"fO" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/grenade/spawnergrenade/casino/tindalos, -/obj/item/grenade/spawnergrenade/casino/redpanda{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/grenade/spawnergrenade/casino/otie/chubby{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/grenade/spawnergrenade/casino/horse{ - pixel_x = 8; - pixel_y = -4 - }, -/obj/item/grenade/spawnergrenade/casino/fennec{ - pixel_x = -8; - pixel_y = -1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"fP" = ( -/obj/structure/sign/christmas/lights, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/casino/casino_ship) -"fQ" = ( -/obj/machinery/washing_machine, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"fR" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_right) -"fS" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship) -"fT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/sign/christmas/lights, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"fU" = ( -/obj/structure/bed/chair/oldsofa/right{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/christmas/lights{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"fV" = ( -/obj/structure/table/glass, -/obj/item/starcaster_news, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"fW" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 2; - icon_state = "spline_fancy_corner" - }, -/obj/structure/sign/christmas/lights{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"fX" = ( -/obj/structure/flora/tree/pine{ - icon_state = "pine_3" - }, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"fY" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"fZ" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "screen"; - pixel_y = -32 - }, -/obj/machinery/light, -/obj/effect/floor_decal/spline/fancy, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/obj/structure/sign/christmas/lights, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"ga" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/ice, -/area/surface/outside/plains/outpost) -"gb" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/obj/machinery/light{ - layer = 3 - }, -/obj/structure/mopbucket, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"gc" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"gd" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "screen"; - pixel_y = -32 - }, -/obj/machinery/light, -/obj/effect/floor_decal/spline/fancy{ - dir = 2; - icon_state = "spline_fancy_cee" - }, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/obj/structure/sign/christmas/lights, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"ge" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "screen"; - pixel_y = -32 - }, -/obj/machinery/light, -/obj/effect/floor_decal/spline/fancy{ - icon_state = "spline_fancy_cee" - }, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/obj/structure/sign/christmas/lights, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"gf" = ( -/obj/machinery/appliance/cooker/grill, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/submap/lonehome) -"gg" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/purpledouble, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"gh" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "screen"; - pixel_y = -32 - }, -/obj/machinery/light, -/obj/effect/floor_decal/spline/fancy, -/obj/structure/sign/christmas/lights, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"gi" = ( -/obj/structure/flora/lily1, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/casino/casino_ship) -"gj" = ( -/obj/machinery/vending/cola, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"gk" = ( -/obj/structure/bed/chair/oldsofa/corner{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"gl" = ( -/obj/structure/closet/crate/bin, -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"gm" = ( -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access = list(160) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_left) -"gn" = ( -/obj/structure/table/glass, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"go" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_left) -"gp" = ( -/obj/structure/table/rack, -/obj/item/suit_cooling_unit, -/obj/item/suit_cooling_unit, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_left) -"gq" = ( -/obj/structure/bed/chair/oldsofa{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "screen"; - pixel_x = -32 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"gr" = ( -/obj/effect/zone_divider, -/turf/simulated/mineral/ignore_mapgen/cave, -/area/surface/outside/plains/mountains) -"gs" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor, -/area/casino/casino_ship/wing_right) -"gt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"gu" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 4; - icon_state = "spline_fancy_cee" - }, -/obj/machinery/recharge_station, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/casino/casino_ship) -"gv" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_left) -"gw" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"gx" = ( -/obj/structure/casino_table/blackjack_m{ - dir = 1 - }, -/obj/item/deck/cards/casino, -/obj/machinery/light/floortube/flicker{ - pixel_y = 5 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"gy" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 9 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"gz" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/outdoors/grass/heavy{ - outdoors = 0 - }, -/area/casino/casino_ship) -"gA" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_left) -"gB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "Casinodormshutters4"; - layer = 3.5; - name = "Casino Privacy shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship/dorms) -"gC" = ( -/obj/structure/flora/lily2, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/casino/casino_ship) -"gD" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "Casino_North_Exterior"; - locked = 1; - name = "Landing North External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "Casino_North"; - name = "External Access Button"; - pixel_x = -24 - }, -/obj/structure/fans/hardlight, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship) -"gE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "Casinodormshutters4"; - layer = 3.5; - name = "Casino Privacy shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship/dorms) -"gF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "Casinodormshutters4"; - layer = 3.5; - name = "Casino Privacy shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship/dorms) -"gG" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "Casino_North_Exterior"; - locked = 1; - name = "Landing North External" - }, -/obj/structure/fans/hardlight, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship) -"gH" = ( -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/casino/casino_ship) -"gI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "Casinodormshutters6"; - layer = 3.5; - name = "Casino Privacy shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship/dorms) -"gJ" = ( -/obj/structure/table/marble, -/obj/item/radio/headset/syndicate, -/obj/item/radio/headset/syndicate, -/obj/item/radio/headset/syndicate, -/obj/item/radio/headset/syndicate, -/obj/item/radio/headset/syndicate, -/obj/item/radio/headset/syndicate, -/obj/item/radio/headset/syndicate, -/obj/item/radio/headset/syndicate, -/obj/item/radio/headset/syndicate, -/obj/item/radio/headset/syndicate, -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/obj/item/clothing/head/crown/goose_king/christmas, -/obj/item/clothing/head/crown/goose_queen/christmas, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"gK" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "screen"; - pixel_x = -32 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"gL" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/spline/fancy{ - dir = 2; - icon_state = "spline_fancy_cee" - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"gM" = ( -/obj/structure/flora/tree/pine, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"gN" = ( -/turf/simulated/floor/outdoors/dirt, -/area/surface/outside/plains/outpost) -"gO" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/flora/ausbushes/pointybush, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"gP" = ( -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"gQ" = ( -/obj/structure/bed/chair/oldsofa/corner{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"gR" = ( -/obj/structure/bed/chair/oldsofa{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"gS" = ( -/obj/structure/flora/tree/winter, -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"gT" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"gU" = ( -/obj/structure/bed/chair/oldsofa/corner{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"gV" = ( -/obj/structure/curtain/open/bed{ - name = "casino curtain" - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"gW" = ( -/obj/structure/flora/grass/both, -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"gX" = ( -/obj/structure/flora/bboulder2, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"gY" = ( -/obj/structure/table/gamblingtable, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"gZ" = ( -/obj/item/stool/padded, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"ha" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 2; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"hb" = ( -/obj/structure/table/gamblingtable, -/obj/item/toy/eight_ball/conch, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"hc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"hd" = ( -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"he" = ( -/obj/structure/curtain/open/bed{ - name = "casino curtain" - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"hf" = ( -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"hg" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/mud/sif/planetuse{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"hh" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled/freezer, -/area/submap/lonehome) -"hi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"hj" = ( -/obj/item/stool/padded, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"hk" = ( -/turf/simulated/wall/golddiamond, -/area/casino/casino_ship/wing_right) -"hl" = ( -/obj/structure/table/gamblingtable, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"hm" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 10 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"hn" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 6 - }, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"ho" = ( -/obj/structure/curtain/open/bed{ - name = "casino curtain" - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"hp" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water, -/area/surface/outside/plains/outpost) -"hq" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 10 - }, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"hr" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/holosign/exit, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"hs" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 6 - }, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"ht" = ( -/obj/structure/curtain/open/bed{ - name = "casino curtain" - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"hu" = ( -/obj/structure/table/fancyblack, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"hv" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/structure/event/present, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"hw" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/obj/structure/event/present, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"hx" = ( -/obj/structure/bed/chair/oldsofa/corner{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"hy" = ( -/obj/structure/bed/chair/oldsofa, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"hz" = ( -/obj/structure/bed/chair/oldsofa/corner, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"hA" = ( -/obj/machinery/slot_machine, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"hB" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"hC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"hD" = ( -/obj/structure/table/gamblingtable, -/obj/item/storage/dicecup, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"hE" = ( -/obj/machinery/slot_machine, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"hF" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"hG" = ( -/obj/structure/closet/crate/bin, -/obj/effect/floor_decal/spline/fancy{ - dir = 9 - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"hH" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/event/present, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"hI" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"hJ" = ( -/obj/item/stool, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"hK" = ( -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"hL" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/spline/fancy{ - dir = 1; - icon_state = "spline_fancy_cee" - }, -/obj/structure/sign/christmas/wreath, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"hM" = ( -/obj/structure/bed/chair/bar_stool, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"hN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/submap/lonehome) -"hO" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 10 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"hP" = ( -/turf/unsimulated/mineral, -/area/surface/outside/plains/mountains) -"hQ" = ( -/obj/structure/window/reinforced, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"hR" = ( -/obj/structure/closet/crate/bin, -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"hS" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"hT" = ( -/obj/structure/bed/chair/oldsofa/corner{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"hU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"hV" = ( -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/casino/casino_ship) -"hW" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "casino2_pump" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/casino/casino_ship) -"hX" = ( -/obj/structure/flora/tree/dead, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"hY" = ( -/obj/structure/flora/tree/winter1, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"hZ" = ( -/obj/structure/curtain/open/bed{ - name = "casino curtain" - }, -/obj/structure/sign/christmas/lights, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"ia" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"ib" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"ic" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/northright{ - req_access = list(201) - }, -/obj/item/gun/energy/laser, -/obj/item/gun/energy/laser, -/obj/item/gun/energy/laser, -/obj/item/gun/energy/laser, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/dark, -/area/casino/casino_ship/wing_right) -"id" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/northleft{ - req_access = list(201) - }, -/obj/item/gun/energy/ionrifle, -/obj/item/gun/energy/ionrifle, -/obj/item/gun/energy/plasmastun, -/obj/item/gun/energy/plasmastun, -/obj/item/gun/energy/gun/burst, -/obj/item/gun/energy/gun/burst, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/dark, -/area/casino/casino_ship/wing_right) -"ie" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"if" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/northright{ - req_access = list(201) - }, -/obj/item/gun/projectile/shotgun/pump/combat, -/obj/item/gun/projectile/shotgun/pump/combat, -/obj/item/gun/projectile/garand, -/obj/item/gun/projectile/garand, -/obj/item/gun/projectile/automatic/p90, -/obj/item/gun/projectile/automatic/p90, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/dark, -/area/casino/casino_ship/wing_right) -"ig" = ( -/obj/structure/bed/chair/sofa/corner/yellow, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"ih" = ( -/turf/simulated/floor/water/pool, -/area/casino/casino_ship) -"ii" = ( -/obj/structure/table/glass, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"ij" = ( -/obj/structure/table/gamblingtable, -/obj/item/toy/eight_ball, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"ik" = ( -/obj/structure/flora/ausbushes/pointybush, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"il" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"im" = ( -/obj/item/storage/belt/holding, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"in" = ( -/obj/structure/bed/chair/sofa/yellow{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"io" = ( -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"ip" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"iq" = ( -/obj/structure/flora/tree/sif, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"ir" = ( -/obj/effect/floor_decal/spline/fancy, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"is" = ( -/obj/structure/bed/chair/sofa/left/yellow{ - dir = 8 - }, -/obj/structure/sign/christmas/lights{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"it" = ( -/obj/structure/table/glass, -/obj/structure/sign/christmas/lights{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"iu" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/book/codex/casino, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"iv" = ( -/obj/structure/closet/crate/bin, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"iw" = ( -/obj/structure/bed/chair/sofa/right/yellow{ - dir = 8 - }, -/obj/structure/sign/christmas/lights{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"ix" = ( -/obj/structure/bed/chair/sofa/corner/yellow{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"iy" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"iz" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"iA" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/condiment/small/packet/coffee{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/condiment/small/packet/coffee, -/obj/item/reagent_containers/food/condiment/small/packet/coffee{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/reagent_containers/food/condiment/small/sugar{ - pixel_x = -6; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/bottle/cream{ - pixel_x = -5; - pixel_y = 17 - }, -/obj/item/reagent_containers/food/condiment/small/sugar{ - pixel_x = -6; - pixel_y = -1 - }, -/obj/machinery/light/floortube/flicker{ - pixel_y = 5 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"iB" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"iC" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"iD" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/structure/sign/christmas/lights{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"iE" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/pointybush, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"iF" = ( -/obj/machinery/recharge_station, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"iG" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 5 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"iH" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/christmas/lights{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"iI" = ( -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"iJ" = ( -/obj/machinery/casino_prize_dispenser{ - category_clothing = 2; - category_drinks = 2; - category_event = 2; - category_gear = 2; - category_misc = 2; - category_pets = 2 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"iK" = ( -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"iL" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"iM" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"iN" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"iO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood/sif/broken, -/area/submap/lonehome) -"iP" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"iQ" = ( -/obj/machinery/casino_prize_dispenser{ - category_clothing = 2; - category_drinks = 2; - category_event = 2; - category_gear = 2; - category_misc = 2; - category_pets = 2 - }, -/obj/structure/sign/christmas/wreath, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"iR" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/effect/floor_decal/spline/fancy{ - dir = 4; - icon_state = "spline_fancy_corner" - }, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"iS" = ( -/obj/structure/event/present, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"iT" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"iU" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"iV" = ( -/obj/structure/window/reinforced, -/obj/structure/flora/lily3, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/casino/casino_ship) -"iW" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 10 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"iX" = ( -/obj/structure/window/reinforced, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/casino/casino_ship) -"iY" = ( -/obj/item/ammo_magazine/ammo_box/b12g/beanbag, -/obj/item/gun/projectile/shotgun/doublebarrel, -/obj/item/tool/screwdriver, -/obj/structure/table/sifwoodentable, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"iZ" = ( -/obj/structure/window/reinforced, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"ja" = ( -/obj/structure/window/reinforced, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"jb" = ( -/obj/machinery/power/apc/alarms_hidden{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/submap/lonehome) -"jc" = ( -/obj/machinery/recharge_station, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"jd" = ( -/obj/structure/flora/ausbushes/pointybush, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"je" = ( -/obj/machinery/light, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"jf" = ( -/mob/living/simple_mob/animal/giant_spider/webslinger, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"jg" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"jh" = ( -/obj/structure/table/sifwoodentable, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"ji" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"jj" = ( -/obj/structure/sign/christmas/wreath, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/obj/structure/event/present, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"jk" = ( -/obj/structure/window/reinforced, -/obj/structure/flora/lily3, -/obj/structure/sign/christmas/lights{ - dir = 1 - }, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/casino/casino_ship) -"jl" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/submap/lonehome) -"jm" = ( -/obj/structure/window/reinforced, -/obj/structure/sign/christmas/lights{ - dir = 1 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"jn" = ( -/mob/living/simple_mob/animal/sif/sakimm{ - hovering = 1 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"jo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - id = "Casinodormshutters1"; - layer = 3.5; - name = "Casino Privacy shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship/dorms) -"jp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - id = "Casinodormshutters1"; - layer = 3.5; - name = "Casino Privacy shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship/dorms) -"jq" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/sign/christmas/lights{ - dir = 1 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"jr" = ( -/obj/structure/sign/christmas/lights, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"js" = ( -/obj/item/storage/secure/safe{ - pixel_x = 35 - }, -/obj/machinery/button/remote/blast_door{ - id = "Casino Front Desk"; - name = "Casino Shutter"; - pixel_y = 28; - req_one_access = list(200) - }, -/obj/structure/sign/christmas/lights{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"jt" = ( -/obj/structure/curtain/open/bed{ - name = "casino curtain" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"ju" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"jv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - id = "Casinodormshutters1"; - layer = 3.5; - name = "Casino Privacy shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship/dorms) -"jw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - id = "Casinodormshutters2"; - layer = 3.5; - name = "Casino Privacy shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship/dorms) -"jx" = ( -/obj/effect/decal/cleanable/ash, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"jy" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/dark, -/area/casino/casino_ship/wing_right) -"jz" = ( -/obj/structure/curtain/open/bed{ - name = "casino curtain" - }, -/obj/machinery/light, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"jA" = ( -/obj/structure/table/marble, -/obj/item/paper_bin{ - pixel_y = 6 - }, -/obj/item/pen/blue, -/obj/item/folder/red, -/obj/item/spacecasinocash/c1000, -/obj/item/spacecasinocash/c1000, -/obj/item/spacecasinocash/c1000, -/obj/item/spacecasinocash/c1000, -/obj/item/spacecasinocash/c1000, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "Casino Front Desk"; - layer = 3.2; - name = "Front Desk Shutters" - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"jB" = ( -/obj/item/storage/secure/safe{ - pixel_x = 35 - }, -/obj/structure/sign/christmas/lights{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"jC" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"jD" = ( -/obj/structure/sign/christmas/lights{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"jE" = ( -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/obj/structure/sign/christmas/wreath, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"jF" = ( -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"jG" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - id = "Casinobar"; - layer = 3.1; - name = "Casino bar shutter" - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"jH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - id = "Casinodormshutters2"; - layer = 3.5; - name = "Casino Privacy shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship/dorms) -"jI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - id = "Casinodormshutters2"; - layer = 3.5; - name = "Casino Privacy shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship/dorms) -"jJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - id = "Casinodormshutters3"; - layer = 3.5; - name = "Casino Privacy shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship/dorms) -"jK" = ( -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"jL" = ( -/obj/machinery/light, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"jM" = ( -/obj/structure/sign/christmas/lights, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"jN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/simple_door/sifwood, -/turf/simulated/floor/wood/sif/broken, -/area/submap/lonehome) -"jO" = ( -/turf/simulated/floor/tiled/kafel_full/blue, -/area/casino/casino_ship) -"jP" = ( -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"jQ" = ( -/obj/structure/table/gamblingtable, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"jR" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"jS" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - id = "Casinobar"; - layer = 3.1; - name = "Casino bar shutter" - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"jT" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - id = "Casinobar"; - layer = 3.1; - name = "Casino bar shutter" - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"jU" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "Casinobar"; - layer = 3.1; - name = "Casino bar shutter" - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"jV" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "Casinobar"; - layer = 3.1; - name = "Casino bar shutter" - }, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"jW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - id = "Casinodormshutters3"; - layer = 3.5; - name = "Casino Privacy shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship/dorms) -"jX" = ( -/obj/effect/floor_decal/spline/fancy, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"jY" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "Casinobar"; - layer = 3.1; - name = "Casino bar shutter" - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"jZ" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "Casinobar"; - layer = 3.1; - name = "Casino bar shutter" - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"ka" = ( -/obj/structure/bed/chair/oldsofa/corner, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"kb" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "Casinobar"; - layer = 3.1; - name = "Casino bar shutter" - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"kc" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "Casinobar"; - layer = 3.1; - name = "Casino bar shutter" - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"kd" = ( -/obj/structure/closet/secure_closet/security{ - req_access = list(201) - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"ke" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"kf" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "screen"; - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy, -/obj/structure/sign/christmas/wreath, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"kg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - id = "Casinodormshutters3"; - layer = 3.5; - name = "Casino Privacy shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship/dorms) -"kh" = ( -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"ki" = ( -/obj/machinery/crystal/ice, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/outpost) -"kj" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/item/a_gift, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"kk" = ( -/obj/structure/table/wooden_reinforced, -/obj/structure/sign/christmas/lights{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"kl" = ( -/obj/machinery/vending/cola, -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"km" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/sign/christmas/lights{ - dir = 4 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"kn" = ( -/obj/structure/closet/crate/bin, -/obj/structure/sign/christmas/lights{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"ko" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"kp" = ( -/obj/structure/sign/christmas/lights{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"kq" = ( -/obj/machinery/crystal/ice, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"kr" = ( -/obj/machinery/light, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"ks" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"kt" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"ku" = ( -/obj/structure/flora/grass/green, -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"kv" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "Casinobar"; - layer = 3.1; - name = "Casino bar shutter" - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"kw" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"kx" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/sign/christmas/lights{ - dir = 4 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"ky" = ( -/obj/machinery/atm{ - pixel_x = -32 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"kz" = ( -/obj/machinery/vending/coffee, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"kA" = ( -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"kB" = ( -/obj/machinery/light, -/obj/structure/flora/pottedplant/xmas{ - anchored = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"kC" = ( -/obj/structure/curtain/open/bed{ - name = "casino curtain" - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"kD" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"kE" = ( -/obj/structure/curtain/open/bed{ - name = "casino curtain" - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"kF" = ( -/obj/structure/casino_table/blackjack_l{ - dir = 1 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"kG" = ( -/obj/structure/casino_table/blackjack_m{ - dir = 1 - }, -/obj/item/deck/cards/casino, -/obj/machinery/light/floortube/flicker{ - pixel_y = 5 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"kH" = ( -/obj/structure/bed/chair/oldsofa/right{ - dir = 4 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"kI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"kJ" = ( -/obj/structure/table/wooden_reinforced, -/obj/structure/sign/christmas/lights, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"kK" = ( -/obj/structure/bed/chair/oldsofa/left{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"kL" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"kM" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/reagent_containers/food/snacks/tamales, -/obj/structure/sign/christmas/lights, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"kN" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/submap/lonehome) -"kO" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"kP" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"kQ" = ( -/obj/structure/event/santa_sack, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"kR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"kS" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/sign/christmas/lights{ - dir = 1 - }, -/obj/structure/event/present, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"kT" = ( -/obj/structure/table/glass, -/obj/item/paper/card/heart, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"kU" = ( -/obj/item/pickaxe/drill, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"kV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "Casinodormshutters5"; - layer = 3.5; - name = "Casino Privacy shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship/dorms) -"kW" = ( -/obj/structure/event/present, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"kX" = ( -/obj/machinery/light, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/obj/structure/event/present, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"kY" = ( -/obj/machinery/computer/card{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 10 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"kZ" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/structure/sign/christmas/lights, -/obj/structure/event/present, -/obj/item/a_gift, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"la" = ( -/obj/structure/event/present, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"lb" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/event/present, -/obj/structure/event/present, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"lc" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/sign/christmas/lights{ - dir = 8 - }, -/obj/structure/event/present, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"ld" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/event/present, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"le" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/event/present, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"lf" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/submap/lonehome) -"lg" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/event/present, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"lh" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/casino/casino_ship) -"li" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006; - req_access = list(5) - }, -/obj/structure/sign/christmas/lights{ - dir = 8 - }, -/obj/structure/event/present, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"lj" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/event/present, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"lk" = ( -/obj/random/junk, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"ll" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/sign/christmas/wreath{ - dir = 8 - }, -/obj/structure/event/present, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"lm" = ( -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/obj/structure/sign/christmas/wreath{ - dir = 4 - }, -/obj/structure/event/present, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"ln" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 8; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"lo" = ( -/obj/machinery/light, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/sign/christmas/lights, -/obj/structure/event/present, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"lp" = ( -/obj/structure/table/glass, -/obj/structure/sign/christmas/lights{ - dir = 8 - }, -/obj/item/a_gift, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"lq" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/structure/sign/christmas/lights{ - dir = 1 - }, -/obj/structure/event/present, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"lr" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/event/present, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"ls" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/structure/event/present, -/obj/structure/event/present, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"lt" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/obj/structure/event/present, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"lu" = ( -/obj/structure/sign/christmas/wreath{ - dir = 1 - }, -/obj/item/a_gift, -/turf/simulated/floor/snow/snow2, -/area/casino/casino_ship) -"lv" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy, -/obj/structure/sign/christmas/wreath, -/obj/structure/event/present, -/obj/item/a_gift, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"lw" = ( -/obj/structure/table/gamblingtable, -/obj/item/dice, -/obj/machinery/light/floortube/flicker{ - pixel_y = 5 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"lx" = ( -/obj/structure/flora/tree/winter1, -/obj/structure/flora/grass/green, -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"ly" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/obj/structure/event/present, -/obj/item/a_gift, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"lz" = ( -/obj/structure/event/present, -/obj/item/a_gift, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"lA" = ( -/obj/structure/table/standard, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/obj/item/storage/wallet/casino, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"lB" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/reagent_containers/food/snacks/tamales, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"lF" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"lK" = ( -/obj/structure/casino_table/blackjack_r{ - dir = 1 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"lM" = ( -/obj/machinery/door/airlock/silver{ - name = "Bathroom" - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"lN" = ( -/obj/structure/closet, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"lO" = ( -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"lP" = ( -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship/dorms) -"lR" = ( -/obj/machinery/door/window/westleft{ - req_access = list(160) - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"lS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/casino/casino_ship) -"lT" = ( -/obj/structure/closet/crate/bin, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"lU" = ( -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"lW" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "casino1_pump" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/casino/casino_ship) -"lX" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/casino/casino_ship) -"mc" = ( -/turf/simulated/mineral/ignore_mapgen/cave, -/area/surface/outside/plains/mountains) -"me" = ( -/obj/machinery/door/airlock/security{ - name = "Equipment Storage"; - req_access = list(201,160); - req_one_access = list() - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_right) -"mh" = ( -/obj/effect/spider/stickyweb, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"mo" = ( -/obj/structure/bed/chair/oldsofa{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"mp" = ( -/obj/random/maintenance/clean, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"ms" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/toy/eight_ball, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"mv" = ( -/obj/structure/table/gamblingtable, -/obj/item/book/codex/casino, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"mw" = ( -/obj/structure/table/gamblingtable, -/obj/item/gun/launcher/confetti_cannon, -/obj/item/grenade/confetti/party_ball, -/obj/item/grenade/confetti/party_ball, -/obj/item/grenade/confetti/party_ball, -/obj/item/grenade/confetti/party_ball, -/obj/item/grenade/confetti/party_ball, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"my" = ( -/obj/structure/table/gamblingtable, -/obj/item/communicator, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"mB" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/mountains) -"mC" = ( -/turf/simulated/floor/water/deep/pool, -/area/casino/casino_ship) -"mF" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 8; - icon_state = "spline_fancy_cee" - }, -/turf/simulated/floor/tiled/techfloor, -/area/casino/casino_ship) -"mG" = ( -/obj/random/trash, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"mI" = ( -/obj/structure/table/marble, -/obj/machinery/cash_register/civilian{ - dir = 8 - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"mJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"mL" = ( -/obj/random/material/precious, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"mN" = ( -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"mO" = ( -/obj/structure/table/glass, -/obj/machinery/microwave/advanced{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"mP" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/mist, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"mQ" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/communicator, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"mR" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 4; - icon_state = "spline_fancy_cee" - }, -/turf/simulated/floor/tiled/techfloor, -/area/casino/casino_ship) -"mU" = ( -/obj/structure/table/glass, -/obj/item/soap, -/obj/item/soap, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship) -"mW" = ( -/obj/structure/flora/ausbushes/pointybush, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"na" = ( -/obj/structure/ledge/ledge_stairs{ - dir = 1; - pixel_y = 3 - }, -/turf/simulated/floor/outdoors/dirt, -/area/surface/outside/plains/outpost) -"ne" = ( -/obj/structure/showcase/sign{ - name = "WARNING: CAVED IN MINES" - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"nf" = ( -/obj/structure/flora/grass/both, -/obj/structure/flora/tree/dead, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"ng" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/southright{ - layer = 2.9; - req_access = list(201) - }, -/obj/item/clothing/gloves/arm_guard/combat, -/obj/item/clothing/gloves/arm_guard/combat, -/obj/item/clothing/head/helmet/combat, -/obj/item/clothing/head/helmet/combat, -/obj/item/clothing/shoes/leg_guard/combat, -/obj/item/clothing/shoes/leg_guard/combat, -/obj/item/clothing/suit/armor/combat, -/obj/item/clothing/suit/armor/combat, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/casino/casino_ship/wing_right) -"nj" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/beaker/noreact{ - pixel_x = -6 - }, -/obj/item/reagent_containers/glass/rag, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"nn" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 10 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"np" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/wall/solidrock{ - block_tele = 1 - }, -/area/surface/outside/plains/mountains) -"nr" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"nz" = ( -/obj/machinery/reagentgrinder, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/packageWrap, -/obj/structure/table/sifwoodentable, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"nA" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/stripper_pole, -/turf/simulated/floor/carpet/purcarpet, -/area/casino/casino_ship) -"nB" = ( -/obj/machinery/door/airlock/silver{ - name = "Casino crew bathrooms"; - req_one_access = null - }, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship) -"nC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/solidrock{ - block_tele = 1 - }, -/area/surface/outside/plains/mountains) -"nJ" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "Casino_South_Exterior"; - locked = 1; - name = "Landing South External" - }, -/obj/structure/fans/hardlight, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship) -"nM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/crystal/ice, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"nR" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"nV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"nW" = ( -/obj/structure/table/marble, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"nX" = ( -/obj/structure/closet, -/obj/item/clothing/head/rabbitears, -/obj/item/clothing/head/rabbitears, -/obj/item/clothing/head/rabbitears, -/obj/item/clothing/head/rabbitears, -/obj/item/clothing/head/rabbitears, -/obj/item/clothing/head/rabbitears, -/obj/item/clothing/shoes/dress, -/obj/item/clothing/shoes/dress, -/obj/item/clothing/shoes/dress, -/obj/item/clothing/shoes/dress, -/obj/item/clothing/shoes/dress, -/obj/item/clothing/shoes/dress, -/obj/item/clothing/shoes/heels, -/obj/item/clothing/shoes/heels, -/obj/item/clothing/shoes/heels, -/obj/item/clothing/shoes/heels, -/obj/item/clothing/shoes/heels, -/obj/item/clothing/shoes/heels, -/obj/item/clothing/shoes/heels, -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"nZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor, -/area/casino/casino_ship) -"ob" = ( -/obj/machinery/media/jukebox/casinojukebox, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"od" = ( -/turf/simulated/floor/water, -/area/surface/outside/plains/mountains) -"of" = ( -/obj/machinery/disposal/deliveryChute, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"og" = ( -/obj/structure/table/glass, -/obj/machinery/recharger, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"oh" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"oi" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship/dorms) -"ol" = ( -/obj/structure/closet/grave/dirthole{ - opened = 0 - }, -/obj/item/spacecasinocash/c500, -/obj/item/spacecasinocash/c100, -/obj/item/spacecasinocash/c100, -/obj/item/casino_platinum_chip, -/obj/item/storage/wallet/casino, -/obj/item/spellbook/oneuse/forcewall, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"on" = ( -/obj/structure/bed/chair/comfy/purp{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"op" = ( -/obj/structure/grille/rustic, -/obj/structure/window/phoronreinforced/full, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"os" = ( -/obj/structure/bed/chair/sofa/yellow, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"ot" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 4; - icon_state = "spline_fancy_corner" - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"ou" = ( -/obj/machinery/door/airlock/silver{ - name = "Lap dance room 1-2" - }, -/turf/simulated/floor/carpet/purcarpet, -/area/casino/casino_ship) -"oB" = ( -/obj/structure/table/glass, -/obj/machinery/light/floortube/flicker{ - pixel_y = 5 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"oC" = ( -/obj/structure/casino_table/roulette_table, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"oD" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"oG" = ( -/obj/structure/disposalpipe/segment, -/obj/random/material/precious, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"oJ" = ( -/obj/machinery/door/window/southright, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"oK" = ( -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outside/plains/mountains) -"oL" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"oQ" = ( -/obj/structure/table/marble, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/item/casino_platinum_chip, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "Casino Front Desk"; - layer = 3.2; - name = "Front Desk Shutters" - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"oY" = ( -/obj/structure/table/marble, -/obj/item/flame/candle/candelabra/everburn, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"oZ" = ( -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"pc" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/material/knife/machete/hatchet{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pickaxe/silver{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/pickaxe/silver, -/obj/item/material/twohanded/fireaxe, -/turf/simulated/floor/plating, -/area/submap/lonehome) -"pd" = ( -/turf/simulated/floor/outdoors/grass/heavy{ - outdoors = 0 - }, -/area/casino/casino_ship) -"pe" = ( -/obj/machinery/door/window/southright{ - dir = 4; - name = "Bar"; - req_access = list(160) - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"ph" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "Casino_South_Interior"; - locked = 1; - name = "Landing South Internal" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "Casino_South"; - name = "Internal Access Button"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship) -"pk" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/deluxe/full, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"pm" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/southright{ - layer = 2.9; - req_access = list(201) - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/casino/casino_ship/wing_right) -"pp" = ( -/obj/machinery/door/airlock/security{ - name = "Interrogation room"; - req_access = list(201); - req_one_access = list() - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_right) -"ps" = ( -/obj/structure/boulder, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"pt" = ( -/obj/machinery/slot_machine, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"pu" = ( -/obj/structure/table/sifwoodentable, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"pv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/casino/casino_ship/wing_right) -"px" = ( -/obj/machinery/button/remote/blast_door{ - id = "Casinodormshutters5"; - name = "Casino Dorm Shutters"; - pixel_x = 24; - pixel_y = -6 - }, -/obj/structure/bed/double/padded, -/obj/item/bedsheet/hosdouble, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"py" = ( -/obj/structure/closet/crate/bin, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/red/bordercorner, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"pz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - id = "Casinoprizes"; - layer = 3.3; - name = "Prize shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship) -"pB" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/appliance/mixer/cereal, -/turf/simulated/floor/tiled/white, -/area/submap/lonehome) -"pC" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water/deep, -/area/surface/outside/plains/outpost) -"pD" = ( -/obj/structure/bed/chair/oldsofa/left{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"pH" = ( -/obj/structure/table/bench/marble, -/turf/simulated/floor/grass2, -/area/casino/casino_ship) -"pJ" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_access = list(203) - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"pM" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship) -"pO" = ( -/obj/structure/flora/tree/dead, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"pP" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"pT" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/melee/chainofcommand, -/obj/item/scepter, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"pW" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"pX" = ( -/obj/structure/table/glass, -/obj/machinery/button/remote/airlock{ - id = "casinodorm2"; - name = "door lock"; - pixel_x = 24; - specialfunctions = 4 - }, -/obj/random/plushie, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"qc" = ( -/turf/simulated/floor/water/deep, -/area/surface/outside/plains/mountains) -"qe" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/southleft{ - layer = 2.9; - req_access = list(201) - }, -/obj/item/clothing/gloves/arm_guard/combat, -/obj/item/clothing/gloves/arm_guard/combat, -/obj/item/clothing/head/helmet/combat, -/obj/item/clothing/head/helmet/combat, -/obj/item/clothing/shoes/leg_guard/combat, -/obj/item/clothing/shoes/leg_guard/combat, -/obj/item/clothing/suit/armor/combat, -/obj/item/clothing/suit/armor/combat, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/casino/casino_ship/wing_right) -"qf" = ( -/obj/machinery/suit_cycler/security{ - req_access = list(201) - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"qh" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "Casino_North_Interior"; - locked = 1; - name = "Landing North Internal" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship) -"qi" = ( -/obj/structure/bed/chair/comfy/purp{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"qj" = ( -/obj/random/maintenance/medical, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"qk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/maintenance/clean, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"qm" = ( -/obj/structure/flora/grass/brown, -/obj/structure/flora/tree/dead, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"qp" = ( -/obj/structure/table/gamblingtable, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"qq" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = -27; - pixel_y = -4 - }, -/turf/simulated/floor/plating, -/area/submap/lonehome) -"qr" = ( -/obj/structure/bed/chair/sofa/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"qs" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/brown/bordercorner, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"qv" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"qw" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/storage/fancy/cigar/havana, -/obj/item/reagent_containers/food/drinks/bottle/snaps, -/obj/item/reagent_containers/food/drinks/bottle/specialwhiskey, -/obj/item/reagent_containers/food/drinks/bottle/bottleofnothing, -/obj/item/reagent_containers/food/drinks/bottle/champagne, -/obj/item/reagent_containers/food/drinks/bottle/goldschlager, -/obj/item/reagent_containers/food/drinks/bottle/holywater, -/obj/item/reagent_containers/food/drinks/bottle/patron, -/obj/item/reagent_containers/food/drinks/bottle/pwine, -/obj/item/reagent_containers/food/drinks/bottle/redeemersbrew, -/obj/item/reagent_containers/food/drinks/golden_cup, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"qB" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/plains/outpost) -"qC" = ( -/obj/structure/closet/crate/bin, -/obj/effect/floor_decal/spline/fancy{ - dir = 2; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"qE" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"qF" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/dice, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"qH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "Casino_North_Interior"; - locked = 1; - name = "Landing North Internal" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "Casino_North"; - name = "Internal Access Button"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship) -"qK" = ( -/obj/machinery/door/airlock/silver{ - name = "Casino manager sleeping quarters"; - req_one_access = list(300) - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"qM" = ( -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/mountains) -"qO" = ( -/obj/structure/flora/tree/pine{ - icon_state = "pine_3" - }, -/obj/structure/flora/tree/dead, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"qS" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"qV" = ( -/obj/structure/flora/tree/winter1, -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"qW" = ( -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"qX" = ( -/obj/structure/table/bench/sifwooden, -/obj/effect/mist, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"qY" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"rc" = ( -/obj/effect/blocker, -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"rd" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"re" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/machinery/holosign/exit, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"rg" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"ri" = ( -/obj/machinery/shower{ - dir = 4; - pixel_x = 5 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/curtain/open/shower/engineering, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship/dorms) -"rj" = ( -/obj/structure/toilet, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship) -"rk" = ( -/turf/simulated/floor/plating, -/area/surface/outside/plains/outpost) -"ry" = ( -/obj/structure/flora/tree/pine{ - icon_state = "pine_2" - }, -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"rG" = ( -/obj/structure/table/marble, -/obj/item/universal_translator, -/obj/machinery/light/floortube/flicker{ - pixel_y = 5 - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"rH" = ( -/turf/simulated/floor/carpet/turcarpet, -/area/submap/lonehome) -"rK" = ( -/obj/structure/table/gamblingtable, -/obj/item/deck/cah, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"rL" = ( -/obj/structure/flora/ausbushes/pointybush, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"rM" = ( -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/outdoors/dirt, -/area/surface/outside/plains/outpost) -"rN" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship) -"rQ" = ( -/obj/structure/flora/tree/pine{ - icon_state = "pine_3" - }, -/obj/structure/flora/tree/pine{ - icon_state = "pine_2" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"rU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/casino/casino_ship) -"rV" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/rddouble, -/obj/random/junk, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"rW" = ( -/obj/structure/prop/machine/gravygen, -/turf/simulated/floor/redgrid/animated, -/area/surface/outside/plains/mountains) -"sc" = ( -/mob/living/simple_mob/animal/passive/penguin/tux{ - hovering = 1 - }, -/turf/simulated/floor/wood/sif/broken, -/area/surface/outside/plains/outpost) -"sj" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"sl" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"sm" = ( -/obj/random/trash, -/turf/simulated/floor/tiled/freezer, -/area/submap/lonehome) -"st" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/auto_cloner, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"su" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = -3 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/storage/box/donut{ - pixel_y = 11 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"sw" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"sy" = ( -/obj/structure/girder/displaced, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"sA" = ( -/obj/structure/table/bench/sifwooden, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"sI" = ( -/obj/machinery/clonepod/transhuman/full, -/turf/simulated/floor/tiled/white, -/area/casino/casino_ship/wing_left) -"sJ" = ( -/obj/structure/table/glass, -/obj/item/clothing/accessory/holster/armpit, -/obj/item/gun/energy/gun/fluff/dominator{ - emagged = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"sK" = ( -/obj/structure/flora/bboulder1, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"sO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/crystal/ice, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"sV" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/northleft{ - req_access = list(201) - }, -/obj/item/storage/box/empshells, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g, -/obj/item/ammo_magazine/ammo_box/b12g, -/obj/item/ammo_magazine/m762garand, -/obj/item/ammo_magazine/m762garand, -/obj/item/ammo_magazine/m762garand, -/obj/item/ammo_magazine/m762garand, -/obj/item/ammo_magazine/m762garand, -/obj/item/ammo_magazine/m762garand, -/obj/item/ammo_magazine/m9mmt, -/obj/item/ammo_magazine/m9mmt, -/obj/item/ammo_magazine/m9mmt, -/obj/item/ammo_magazine/m9mmt, -/obj/item/ammo_magazine/m9mmt, -/obj/item/ammo_magazine/m9mmt, -/obj/item/ammo_magazine/m9mmt, -/obj/item/ammo_magazine/m9mmt, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/dark, -/area/casino/casino_ship/wing_right) -"sX" = ( -/obj/structure/barricade, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"sZ" = ( -/obj/machinery/light, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"tb" = ( -/turf/simulated/wall/log_sif, -/area/surface/outside/plains/outpost) -"tc" = ( -/mob/living/simple_mob/animal/giant_spider/nurse, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"tg" = ( -/obj/structure/grille/rustic, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"th" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/vending/dinnerware{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/submap/lonehome) -"tm" = ( -/obj/structure/cult/pylon/swarm/defender, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"tn" = ( -/obj/structure/bed/chair/oldsofa/right{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"to" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - dir = 8; - pixel_x = 28; - pixel_y = 9 - }, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship) -"ts" = ( -/obj/effect/blocker, -/turf/simulated/wall/solidrock{ - block_tele = 1 - }, -/area/surface/outside/plains/mountains) -"tv" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"ty" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"tB" = ( -/obj/structure/window/phoronreinforced, -/obj/structure/table/bench/wooden, -/obj/structure/flora/pottedplant/dead{ - pixel_y = 10 - }, -/obj/structure/curtain/bed{ - name = "curtain" - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"tC" = ( -/obj/structure/prop/statue/lion{ - desc = "Tread South and along the mountains ridge, an angel awaits to guide you on."; - name = "Ancient lion statue" - }, -/turf/simulated/floor/plating, -/area/surface/outside/plains/outpost) -"tF" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"tH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/turcarpet, -/area/submap/lonehome) -"tM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"tN" = ( -/obj/structure/barricade, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"tO" = ( -/obj/structure/table/glass, -/obj/machinery/cell_charger, -/obj/item/defib_kit, -/obj/item/tank/oxygen, -/obj/item/rig/medical/equipped{ - req_access = list(202) - }, -/obj/item/suit_cooling_unit, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/casino/casino_ship/wing_left) -"tR" = ( -/obj/machinery/door/airlock/silver{ - name = "Lap dance room 3-4" - }, -/turf/simulated/floor/carpet/purcarpet, -/area/casino/casino_ship) -"tU" = ( -/obj/machinery/door/airlock/silver{ - name = "Garden" - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"tZ" = ( -/turf/simulated/floor/wood/sif/broken, -/area/submap/lonehome) -"uc" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 32 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/red/bordercorner, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"uf" = ( -/mob/living/simple_mob/animal/wolf/direwolf, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"ui" = ( -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"uj" = ( -/obj/machinery/vending/engivend{ - req_access = list(203); - req_log_access = 203 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"ul" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = -4 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = 8 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = -4 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = 12 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"un" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship) -"uo" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/toy/bosunwhistle, -/obj/item/toy/crossbow, -/obj/item/toy/cultsword, -/obj/item/toy/eight_ball, -/obj/item/toy/eight_ball/conch, -/obj/item/toy/katana, -/obj/item/toy/stickhorse, -/obj/item/reagent_containers/spray/waterflower, -/obj/item/toy/sword, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"ur" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"uy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"uB" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"uC" = ( -/obj/structure/simple_door/iron, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"uN" = ( -/obj/structure/flora/tree/pine{ - icon_state = "pine_2" - }, -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"uO" = ( -/obj/structure/table/bench/marble, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"uQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"uU" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"uX" = ( -/obj/item/clothing/under/gentlesuit, -/obj/item/clothing/under/gentlesuit, -/obj/item/clothing/under/gentlesuit, -/obj/item/clothing/under/gentlesuit, -/obj/item/clothing/under/gentlesuit/skirt, -/obj/item/clothing/under/gentlesuit/skirt, -/obj/item/clothing/under/gentlesuit/skirt, -/obj/item/clothing/under/gentlesuit/skirt, -/obj/item/clothing/under/suit_jacket, -/obj/item/clothing/under/suit_jacket, -/obj/item/clothing/under/suit_jacket, -/obj/item/clothing/under/suit_jacket, -/obj/item/clothing/under/sundress, -/obj/item/clothing/under/sundress, -/obj/item/clothing/under/sundress, -/obj/item/clothing/under/sundress, -/obj/item/clothing/under/waiter, -/obj/item/clothing/under/waiter, -/obj/item/clothing/under/waiter, -/obj/item/clothing/under/waiter, -/obj/structure/closet, -/obj/item/clothing/glasses/sunglasses/aviator, -/obj/item/clothing/glasses/sunglasses/aviator, -/obj/item/clothing/glasses/sunglasses/aviator, -/obj/item/clothing/glasses/sunglasses/aviator, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/glasses/sunglasses, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"vb" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"vh" = ( -/obj/effect/blocker, -/obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"vj" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"vk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/solidrock{ - block_tele = 1 - }, -/area/surface/outside/plains/mountains) -"vp" = ( -/obj/structure/showcase/sign, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"vq" = ( -/obj/structure/bed/chair/oldsofa/left{ - dir = 1 - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"vr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"vv" = ( -/obj/structure/sink{ - pixel_x = -16; - pixel_y = 24 - }, -/obj/structure/toilet{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/casino/casino_ship/wing_right) -"vw" = ( -/obj/item/bone/skull{ - anchored = 1; - color = "black"; - desc = "There seems to be a skull like hole on the ground... Seems like you can fit one in, but were is it?"; - name = "Skull carving" - }, -/obj/effect/step_trigger/message{ - message = "If you have brought the right key for this puzzle, drop the key here and AHELP to have this door open before you"; - once = 0 - }, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"vx" = ( -/obj/effect/mist, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"vA" = ( -/obj/effect/decal/remains/deer, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"vB" = ( -/obj/structure/gravemarker{ - desc = "Head North-East where the river runs and go to where it flees from, a lion guards the secret within it's final resting place."; - dir = 1; - name = "Stink Mcgee's RIP" - }, -/obj/structure/closet/grave/dirthole{ - opened = 0 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"vE" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"vH" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 10; - icon_state = "spline_fancy_corner" - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 2; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"vK" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 9 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"vL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "Casinodormshutters5"; - layer = 3.5; - name = "Casino Privacy shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship/dorms) -"vQ" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/effect/landmark/costume/cutewitch, -/obj/effect/landmark/costume/imperium_monk, -/obj/effect/landmark/costume/plaguedoctor, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"vS" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outside/plains/mountains) -"vT" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"vW" = ( -/obj/structure/disposalpipe/segment, -/obj/random/maintenance/medical, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"vX" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/chainsaw, -/obj/item/shovel{ - pixel_y = 6 - }, -/obj/item/shovel, -/turf/simulated/floor/plating, -/area/submap/lonehome) -"vY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/material/refined, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"wa" = ( -/obj/machinery/door/airlock/silver{ - name = "Casino crew showers" - }, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship) -"wf" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/tape, -/obj/item/pen, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"wh" = ( -/mob/living/simple_mob/animal/passive/fish/koi, -/turf/simulated/floor/water/indoors, -/area/casino/casino_ship) -"wi" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 8; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"wk" = ( -/obj/machinery/button/remote/blast_door{ - id = "Casinodormshutters1"; - name = "Casino Dorm Shutters"; - pixel_x = 24; - pixel_y = -6 - }, -/obj/structure/bed/double/padded, -/obj/item/bedsheet/hosdouble, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"wo" = ( -/obj/effect/map_helper/no_tele, -/turf/simulated/wall/solidrock{ - block_tele = 1 - }, -/area/surface/outside/plains/mountains) -"wp" = ( -/obj/item/stool, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"wq" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/greendouble, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"wr" = ( -/obj/structure/flora/grass/green, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"wt" = ( -/obj/structure/flora/tree/pine{ - icon_state = "pine_2" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"wv" = ( -/obj/machinery/door/airlock/silver{ - name = "Casino crew breakroom"; - req_one_access = null - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"wy" = ( -/obj/structure/table/glass, -/obj/machinery/recharger, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"wB" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"wD" = ( -/obj/structure/table/marble, -/obj/item/card/id/casino, -/obj/item/card/id/casino, -/obj/item/card/id/casino, -/obj/item/card/id/casino, -/obj/item/card/id/casino/both, -/obj/item/card/id/casino/both, -/obj/item/card/id/casino/engineering, -/obj/item/card/id/casino/medical, -/obj/item/card/id/casino/security, -/obj/item/card/id/casino/security, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"wH" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"wI" = ( -/obj/random/outcrop, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"xb" = ( -/obj/machinery/vending/cigarette, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"xe" = ( -/obj/structure/table/bench/marble, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"xf" = ( -/obj/machinery/appliance/cooker/oven, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/submap/lonehome) -"xh" = ( -/obj/structure/table/bench/sifwooden, -/obj/effect/mist, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"xi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/random/material/refined, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"xk" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"xo" = ( -/obj/machinery/door/airlock/silver{ - id_tag = "casinodorm1"; - name = "Dorm room 1" - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"xp" = ( -/obj/structure/flora/tree/winter1, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"xr" = ( -/obj/structure/flora/tree/pine{ - icon_state = "pine_3" - }, -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"xz" = ( -/obj/structure/flora/tree/jungle_small, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"xH" = ( -/obj/structure/table/wooden_reinforced, -/obj/random/plushie, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"xI" = ( -/obj/machinery/vending/boozeomat, -/turf/simulated/wall/log_sif, -/area/submap/lonehome) -"xJ" = ( -/obj/structure/cult/pylon/swarm/zp_well, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"xK" = ( -/obj/machinery/button/remote/blast_door{ - id = "Casinodormshutters6"; - name = "Casino Dorm Shutters"; - pixel_x = 24; - pixel_y = -6 - }, -/obj/structure/bed/double/padded, -/obj/item/bedsheet/hosdouble, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"xL" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water, -/area/surface/outside/plains/outpost) -"xQ" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/toy/ammo/crossbow, -/obj/item/toy/ammo/crossbow, -/obj/item/toy/ammo/crossbow, -/obj/item/toy/ammo/crossbow, -/obj/item/toy/ammo/crossbow, -/obj/item/clothing/under/sexybunny_white/sexybunny_black, -/obj/item/clothing/under/sexybunny_white, -/obj/item/clothing/head/collectable/rabbitears, -/obj/item/clothing/head/collectable/rabbitears, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"xR" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/o2{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/adv{ - pixel_x = -4; - pixel_y = -4 - }, -/turf/simulated/floor/tiled/white, -/area/casino/casino_ship/wing_left) -"xV" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"xX" = ( -/turf/simulated/floor/tiled/white, -/area/casino/casino_ship/wing_left) -"ya" = ( -/obj/structure/flora/log1, -/turf/simulated/floor/water, -/area/surface/outside/plains/outpost) -"yb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor, -/area/casino/casino_ship/wing_right) -"yc" = ( -/obj/structure/barricade, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/outpost) -"yd" = ( -/obj/structure/table/reinforced, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/deck/cah, -/obj/item/deck/cah, -/obj/item/deck/cah, -/obj/item/deck/cah, -/obj/item/deck/cah, -/obj/item/deck/cah/black, -/obj/item/deck/cah/black, -/obj/item/deck/cah/black, -/obj/item/deck/cah/black, -/obj/item/deck/cah/black, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"ye" = ( -/obj/structure/table/fancyblack, -/obj/effect/floor_decal/spline/fancy{ - dir = 6 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"yf" = ( -/obj/structure/flora/grass/both, -/obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"yg" = ( -/obj/effect/spresent, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"yj" = ( -/obj/structure/table/reinforced, -/obj/item/deck/cards/casino, -/obj/item/deck/cards/casino, -/obj/item/deck/cards/casino, -/obj/item/deck/cards/casino, -/obj/item/deck/cards/casino, -/obj/item/deck/cards/casino, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"yn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/turcarpet, -/area/submap/lonehome) -"yo" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = -3 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/storage/box/donut{ - pixel_y = 11 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"yp" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"yt" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/casino/casino_ship/wing_left) -"yu" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/submap/lonehome) -"yx" = ( -/obj/structure/barricade, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"yA" = ( -/obj/structure/flora/rocks1, -/obj/structure/barricade, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/outpost) -"yC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"yD" = ( -/obj/machinery/door/airlock/silver{ - id_tag = "casinodorm4"; - name = "Dorm room 4" - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"yF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"yG" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"yL" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"yO" = ( -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/structure/table/bench/wooden, -/obj/structure/flora/pottedplant/dead{ - pixel_y = 10 - }, -/obj/structure/curtain/bed{ - name = "curtain" - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"yP" = ( -/obj/structure/flora/grass/brown, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"yR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"yS" = ( -/obj/machinery/door/airlock/silver{ - name = "Pool and Sauna" - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"yZ" = ( -/obj/machinery/slot_machine, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"za" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"zd" = ( -/obj/machinery/button/remote/blast_door{ - id = "CasinoEmergency2"; - name = "Middle emergency shutters"; - pixel_x = -8; - pixel_y = 8; - req_access = list(160) - }, -/obj/machinery/button/remote/blast_door{ - id = "Casinobar"; - name = "Bar Shutters"; - pixel_x = -8; - pixel_y = -6; - req_access = list(160) - }, -/turf/simulated/wall/golddiamond, -/area/casino/casino_ship) -"zg" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/item/flame/candle/everburn, -/turf/simulated/floor/tiled/white, -/area/submap/lonehome) -"zo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"zp" = ( -/turf/simulated/floor/water/hotspring{ - can_atmos_pass = 0; - color = "cyan"; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"zq" = ( -/turf/simulated/shuttle/wall/flock, -/area/surface/outside/plains/mountains) -"zr" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/clothing/head/santa/green, -/obj/item/clothing/head/santa/green, -/obj/item/clothing/head/santa/green, -/obj/item/clothing/head/santa/green, -/obj/item/clothing/head/santa/green, -/obj/item/clothing/head/santa/green, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"zu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/wood/sif/broken, -/area/submap/lonehome) -"zv" = ( -/obj/structure/flora/ausbushes/palebush, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"zx" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 2; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"zy" = ( -/obj/structure/barricade, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"zA" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/effect/floor_decal/spline/fancy{ - dir = 4; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"zC" = ( -/obj/effect/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/casino/casino_ship) -"zE" = ( -/obj/structure/grille/broken/rustic, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"zG" = ( -/obj/machinery/media/jukebox/casinojukebox{ - pixel_y = -1 - }, -/turf/simulated/wall/log_sif, -/area/submap/lonehome) -"zK" = ( -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/obj/structure/prop/machine/gravygen, -/turf/simulated/floor/redgrid/animated, -/area/surface/outside/plains/mountains) -"zN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - id = "Casinoprizes"; - layer = 3.3; - name = "Prize shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship) -"zP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"zQ" = ( -/obj/structure/casino_table/blackjack_r{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"zR" = ( -/obj/structure/flora/grass/green, -/obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"zS" = ( -/obj/structure/bed/chair/sofa/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"zW" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/clothing/mask/chameleon, -/obj/item/clothing/mask/demon, -/obj/item/clothing/mask/dolphin, -/obj/item/clothing/mask/fakemoustache, -/obj/item/clothing/mask/goblin, -/obj/item/clothing/mask/horsehead, -/obj/item/clothing/mask/luchador, -/obj/item/clothing/mask/pig, -/obj/item/clothing/mask/shark, -/obj/item/clothing/head/soft/purple/wah, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"zY" = ( -/obj/structure/flora/bboulder1, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"zZ" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = list(202) - }, -/turf/simulated/floor/tiled/white, -/area/casino/casino_ship/wing_left) -"Ad" = ( -/obj/structure/bed/chair/oldsofa{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"Af" = ( -/turf/simulated/floor/grass2, -/area/casino/casino_ship) -"AA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"AH" = ( -/obj/effect/floor_decal/spline/fancy{ - icon_state = "spline_fancy_corner" - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 8; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"AL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"AN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/crystal/ice, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"AO" = ( -/obj/machinery/atmospherics/unary/engine/bigger{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt, -/area/surface/outside/plains/outpost) -"AS" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/southleft{ - layer = 2.9; - req_access = list(201) - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/casino/casino_ship/wing_right) -"AU" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"AW" = ( -/obj/machinery/light, -/obj/effect/floor_decal/spline/fancy, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"AY" = ( -/obj/item/stool/padded, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"AZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"Bb" = ( -/obj/machinery/shower{ - pixel_y = 8 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship) -"Bg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Bh" = ( -/obj/structure/flora/grass/green, -/mob/living/simple_mob/vore/rabbit/white, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"Bk" = ( -/obj/machinery/door/airlock/security{ - name = "Combat Equipment Storage"; - req_access = list(201); - req_one_access = list() - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_right) -"Bl" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"Bm" = ( -/obj/machinery/disposal/deliveryChute, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Bq" = ( -/obj/structure/table/reinforced, -/obj/item/packageWrap{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/packageWrap{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/packageWrap, -/obj/machinery/light, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"Bt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor, -/area/casino/casino_ship) -"Bu" = ( -/obj/random/material/refined, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Bv" = ( -/obj/machinery/transhuman/resleever, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/casino/casino_ship/wing_left) -"Bx" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/water/deep/pool, -/area/casino/casino_ship) -"BB" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = -28 - }, -/turf/simulated/floor/plating, -/area/submap/lonehome) -"BD" = ( -/obj/machinery/button/remote/blast_door{ - id = "CasinoEmergency1"; - name = "Rear emergency shutters"; - pixel_x = -26; - pixel_y = -4; - req_access = list(160) - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"BF" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"BG" = ( -/obj/effect/floor_decal/spline/fancy/wood/three_quarters, -/obj/structure/stripper_pole, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"BH" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"BP" = ( -/obj/structure/flora/tree/pine{ - icon_state = "pine_2" - }, -/mob/living/simple_mob/animal/sif/glitterfly, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"BQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/machinery/door/window/westleft{ - dir = 2; - req_access = list(203) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/casino/casino_ship/wing_left) -"BS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"BT" = ( -/obj/structure/table/glass, -/obj/item/beach_ball, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"BV" = ( -/mob/living/simple_mob/animal/space/goose/domesticated/casino, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"BW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor, -/area/casino/casino_ship) -"BX" = ( -/obj/structure/table/reinforced, -/obj/item/taperecorder, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"BZ" = ( -/obj/structure/flora/grass/brown, -/mob/living/simple_mob/vore/rabbit/white, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"Cb" = ( -/obj/structure/table/glass, -/obj/item/book/codex/casino, -/turf/simulated/floor/grass2, -/area/casino/casino_ship) -"Cg" = ( -/obj/structure/flora/grass/green, -/obj/structure/flora/tree/dead, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"Ck" = ( -/obj/effect/spider/stickyweb/dark, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Cl" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy{ - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"Cm" = ( -/obj/structure/closet/secure_closet/freezer/kitchen{ - locked = 0 - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Cn" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"Ct" = ( -/obj/structure/flora/log1, -/turf/simulated/floor/water/hotspring{ - can_atmos_pass = 0; - color = "cyan"; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Cv" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"Cz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"CC" = ( -/obj/machinery/telecomms/relay/preset/casino, -/turf/simulated/floor/tiled/techfloor, -/area/casino/casino_ship/wing_left) -"CD" = ( -/obj/structure/window/reinforced, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"CM" = ( -/mob/living/simple_mob/vore/rabbit/black, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"CN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_left) -"CS" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/book/codex/casino, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"CT" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"CX" = ( -/obj/structure/bed/chair/sofa/left/yellow{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"CY" = ( -/obj/structure/flora/rocks2, -/mob/living/simple_mob/animal/sif/diyaab{ - hovering = 1 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Da" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - id = "Casinoprizes"; - layer = 3.3; - name = "Prize shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship) -"Db" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/submap/lonehome) -"Dd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood/sif/broken, -/area/submap/lonehome) -"Df" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/fireplace{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Dh" = ( -/obj/effect/step_trigger/message{ - message = "Congratulations on discovering Mariamosa's secret stash, Ahelp if you want to keep your permanent prize~"; - once = 0 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Dk" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/piratedouble, -/obj/machinery/light/floortube/flicker{ - pixel_y = 5 - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Dl" = ( -/obj/machinery/door/airlock/silver{ - name = "Casino manager bathroom"; - req_one_access = newlist(/obj/machinery/power/debug_items/infinite_cable_powersink) - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship) -"Do" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Dt" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/item/glass_jar/fish/plastic, -/turf/simulated/floor/tiled/white, -/area/submap/lonehome) -"Du" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/casino/casino_ship/wing_left) -"Dw" = ( -/obj/effect/blocker, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"Dx" = ( -/obj/structure/showcase/sign{ - name = "WARNING: CAVED IN MINES" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"Dy" = ( -/obj/structure/closet, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"DB" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/random/trash, -/turf/simulated/floor/tiled/white, -/area/submap/lonehome) -"DC" = ( -/obj/structure/bed/chair/oldsofa/left{ - dir = 8 - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"DE" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"DF" = ( -/obj/structure/table/glass, -/obj/item/starcaster_news, -/turf/simulated/floor/grass2, -/area/casino/casino_ship) -"DH" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"DL" = ( -/turf/simulated/floor/bronze, -/area/surface/outside/plains/outpost) -"DM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/crystal/ice, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"DN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/unsimulated/mineral, -/area/surface/outside/plains/mountains) -"DP" = ( -/obj/item/spacecasinocash/c500, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"DR" = ( -/obj/item/glass_jar/fish, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"DS" = ( -/obj/structure/flora/tree/pine{ - icon_state = "pine_2" - }, -/obj/structure/flora/tree/pine{ - icon_state = "pine_3" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"DT" = ( -/obj/item/miscdisc, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"DU" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/item/book/manual/chef_recipes, -/obj/item/reagent_containers/food/drinks/jar, -/turf/simulated/floor/tiled/white, -/area/submap/lonehome) -"DW" = ( -/obj/machinery/crystal/ice, -/turf/simulated/floor/outdoors/ice/dark_smooth{ - outdoors = 0 - }, -/area/surface/outside/plains/mountains) -"Eb" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"Ec" = ( -/obj/machinery/slot_machine, -/obj/effect/floor_decal/spline/fancy, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"Ed" = ( -/obj/machinery/vending/tool{ - req_log_access = 203 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"Eg" = ( -/obj/structure/simple_door/flock, -/obj/structure/cult/pylon/swarm/defender, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"Eh" = ( -/obj/structure/bed/chair/oldsofa/right{ - dir = 1 - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Ei" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"En" = ( -/obj/structure/window/phoronreinforced, -/obj/structure/table/bench/marble, -/obj/structure/curtain/bed{ - name = "curtain" - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Eo" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"Er" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "screen"; - pixel_x = -32 - }, -/obj/structure/bed/chair/comfy/purp{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"Es" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Eu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/medical, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Ew" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_access = list(203) - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"Ey" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"EF" = ( -/obj/structure/window/reinforced, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/structure/table/rack/shelf, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_left) -"EJ" = ( -/obj/structure/table/bench/marble, -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"EK" = ( -/obj/item/aliencoin/phoron, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"EO" = ( -/mob/living/simple_mob/vore/oregrub, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"ER" = ( -/obj/item/storage/wallet/casino, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"EV" = ( -/obj/machinery/vending/deluxe_dinner{ - req_access = list(160); - req_log_access = 160 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"EW" = ( -/obj/structure/simple_door/sifwood, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Fa" = ( -/obj/structure/table/gamblingtable, -/obj/item/dice, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"Fe" = ( -/obj/structure/bed/chair/wood, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Fk" = ( -/obj/structure/bed/chair/comfy/purp, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"Fm" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/clothing/head/santa, -/obj/item/clothing/head/santa, -/obj/item/clothing/head/santa, -/obj/item/clothing/head/santa, -/obj/item/clothing/head/santa, -/obj/item/clothing/head/santa, -/obj/item/clothing/head/santa, -/obj/item/clothing/head/santa, -/obj/item/clothing/head/santa, -/obj/item/clothing/head/santa, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"Fo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"Fq" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Fr" = ( -/turf/simulated/floor/wood/sif{ - outdoors = 1 - }, -/area/surface/outside/plains/outpost) -"Fu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/shuttle/wall/flock, -/area/surface/outside/plains/mountains) -"Fw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash, -/turf/simulated/floor/carpet, -/area/submap/lonehome) -"FA" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "CasinoEmergency1"; - name = "Rear emergency shutters"; - pixel_x = -26; - pixel_y = -4; - req_access = list(160) - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"FC" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/rddouble, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"FD" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 9 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"FF" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1; - icon_state = "spline_fancy_corner" - }, -/obj/effect/floor_decal/spline/fancy, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"FH" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/submap/lonehome) -"FJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt, -/area/casino/casino_ship/wing_right) -"FL" = ( -/obj/item/reagent_containers/food/snacks/snackplanet/phoron{ - name = "Stabalized Phoron Singularity" - }, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"FT" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 5 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"FZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"Ga" = ( -/obj/fiftyspawner/diamond, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"Gb" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"Gc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor, -/area/casino/casino_ship/wing_right) -"Gh" = ( -/obj/structure/table/marble, -/obj/item/glass_jar, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Gm" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship) -"Gn" = ( -/obj/structure/boulder, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Gp" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Gq" = ( -/obj/structure/disposalpipe/segment, -/mob/living/simple_mob/animal/giant_spider/hunter, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Gu" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "Casinobar"; - layer = 3.1; - name = "Casino bar shutter" - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"Gv" = ( -/turf/simulated/floor/outdoors/dirt, -/area/surface/outside/plains/mountains) -"GD" = ( -/obj/structure/table/fancyblack, -/obj/effect/floor_decal/spline/fancy{ - dir = 10 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"GF" = ( -/obj/structure/simple_door/flock{ - dir = 4 - }, -/obj/structure/cult/pylon/swarm/defender, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"GJ" = ( -/obj/structure/prop/statue/pillar, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"GP" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/sif/glitterfly/rare{ - canmove = 0; - glow_intensity = 0.5; - glow_range = 7.5; - glow_toggle = 1; - move_speed = 10000; - movement_cooldown = -10000 - }, -/turf/simulated/floor/tiled/white, -/area/submap/lonehome) -"GS" = ( -/obj/machinery/light, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"GU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"GX" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/submap/lonehome) -"GY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Hd" = ( -/obj/machinery/appliance/cooker/fryer, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/submap/lonehome) -"Hi" = ( -/obj/structure/table/bench/marble, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"Ho" = ( -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/structure/table/bench/marble, -/obj/structure/curtain/bed{ - name = "curtain" - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Hp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/machinery/vending/security{ - dir = 4; - pixel_x = 5; - req_access = list(201) - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"Hq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"Hr" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Hs" = ( -/obj/structure/bed/chair/comfy/purp{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"Hw" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Hy" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/mountains) -"HA" = ( -/obj/structure/window/reinforced, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_left) -"HQ" = ( -/obj/machinery/door/airlock/silver{ - name = "Prize storage"; - req_one_access = list(200) - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"HS" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - name = "Medical, Engineering, Janitor and EVA"; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_left) -"HW" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"HX" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/random/maintenance/clean, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Ia" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "Casino_South_Exterior"; - locked = 1; - name = "Landing South External" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "Casino_South"; - name = "External Access Button"; - pixel_x = -24 - }, -/obj/structure/fans/hardlight, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship) -"Ib" = ( -/obj/machinery/slot_machine, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"Ic" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Ie" = ( -/obj/structure/closet/crate/bin, -/obj/effect/floor_decal/spline/fancy{ - dir = 8; - icon_state = "spline_fancy_cee" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"Il" = ( -/obj/structure/flora/rocks1, -/obj/structure/barricade, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Im" = ( -/obj/structure/sink/kitchen{ - dir = 4; - pixel_x = -13 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"Iq" = ( -/obj/item/stool/padded, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"It" = ( -/obj/machinery/door/airlock/silver{ - id_tag = "managerdoor"; - name = "Casino manager office"; - req_one_access = list(300) - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"Iz" = ( -/obj/structure/closet/secure_closet{ - req_one_access = list(300) - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"ID" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/deep, -/area/surface/outside/plains/outpost) -"IH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/casino/casino_ship/wing_right) -"IJ" = ( -/obj/machinery/door/airlock/security{ - name = "Evidence room"; - req_access = list(201); - req_one_access = list() - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_right) -"IK" = ( -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"IL" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/orangedouble, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"IN" = ( -/obj/structure/table/reinforced, -/obj/item/wrapping_paper{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/wrapping_paper, -/obj/item/wrapping_paper{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"IT" = ( -/obj/structure/disposalpipe/segment, -/obj/random/maintenance/clean, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"IU" = ( -/obj/structure/flora/tree/pine{ - icon_state = "pine_3" - }, -/obj/structure/flora/tree/pine{ - icon_state = "pine_3" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"IY" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 2; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"Ja" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/material/precious, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Jb" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"Jf" = ( -/obj/machinery/casinoslave_handler, -/turf/simulated/wall/golddiamond, -/area/casino/casino_ship) -"Ji" = ( -/obj/structure/bonfire/permanent/sifwood, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Ju" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spider/stickyweb/dark, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Jx" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_soft/full, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Jy" = ( -/obj/structure/flora/rocks2, -/obj/structure/barricade, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/outpost) -"JC" = ( -/obj/structure/table/glass, -/obj/machinery/recharger, -/obj/item/backup_implanter, -/obj/item/backup_implanter, -/obj/item/backup_implanter, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/casino/casino_ship/wing_left) -"JD" = ( -/obj/machinery/light, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"JF" = ( -/obj/structure/table/standard, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/obj/item/book/codex/casino, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"JG" = ( -/obj/structure/disposalpipe/segment, -/obj/random/material/refined, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"JH" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"JI" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"JO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"JW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/maintenance/medical, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Kb" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access = list(203) - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"Kc" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Kd" = ( -/obj/structure/table/bench/sifwooden, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/black{ - dir = 1 - }, -/obj/effect/mist, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"Kf" = ( -/obj/structure/disposalpipe/segment, -/turf/unsimulated/mineral, -/area/surface/outside/plains/mountains) -"Kh" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/effect/landmark/costume/chicken, -/obj/effect/landmark/costume/fakewizard, -/obj/effect/landmark/costume/nyangirl, -/obj/effect/landmark/costume/sexyclown, -/obj/item/clothing/head/hood/ian_hood, -/obj/item/clothing/suit/storage/hooded/costume/ian, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"Ki" = ( -/obj/machinery/vending/deluxe_boozeomat{ - req_access = list(160); - req_log_access = 160 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"Kl" = ( -/obj/structure/bed/chair/oldsofa/right{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"Kr" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/book/codex/casino, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"Kt" = ( -/obj/structure/kitchenspike, -/turf/simulated/floor/tiled/freezer, -/area/submap/lonehome) -"Ku" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/condiment/small/packet/coffee{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/condiment/small/packet/coffee, -/obj/item/reagent_containers/food/condiment/small/packet/coffee{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/reagent_containers/food/drinks/bottle/cream{ - pixel_x = -5; - pixel_y = 17 - }, -/obj/item/reagent_containers/food/condiment/small/sugar{ - pixel_x = -6; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/condiment/small/sugar{ - pixel_x = -6; - pixel_y = -1 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"Kz" = ( -/obj/structure/bed/chair/sofa/left/yellow, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"KG" = ( -/mob/living/simple_mob/animal/sif/glitterfly/rare{ - canmove = 0; - glow_intensity = 0.5; - glow_range = 7.5; - glow_toggle = 1; - move_speed = 10000; - movement_cooldown = -10000 - }, -/turf/simulated/floor/water/hotspring{ - can_atmos_pass = 0; - color = "cyan"; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"KK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "Casinodormshutters6"; - layer = 3.5; - name = "Casino Privacy shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship/dorms) -"KN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"KP" = ( -/obj/structure/flora/tree/pine{ - icon_state = "pine_2" - }, -/obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"KS" = ( -/obj/structure/table/fancyblack, -/obj/effect/floor_decal/spline/fancy{ - dir = 2; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"KU" = ( -/obj/structure/prop/dominator/orange, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"KV" = ( -/obj/structure/table/glass, -/obj/machinery/button/remote/airlock{ - id = "casinodorm4"; - name = "door lock"; - pixel_x = 24; - specialfunctions = 4 - }, -/obj/random/plushie, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"KW" = ( -/turf/simulated/floor/water/indoors, -/area/casino/casino_ship) -"Lc" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Lf" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Lg" = ( -/obj/structure/flora/log2, -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/plains/outpost) -"Lh" = ( -/turf/simulated/floor/redgrid/animated, -/area/surface/outside/plains/mountains) -"Li" = ( -/obj/structure/flora/log2, -/turf/simulated/floor/water, -/area/surface/outside/plains/outpost) -"Ll" = ( -/obj/structure/table/reinforced, -/obj/item/stack/material/plasteel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/material/steel{ - amount = 50; - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/cell_charger, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"Lm" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Lp" = ( -/obj/structure/window/reinforced, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/structure/table/rack/shelf, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_left) -"Lw" = ( -/obj/item/storage/backpack/holding/duffle, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"Lx" = ( -/obj/structure/flora/grass/green, -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"LE" = ( -/obj/item/pickaxe/jackhammer, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"LI" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -28; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship) -"LM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"LQ" = ( -/obj/machinery/door/airlock/silver{ - name = "Casino crew toilet"; - req_one_access = null - }, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship) -"LS" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/toy/eight_ball/conch, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"LX" = ( -/obj/structure/bed/chair/oldsofa/left{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"Mb" = ( -/mob/living/simple_mob/animal/sif/kururak/hibernate, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Mc" = ( -/obj/machinery/button/remote/blast_door{ - id = "Casinodormshutters3"; - name = "Casino Dorm Shutters"; - pixel_x = 24; - pixel_y = -6 - }, -/obj/structure/bed/double/padded, -/obj/item/bedsheet/hosdouble, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"Me" = ( -/obj/machinery/vending/fishing, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"Mf" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 8; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"Mi" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/mountains) -"Mj" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/piratedouble, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Mm" = ( -/obj/machinery/gibber, -/turf/simulated/floor/plating, -/area/submap/lonehome) -"Mn" = ( -/obj/structure/safe{ - req_one_access = list(300) - }, -/obj/fiftyspawner/diamond, -/obj/fiftyspawner/gold, -/obj/fiftyspawner/gold, -/obj/fiftyspawner/silver, -/obj/fiftyspawner/silver, -/obj/item/moneybag/vault, -/obj/item/moneybag/vault, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"Mp" = ( -/obj/item/pickaxe/gold, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Mq" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Mu" = ( -/obj/machinery/sleep_console{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/casino/casino_ship/wing_left) -"Mv" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"My" = ( -/turf/simulated/wall/solidrock{ - block_tele = 1 - }, -/area/surface/outside/plains/mountains) -"MC" = ( -/obj/structure/table/marble, -/obj/machinery/door/window/westright{ - layer = 3.1; - name = "Both access"; - req_access = list(200) - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "Casino Front Desk"; - layer = 3.2; - name = "Front Desk Shutters" - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"ME" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"MF" = ( -/obj/structure/table/bench/sifwooden, -/obj/effect/mist, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"MG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/structure/table/rack/shelf, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_left) -"MI" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"MJ" = ( -/obj/machinery/door/airlock/silver{ - id_tag = "casinodorm3"; - name = "Dorm room 3" - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"MK" = ( -/obj/structure/table/sifwoodentable, -/obj/machinery/light/floortube/flicker{ - pixel_y = 5 - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"MP" = ( -/turf/simulated/mineral/crystal_shiny, -/area/surface/outside/plains/mountains) -"MQ" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"MS" = ( -/obj/structure/table/bench/marble, -/obj/item/flame/candle/candelabra/everburn{ - pixel_y = 8 - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"MV" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"MW" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"MX" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship) -"MY" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/submap/lonehome) -"Nb" = ( -/obj/effect/decal/remains/human, -/obj/item/clothing/under/yw/victsuit/victdress, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"Nf" = ( -/obj/machinery/light/floortube/flicker{ - pixel_y = 5 - }, -/turf/simulated/floor/plating, -/area/submap/lonehome) -"Ng" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Nk" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Nn" = ( -/obj/structure/janitorialcart, -/obj/structure/mopbucket, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/structure/closet/jcloset, -/obj/item/soap/nanotrasen, -/obj/item/soap/nanotrasen, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Ns" = ( -/obj/structure/shuttle/engine/router, -/turf/simulated/wall/golddiamond, -/area/casino/casino_ship/wing_left) -"Nt" = ( -/obj/structure/flora/rocks1, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Nu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/medical, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Nv" = ( -/obj/structure/flora/grass/both, -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"Nw" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"Nx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Ny" = ( -/obj/machinery/vending/medical{ - req_access = list(202); - req_log_access = 202 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/casino/casino_ship/wing_left) -"NA" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 5 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"NC" = ( -/obj/structure/bed/chair/oldsofa/corner{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"NG" = ( -/obj/structure/flora/ausbushes/reedbush, -/turf/simulated/floor/outdoors/grass/heavy{ - outdoors = 0 - }, -/area/casino/casino_ship) -"NM" = ( -/obj/structure/table/glass, -/obj/machinery/button/remote/airlock{ - id = "casinodorm1"; - name = "door lock"; - pixel_x = 24; - specialfunctions = 4 - }, -/obj/random/plushie, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"NO" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/toy/eight_ball, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"NS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"NW" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"NX" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/casino/casino_ship) -"NY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Oa" = ( -/obj/machinery/door/airlock/glass_external{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "Casino_South_Interior"; - locked = 1; - name = "Landing South Internal" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship) -"Od" = ( -/turf/simulated/wall/log_sif, -/area/submap/lonehome) -"Oe" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Oj" = ( -/obj/structure/table/glass, -/obj/machinery/button/remote/airlock{ - id = "casinodorm3"; - name = "door lock"; - pixel_x = 24; - specialfunctions = 4 - }, -/obj/random/plushie, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"Ok" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood/sif/broken, -/area/submap/lonehome) -"Om" = ( -/obj/structure/table/standard, -/obj/item/material/ashtray, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"On" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Op" = ( -/obj/machinery/door/airlock/silver{ - id_tag = "casinodorm6"; - name = "Dorm room 6" - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"Ou" = ( -/obj/machinery/light/small, -/turf/simulated/floor/outdoors/dirt, -/area/casino/casino_ship/wing_left) -"Ov" = ( -/obj/structure/flora/grass/brown, -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"OB" = ( -/obj/effect/floor_decal/arrows{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"OC" = ( -/obj/structure/table/bench/marble, -/obj/item/flame/candle/candelabra/everburn{ - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"OD" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"OH" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship) -"OM" = ( -/obj/structure/prop/machine/conduit/starts_on, -/turf/simulated/floor/redgrid/animated, -/area/casino/casino_ship) -"ON" = ( -/obj/structure/flora/tree/winter1, -/obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"OQ" = ( -/obj/structure/bed/chair/sofa/yellow{ - dir = 1 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"OS" = ( -/obj/machinery/disposal/deliveryChute, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"OU" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"OV" = ( -/obj/structure/flora/log1, -/turf/simulated/floor/water/deep, -/area/surface/outside/plains/mountains) -"Pb" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/effect/floor_decal/spline/fancy{ - dir = 1; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"Pc" = ( -/obj/structure/flora/grass/brown, -/obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"Pd" = ( -/turf/simulated/floor/tiled/freezer, -/area/submap/lonehome) -"Pf" = ( -/obj/structure/bed/chair/oldsofa/left{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"Ph" = ( -/obj/structure/casino_table/blackjack_l{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"Pj" = ( -/obj/structure/closet/grave/dirthole{ - opened = 0 - }, -/obj/item/spacecasinocash/c500, -/obj/item/spacecasinocash/c100, -/obj/item/spacecasinocash/c100, -/obj/item/casino_platinum_chip, -/obj/item/storage/wallet/casino, -/obj/item/clothing/head/crown, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Pp" = ( -/obj/structure/table/fancyblack, -/obj/machinery/wheel_of_fortune, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"Pq" = ( -/obj/structure/closet/cabinet, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Ps" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 4; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"Pt" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"Pu" = ( -/obj/structure/table/sifwoodentable, -/obj/item/storage/fancy/blackcandle_box, -/obj/item/flame/lighter/random, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Pw" = ( -/obj/machinery/door/window/northleft, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"Pz" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/sink/kitchen{ - pixel_y = 17 - }, -/turf/simulated/floor/tiled/white, -/area/submap/lonehome) -"PB" = ( -/obj/structure/flora/grass/both, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"PE" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/clothing/suit/armor/alien, -/obj/item/storage/belt/utility/alien, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"PH" = ( -/obj/structure/table/reinforced, -/obj/item/storage/pill_bottle/dice_nerd{ - pixel_x = -8; - pixel_y = -8 - }, -/obj/item/storage/pill_bottle/dice_nerd, -/obj/item/storage/pill_bottle/dice_nerd{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"PK" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "Casino_North"; - pixel_x = -32; - tag_exterior_door = "Casino_North_Exterior"; - tag_interior_door = "Casino_North_Interior" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/casino/casino_ship) -"PL" = ( -/obj/structure/closet/secure_closet/paramedic{ - req_access = list(202) - }, -/turf/simulated/floor/tiled/white, -/area/casino/casino_ship/wing_left) -"PM" = ( -/obj/machinery/door/airlock/silver{ - name = "Casino cockpit"; - req_one_access = list(300) - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"PN" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/simulated/floor/tiled/dark, -/area/casino/casino_ship/wing_right) -"PP" = ( -/turf/simulated/floor/outdoors/mud/sif/planetuse{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"PS" = ( -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/turf/simulated/floor/redgrid/animated, -/area/surface/outside/plains/mountains) -"PU" = ( -/obj/structure/table/glass, -/obj/item/camera, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/casino/casino_ship) -"PW" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/full, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"PY" = ( -/obj/structure/table/gamblingtable, -/obj/structure/stripper_pole{ - anchored = 1 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/casino/casino_ship) -"Qe" = ( -/obj/structure/bed/chair/bar_stool, -/obj/effect/floor_decal/spline/fancy, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"Qg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Qj" = ( -/obj/structure/bed/chair/sofa/left/yellow{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"Qo" = ( -/obj/machinery/light, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"Qp" = ( -/obj/item/spacecasinocash/c200, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"Qq" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"Qr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/disposal/deliveryChute, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Qu" = ( -/obj/structure/flora/log2, -/turf/simulated/floor/water{ - outdoors = 0 - }, -/area/surface/outside/plains/mountains) -"Qy" = ( -/obj/structure/table/marble, -/obj/machinery/light/floortube/flicker{ - pixel_y = 5 - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"QB" = ( -/obj/machinery/door/airlock/silver{ - id_tag = "casinodorm2"; - name = "Dorm room 2" - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"QD" = ( -/obj/structure/prop/statue/angel{ - desc = "Further South, below once roaring thrusters, the treasure lays beyond an unsteady gaze, in front of a place of fire."; - name = "Flowered angel statue" - }, -/turf/simulated/floor/outdoors/grass/sif/planetuse, -/area/surface/outside/plains/mountains) -"QE" = ( -/obj/machinery/button/remote/blast_door{ - id = "Casinodormshutters4"; - name = "Casino Dorm Shutters"; - pixel_x = 24; - pixel_y = -6; - req_access = null - }, -/obj/structure/bed/double/padded, -/obj/item/bedsheet/hosdouble, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"QH" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"QO" = ( -/obj/machinery/autolathe, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"QP" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/casino/casino_ship) -"QS" = ( -/turf/simulated/floor/tiled/dark, -/area/casino/casino_ship/wing_left) -"Ra" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/solidrock{ - block_tele = 1 - }, -/area/surface/outside/plains/mountains) -"Re" = ( -/obj/structure/table/sifwoodentable, -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/plushie/deer, -/obj/item/flame/candle/candelabra/everburn{ - pixel_y = 8 - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Ri" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"Rk" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Rn" = ( -/obj/structure/table/standard, -/obj/item/material/ashtray, -/obj/machinery/recharger, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"Rp" = ( -/turf/simulated/floor/water/deep{ - outdoors = 0 - }, -/area/surface/outside/plains/mountains) -"Ru" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"RB" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"RC" = ( -/obj/structure/flora/rocks2, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"RD" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/clothing/accessory/chameleon, -/obj/item/clothing/glasses/monocoole, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"RG" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering center"; - req_access = list(203); - req_one_access = null - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_left) -"RH" = ( -/obj/structure/bed/chair/oldsofa{ - dir = 1 - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"RI" = ( -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"RL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "Casinodormshutters6"; - layer = 3.5; - name = "Casino Privacy shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship/dorms) -"RQ" = ( -/obj/structure/boulder, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"RR" = ( -/obj/structure/flora/log2, -/turf/simulated/floor/water/hotspring{ - can_atmos_pass = 0; - color = "cyan"; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"RS" = ( -/obj/fiftyspawner/gold, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"RX" = ( -/obj/structure/bed/chair/oldsofa/right{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"RY" = ( -/obj/structure/flora/tree/jungle, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"Sb" = ( -/obj/structure/table/glass, -/obj/machinery/button/remote/airlock{ - id = "casinodorm5"; - name = "door lock"; - pixel_x = 24; - specialfunctions = 4 - }, -/obj/random/plushie, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"Se" = ( -/obj/item/clothing/ears/earring/dangle/diamond, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"Sf" = ( -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/water/deep/pool, -/area/casino/casino_ship) -"Sg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Sp" = ( -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "Casinoboth 2"; - name = "Casino Shutter"; - pixel_x = -4; - pixel_y = -29; - req_one_access = list(200) - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "Casinoprizes"; - name = "Prize Shutters"; - pixel_x = 28; - pixel_y = 4; - req_one_access = list(200) - }, -/obj/structure/table/marble, -/obj/item/modular_computer/laptop/preset/custom_loadout/hybrid, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"Sq" = ( -/obj/machinery/button/remote/blast_door{ - id = "Casinodormshutters2"; - name = "Casino Dorm Shutters"; - pixel_x = 24; - pixel_y = -6 - }, -/obj/structure/bed/double/padded, -/obj/item/bedsheet/hosdouble, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"Sr" = ( -/obj/item/spacecasinocash/c100, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"St" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Sx" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/toolbox/electrical{ - pixel_y = 7 - }, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/plating, -/area/submap/lonehome) -"Sy" = ( -/turf/simulated/floor/wood/sif, -/area/surface/outside/plains/outpost) -"SB" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/water/deep/pool, -/area/casino/casino_ship) -"SC" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"SD" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"SF" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "casino1_pump" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/casino/casino_ship) -"SL" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/light, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"SO" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"SQ" = ( -/obj/effect/map_effect/perma_light/gateway, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"SX" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"SZ" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/turcarpet, -/area/submap/lonehome) -"Tf" = ( -/obj/structure/table/gamblingtable, -/obj/item/deck/cah/black, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"Tg" = ( -/obj/structure/bed/chair/oldsofa/right{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"Tm" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Tp" = ( -/obj/structure/girder/displaced, -/turf/simulated/floor/plating, -/area/surface/outside/plains/outpost) -"Tr" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "casino2_pump" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/casino/casino_ship) -"Tt" = ( -/obj/structure/flora/tree/pine{ - icon_state = "pine_3" - }, -/obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"Tv" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/appliance/mixer/candy, -/turf/simulated/floor/tiled/white, -/area/submap/lonehome) -"Tw" = ( -/obj/structure/shuttle/engine/router, -/turf/simulated/wall/golddiamond, -/area/casino/casino_ship/wing_right) -"Tx" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"TG" = ( -/obj/structure/flora/tree/sif, -/turf/simulated/floor/outdoors/mud/sif/planetuse{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"TJ" = ( -/obj/structure/flora/log1, -/turf/simulated/floor/water/deep, -/area/surface/outside/plains/outpost) -"TK" = ( -/obj/structure/table/glass, -/obj/machinery/button/remote/airlock{ - id = "casinodorm6"; - name = "door lock"; - pixel_x = 24; - specialfunctions = 4 - }, -/obj/random/plushie, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"TM" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 2; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"TP" = ( -/obj/structure/disposalpipe/segment, -/obj/random/medical, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"TV" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/spline/fancy{ - dir = 8; - icon_state = "spline_fancy_cee" - }, -/turf/simulated/floor/tiled/techfloor, -/area/casino/casino_ship) -"TW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/crystal/ice, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"TX" = ( -/obj/machinery/computer/transhuman/resleeving{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/casino/casino_ship/wing_left) -"TY" = ( -/obj/structure/bed/chair/comfy/purp, -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"TZ" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/gun/energy/locked/frontier, -/obj/item/gun/energy/floragun, -/obj/item/gun/energy/alien, -/obj/item/gun/energy/temperature, -/obj/item/gun/energy/particle/cannon, -/obj/item/gun/energy/particle/advanced, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"Ub" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/casino/casino_ship/wing_left) -"Uc" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 8; - icon_state = "spline_fancy_corner" - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"Ud" = ( -/mob/living/simple_mob/animal/passive/penguin{ - hovering = 1 - }, -/turf/simulated/floor/outdoors/ice, -/area/surface/outside/plains/outpost) -"Ue" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"Ug" = ( -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt, -/area/surface/outside/plains/outpost) -"Uj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/maintenance/clean, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Uk" = ( -/obj/structure/flora/tree/jungle, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"Ul" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/item/material/kitchen/rollingpin, -/obj/item/material/knife/butch, -/obj/machinery/light/floortube/flicker{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled/white, -/area/submap/lonehome) -"Um" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Un" = ( -/obj/structure/fireplace{ - desc = "An old abandoned fireplace. With a pair of googly eyes glued on it?. . ." - }, -/obj/item/pickaxe/silver, -/turf/simulated/floor/wood/sif, -/area/surface/outside/plains/outpost) -"Uo" = ( -/obj/item/clothing/head/fancy_crown, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"Uv" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 6 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"Uw" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medbay"; - req_access = list(202); - req_one_access = null - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_left) -"Ux" = ( -/turf/simulated/floor/outdoors/ice/dark_smooth{ - outdoors = 0 - }, -/area/surface/outside/plains/mountains) -"Uz" = ( -/obj/structure/disposalpipe/segment, -/mob/living/simple_mob/animal/giant_spider/nurse, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"UF" = ( -/obj/structure/closet, -/obj/item/clothing/under/rank/bartender, -/obj/item/clothing/under/rank/bartender, -/obj/item/clothing/under/rank/bartender, -/obj/item/clothing/under/rank/bartender, -/obj/item/clothing/under/rank/bartender, -/obj/item/clothing/under/rank/bartender/skirt, -/obj/item/clothing/under/rank/bartender/skirt, -/obj/item/clothing/under/rank/bartender/skirt, -/obj/item/clothing/under/rank/bartender/skirt, -/obj/item/clothing/under/rank/bartender/skirt, -/obj/item/clothing/under/sexybunny_white/sexybunny_black, -/obj/item/clothing/under/sexybunny_white/sexybunny_black, -/obj/item/clothing/under/sexybunny_white/sexybunny_black, -/obj/item/clothing/under/sexybunny_white/sexybunny_black, -/obj/item/clothing/under/sexybunny_white/sexybunny_black, -/obj/item/clothing/under/sexybunny_white, -/obj/item/clothing/under/sexybunny_white, -/obj/item/clothing/under/sexybunny_white, -/obj/item/clothing/under/sexybunny_white, -/obj/item/clothing/under/sexybunny_white, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"UH" = ( -/obj/structure/table/standard, -/obj/item/storage/box/donut, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"UK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"UN" = ( -/obj/structure/flora/tree/pine{ - icon_state = "pine_2" - }, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"UT" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "screen" - }, -/turf/simulated/wall/golddiamond, -/area/casino/casino_ship) -"UU" = ( -/turf/simulated/floor/wood/sif/broken{ - outdoors = 1 - }, -/area/surface/outside/plains/outpost) -"UV" = ( -/mob/living/simple_mob/animal/space/goose/domesticated{ - hovering = 1 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"UW" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/red/bordercorner, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"UX" = ( -/obj/structure/table/standard, -/obj/item/material/ashtray, -/obj/item/material/ashtray, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"Vd" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/outdoors/grass/heavy{ - outdoors = 0 - }, -/area/casino/casino_ship) -"Vg" = ( -/obj/structure/closet/secure_closet/bar{ - locked = 0 - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Vj" = ( -/obj/effect/mist, -/turf/simulated/floor/water/pool, -/area/casino/casino_ship) -"Vm" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/reagent_containers/glass/beaker/bluespace, -/obj/item/reagent_containers/glass/beaker/noreact, -/obj/item/surgical/scalpel/manager, -/obj/item/weldingtool/experimental, -/obj/item/reagent_containers/spray/chemsprayer, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"Vo" = ( -/obj/machinery/disposal/deliveryChute, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Vv" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_y = 10 - }, -/obj/item/pen, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"VF" = ( -/obj/machinery/door/airlock/security{ - req_access = list(201); - req_one_access = list() - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_right) -"VG" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"VI" = ( -/obj/structure/flora/grass/brown, -/obj/structure/flora/grass/green, -/obj/structure/flora/tree/dead, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"VK" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"VL" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 8; - icon_state = "spline_fancy_corner" - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 4; - icon_state = "spline_fancy_corner" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"VN" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Security wing" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/casino/casino_ship/wing_right) -"VR" = ( -/turf/simulated/floor/tiled/techfloor, -/area/casino/casino_ship/wing_left) -"VT" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"VV" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - name = "shower door" - }, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship) -"VX" = ( -/obj/structure/bed/chair/comfy/purp, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"VY" = ( -/obj/item/clothing/shoes/dress, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"Wd" = ( -/obj/effect/map_effect/interval/effect_emitter/steam, -/turf/simulated/floor/water/hotspring{ - can_atmos_pass = 0; - color = "cyan"; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"We" = ( -/obj/item/shovel/wood, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"Wj" = ( -/obj/structure/table/sifwoodentable, -/obj/item/flame/candle/candelabra/everburn{ - pixel_y = 8 - }, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Wm" = ( -/obj/structure/table/marble, -/obj/item/universal_translator, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Wn" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = -28 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"Wo" = ( -/obj/structure/bed/chair/sofa/yellow{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"Ws" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"Wt" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship) -"Wu" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"Ww" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"WJ" = ( -/obj/structure/bed/chair/comfy/purp{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"WL" = ( -/turf/simulated/floor/wood/sif/broken, -/area/surface/outside/plains/outpost) -"WO" = ( -/obj/structure/bed/chair/bar_stool, -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"WQ" = ( -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/submap/lonehome) -"WS" = ( -/obj/machinery/door/airlock/silver{ - name = "Lounge"; - req_one_access = list(300) - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"WT" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_alc/full, -/turf/simulated/floor/wood/sif, -/area/submap/lonehome) -"WW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"WX" = ( -/obj/structure/boulder, -/obj/structure/barricade, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Xf" = ( -/obj/structure/flora/tree/winter, -/obj/effect/zone_divider, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"Xi" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/dice, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"Xv" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"Xx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"XB" = ( -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"XD" = ( -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"XE" = ( -/obj/item/clothing/ears/earring/stud/diamond, -/turf/simulated/floor/flock, -/area/surface/outside/plains/mountains) -"XF" = ( -/obj/structure/bed/chair/comfy/purp{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/casino/casino_ship/dorms) -"XG" = ( -/obj/structure/flora/log2, -/turf/simulated/floor/water, -/area/surface/outside/plains/mountains) -"XH" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"XO" = ( -/obj/effect/zone_divider, -/turf/simulated/floor/water, -/area/surface/outside/plains/outpost) -"XP" = ( -/obj/structure/flora/tree/pine{ - icon_state = "pine_3" - }, -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"XQ" = ( -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/outpost) -"XS" = ( -/obj/effect/blocker, -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"XW" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"XX" = ( -/obj/structure/closet/secure_closet/medical_wall{ - name = "O- Blood Locker"; - pixel_x = -32; - req_access = list(202) - }, -/turf/simulated/floor/tiled/white, -/area/casino/casino_ship/wing_left) -"XY" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/obj/random/maintenance/clean, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"XZ" = ( -/obj/structure/table/reinforced, -/obj/item/stack/material/glass{ - amount = 50; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stack/material/glass/reinforced{ - amount = 50 - }, -/obj/item/stack/material/plastic{ - amount = 50 - }, -/obj/item/stack/material/wood{ - amount = 50 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"Ya" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/machinery/meter, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "Casino_South"; - pixel_x = -32; - tag_exterior_door = "Casino_South_Exterior"; - tag_interior_door = "Casino_South_Interior" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/casino/casino_ship) -"Yf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"Yg" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"Yh" = ( -/obj/structure/flora/tree/winter1, -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow/sif/planetuse{ - temperature = 293.15 - }, -/area/surface/outside/plains/outpost) -"Yj" = ( -/obj/machinery/slot_machine, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"Yk" = ( -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/turf/simulated/floor/redgrid/animated, -/area/surface/outside/plains/mountains) -"Ym" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Yn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/casino/casino_ship) -"Yq" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/salvageable/console_os{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"Ys" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"Yz" = ( -/obj/structure/prop/statue/stump_plaque, -/obj/item/bone/skull{ - color = "white"; - desc = "A skull. Judging by the shape and size, you'd guess that it might be human, it seems to be made of diamond. You have a feeling that this may be a key"; - name = "Diamond encrusted skull"; - pixel_x = -1; - pixel_y = 8 - }, -/turf/simulated/floor/redgrid/animated, -/area/surface/outside/plains/mountains) -"YE" = ( -/obj/structure/table/reinforced, -/obj/item/material/ashtray/bronze, -/obj/item/material/ashtray/bronze, -/obj/item/material/ashtray/bronze, -/obj/item/material/ashtray/bronze, -/obj/item/material/ashtray/bronze, -/obj/item/material/ashtray/bronze, -/obj/machinery/recharger, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"YF" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/communicator, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"YI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/random/maintenance/clean, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"YL" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/casino/casino_ship/wing_left) -"YM" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/effect/landmark/costume/commie, -/obj/effect/landmark/costume/gladiator, -/obj/effect/landmark/costume/pirate, -/obj/effect/landmark/costume/sexymime, -/obj/item/clothing/suit/storage/hooded/costume/ian, -/obj/item/clothing/head/hood/carp_hood, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"YN" = ( -/obj/structure/table/bench/sifwooden, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - external_pressure_bound = 140; - external_pressure_bound_default = 140; - icon_state = "map_vent_out"; - pressure_checks = 0; - pressure_checks_default = 0; - use_power = 1 - }, -/obj/effect/mist, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"YR" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"YV" = ( -/obj/structure/bed/chair/oldsofa/left{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"YW" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"YX" = ( -/obj/structure/bed/chair/sofa/right/yellow, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"Za" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Zc" = ( -/obj/structure/casino_table/roulette_chart, -/obj/machinery/light/floortube/flicker{ - pixel_y = 5 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"Zd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/disposal/deliveryChute, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Zj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "Casinodormshutters5"; - layer = 3.5; - name = "Casino Privacy shutters" - }, -/turf/simulated/floor, -/area/casino/casino_ship/dorms) -"Zl" = ( -/obj/structure/bed/chair/comfy/red{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"Zn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_left) -"Zq" = ( -/obj/machinery/door/window/westright{ - dir = 2; - layer = 3.1; - name = "Both access"; - req_access = list(200) - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "Casinoboth 2"; - layer = 3.2; - name = "Exchange booth shutters 2" - }, -/turf/simulated/floor/carpet/blucarpet, -/area/casino/casino_ship) -"Zs" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "Casinobar"; - layer = 3.1; - name = "Casino bar shutter" - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"Zt" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/casino/casino_ship/wing_left) -"Zu" = ( -/obj/random/medical, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Zv" = ( -/obj/machinery/disposal/deliveryChute, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/outdoors/dirt{ - can_atmos_pass = 0; - icon_state = "ice_dark"; - outdoors = 0; - temperature = 300 - }, -/area/surface/outside/plains/mountains) -"Zw" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/casino/casino_ship/dorms) -"Zx" = ( -/obj/machinery/light{ - dir = 4; - layer = 3 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/casino/casino_ship) -"Zz" = ( -/obj/machinery/light/flamp, -/turf/simulated/floor/grass, -/area/casino/casino_ship) -"ZB" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"ZF" = ( -/obj/structure/bed/chair/sofa/right/yellow{ - dir = 4 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/casino/casino_ship) -"ZG" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"ZL" = ( -/obj/effect/zone_divider, -/turf/unsimulated/mineral, -/area/surface/outside/plains/mountains) -"ZM" = ( -/obj/structure/table/sifwoodentable, -/obj/item/bikehorn/rubberducky, -/obj/effect/mist, -/turf/simulated/floor/wood, -/area/casino/casino_ship) -"ZP" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"ZR" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/red/bordercorner, -/turf/simulated/floor/tiled, -/area/casino/casino_ship/wing_right) -"ZW" = ( -/obj/structure/table/glass, -/obj/item/toy/eight_ball/conch, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/casino/casino_ship) -"ZZ" = ( -/obj/structure/table/bench/sifwooden, -/obj/machinery/light, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 - }, -/obj/effect/mist, -/turf/simulated/floor/wood, -/area/casino/casino_ship) - -(1,1,1) = {" -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -My -My -My -My -My -My -My -My -My -My -My -My -My -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -hP -"} -(2,1,1) = {" -aw -wo -My -My -My -My -My -My -ts -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -My -My -My -My -JI -Ra -Ra -Kf -Kf -Kf -Kf -Kf -Kf -Kf -Kf -Kf -Kf -Kf -Kf -Kf -Kf -Kf -Kf -Kf -Kf -Kf -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -OU -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(3,1,1) = {" -aw -mc -mc -mc -My -My -My -My -aS -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -My -XB -My -XB -XB -mh -XB -XB -My -XB -XB -XB -kt -qE -Kf -of -XB -tc -kt -qE -Kf -qE -vW -qE -yG -qE -Ra -qE -Fq -qE -qE -qE -Ra -of -XB -XB -XB -XB -JI -qE -qE -qE -qE -qE -Ra -qE -Fq -qE -qE -qE -Ra -qE -qE -qE -qE -qE -Ra -qE -qE -yG -qE -qE -qE -OU -XB -nR -XB -XB -My -XB -XB -XB -JI -qE -Ra -qE -qE -Es -qE -qE -Ra -qE -qE -OU -XB -jf -My -My -My -My -My -My -My -zq -zq -zq -zq -My -My -My -My -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(4,1,1) = {" -av -mN -mN -mc -mc -mc -mc -My -ts -My -mc -mc -mc -mc -mc -mc -mc -mc -mc -My -ps -XB -My -XB -XB -XB -mh -XB -My -Zv -qE -qE -qE -qE -Kf -qE -qE -qE -qE -qE -Kf -nr -XB -XB -KN -XB -My -XB -KN -XB -XB -OD -My -XB -XB -XB -mL -XB -mp -XB -XB -tc -XB -XB -My -XB -KN -mp -XB -XB -My -XB -XB -XB -XB -MQ -Ra -qE -qE -AA -qE -qE -qE -qE -qE -AA -qE -qE -Ra -qE -qE -qE -qE -qE -Ra -of -XB -KN -XB -XB -My -XB -XB -XB -XB -XB -My -My -My -My -My -My -My -zq -Lh -rW -zq -My -My -My -My -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(5,1,1) = {" -av -mN -mN -mN -mN -mN -mc -mc -aS -My -mc -mc -mc -My -My -My -My -My -My -My -mh -ps -mh -ps -XB -kq -XB -MQ -Ra -qE -qE -TW -qE -NY -Kf -ke -XB -kq -XB -mp -hP -XB -Zu -kq -KN -oL -Ra -NW -KN -kq -XB -KN -My -XB -XB -kq -XB -XB -XB -XB -XB -kq -XB -XB -My -XB -KN -kq -XB -XY -Ra -qE -IT -TW -qE -IT -Ra -qE -qE -AN -qE -qE -TP -qE -qE -DM -qE -qE -Ra -nr -XB -kq -XB -XB -My -XB -XB -sO -XB -XB -My -XB -XB -kq -XB -XB -My -My -My -My -zq -zq -zq -zq -PS -PS -zq -My -My -My -My -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(6,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -aS -My -mc -mc -mc -My -yp -qE -qE -xk -qE -Ra -Gn -Ju -Ra -qE -qE -qE -qE -qE -Ra -qE -qE -qE -qE -Qg -Kf -qE -JG -qE -qE -qE -Kf -qE -qE -qE -Qg -qE -Ra -qE -Qg -qE -qE -Qg -Ra -of -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -My -sl -Qg -IT -qE -qE -Ra -of -XB -XB -XB -XB -My -XB -XB -KN -XB -XB -XB -XB -XB -KN -XB -XB -My -XB -XB -Bu -XB -oL -Ra -qE -vW -Qg -qE -Ng -My -XB -XB -XB -XB -XB -My -My -My -My -zq -RS -DP -Qp -XE -RS -zq -zq -zq -zq -My -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -Un -rk -mN -cC -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -Dh -ol -hP -"} -(7,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -aS -My -My -mc -mc -My -XB -mh -XB -XB -XB -My -Ck -Ck -My -XB -XB -Tm -qE -qE -Ra -qE -Do -qE -qE -Qg -Kf -qE -qE -qE -Cz -qE -Kf -qE -qE -fi -KN -XB -hP -XB -KN -XB -Um -KN -My -XB -XB -XB -Zu -XB -XB -XB -Zu -XB -XB -MQ -Ra -qE -AA -qE -On -qE -Ra -qE -qE -eD -qE -qE -Ra -qE -qE -AA -IT -qE -qE -qE -qE -Qg -qE -qE -Ra -qE -qE -qE -QH -qE -Ra -qE -xV -KN -XB -XB -My -XB -XB -XB -XB -XB -XD -XD -XD -My -zq -fg -jx -Lw -Nb -VY -EK -XD -zq -zq -My -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -Sy -WL -rk -sy -mN -mN -wt -mN -cC -mc -mc -mc -mc -mc -mc -mc -mc -mc -Dh -Pj -hP -"} -(8,1,1) = {" -av -mN -mN -mN -hX -mN -mN -mN -aS -mc -My -My -mc -My -Zv -qE -TW -Gn -qE -xk -Gn -Gn -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Kf -ck -Kf -Kf -ck -Kf -Kf -Kf -Kf -ck -Kf -Kf -Kf -Kf -Kf -ck -Kf -Kf -Kf -ck -Ra -vk -vk -Ra -nr -XB -Bu -XB -XB -kq -XB -XB -XB -XB -XB -My -My -nC -My -nC -My -My -My -My -nC -My -My -My -OS -XB -KN -XB -XB -kq -XB -XB -KN -XB -XB -My -My -My -My -nC -My -My -My -My -nC -My -My -My -XB -XB -kq -XB -XB -XD -XD -vw -My -Eg -tm -XD -zq -Uo -EK -FL -EK -hr -zq -My -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -WL -rk -mN -tb -cC -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(9,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mc -mc -My -My -My -XB -XB -mh -XB -ps -My -Ck -Ck -My -XB -XB -JI -qE -qE -Ra -qE -hU -qE -qE -Qg -Kf -qE -qE -qE -kI -qE -qE -qE -qE -qE -Qg -qE -Kf -qE -Qg -kR -Qg -Qg -Ra -qE -qE -qE -qE -qE -qE -qE -qE -qE -qE -qE -Ra -Sg -Qg -OU -KN -XB -My -XB -XB -qk -XB -oL -Ra -Qg -qE -Qg -qE -oG -st -qE -qE -Qg -qE -qE -Ra -qE -aC -qE -AA -qE -Ra -qE -qE -Bg -qE -qE -Ra -nr -XB -XB -XB -XB -XD -XD -XD -My -zq -jx -im -Se -jx -Ga -EK -XD -Fu -zq -My -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -We -mN -rk -mN -cC -wt -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(10,1,1) = {" -av -mN -mN -cC -mN -mN -mN -mN -bl -mN -mc -mc -My -My -yp -qE -qE -qE -qE -Ra -Gn -zy -Ra -qE -xk -qE -qE -qE -Ra -qE -qE -JG -qE -Qg -Kf -qE -qE -qE -qE -qE -qE -qE -qE -qE -Qg -qE -Kf -qE -Qg -Qg -Qg -Qg -Ra -qE -qE -qE -qE -Gq -qE -qE -qE -qE -qE -qE -Ra -AA -Qg -qE -Qg -qE -Ra -nr -XB -KN -XB -XB -My -KN -XB -KN -XB -mp -XB -Zu -XB -KN -XB -oL -Ra -qE -AA -qE -AA -qE -Ra -NW -Bu -XB -XB -XB -My -XB -XB -XB -XB -XB -My -My -My -My -zq -ER -Sr -RS -DP -XD -zq -zq -Fu -zq -My -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -cC -cC -mN -mN -cC -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(11,1,1) = {" -av -mN -eG -mN -mN -mN -mN -mN -bl -mN -mN -mc -My -My -My -My -My -My -My -My -RQ -ps -mh -ps -XB -kq -XB -MQ -Ra -qE -qE -TW -qE -ip -Kf -qE -qE -TW -qE -qE -qE -qE -qE -TW -Qg -qE -Kf -qE -Qg -DM -Qg -Qg -Ra -qE -qE -TW -qE -qE -qE -qE -qE -TW -qE -qE -Ra -AA -Qg -TW -Qg -qE -Ra -qE -IT -DM -qE -qE -Ra -as -XB -sO -XB -XB -XB -XB -XB -sO -XB -XB -My -Zv -AA -TW -AA -qE -Ra -qE -qE -TW -qE -Ng -My -XB -XB -kq -XB -XB -My -My -My -My -zq -zq -zq -zq -Yk -zK -zq -My -nC -My -My -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -cC -tb -sy -hX -tb -sy -mN -mN -wt -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(12,1,1) = {" -av -mN -mN -mN -mN -hX -mN -mN -bl -mN -mN -mc -mc -mc -My -My -mc -mc -mc -mc -yx -WX -My -XB -mh -mh -XB -XB -My -yp -qE -qE -qE -qE -Kf -of -XB -Bu -XB -mp -XB -XB -XB -XB -KN -XB -hP -OS -KN -KN -KN -MV -My -XB -XB -XB -XB -XB -mp -XB -XB -XB -XB -oL -Ra -AA -AA -qE -AA -Ng -My -XB -XB -KN -mp -XB -My -KN -XB -KN -XB -XB -XB -XB -XB -KN -XB -XB -My -XB -KN -XB -KN -Hr -My -XB -XB -XB -XB -XB -My -tc -XB -XB -XB -XB -My -My -My -My -My -My -My -zq -Lh -Lh -zq -My -nC -My -My -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -cC -mN -mN -mN -mN -aF -aF -hX -mN -mN -mN -mN -mN -hX -mN -mN -mN -cC -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(13,1,1) = {" -av -mN -mN -mN -cC -cC -mN -mN -bl -mN -mN -mN -mN -mc -mc -My -My -My -My -My -Il -RQ -My -XB -XB -Tm -qE -qE -Ra -qE -qE -Cz -qE -qE -Kf -NW -XB -XB -XB -XB -XB -XB -Zu -XB -KN -oL -Kf -AA -AA -Mv -KN -XB -My -XB -eM -XB -mp -XB -Um -XB -XB -XB -XB -MQ -Ra -AA -Qg -Cz -Qg -qE -Ra -of -XB -KN -eM -XB -My -KN -XB -KN -Um -XB -XB -eM -XB -KN -XB -MQ -Ra -VT -AA -qE -AA -AA -Ra -vW -qE -xV -XB -XB -My -XB -eM -XB -re -XB -My -My -My -My -My -My -My -zq -zq -zq -zq -My -nC -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -cC -mN -aF -qm -mN -hX -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(14,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -My -RQ -Jy -My -My -My -My -My -hP -hP -hP -hP -DN -hP -hP -hP -XB -XB -XB -XB -XB -kq -XB -XB -XB -KN -oL -Kf -ck -ck -vk -vk -Ra -Ra -Ra -vk -Ra -Ra -Ra -dQ -Ra -Ra -Ra -Ra -Ra -Ra -dQ -vk -vk -vk -Ra -Ra -Ra -Ra -vk -dQ -Ra -Ra -vk -Ra -vk -vk -Ra -Ra -vk -Ra -vk -Ra -Ra -Ra -np -nC -My -nC -nC -My -My -My -My -My -My -My -My -nC -My -nC -My -My -My -My -My -My -My -My -My -My -My -My -My -nC -mc -mc -mc -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -eG -mN -hX -mN -mN -mN -mN -mN -cC -mN -hY -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(15,1,1) = {" -av -mN -mN -mN -hX -hX -mN -mN -bl -mN -hX -mN -mN -mN -mN -mN -mN -mN -mc -My -yc -yA -My -mc -mc -mc -My -My -mc -mc -mc -cO -mc -mc -hP -XB -XB -mp -XB -XB -XB -XB -XB -XB -KN -XB -hP -KN -KN -YW -AA -qE -Ra -qE -AA -Mq -XB -XB -nC -XB -JI -qE -qE -qE -Ra -AA -Bg -Qg -Nu -qE -Ra -qE -aC -Qg -Qg -qE -Ra -Qg -Es -Qg -Qg -qE -Ra -Qg -qE -Za -XB -XB -My -XB -sw -XB -KN -GU -Ra -Ra -Ra -Ra -Ra -Ra -Ra -Ra -np -My -nC -mc -mc -mc -gr -mc -mc -mc -mc -mc -mc -mc -mc -mc -cO -mc -mN -mN -mN -mN -mN -gN -mN -mN -mN -mN -mN -gN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -gN -mN -mN -mN -mN -mN -gN -mN -mN -Bh -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(16,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -Dx -tN -tN -Dx -mN -mN -mc -mc -My -My -My -My -nC -mc -mc -hP -yp -qE -qE -qE -qE -qE -qE -IT -qE -AA -qE -Kf -AA -AA -Qg -AA -Rk -My -XB -KN -XB -XB -XB -nC -XB -mL -XB -mp -XB -My -KN -XB -KN -KN -mp -My -XB -KN -KN -KN -mp -My -KN -KN -KN -KN -oL -Ra -AA -qE -AA -IT -qE -Ra -nr -XB -XB -KN -KN -My -My -My -My -My -My -My -My -mc -mc -cO -mc -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -hc -mN -dq -mN -mN -mN -mN -mN -gN -mN -mN -mN -mN -gN -mN -mN -mN -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -gN -gN -mN -mN -gN -gN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -XP -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(17,1,1) = {" -av -mN -mN -mN -mN -mN -eG -mN -rc -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -cE -Ra -Ra -Kf -qE -qE -TW -qE -qE -qE -qE -TP -TW -AA -qE -Kf -Lm -AA -AN -AA -qE -Ra -qE -AA -TW -qE -qE -dQ -qE -qE -TW -qE -qE -Ra -Xx -XB -sO -KN -OD -My -Zv -Qg -AN -AA -qE -Ra -Qg -Qg -DM -Qg -qE -Ra -as -XB -sO -XB -OD -My -XB -Bu -kq -KN -JW -My -My -My -My -My -My -My -mc -mc -mN -hc -mN -dq -mN -lF -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -mN -mN -mN -gN -gN -mN -gN -gN -mN -mN -gN -gN -mN -mN -mN -mN -gN -mN -gN -gN -gN -mN -gN -gN -mN -mN -gN -gN -mN -mN -mN -mN -cC -mN -hX -mN -mN -aF -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(18,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -rc -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mc -mc -mc -My -My -XB -XB -XB -XB -XB -Bu -XB -XB -XB -KN -oL -Kf -qE -Qg -Qg -Qg -qE -Ra -NW -KN -XB -Zu -yp -dQ -qE -vW -qE -qE -qE -Ra -AA -qE -Qg -AA -Qg -Ra -qE -Uj -AA -AA -qE -Ra -Bm -KN -KN -KN -XB -My -KN -Bu -KN -XB -KN -My -XB -XB -XB -KN -KN -My -My -My -My -My -My -mc -mc -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -gN -gN -gN -mN -mN -gN -gN -mN -gN -gN -mN -gN -gN -gN -mN -mN -gN -mN -gN -gN -mN -gN -gN -mN -gN -mN -mN -gN -gN -gN -mN -mN -cC -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(19,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -cC -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -My -XB -XB -XB -tc -XB -XB -XB -XB -XB -Lc -XB -hP -XB -ME -KN -KN -XB -My -XB -KN -XB -Um -XB -nC -XB -XB -XB -eM -XB -My -KN -XB -Lc -KN -KN -My -vE -KN -KN -KN -oL -Ra -Qg -AA -AA -xi -eD -Ra -AA -qE -AA -On -AA -Ra -qE -qE -qE -AA -hi -My -My -My -My -My -mc -mc -mN -mN -wt -mN -mN -mN -mN -lF -mN -fB -mN -mN -mN -wt -aF -mN -mN -mN -mN -mN -mN -mN -mN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(20,1,1) = {" -av -mN -mN -hX -mN -mN -mN -mN -bl -mN -mN -dq -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -cC -mN -mN -mN -mN -mN -mN -mc -My -My -My -My -My -hP -hP -hP -hP -hP -hP -hP -hP -hP -My -nC -nC -My -My -My -nC -My -nC -My -nC -My -My -My -nC -My -My -nC -My -My -nC -nC -My -nC -nC -nC -nC -My -My -nC -nC -nC -nC -nC -My -nC -My -nC -nC -nC -My -My -My -My -nC -nC -My -My -My -My -My -mc -mc -mN -mN -mN -mN -mN -cC -mN -lF -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -gN -gN -gN -cp -gN -AO -gN -gN -cp -gN -AO -gN -gN -gN -cp -gN -gN -cp -gN -gN -cp -gN -gN -AO -gN -gN -cp -gN -AO -gN -gN -cp -gN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mc -mc -mc -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(21,1,1) = {" -av -mN -mN -mN -hX -hX -mN -mN -bl -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -My -My -My -My -My -My -My -My -hP -XB -XB -oh -Nk -XB -My -XB -KN -XB -KN -XB -nC -XB -XB -kt -AA -qE -Ra -AA -qE -qE -AA -Hw -XB -KN -sw -KN -KN -XB -My -KN -sw -KN -KN -KN -My -KN -XB -Nk -KN -KN -My -XB -XB -XB -qS -Nk -My -My -My -My -My -mc -mN -mN -mN -mN -fB -mN -mN -cC -lF -mN -mN -aF -mN -mN -mN -mN -wt -mN -cC -mN -mN -mN -mN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -mN -mN -mN -fB -eG -mN -mN -mN -mc -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(22,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mc -mc -My -My -My -My -My -My -My -hP -XB -Zu -XB -XB -oL -Ra -nr -KN -XB -JW -MQ -dQ -qE -qE -qE -AA -qE -Ra -Zd -XB -XB -KN -KN -XB -qk -XB -KN -KN -oL -Ra -Qg -qE -Qg -Qg -Qg -Ra -Qg -IT -qE -YI -Qg -Ra -nr -XB -XB -XB -XB -My -My -My -My -My -mc -mN -mN -mN -mN -mN -wt -mN -mN -lF -mN -cC -mN -mN -mN -mN -fB -aA -mN -mN -mN -mN -mN -mN -ab -ab -dr -dr -dr -cq -cq -dr -dr -dr -cq -cq -ab -dr -dr -dr -dr -dr -dr -dr -dr -dr -hk -eS -eS -ep -ep -ep -eS -eS -ep -ep -ep -hk -hk -gN -mN -fB -mN -mN -mN -aF -mN -mc -mN -mN -mN -mN -hX -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(23,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -sy -Tp -sy -tb -tb -tb -tb -tb -zE -tb -tb -mN -mN -mN -cC -mN -mN -hX -mN -mN -mN -mc -mc -My -My -My -My -My -My -hP -XB -XB -kq -XB -XB -My -Zv -AA -TW -AA -qE -dQ -nr -XB -kq -KN -XB -My -KN -XB -kq -KN -KN -XB -KN -mp -sO -KN -XB -My -Ym -Uz -AN -Qg -YI -Ra -Zd -XB -kq -KN -KN -My -XB -Zu -kq -XB -XB -My -My -My -My -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -XP -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -ab -ab -cq -cq -cq -Ns -Ns -cq -cq -cq -Ns -Ns -Ns -cq -cq -cq -cq -cq -cq -cq -cq -cq -Tw -Tw -Tw -eS -eS -eS -Tw -Tw -eS -eS -eS -hk -hk -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(24,1,1) = {" -av -aF -mN -mN -mN -mN -mN -mN -bl -mN -aF -mN -mN -mN -mN -mN -mN -zE -rk -DL -rk -mN -Sy -Sy -Sy -mN -mN -zE -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -My -My -My -hP -Zv -qE -qE -qE -qE -Ra -qE -AA -qE -AA -qE -dQ -qE -qE -qE -AA -qE -Ra -vr -XB -XB -KN -KN -mp -KN -XB -KN -Eu -XB -My -KN -XB -Eu -KN -GU -Ra -AA -qE -qE -AA -hi -My -XB -XB -XB -Bu -XB -My -My -My -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -fB -mN -mN -eG -fB -mN -cC -mN -mN -wt -mN -mN -gN -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -OM -ac -OM -ac -ac -ac -hk -hk -hk -hk -hk -hk -hk -hk -hk -hk -hk -hk -hk -gN -mN -fB -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(25,1,1) = {" -av -mN -mN -mN -mN -mN -wt -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -tb -DL -tC -mN -WL -WL -Sy -WL -WL -WL -tg -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -hX -mN -mN -mN -mc -gr -My -My -hP -XB -XB -XB -Kc -qE -Ra -On -AA -qE -AA -eD -dQ -qE -qE -On -AA -Rk -My -KN -XB -XB -KN -Ja -XB -KN -mp -KN -KN -XB -My -KN -mp -KN -Lc -KN -My -KN -Tm -qE -AA -AA -Ra -qE -qE -di -XB -XB -My -My -My -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fX -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -gN -ab -bZ -dA -fQ -ab -VR -VR -CC -ab -PL -YL -Ub -ab -jj -eN -lc -eU -eV -eW -li -eN -lm -hk -bX -PN -hk -eH -eH -cP -cP -hk -pm -lU -ic -hk -mN -mN -mN -mN -eG -mN -hX -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(26,1,1) = {" -av -aF -fB -fB -fB -mN -mN -mN -bl -mN -mN -mN -aF -mN -mN -mN -mN -tb -DL -rk -DL -WL -WL -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gr -mc -My -My -hP -hP -My -My -My -My -nC -nC -My -nC -nC -nC -My -My -nC -nC -My -My -KN -XB -mp -KN -KN -kq -KN -XB -qk -KN -XB -My -nC -My -nC -My -nC -My -nC -My -My -nC -nC -My -My -My -My -My -My -My -My -My -mc -mN -mN -fB -dq -mN -mN -wt -mN -cj -mN -lF -aF -mN -mN -mN -mN -mN -mN -mN -fB -wt -mN -mN -mN -gN -ab -cf -dJ -fY -ab -ab -ab -ab -ab -zZ -xX -Mu -ab -be -cQ -ld -aT -bw -zC -aX -cQ -lu -hk -de -jy -hk -eT -lU -il -lU -hk -AS -lU -id -hk -gN -mN -mN -mN -mN -mN -mN -mN -hX -hX -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(27,1,1) = {" -av -aF -gW -cC -mN -mN -mN -mN -bl -mN -fB -cC -mN -mN -mN -eG -mN -tb -WL -mN -WL -WL -sc -Sy -rk -rk -Sy -rk -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -lF -mc -mc -My -My -My -My -My -My -My -KN -KN -nR -KN -tM -dQ -qE -qE -Lm -AA -qE -Ra -Zd -XB -XB -KN -KN -XB -KN -DT -KN -KN -MQ -Ra -Qg -qE -SC -qE -AA -Ra -AA -qE -Mq -KN -KN -My -My -My -My -My -My -My -My -My -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -cC -mN -mN -mN -mN -mN -mN -gW -mN -cC -mN -mN -gN -ab -cg -dJ -gb -ab -Ny -XX -YL -xX -xX -xX -yt -ab -kS -ak -ar -QP -bx -NX -bf -lj -lo -hk -bA -yb -hk -hk -IJ -hk -hk -hk -qf -lU -mJ -hk -gN -mN -mN -mN -mN -eG -mN -mN -cC -mN -hX -mN -mN -cC -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(28,1,1) = {" -av -cC -mN -mN -cC -mN -fB -mN -bl -mN -fB -mN -mN -aF -mN -mN -mN -tb -WL -mN -sy -mN -rk -WL -WL -mN -Sy -Sy -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -lF -mN -mc -mc -My -My -My -My -My -My -KN -KN -KN -KN -KN -nC -XB -XB -XB -KN -oL -Ra -AA -qE -qE -AA -AA -qE -AA -qE -AA -AA -qE -Ra -Qg -qE -qE -qE -hi -My -KN -mp -XB -KN -MV -My -My -My -My -My -My -My -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -ab -cl -dJ -gc -ab -JC -xX -xX -xX -xX -xX -Ub -ab -cu -eF -dc -bN -bN -bN -cv -eF -fd -hk -aq -lU -eR -lU -lU -ur -FZ -hk -ng -lU -if -hk -gN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -hX -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(29,1,1) = {" -av -mN -mN -mN -aF -cC -fB -fB -bl -fB -mN -cC -mN -mN -mN -mN -mN -tb -mN -mN -mN -mN -rk -mN -mN -mN -mN -tb -tb -tb -tb -tb -tb -tb -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mc -mc -My -My -My -My -My -My -Qr -AA -AN -AA -AA -dQ -qE -qE -TW -AA -qE -Ra -AA -qE -TW -AA -AA -qE -AA -qE -AN -AA -Ng -My -KN -XB -kq -XB -KN -My -Vo -XB -kq -KN -XB -My -My -My -My -My -My -My -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -ab -cw -dR -dJ -ab -tO -xR -xX -sI -Bv -TX -Zt -ab -eh -eF -jX -bN -bN -bN -CT -eF -fh -hk -bn -yb -hk -SX -lU -BX -ee -hk -qe -lU -sV -hk -gN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(30,1,1) = {" -av -mN -fB -fB -mN -mN -mN -aF -rc -fB -mN -cC -mN -mN -mN -mN -mN -zE -mN -mN -mN -mN -rk -tb -mN -rk -rk -tb -Sy -rk -Sy -rk -mN -sy -tg -mN -mN -mN -mN -mN -mN -hX -mN -lF -mN -mN -mc -My -My -My -My -My -My -KN -KN -KN -KN -KN -cE -NW -XB -XB -KN -XB -My -uQ -qE -qE -Qg -Qg -qE -Qg -qE -Qg -Qg -qE -Ra -Qg -IT -qE -qE -Qg -Ra -qE -qE -qE -HX -mp -My -My -My -My -My -mc -mc -mc -mN -mN -mN -mN -eG -mN -mN -mN -eG -mN -mN -cC -lF -mN -mN -mN -mN -fB -fB -mN -mN -mN -mN -mN -mN -mN -gN -ab -ab -ab -gm -ab -ab -ab -Uw -ab -ab -ab -ab -ab -em -rd -jX -bN -bN -bN -CT -rd -fj -hk -de -jy -hk -Vv -lU -UW -ew -hk -yR -lU -Gb -hk -gN -mN -mN -fB -mN -hX -mN -mN -mN -mN -mN -cC -mN -mN -cC -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(31,1,1) = {" -av -aG -aG -aG -mN -mN -fB -mN -bl -aF -Lx -fB -mN -mN -mN -aF -mN -tb -mN -WL -mN -mN -mN -tb -Sy -Sy -WL -mN -WL -WL -Sy -Sy -rk -Sy -tb -mN -mN -mN -mN -eG -mN -mN -mN -lF -hX -mN -mc -My -My -My -My -My -My -KN -KN -Nx -AA -AA -Ra -qE -qE -qE -AA -On -Ra -AA -Do -Cz -AA -WW -qE -AA -On -AA -AA -qE -Ra -Bm -XB -Tm -qE -AA -Ra -qE -qE -NW -XB -XB -My -mc -mc -mc -mc -mc -ki -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -gN -ab -ab -dT -dJ -kD -Zn -BD -dJ -ab -Ed -uj -Ll -ab -xH -XW -jX -bN -dl -bN -CT -XW -fk -hk -vv -PN -hk -yb -pp -IH -pv -hk -hk -Bk -hk -hk -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -qO -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(32,1,1) = {" -av -aG -aG -aG -aG -aG -aG -aG -bl -mN -mN -cC -mN -mN -mN -aF -mN -tb -mN -WL -rk -mN -rk -tb -Sy -WL -rk -mN -WL -WL -rk -mN -WL -WL -tb -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mc -My -My -My -My -My -My -nC -nC -nC -nC -nC -My -My -My -My -nC -nC -My -nC -nC -nC -nC -My -My -nC -nC -nC -nC -My -My -nC -My -My -My -nC -My -My -My -My -My -My -My -mc -mc -RQ -EO -by -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -xr -mN -lF -cC -dq -fB -mN -cC -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -ab -dX -dJ -dJ -dJ -dJ -dJ -RG -dJ -dJ -XZ -ab -ey -Xi -jX -bN -aJ -bN -CT -mQ -fm -hk -hk -hk -hk -ui -lU -JH -yC -Hq -vj -ZR -hk -mN -mN -mN -mN -mN -mN -mN -wt -mN -hX -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(33,1,1) = {" -av -aG -aG -aG -aG -aG -aG -aG -bl -mN -mN -mN -cC -mN -fB -mN -mN -tb -tb -tb -tb -tb -tb -tb -rk -WL -WL -mN -mN -WL -rk -mN -WL -WL -tb -mN -mN -mN -mN -cC -mN -mN -mN -lF -mN -mN -mc -My -My -My -My -My -My -KN -sw -KN -Nk -KN -My -XB -XB -JI -AA -AA -Ra -AA -Bg -AA -AA -qE -Ra -AA -vr -KN -KN -MQ -Ra -Qg -qE -qE -Mq -KN -My -My -My -mc -mc -Od -Od -Od -Od -Od -Od -XQ -mN -mN -mN -mN -mN -mN -eG -mN -fB -mN -cC -mN -mN -mN -lF -aF -mN -mN -mN -wt -mN -mN -fB -mN -mN -mN -mN -mN -eG -mN -ab -ab -go -lR -MG -dJ -qs -ab -MW -dJ -QO -ab -eB -Xv -jX -bN -aM -bN -CT -Xv -fn -hk -AU -IK -hk -xb -lU -Ri -Ri -lU -py -Hp -hk -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(34,1,1) = {" -av -aH -aG -aH -aH -Li -aG -aG -br -aG -aG -aG -mN -mN -Lx -mN -fB -mN -mN -mN -mN -mN -mN -sy -rk -mN -sy -tb -mN -rk -Sy -Sy -Sy -Sy -tb -mN -mN -mN -mN -cC -mN -mN -mN -lF -mN -mN -mc -My -My -My -My -My -My -KN -XB -KN -XB -KN -My -XB -mL -mp -KN -KN -My -KN -XB -KN -KN -XB -My -KN -KN -KN -KN -XB -My -KN -mp -XB -XB -KN -My -My -My -mc -mc -Od -Sx -qq -pc -vX -Od -XQ -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -ab -ab -gp -dJ -HA -dJ -XH -ab -Yf -dJ -oD -ab -eC -eF -jX -bN -do -bN -CT -eF -fr -hk -Eb -lU -me -lU -lU -Om -Om -lU -UX -hk -hk -gN -mN -mN -hX -mN -mN -wt -mN -mN -mN -mN -hX -mN -fB -hX -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -hP -"} -(35,1,1) = {" -av -aH -aH -aH -aH -aH -aH -aH -br -aG -aG -aG -mN -mN -mN -cC -mN -fB -mN -mN -aF -mN -mN -mN -mN -mN -mN -tb -mN -Sy -WL -WL -WL -mN -tb -mN -mN -mN -mN -mN -mN -eG -mN -lF -mN -mN -mc -My -My -My -My -My -My -KN -XB -sO -XB -KN -My -XB -Zu -kq -KN -KN -My -KN -XB -sO -KN -MQ -Ra -Zd -KN -sO -Eu -XB -My -KN -XB -kq -mp -vb -My -mc -mc -mc -EO -Od -fN -dv -Nf -BB -Od -WQ -WQ -WQ -WQ -Od -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -lF -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -ab -gv -dJ -Lp -dJ -kP -ab -uy -dJ -qY -ab -eI -rd -jX -bN -lg -bN -CT -rd -fu -hk -kd -lU -hk -lU -lU -VG -VG -lU -UH -hk -mN -mN -mN -mN -cC -cC -mN -fB -mN -aF -mN -mN -mN -cC -mN -cC -mN -eG -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -hP -"} -(36,1,1) = {" -av -aH -aH -aH -aH -aH -aH -aH -bu -aH -aG -aG -aG -aG -mN -mN -mN -fB -mN -mN -mN -mN -aF -mN -mN -mN -mN -sy -mN -mN -Sy -Sy -mN -mN -tb -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mc -My -My -My -My -My -My -KN -XB -KN -XB -tM -Ra -qE -qE -qE -AA -AA -Ra -Zd -qj -KN -qk -XB -My -KN -JW -KN -qk -XB -My -pW -XB -tc -Zu -XB -My -mc -mc -by -by -Od -db -jb -Od -uC -Od -op -op -op -op -Od -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -eG -mN -gN -ab -gA -wH -EF -dJ -XH -ab -uy -dJ -pP -ab -eJ -XW -jX -bN -aZ -bN -CT -ms -fw -hk -kd -lU -hk -lU -il -lU -uc -Ei -Rn -hk -gN -mN -mN -hX -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -hP -"} -(37,1,1) = {" -av -aG -aG -aG -aG -aG -aG -aG -bu -aH -aH -aH -aG -aG -aG -mN -cC -ku -mN -mN -mN -mN -mN -mN -mN -mN -mN -tb -tb -tb -tb -zE -tb -tb -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -hX -mN -mc -mc -My -My -My -My -My -KN -XB -KN -YR -AA -Ra -qE -qE -di -KN -KN -My -KN -XB -KN -KN -Ru -My -KN -KN -zo -AA -qE -Ra -qE -qE -di -XB -XB -My -mc -Od -Od -Od -Od -Od -Od -xI -jK -Ok -Wm -wp -jK -rg -Od -Od -gN -mN -mN -mN -mN -mN -mN -fB -eG -lF -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -ab -ab -ab -ab -dJ -XH -ab -Ew -pJ -Kb -ab -eK -Kr -jX -bN -dp -bN -CT -XW -fA -hk -co -lU -hk -VF -hk -VF -hk -hk -hk -hk -gN -mN -mN -mN -mN -mN -mN -mN -qm -mN -mN -mN -mN -mN -BZ -mN -mN -mN -eG -mN -cC -mN -mc -mc -mc -mc -mc -mc -hP -"} -(38,1,1) = {" -av -aG -aG -aG -aG -aG -aG -aG -br -aG -aH -aH -aH -aG -aG -mN -mN -fB -mN -dH -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -mN -lF -mN -mN -mN -mc -mc -My -My -My -My -nC -My -nC -My -nC -My -My -My -My -nC -nC -My -nC -My -nC -nC -nC -My -nC -nC -nC -nC -My -My -My -My -My -My -My -My -mc -Od -xf -gf -Hd -Tv -pB -WT -mG -jK -Qy -wp -jK -jh -Eh -Od -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -gN -ab -ab -QS -dJ -kD -ab -ab -ab -ab -ab -eB -Xv -jX -bN -bN -bN -CT -Xv -fn -hk -hk -hk -hk -lU -gs -Ri -FA -hk -hk -mN -mN -mN -mN -hX -mN -mN -mN -mN -fB -mN -hX -aA -fB -mN -mN -mN -hX -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -hP -"} -(39,1,1) = {" -av -aG -aG -aG -mN -mN -mN -mN -br -aG -aH -TJ -aH -aH -aG -aG -aG -mN -mN -mN -mN -fB -cC -mN -mN -yf -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mc -My -My -My -My -Gp -XB -KN -XB -sw -XB -XB -XB -XB -KN -KN -My -KN -XB -KN -KN -KN -My -KN -Nk -KN -KN -XB -My -My -My -My -My -My -mc -mc -Od -Pz -cc -DB -FH -GP -jK -AL -JO -oY -wp -lk -dx -RH -Od -gN -mN -mN -mN -mN -hX -mN -mN -mN -lF -mN -mN -aF -mN -ai -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -gN -ab -ab -QS -dJ -dJ -dJ -ab -hR -hS -fH -wB -wB -dh -bN -bN -bN -ds -wB -wB -fM -gj -gl -hk -lU -Gc -VK -yb -hk -hk -gN -mN -mN -fB -mN -mN -mN -fB -mN -mN -mN -mN -hY -aF -mN -mN -mN -cC -mN -mN -mN -mN -eG -mN -mc -mc -mc -mc -mc -hP -"} -(40,1,1) = {" -av -mN -mN -mN -cC -mN -mN -mN -br -aG -aG -aG -aH -aH -aH -aG -aG -aG -aG -mN -aF -aF -mN -mN -mN -mN -mN -eG -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -eG -mN -lF -mN -mN -mN -mN -mc -My -My -My -My -XB -XB -KN -XB -XB -XB -XB -XB -XB -KN -KN -My -Gp -mp -KN -KN -KN -My -KN -XB -Eu -KN -OD -My -My -My -mc -mc -mc -mc -mc -Od -GX -Db -Ul -MY -DU -Jx -tZ -jK -nW -wp -jK -jh -vq -Od -Od -mN -mN -cC -mN -mN -mN -mN -mN -wr -wt -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -ab -ab -Du -dJ -dJ -dJ -HS -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -VN -lU -ZG -lU -lU -hk -hk -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -hP -"} -(41,1,1) = {" -av -cC -mN -fB -mN -gW -mN -fB -bl -mN -mN -aG -aG -aH -aH -aH -aG -aG -aG -aG -aG -aG -mN -mN -mN -cC -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -cC -mN -mN -mN -lF -mN -mN -mN -mN -mc -My -My -My -My -yp -qE -nM -qE -qE -qE -qE -IT -TW -AA -AA -Ra -qE -qE -AN -AA -hC -My -KN -XB -sO -KN -KN -My -My -My -mc -mc -EO -by -RQ -Od -kN -MY -zg -Dt -th -PW -DR -jK -rG -wp -jK -AL -AL -uC -jK -WL -gN -WL -gN -mN -mN -mN -mN -lF -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -ab -ab -BQ -ji -LM -Fo -CN -zP -gt -gt -gt -gt -gt -gt -gt -gt -gt -gt -gt -gt -gt -AZ -fR -yF -nV -ZP -ZP -hk -hk -gN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -hP -"} -(42,1,1) = {" -av -cC -aF -mN -aF -mN -mN -fB -bl -Lx -mN -aG -aG -aG -aH -aH -aH -aG -aG -aG -aG -aG -mN -mN -aF -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -an -lF -mN -mN -mN -mc -mc -My -My -My -My -XB -XB -KN -mp -XB -XB -XB -XB -XB -KN -GU -Ra -NW -XB -KN -KN -KN -My -KN -mL -KN -KN -KN -My -My -My -mc -mc -Od -Od -Od -Od -Od -EW -Od -Od -Od -Od -Od -mI -Gh -hJ -jK -zu -AL -uC -tZ -Sy -WL -gN -mN -gN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -Ou -ab -ab -ab -ab -ab -ab -ab -fF -bN -aU -bY -bY -at -bN -bN -bN -dw -bY -bY -bH -bN -fT -hk -hk -hk -hk -hk -hk -hk -FJ -gN -gN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -aF -mN -mN -mN -mN -mN -cC -mN -mc -mc -mc -mc -mc -mc -hP -"} -(43,1,1) = {" -av -mN -mN -fB -mN -fB -mN -Pc -bl -Lx -aF -mN -aG -aG -Li -aH -aH -aH -aH -aG -aG -aG -mN -mN -mN -mN -aF -mN -mN -fB -mN -mN -aF -mN -mN -aF -mN -mN -wt -mN -mN -mN -mN -lF -mN -mN -mN -mc -My -My -My -My -My -XB -XB -vY -XB -XB -Zu -mp -XB -XB -KN -KN -My -XB -XB -KN -KN -yL -Ra -Ic -XB -ME -KN -KN -My -My -My -mc -EO -Od -ei -Kt -Od -Cm -jK -fx -iY -nz -Wj -Od -AL -AL -JO -jK -jK -jK -Od -Od -mN -mN -fB -cC -mN -mN -aF -mN -lF -mN -mN -mN -mN -mN -mN -gN -mN -mN -gN -gN -gN -mN -gN -gN -gN -Ug -gD -lS -PK -qH -Yn -Yn -fS -Ey -RI -aV -bk -cT -cV -BF -bN -Qo -aX -bU -bk -cJ -BF -UK -fS -Yn -Yn -ph -Ya -rU -Ia -rM -gN -gN -gN -gN -gN -gN -gN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -hP -"} -(44,1,1) = {" -av -mN -mN -cC -mN -mN -mN -fB -XS -mN -aF -aF -aG -aG -aG -aG -aG -aH -aH -aG -aG -aG -aG -mN -mN -cC -cC -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mc -My -My -My -My -My -XB -XB -KN -XB -XB -kq -XB -XB -XB -KN -KN -My -My -My -nC -nC -nC -My -nC -My -My -nC -nC -My -My -My -mc -RQ -Od -sm -Pd -EW -AL -iO -AL -AL -AL -AL -EW -AL -cY -AL -jK -dx -jK -Od -gN -mN -mN -mN -fB -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -gN -gN -gN -mN -gN -gN -gN -gN -gN -Ug -gG -lW -SF -qh -jO -jO -Gm -cr -kh -aX -bj -la -cV -bN -bN -bN -aX -bk -la -cV -kh -cr -Gm -jO -jO -Oa -hW -Tr -nJ -rM -gN -gN -gN -gN -gN -mN -gN -gN -gN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -hP -"} -(45,1,1) = {" -av -mN -mN -cC -hX -mN -mN -mN -XS -fB -mN -mN -Lx -mN -aG -aG -aG -aG -aH -aH -aH -aG -aG -aG -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -cC -hX -lF -mN -mN -mN -mc -My -My -My -My -My -fz -XB -KN -mp -XB -XB -XB -XB -mp -KN -KN -My -XB -XB -Gp -KN -KN -My -KN -XB -XB -sw -KN -My -My -My -mc -by -Od -Mm -hh -Od -Vg -yg -dG -dD -Dk -Pq -zG -JO -AL -Df -ag -ed -DC -Od -mN -bL -mN -mN -mN -mN -wt -mN -mN -yP -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -gN -ac -ac -ac -ac -ac -ac -ac -ac -ac -fK -bk -bk -cV -bN -bN -bN -aX -bo -ch -fP -ac -ac -ac -ac -ac -ac -ac -ac -ac -mN -mN -mN -fB -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(46,1,1) = {" -av -mN -aF -mN -aF -mN -mN -mN -bl -mN -fB -mN -mN -mN -aG -aG -aG -aG -aG -aH -aH -aH -aG -aG -aG -mN -mN -mN -cC -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -eG -mN -mN -lF -mN -hX -mN -mc -My -My -My -My -My -XB -XB -KN -XB -XB -qj -XB -Zu -XB -KN -GU -Ra -qE -qE -qE -Qg -Qg -Ra -Ic -Zu -XB -XB -KN -My -My -My -mc -by -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -Od -jN -Od -Od -Od -Od -Od -Od -mN -mN -mN -mN -mN -mN -aF -mN -mN -lF -eG -mN -mN -mN -dq -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -ac -nA -dy -dZ -lh -dZ -dy -nA -ac -hV -fE -bk -cR -bN -bN -bN -dE -bk -cz -et -ac -nA -dy -dZ -lh -dZ -dy -nA -ac -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -aF -cC -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(47,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -vh -mN -yf -mN -fB -mN -mN -mN -mN -aG -aG -aG -aH -aH -aG -aG -aG -mN -mN -mN -mN -mN -ku -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mc -My -My -My -My -My -sl -qE -nM -qE -qE -qE -qE -qE -TW -AA -AA -Ra -of -XB -kq -KN -KN -My -KN -XB -kq -XB -KN -My -My -My -mc -by -Mi -by -by -Od -Pq -rg -MK -Pu -Od -Nn -af -AL -yO -lk -dD -MK -Pu -Od -gN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -ac -lX -PU -ac -dy -ac -PU -lX -ac -hV -eP -ch -cV -bN -bN -bN -aX -bk -fE -gi -ac -lX -PU -ac -dy -ac -PU -lX -ac -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -hX -mN -mN -mN -cC -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(48,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -cC -ku -mN -mN -mN -aG -aG -aG -aH -aH -aG -aG -aG -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -aF -mN -mN -mN -mN -lF -mN -mN -mN -mc -My -My -My -My -My -XB -XB -KN -XB -XB -XB -XB -XB -XB -KN -KN -My -XB -XB -XB -KN -yL -Ra -AA -qE -qE -qE -hi -My -My -My -mc -Hy -QD -mB -by -Ho -jK -hN -yu -AL -EW -jK -jK -Ws -Od -jK -yn -SZ -jK -En -mN -mN -mN -mN -dq -mN -mN -hY -mN -lF -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -ac -ac -ac -ac -ou -ac -ac -ac -ac -fL -bk -bk -cV -bN -bN -bN -dF -la -bk -fP -ac -ac -ac -ac -tR -ac -ac -ac -ac -mN -mN -gN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -dq -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(49,1,1) = {" -av -mN -mN -mN -mN -aF -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aG -aG -aH -aH -aG -aG -aG -mN -mN -mN -mN -cC -mN -aF -eG -mN -mN -mN -mN -mN -wt -mN -hX -cC -lF -mN -mN -mN -mc -mc -mc -mc -My -My -XB -XB -St -XB -XB -XB -eM -Um -XB -KN -KN -My -XB -Um -XB -KN -KN -My -KN -XB -XB -eM -KN -My -My -My -mc -by -mB -by -by -Od -jK -hN -hN -jK -Od -AL -AL -AL -EW -jK -yn -yn -tZ -Od -gN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -eG -mN -mN -mN -mN -ac -ac -ac -hL -gK -fC -vT -hO -fD -gq -hT -aX -bk -bU -cV -bN -bN -bN -aX -bk -bk -eo -gk -gq -fU -gy -vT -fW -gK -gL -ac -ac -ac -gN -mN -mN -wt -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -cC -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(50,1,1) = {" -av -mN -aF -mN -mN -mN -cC -mN -bl -mN -mN -mN -mN -cC -cC -mN -mN -mN -mN -aG -aG -aG -aH -aH -aG -aG -aG -mN -mN -mN -mN -cC -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -cC -lF -mN -mN -mN -mN -mN -mN -mc -My -My -My -My -My -My -My -My -nC -nC -My -nC -nC -My -My -nC -My -nC -nC -My -nC -My -My -nC -nC -My -My -My -mc -by -by -by -Gv -Od -rV -jK -dD -tZ -tB -AL -iO -jK -Od -Pq -rg -jK -Mj -Od -gN -mN -mN -mN -mN -mN -mN -mN -mN -pO -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -cx -hx -eO -mo -tn -CT -eF -jX -ij -rK -Ad -aX -bo -bk -ld -BF -bN -Qo -dF -bk -cT -cV -ek -rK -my -CT -eF -jX -Pf -mo -eO -gQ -cx -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(51,1,1) = {" -av -mN -mN -mN -mN -mN -mN -cC -bl -aF -mN -wt -mN -mN -aF -ku -mN -cC -mN -mN -aG -aG -aG -aH -aH -aG -aG -aG -mN -mN -mN -mN -fB -aF -mN -mN -ai -mN -mN -mN -aF -mN -mN -lF -mN -mN -mN -mN -hX -mN -mc -My -My -My -My -My -My -My -My -KN -KN -JI -AA -AA -Ra -qE -Qg -qE -ju -Qg -Ra -Qg -OU -XB -sw -KN -My -My -My -mc -by -by -by -qM -Od -Od -Od -Od -Od -Od -OC -AL -MS -Od -Od -Od -Od -Od -Od -mN -mN -mN -mN -aF -mN -mN -mN -mN -lF -mN -mN -fB -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -gN -cy -hy -qp -mv -rK -CT -eF -jX -lw -Tf -Ad -kj -ak -ak -cX -bN -bN -bN -ba -ak -ak -lr -ek -Tf -lw -CT -eF -jX -rK -mv -qp -gR -cy -gN -mN -mN -mN -mN -mN -mN -wt -cC -mN -mN -eG -cC -mN -mN -mN -aF -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(52,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -aG -aG -aG -aH -aH -aG -aG -aG -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mc -mc -My -My -My -My -My -My -My -KN -KN -XB -KN -KN -My -XB -KN -XB -XB -KN -My -KN -mp -XB -XB -KN -My -My -My -mc -by -qM -mN -gN -Od -Pq -rg -MK -Pu -Od -AL -cY -jK -yO -jK -dD -MK -Pu -Od -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -gN -cy -hy -hb -mw -Tf -CT -eF -jX -Kl -cM -NC -Ie -ac -ac -TV -bN -bN -bN -TV -ac -ac -Ie -ka -cM -pD -CT -eF -jX -Tf -mw -qp -gR -cy -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(53,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -wt -mN -mN -fB -mN -mN -mN -cC -aG -aG -aG -aH -aH -aH -aG -aG -aG -mN -mN -cC -fB -aF -mN -mN -eG -mN -mN -mN -mN -aF -lF -eG -mN -hX -mN -mN -mN -mN -mc -mc -My -My -My -My -My -My -uQ -Qg -TW -AA -AA -Ra -of -KN -kq -XB -KN -My -KN -Zu -kq -XB -KN -My -My -My -mc -by -qM -hX -gN -Ho -jK -yn -SZ -AL -EW -AL -AL -jK -Od -lk -hN -bI -jK -En -gN -mN -mN -eG -mN -mN -mN -mN -mN -lF -mN -hX -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -cy -hy -hD -my -Fa -CT -eF -wi -hw -hw -vT -zA -bO -ky -mR -bN -bN -bN -mR -ky -bO -ln -vT -ly -hw -Ps -eF -jX -Fa -ij -hD -gR -cy -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(54,1,1) = {" -av -mN -mN -mN -hX -mN -mN -hX -bl -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -aG -aG -aG -aG -aH -aH -aG -aG -aG -aG -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mc -My -My -My -My -My -My -KN -KN -XB -KN -tM -Ra -qE -Qg -qE -qE -aI -My -KN -XB -XB -XB -KN -My -My -My -mc -mN -mN -mN -gN -Od -jK -rH -rH -lk -Od -AL -Dd -mG -EW -jK -hN -hN -jK -Od -gN -mN -mN -mN -mN -mN -mN -mN -wt -lF -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -dK -hz -cM -cM -pD -CT -eF -eF -eF -eF -eF -jX -bN -bN -bN -bN -bN -bN -bN -bN -bN -CT -eF -eF -eF -eF -BG -jX -Kl -cM -cM -gU -dK -gN -mN -eG -mN -mN -mN -qm -mN -mN -eG -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(55,1,1) = {" -av -mN -mN -mN -mN -aF -mN -mN -bl -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -aG -aG -aG -aG -aH -aH -Li -aG -aG -mN -mN -mN -mN -fB -mN -mN -aF -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mc -My -My -My -My -My -My -KN -KN -Um -KN -KN -My -XB -Lc -XB -XB -KN -My -ME -XB -Um -XB -KN -My -My -My -mc -mN -mN -mN -gN -Od -gg -jK -dD -jK -tB -AL -JO -jK -Od -Pq -BS -AL -IL -Od -gN -mN -mN -mN -mN -fB -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -ac -dW -gT -gT -gT -ot -Cn -zx -wB -wB -wB -Pb -bN -bN -bN -bN -bN -bN -bN -bN -bN -Cl -wB -wB -wB -Cn -eF -AH -gT -gT -gT -gd -ac -gN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -aF -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(56,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -aG -aG -aG -aG -aG -aH -aG -aG -aG -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -lF -wt -mN -mN -mN -mN -mN -mN -mN -mc -mc -My -My -My -My -My -nC -nC -nC -nC -nC -My -My -My -My -My -nC -My -My -My -nC -My -nC -My -My -My -mc -mN -eG -mN -mN -Od -Od -Od -Od -Od -Od -OC -GY -MS -Od -Od -Od -Od -Od -Od -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -gN -cx -hA -eZ -bN -yZ -eZ -CT -jX -dz -dz -dz -Uc -vT -vT -nn -bN -bN -bN -vK -vT -vT -zA -dz -dz -dz -CT -eF -jX -kE -kE -kE -gV -cx -gN -mN -mN -eG -mN -mN -mN -hX -mN -mN -mN -mN -hY -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(57,1,1) = {" -av -mN -mN -mN -mN -aF -mN -mN -bl -mN -mN -mN -mN -aF -mN -mN -aF -mN -mN -aF -mN -cC -mN -mN -mN -aG -aG -aG -aG -aH -aH -aG -aG -aG -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -aF -mN -mN -mN -mN -hX -mN -mN -mc -My -My -My -My -My -KN -KN -KN -KN -KN -My -XB -XB -XB -mp -sw -XB -XB -XB -Nk -XB -KN -My -My -mc -mc -mN -mN -mN -gN -Od -Pq -jK -BH -NS -tB -AL -AL -jK -Od -Pq -rg -MK -Pu -Od -mN -mN -mN -dq -mN -mN -mN -mN -mN -lF -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -cy -hA -eZ -bN -yZ -eZ -CT -jX -dz -Zc -dz -CT -eF -eF -jX -bN -bN -bN -CT -eF -eF -jX -dz -Zc -dz -CT -eF -jX -kE -eZ -kF -gY -cy -gN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(58,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -hX -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -cC -mN -mN -mN -aG -aG -aG -aG -aG -aH -aH -aG -aG -aG -aF -cC -fB -mN -mN -mN -mN -mN -lF -cC -mN -hY -mN -mN -mN -mN -mN -mN -mc -My -My -My -My -My -KN -KN -KN -KN -KN -My -mp -XB -XB -mp -XB -XB -XB -XB -XB -XB -KN -My -My -mc -mN -mN -mN -mN -gN -Ho -tZ -bv -Fw -AL -Od -AL -AL -jK -EW -jK -rH -SZ -jK -En -mN -mN -mN -mN -mN -mN -mN -eG -mN -lF -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -gN -cy -hB -bN -bN -bN -bN -CT -jX -dz -oC -AY -CT -eF -eF -jX -bN -bN -bN -CT -eF -eF -jX -AY -oC -dz -CT -eF -jX -kE -eZ -kG -gZ -cy -gN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(59,1,1) = {" -av -mN -mN -mN -hX -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -aF -cC -mN -mN -mN -mN -aG -aG -aG -aH -aG -aH -aG -aG -mN -mN -mN -fB -hX -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -My -My -My -My -My -Qr -Qg -AN -AA -AA -Ra -nr -XB -kq -XB -Zu -XB -XB -mp -kq -XB -KN -My -My -mc -mN -mN -mN -mN -gN -Od -lk -bv -lf -AL -EW -iO -JO -jK -Od -AL -yn -rH -jK -Od -gN -mN -mN -mN -mN -mN -mN -an -mN -lF -mN -mN -mN -mN -mN -mN -mN -fB -mN -eG -mN -mN -mN -mN -gN -cy -hA -eZ -bN -yZ -eZ -CT -jX -dz -ce -dz -CT -kW -lb -dc -bN -bN -bN -cv -ie -kW -ls -dz -ce -dz -CT -eF -jX -kE -eZ -lK -hd -cy -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(60,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aG -aG -aH -aH -aG -aG -fB -mN -mN -cC -mN -mN -mN -mN -wr -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -My -My -My -My -KN -KN -KN -KN -GU -Ra -qE -qE -qE -qE -qE -qE -qE -qE -qE -qE -hi -My -My -mc -mN -mN -mN -mN -gN -Od -IL -jK -MK -Pu -Od -AL -JO -jK -yO -AL -BH -jK -FC -Od -gN -mN -mN -mN -mN -mN -mN -mN -mN -PB -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -eG -mN -mN -mN -dK -hA -eZ -bN -yZ -eZ -CT -jX -ad -ev -aN -bc -ev -ev -at -bN -bN -bN -ad -aN -ev -ev -ev -ev -at -lT -eF -jX -kE -kE -kE -gV -dK -mN -gN -mN -mN -mN -mN -mN -mN -hX -mN -mN -aF -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(61,1,1) = {" -av -mN -mN -mN -mN -aF -mN -mN -bl -mN -mN -mN -mN -aF -mN -mN -mN -mN -aF -mN -uN -mN -fB -fB -cC -mN -mN -mN -mN -aG -aG -aH -aH -aG -aG -mN -mN -mN -mN -hX -mN -mN -mN -lF -aF -aF -mN -mN -mN -mN -hY -mN -mN -mN -mc -My -My -My -My -KN -KN -Lc -KN -KN -My -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -KN -My -My -mc -mN -mN -mN -hX -mN -Od -Od -Od -Od -Od -Od -MS -AL -MS -Od -Od -Od -Od -Od -Od -mN -mN -mN -mN -fB -mN -mN -mN -mN -UN -cC -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -ac -ac -ea -eZ -bN -yZ -eZ -CT -AW -ap -qr -Wo -ZF -qF -SO -le -bN -bN -bN -dI -SO -CS -Qj -Wo -zS -ap -Ib -eF -wi -ha -gT -gT -gd -ac -ac -gN -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -eG -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(62,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -cC -mN -mN -UV -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -aG -aH -aH -aG -aG -mN -mN -fB -mN -dH -mN -mN -mN -lF -mN -mN -mN -mN -wt -mN -mN -mN -hX -mN -mc -mc -My -My -My -nC -nC -My -nC -nC -My -XB -XB -Zu -XB -XB -kq -XB -XB -Bu -Zu -KN -My -My -mc -mN -Tt -mN -mN -mN -Od -Pq -rg -MK -Pu -Od -jK -cb -AL -yO -jK -dD -MK -Pu -Od -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -bM -al -dz -dz -vK -vT -vT -Ps -jX -ap -os -bN -bN -bN -bN -RB -bN -bN -bN -RB -bN -bN -bN -bN -OQ -ap -eq -eF -eF -jX -kC -kC -kC -ho -cx -gN -mN -hY -mN -mN -mN -fB -cC -mN -cC -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(63,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -UV -mN -mN -mN -aF -mN -fB -mN -cC -mN -aG -aG -aH -aG -aG -mN -aF -mN -fB -mN -mN -mN -mN -lF -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -My -My -My -sw -KN -XB -KN -Nk -My -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -KN -My -mc -mc -mN -mN -mN -mN -mN -Ho -tZ -tH -SZ -GY -EW -jK -iO -AL -Od -lk -Fw -jl -AL -En -gN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -eG -mN -mN -mN -bP -ay -eQ -dz -CT -BG -eF -eF -hv -ap -Kz -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -CX -hH -ZW -eF -eF -jX -kC -Iq -Ph -hl -cy -mN -mN -mN -mN -hX -mN -mN -eG -mN -cC -mN -aF -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(64,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -aG -aH -aH -ya -aG -mN -mN -mN -fB -mN -mN -mN -mN -fX -mN -mN -aF -cC -mN -mN -mN -mN -mN -mN -mN -mc -My -My -My -XB -KN -XB -KN -XB -My -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -KN -My -mc -mN -mN -aF -mN -mN -gN -Od -jK -rH -rH -AL -Od -jK -AL -AL -EW -jK -hN -hN -JO -Od -gN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -bP -fI -bz -dz -NA -vH -wB -wB -FF -au -YF -bN -bN -vK -jR -WO -WO -WO -WO -WO -jR -nn -bN -bN -uB -ap -dM -wB -lt -Pb -kC -Iq -gx -hj -cy -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(65,1,1) = {" -av -mN -mN -mN -mN -aF -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -fB -cC -mN -aG -aH -aG -aG -aG -mN -mN -mN -cC -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -My -My -My -Zv -Qg -TW -AA -qE -Ra -NW -XB -kq -XB -XB -Bu -qj -XB -kq -XB -KN -My -by -mN -hX -mN -mN -mN -gN -Od -wq -jK -dD -tZ -tB -jK -AL -tZ -Od -Pq -rg -jK -gg -Od -gN -mN -mN -eG -mN -mN -mN -gS -mN -lF -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -gN -bP -aE -eX -dz -dz -Yg -dz -dz -SD -ap -cH -bN -bN -en -ac -jU -Zs -Zs -Zs -jY -ac -kf -bN -bN -cH -ap -Ec -dz -lz -Yg -kC -Iq -zQ -hf -cy -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(66,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -fB -mN -mN -aG -aG -aH -aG -mN -mN -mN -mN -fB -Nv -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mc -mc -My -My -XB -KN -XB -KN -XB -My -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -KN -My -by -mN -mN -aF -eG -mN -mN -Od -Od -Od -Od -Od -Od -Fe -Re -Lf -Od -Od -Od -Od -Od -Od -mN -mN -mN -mN -aF -mN -mN -mN -mN -lF -mN -mN -cC -mN -mN -eG -mN -mN -eG -mN -mN -mN -mN -gN -bW -hu -fl -GD -dz -Yg -dz -dz -sZ -ap -iS -bN -bN -hM -jS -dz -dz -dz -dz -dz -kb -Qe -bN -bN -iS -ap -pt -dz -dz -Yg -kC -kC -kC -he -dK -gN -mN -mN -mN -mN -mN -nf -aF -hX -mN -mN -eG -aF -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(67,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -aF -mN -mN -aG -aH -aH -aG -mN -mN -mN -cC -mN -mN -mN -mN -hX -lF -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mc -My -My -XB -Lc -XB -Oe -qE -Ra -of -XB -XB -XB -XB -XB -XB -XB -XB -jf -MV -My -by -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -Od -Od -op -op -op -Od -Od -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -ac -dg -fp -du -dz -Yg -dz -dz -SD -ae -iS -bN -bN -hM -jG -dz -ul -Zx -Ki -dz -kv -Qe -bN -bN -iS -ez -Yg -dz -dz -ln -vT -vT -vT -hq -ac -gN -mN -mN -mN -mN -cC -mN -mN -BP -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(68,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -aG -aH -aH -aG -mN -mN -Lx -fB -mN -mN -mN -mN -mN -lF -mN -hX -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mc -mc -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -My -by -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -Od -WQ -WQ -WQ -Od -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -ac -Pp -fp -du -dz -Yg -dz -dz -SD -dz -dz -bN -bN -hM -jG -dz -pk -zd -ob -dz -kv -Qe -bN -bN -dz -dz -Yg -dz -dz -CT -eF -eF -eF -gh -ac -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(69,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -UV -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -tb -xL -aG -qB -aG -tb -cC -mN -mN -mN -mN -fB -mN -mN -lF -mN -mN -mN -mN -mN -KP -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -by -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -cC -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -ac -dg -fp -du -dz -Yg -dz -dz -SD -az -dz -bN -bN -hM -jG -dz -nj -Im -EV -dz -kv -Qe -bN -bN -dz -az -Yg -dz -dz -TM -wB -wB -wB -hs -ac -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(70,1,1) = {" -av -mN -mN -mN -mN -mN -aF -hX -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -gN -aF -dt -UU -UU -UU -Fr -aG -Fr -na -ku -gN -mN -mN -mN -mN -mN -lF -mN -hX -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -RQ -by -mN -mN -aF -wt -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -hX -mN -mN -hY -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -bM -hu -KS -ye -dz -Yg -dz -dz -sZ -ap -LS -bN -bN -hM -jT -dz -dz -dz -dz -dz -kc -Qe -bN -bN -qF -ap -pt -dz -dz -Yg -kE -kE -kE -gV -cx -gN -mN -mN -mN -eG -mN -mN -mN -mN -hX -mN -aF -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(71,1,1) = {" -av -mN -mN -mN -mN -mN -aF -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -gN -mN -gN -gN -dt -Fr -aG -Fr -UU -Fr -UU -na -gN -mN -gN -mN -mN -mN -fB -lF -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -cC -mN -mN -hX -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -by -by -mN -wt -mN -mN -mN -mN -dq -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -bP -aE -fa -dz -dz -Yg -dz -dz -SD -ap -YX -bN -bN -en -ac -jV -Gu -pe -Gu -jZ -ac -kf -bN -bN -aL -ap -Ec -dz -iS -Yg -kE -eZ -kF -hd -cy -gN -mN -mN -mN -mN -aF -mN -hX -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(72,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -fB -mN -tb -aG -ID -ID -hp -tb -dH -aF -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -XP -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -by -by -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -eG -cC -mN -mN -mN -mN -mN -mN -mN -mN -eG -lF -mN -mN -mN -hX -mN -mN -mN -mN -mN -hX -mN -mN -mN -gN -bP -fI -bz -dz -vK -VL -vT -vT -ax -au -os -bN -bN -CT -iI -eF -eF -eF -eF -eF -iI -jX -bN -bN -OQ -au -eq -vT -hw -zA -kE -eZ -kG -gZ -cy -gN -mN -mN -mN -cC -mN -mN -cC -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(73,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -fB -aF -mN -mN -aG -aH -aH -aG -mN -mN -mN -aF -mN -mN -mN -eG -mN -lF -fB -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -eG -mN -mN -mN -mN -mN -by -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -by -by -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -lF -mN -mN -hX -cC -cC -mN -mN -cC -mN -mN -mN -mN -mN -gN -bP -bB -fb -dz -CT -BG -eF -eF -hv -ap -Kz -bN -bN -CT -jQ -jQ -jQ -eF -jQ -jQ -jQ -jX -bN -bN -CX -ap -cI -eF -eF -jX -kE -eZ -lK -gY -cy -gN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(74,1,1) = {" -av -mN -mN -mN -mN -mN -wt -mN -bl -mN -mN -cC -mN -mN -mN -mN -UV -mN -mN -mN -mN -mN -mN -mN -mN -dH -mN -mN -mN -aG -aG -aG -aH -aG -mN -aF -mN -aF -mN -mN -mN -mN -mN -lF -mN -mN -mN -eG -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -by -by -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -by -by -mN -mN -mN -aF -cC -mN -mN -mN -wt -mN -mN -mN -mN -wt -mN -mN -cC -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -cC -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -gN -bW -dL -dz -dz -NA -wB -wB -Cn -fc -ap -NO -bN -bN -CT -jQ -PY -jQ -eF -jQ -PY -jQ -jX -bN -bN -CS -hH -eu -eF -eF -jX -kE -kE -kE -ht -dK -gN -mN -mN -mN -eG -mN -mN -fB -mN -mN -mN -aF -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(75,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -fB -mN -mN -mN -aG -aG -aH -aH -aG -mN -mN -dH -aF -aF -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -by -RQ -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -by -by -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -ac -ac -eb -Iq -bD -Yj -Iq -CT -hv -ap -cH -bN -bN -CT -jQ -jQ -jQ -eF -jQ -jQ -jQ -jX -bN -bN -cH -ap -eq -eF -zx -Mf -gT -gT -ge -ac -ac -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(76,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -aF -mN -mN -mN -cC -mN -aF -mN -mN -aG -aG -aH -aH -aG -mN -mN -mN -cC -aF -aF -mN -mN -mN -lF -wt -mN -mN -mN -cC -mN -mN -mN -mN -mN -fB -mN -mN -an -mN -mN -mN -mN -mN -by -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -by -by -by -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -fB -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -yP -mN -eG -cC -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -bM -hE -Iq -bD -Yj -Iq -CT -jX -hH -iS -bN -bN -iG -wB -wB -wB -wB -wB -wB -wB -da -bN -bN -lz -ap -eq -eF -jX -kC -kC -kC -he -cx -gN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -hX -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(77,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aG -aG -aH -aG -aG -mN -mN -mN -Lx -fB -aF -mN -aF -wt -wr -mN -mN -cC -mN -mN -mN -cC -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -by -by -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -by -by -mN -mN -wt -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -bP -hE -Iq -bD -Yj -Iq -CT -AW -ap -SO -bN -bN -cs -YX -dz -dz -dz -dz -dz -aL -az -bN -bN -SO -ap -Ib -eF -jX -kC -Iq -Ph -hf -cy -gN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(78,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -fB -mN -aG -aG -aH -aH -aG -mN -mN -mN -mN -mN -cC -mN -mN -cC -PB -aF -aF -fB -mN -ku -mN -fB -mN -cC -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -by -by -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -by -by -mN -mN -mN -hX -mN -Pc -mN -mN -mN -mN -mN -cC -eG -mN -mN -mN -mN -mN -eG -mN -mN -wt -mN -cC -mN -mN -mN -mN -mN -mN -hX -lF -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -bP -hF -bD -bD -bD -bD -CT -jX -aB -cZ -bN -Qo -ia -ig -in -is -iu -iw -in -ix -iy -BF -bN -iB -iC -lT -eF -jX -kC -Iq -gx -hj -cy -gN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(79,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mc -aF -mN -mN -mN -cC -mN -mN -mN -aG -aG -aG -aH -aG -aG -aG -mN -mN -mN -mN -fB -aF -mN -wr -mN -mN -mN -mN -mN -mN -mN -aF -fB -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -by -by -RQ -mc -mc -mc -mc -mc -mc -mc -mc -mc -by -by -mN -mN -mN -mN -mN -hX -mN -mN -mN -fB -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -fB -mN -mN -mN -mN -mN -mN -lF -mN -cn -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -gN -bP -hE -Iq -bD -Yj -Iq -CT -aj -ac -ac -ex -hZ -ac -UT -ac -aW -UT -aW -ac -UT -ac -ex -hZ -ac -ac -iD -eF -jX -kC -Iq -zQ -hl -cy -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -hX -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(80,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mN -mN -mN -mN -aF -mN -fB -aG -aG -aG -aH -aH -aG -aG -aG -aG -aG -aG -aG -aG -aG -lF -mN -mN -mN -mN -mN -mN -mN -mN -fB -fB -Lx -cC -mN -hY -mN -mN -fB -mN -mN -mN -by -by -mc -mc -mc -mc -mc -mc -mc -mc -by -by -by -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -fB -KP -mN -lF -mN -cC -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -gN -bP -hE -Iq -bD -Yj -Iq -CT -jX -bQ -ec -bN -bN -ib -ii -io -it -iv -lp -io -ii -iz -bN -bN -ec -bQ -CT -eF -jX -kC -kC -kC -he -cy -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(81,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mN -aF -mN -mN -mN -mN -fB -mN -aG -aG -aH -aH -aH -aG -ya -aG -aG -aG -aG -aG -aG -XO -aG -aG -aG -mN -mN -mN -mN -mN -mN -mN -fB -cC -aF -mN -cC -mN -mN -mN -mN -mN -by -by -mc -mc -mc -mc -mc -mc -mc -RQ -by -by -by -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -eG -mN -gN -bP -hG -vT -vT -vT -vT -Ps -wi -vT -nn -bN -bN -CT -eF -eF -eF -eF -eF -eF -eF -jX -bN -bN -vK -vT -Ps -BG -wi -vT -vT -vT -hm -cy -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(82,1,1) = {" -av -mN -mN -mN -mN -mN -aF -mN -bl -mN -mN -mN -mN -cC -mN -mN -mN -mN -mc -mc -mc -mc -mN -mN -mN -mN -qm -mN -mN -fB -aG -aG -aG -aH -aH -aH -aH -aH -aH -aH -aH -aG -aG -XO -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -mN -mN -mN -ku -mN -cC -mN -eG -fB -mN -by -by -mc -mc -mc -mc -mc -RQ -by -by -by -by -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -eG -mN -mN -fB -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -cC -mN -cC -mN -mN -mN -lF -fB -mN -mN -mN -dq -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -bW -ff -Cn -eF -eF -eF -eF -eF -eF -jX -bN -bN -CT -eF -eF -eF -eF -eF -eF -eF -jX -bN -bN -CT -eF -eF -eF -eF -eF -eF -zx -hn -dK -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -wt -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(83,1,1) = {" -av -mN -mN -cC -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -aG -aG -aG -aH -aH -aH -aH -aH -aH -aH -aH -aH -pC -aH -aH -aH -aH -aH -aG -aG -aG -aG -aG -aG -aG -aG -mN -mN -fB -fB -cC -cC -fB -mN -by -by -by -mc -mc -mc -mc -by -by -by -by -by -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -cC -mN -cC -mN -fB -cC -fB -mN -mN -cC -cC -mN -lF -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -ac -ac -bT -fv -fV -wy -wf -fv -cd -jX -bN -bN -TM -wB -wB -wB -wB -wB -wB -wB -Pb -bN -bN -CT -cd -fv -wf -wy -fV -fv -fZ -ac -ac -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(84,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -fB -mN -aG -aG -aG -aG -aG -aG -aH -aG -aH -aH -aH -pC -aH -aH -aG -aH -aH -aH -aH -aH -aH -aH -aG -aG -aG -aG -aG -aG -mN -fB -cC -mN -vp -by -by -by -by -mc -mc -by -by -by -by -by -mN -mN -mN -mN -wt -mN -mN -mN -fB -Cg -mN -mN -mN -mN -mN -hX -cC -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -fB -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -bM -hI -ah -aO -aO -aO -aO -ef -mF -bN -bN -SD -iH -dz -dz -dz -dz -dz -iH -Yg -bN -bN -mF -cF -aO -aO -ah -aO -aO -gO -cx -gN -mN -mN -mN -mN -mN -cC -mN -an -mN -wt -mN -mN -fB -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(85,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -wt -aF -hX -mN -mN -mN -mN -mN -aG -aG -aG -aG -aG -aG -aG -XO -aG -aG -aG -aH -aH -aH -aH -aH -aH -aH -aH -aH -aG -aG -aG -aG -mN -fB -mN -mN -mN -by -by -by -by -RQ -mc -by -by -by -by -by -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -bJ -mN -cC -fB -hX -mN -mN -mN -mN -PB -mN -mN -mN -mN -wt -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -bW -hK -gM -am -gC -gH -dY -hQ -gu -bN -bN -dm -ac -fe -MC -oQ -MC -jA -ac -iR -bN -bN -gu -gw -dY -gC -gH -am -gM -gP -dK -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(86,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -cC -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -cC -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -aG -aG -Lg -aG -aG -aG -aG -aG -aG -aG -aG -aH -aH -aH -aH -aH -aH -aG -aG -aG -mN -mN -mN -mN -by -by -by -by -by -RQ -by -by -by -by -by -mN -mN -mN -hX -mN -hX -mN -mN -mN -mN -mN -mN -aF -mN -bg -mN -mN -mN -mN -mN -mN -cC -mN -cC -fB -mN -mN -mN -cC -fB -mN -mN -lF -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -gN -ac -aP -aP -aP -aP -aP -aP -aP -aP -ao -bN -kX -ac -js -qv -bD -qv -jB -Jf -lv -bN -hd -aP -aP -aP -aP -aP -aP -aP -aP -ac -gN -mN -mN -mN -eG -mN -mN -mN -eG -fB -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(87,1,1) = {" -av -mN -mN -qm -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -bb -aG -aG -aG -aH -aH -TJ -aH -aH -aG -aG -aG -aG -mN -by -by -by -by -by -RQ -by -by -by -by -by -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -fB -mN -mN -mN -mN -mN -cC -lF -mN -mN -mN -mN -mN -mN -mN -hX -cC -mN -mN -mN -mN -mN -mN -mN -mN -jo -mO -bh -Er -aP -Zw -ri -aP -bi -bN -kZ -ac -ac -jt -kC -jz -ac -ac -lq -bN -je -aP -ej -Zw -aP -mO -bh -Er -gB -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(88,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -aF -mN -mN -aF -mN -mN -mN -mN -lF -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -aG -aG -aG -aH -aH -aH -aH -aH -aG -aG -od -PP -by -by -by -by -by -by -by -by -by -by -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -fB -mN -cC -mN -fB -mN -mN -Nv -cC -mN -mN -aF -lF -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -jp -Ku -lP -oB -aP -eY -bq -aP -ao -bN -CT -iI -fq -bD -bD -bD -Zq -iI -jX -bN -jr -aP -cK -eY -aP -iA -lP -gn -gE -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(89,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -aF -lF -mN -mN -mN -mN -fB -lx -mN -aF -mN -mN -mN -mN -aG -aG -aG -aG -aH -aH -aH -aH -od -od -by -by -by -by -by -by -by -by -by -by -by -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -fB -mN -fB -ai -mN -lF -cC -cC -mN -mN -yf -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -jp -su -lP -on -aP -aP -lM -aP -cA -bN -CT -iJ -ac -aY -bD -Sp -ac -iQ -jX -bN -hd -aP -lM -aP -aP -yo -lP -XF -gE -gN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -eG -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(90,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -cC -mN -mN -mN -mN -fB -mN -mN -fB -fB -mN -PB -mN -mN -fB -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -aG -aG -aG -aH -aH -aH -od -XG -od -iq -by -by -by -by -by -by -by -by -by -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -fB -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -gN -jp -MI -lP -lP -oi -lP -bh -xo -bN -bN -dN -ac -ac -ac -HQ -ac -ac -ac -iT -bN -bN -yD -bh -lP -oi -lP -lP -MI -gE -gN -mN -mN -mN -mN -mN -cC -mN -eG -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(91,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -fB -fB -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -aG -aG -aG -aH -aH -qc -qc -od -PP -by -by -by -by -by -by -by -by -by -mN -mN -mN -mN -mN -wt -mN -mN -mN -eG -mN -fB -mN -mN -mN -mN -wt -mN -nf -mN -fB -mN -mN -cC -mN -fB -cC -mN -cC -mN -mN -PB -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -jv -kT -wk -bh -fo -NM -lN -aP -cA -bN -dP -zN -qw -pT -bD -RD -zW -zN -iU -bN -hd -aP -lN -KV -fo -bh -QE -kT -gF -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(92,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mN -mN -mN -aF -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -aG -aG -aG -aG -qc -qc -od -od -od -PP -by -by -by -by -by -by -by -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -hX -mN -mN -cC -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -cC -mN -lF -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -aP -aP -aP -aP -aP -aP -aP -aP -ao -bN -dS -pz -fy -CD -bD -Ww -Kh -pz -iV -bN -jr -aP -aP -aP -aP -aP -aP -aP -aP -gN -mN -mN -dq -mN -mN -mN -hX -mN -mN -mN -hX -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(93,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -zR -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -cC -mN -cN -mN -cC -mN -cC -mN -mN -mN -mN -mN -mN -mN -fB -aF -mN -mN -mN -mN -aG -aG -od -od -qc -qc -qc -od -od -by -by -by -by -by -by -by -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -fB -mN -fB -mN -fB -fB -yP -cC -fB -fB -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -jw -mO -bh -Er -aP -Zw -ri -aP -bi -bN -bF -pz -fO -oJ -bD -Pw -YM -pz -jk -bN -je -aP -ej -Zw -aP -mO -bh -Er -vL -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(94,1,1) = {" -av -mN -mN -mN -mN -mN -mN -hX -bl -mN -cC -mN -mN -mN -mN -mN -mc -mc -mc -wI -by -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -lF -mN -mN -mN -mN -mN -hY -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -PP -od -od -od -qc -qc -qc -od -od -PP -by -by -by -by -by -by -mN -hY -mN -hX -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -hX -mN -mN -mN -cC -mN -mN -mN -cC -mN -mN -mN -mN -mN -lF -fB -fB -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -jH -fG -lP -oB -aP -eY -bq -aP -ao -bN -eg -pz -PE -CD -bD -Ww -vQ -pz -iX -bN -jr -aP -cK -eY -aP -iA -lP -gn -kV -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -eG -mN -mN -hX -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(95,1,1) = {" -av -mN -hX -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mc -mc -Mb -by -CY -by -mc -mc -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -Yh -mN -aF -mN -mN -vp -by -PP -od -od -qc -qc -qc -qc -od -od -iq -by -Nt -by -by -by -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -fB -mN -mN -cC -fB -fB -cC -lF -mN -Ov -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -jH -su -lP -on -aP -aP -lM -aP -cA -bN -ft -Da -Vm -TZ -bD -xQ -uo -Da -iZ -bN -hd -aP -lM -aP -aP -yo -lP -XF -kV -mN -mN -mN -eG -mN -mN -hX -mN -fB -mN -mN -mN -mN -mN -mN -fB -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(96,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -cC -mN -mN -mN -mN -mc -mc -by -Nt -by -by -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -dH -mN -cC -mN -mN -mN -by -by -iq -od -od -qc -OV -qc -od -od -od -by -by -by -by -by -mN -mN -mN -hX -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -cC -fB -mN -cC -mN -mN -lF -mN -mN -mN -mN -mN -mN -hX -mN -mN -aF -mN -cC -mN -wt -mN -mN -gN -jH -MI -lP -lP -oi -lP -bh -QB -bN -Qo -cS -ac -ac -ac -HQ -ac -ac -ac -jm -BF -bN -bC -bh -lP -oi -lP -lP -MI -kV -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -VI -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(97,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -hX -mN -mN -mN -mN -mN -mc -gX -by -by -Nt -by -by -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -by -by -by -by -od -od -od -qc -qc -qc -od -od -by -by -by -by -by -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -cC -mN -mN -mN -mN -cC -mN -fB -lF -mN -fB -mN -mN -mN -mN -mN -mN -wt -mN -fB -mN -mN -mN -mN -mN -gN -jI -kT -Sq -bh -fo -pX -lN -aP -cA -bN -iE -ac -yj -yd -bD -YE -IN -ac -iZ -bN -hd -aP -lN -Sb -fo -bh -px -kT -Zj -mN -mN -mN -mN -aF -aF -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(98,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mc -mc -by -by -by -by -by -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mc -mc -mc -RQ -by -by -by -PP -od -od -od -qc -qc -od -od -PP -by -by -by -by -mN -mN -mN -mN -hX -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -cC -mN -hX -mN -mN -mN -mN -lF -mN -mN -mN -mN -fB -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aP -aP -aP -aP -aP -aP -aP -aP -ao -bN -ft -ac -aQ -bD -bD -bD -Bq -ac -ja -bN -jr -aP -aP -aP -aP -aP -aP -aP -aP -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -hY -mN -mN -aF -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(99,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mc -mc -Mb -by -CY -by -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -My -mc -mc -mc -Nt -by -by -od -od -od -qc -qc -qc -od -od -by -by -by -by -by -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -wt -eG -mN -mN -mN -mN -mN -cC -cC -lF -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -gN -jJ -mO -bh -Er -aP -Zw -ri -aP -bi -bN -el -ac -aR -PH -bD -bE -bR -ac -jq -bN -je -aP -ej -Zw -aP -mO -bh -Er -KK -gN -mN -mN -mN -mN -mN -mN -aF -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(100,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mc -mc -wI -by -by -by -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -Lx -mN -mN -mN -mN -mN -fX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -My -My -My -My -My -mc -by -by -RC -od -od -od -od -qc -qc -od -od -iq -by -Nt -by -by -by -mN -mN -mN -mN -mN -mN -mN -qO -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -gW -mN -mN -mN -mN -mN -mN -mN -mN -yP -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -jW -fG -lP -oB -aP -eY -bq -aP -ao -bN -iF -ac -ac -ac -bt -ac -ac -ac -jc -bN -jr -aP -cK -eY -aP -iA -lP -gn -gI -gN -mN -aF -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(101,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mc -mc -mc -by -Nt -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -lF -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mc -My -My -My -My -My -My -My -My -mc -by -by -by -od -od -od -qc -qc -od -od -PP -by -RQ -by -by -by -by -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -cC -mN -cC -mN -lF -mN -mN -fB -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -jW -su -lP -on -aP -aP -lM -aP -cA -bN -bN -iK -iM -bN -bN -bN -iM -iK -bN -bN -hd -aP -lM -aP -aP -yo -lP -XF -gI -gN -mN -mN -mN -mN -eG -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(102,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -aF -mN -mN -aF -aF -mN -mN -mc -My -MP -MP -MP -MP -MP -MP -My -My -My -by -by -od -od -od -qc -qc -qc -od -oK -by -by -mc -mc -mc -RQ -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -gN -jW -MI -lP -lP -oi -lP -bh -MJ -bN -bN -bN -bN -IY -Wu -Wu -Wu -Bl -bN -bN -bN -bN -Op -bh -lP -oi -lP -lP -MI -gI -gN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(103,1,1) = {" -av -mN -mN -mN -mN -mN -aF -mN -bl -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -hX -mN -mN -cC -lF -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mc -My -MP -GJ -xJ -XD -GJ -MP -DW -Ux -My -RQ -by -PP -oK -oK -od -qc -qc -od -oK -by -by -by -mc -mc -mc -mc -mc -mc -mc -mN -mN -hX -mN -mN -hX -mN -mN -mN -mN -mN -mN -hX -mN -mN -fB -eG -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -gN -kg -kT -Mc -bh -fo -Oj -lN -aP -cD -cG -fs -iL -iN -dz -dz -dz -iP -ll -fs -jd -jg -aP -lN -TK -fo -bh -xK -kT -RL -mN -mN -eG -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -eG -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(104,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -lF -mN -mN -mN -mN -mN -wt -mN -mN -mN -mc -mc -My -MP -Yz -XD -XD -tm -GF -Ux -Ux -My -mc -by -by -by -oK -oK -qc -Rp -Qu -oK -PP -RC -by -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -aP -aP -aP -aP -aP -aP -aP -aP -ac -ac -ac -ac -ac -dk -dz -jF -ac -ac -ac -ac -ac -aP -aP -aP -aP -aP -aP -aP -aP -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(105,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -My -My -MP -GJ -xJ -XD -GJ -MP -Ux -Ux -My -mc -by -by -PP -oK -oK -zp -Rp -oK -oK -PP -by -by -zY -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -rQ -cC -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -Yh -fB -lF -mN -mN -mN -mN -mN -mN -eG -mN -mN -fB -mN -mN -aF -cC -mN -mN -mN -bM -oZ -oZ -Uk -Tx -rL -qW -Tx -qW -Pt -xz -rL -ac -jC -dz -jL -ac -ci -Ue -DE -Ue -BT -ir -eE -ih -Bx -mC -mC -cx -mN -mN -mN -mN -mN -wt -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(106,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -lF -mN -mN -mN -wt -mc -mc -mc -My -My -My -My -My -MP -MP -MP -MP -MP -MP -Ux -Ux -My -mc -by -by -iq -oK -oK -zp -Rp -oK -oK -by -by -by -by -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -lF -mN -aF -cC -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -gN -bP -oZ -oZ -Cv -DF -pH -pH -pH -Cb -tF -oZ -qW -ac -dk -dz -jF -ac -lO -lO -lO -lO -lO -ir -eE -ih -mC -mC -mC -cy -gN -mN -mN -mN -mN -mN -mN -mN -fB -fB -eG -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(107,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -lF -mN -mN -mN -mc -mc -My -My -My -Ux -Ux -My -My -My -My -My -My -My -My -Ux -Ux -My -mc -by -RC -by -Qu -oK -zp -zp -oK -oK -PP -by -by -by -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -fB -mN -eG -mN -hX -mN -mN -mN -lF -mN -mN -aF -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -bP -oZ -DH -oZ -Af -Af -Af -Af -Af -Af -Af -Af -tU -dz -dz -dz -yS -lO -lO -lO -lO -lO -ir -eE -ih -mC -mC -mC -cy -gN -aF -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(108,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -cC -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -aF -mN -mN -mN -mN -xp -mN -mN -mN -mc -My -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -Ux -Ux -My -mc -by -by -PP -oK -oK -zp -zp -zp -oK -by -by -Nt -by -mc -mc -mc -My -My -My -My -My -mc -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -aF -mN -gN -bP -ik -oZ -oZ -Af -Af -Af -Af -Af -oZ -oZ -SL -ac -dk -dz -jF -ac -lO -lO -lO -lO -lO -ir -eE -ih -mC -mC -mC -cy -gN -mN -mN -eG -mN -cC -mN -mN -cC -mN -mN -mN -mN -eG -mN -mN -mN -mN -aF -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(109,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mc -My -Ux -Ux -Ux -DW -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -gr -sK -za -hg -vS -eA -eA -eA -eA -vS -za -za -za -gr -gr -gr -gr -My -My -My -My -My -mc -mc -mc -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -lF -mN -wt -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -bP -oZ -oZ -uU -Af -Af -Af -Af -Af -oZ -DH -oZ -ac -jD -dz -jM -ac -Dy -Eo -lO -lO -qC -sj -eE -ih -mC -mC -mC -cy -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -hX -mN -hX -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(110,1,1) = {" -av -mN -mN -mN -mN -mN -wt -mN -rc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -lF -mN -mN -hX -mc -My -Ux -DW -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -mc -by -by -zp -zp -zp -RR -zp -zp -PP -by -by -by -mc -mc -mc -My -My -My -My -My -My -My -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -wt -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -gN -bP -qW -oZ -Zz -pd -pd -pd -pd -pd -Zz -oZ -xz -ac -dk -dz -jF -ac -ac -ac -cU -ac -ac -MX -eE -ih -mC -mC -Sf -cy -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(111,1,1) = {" -av -mN -mN -mN -mN -mN -cC -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -aF -mN -aA -mN -mN -mN -mN -mN -lF -aF -mN -mN -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -by -by -PP -zp -zp -zp -zp -zp -zp -iq -RC -by -RQ -mc -mc -mc -My -My -My -My -My -My -My -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -an -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -hX -hX -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -gN -bP -xz -uU -oZ -pd -wh -er -KW -Vd -oZ -oZ -Tx -ac -dk -dz -jF -ac -cm -mP -dj -ZM -ac -ih -ih -ih -mC -mC -mC -cy -gN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(112,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -cC -mN -mN -mN -mN -mN -mN -mN -hX -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wr -mN -mN -mN -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -by -by -by -zp -zp -Wd -zp -zp -zp -PP -by -by -Ji -mc -mc -mc -My -My -My -My -My -My -My -mc -mN -mN -mN -cC -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -eG -mN -hX -nf -mN -mN -mN -mN -cC -mN -mN -aF -mN -bP -Me -oZ -oZ -NG -cL -KW -wh -pd -oZ -Cv -JD -ac -jC -dz -jL -ac -bV -mP -dj -MF -ac -mC -mC -mC -mC -mC -mC -cy -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -aF -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -hP -"} -(113,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -cC -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -My -mc -Ji -by -PP -zp -zp -zp -zp -zp -zp -PP -by -by -mc -mc -mc -mc -My -My -My -My -My -My -My -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -fB -mN -mN -lF -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -gN -bP -xe -oZ -DH -pd -wh -KW -cL -pd -DH -oZ -tF -ac -dk -dz -jF -ac -Kd -vx -vx -ZZ -ac -mC -mC -mC -mC -mC -mC -cy -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -hP -"} -(114,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -lF -mN -mN -mc -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -My -mc -mc -by -PP -zp -zp -zp -zp -zp -zp -PP -by -by -mc -mc -mc -mc -My -My -My -My -My -My -My -mc -mc -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -bP -xe -oZ -oZ -pd -gz -pd -NG -pd -oZ -oZ -RY -ac -jD -dz -jM -ac -qX -Vj -Vj -xh -ac -mC -SB -mC -mC -SB -mC -cy -gN -mN -aF -mN -fB -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -hP -"} -(115,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -cC -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -lF -mN -mN -mc -My -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -My -mc -mc -by -RC -by -zp -zp -zp -zp -zp -zp -PP -by -by -mc -mc -mc -mc -My -My -My -My -My -My -My -My -mc -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -eG -mN -cC -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -gN -bW -Tx -oZ -zv -oZ -xz -Tx -oZ -oZ -mW -oZ -Cv -ac -jE -dz -jP -ac -YN -Vj -Vj -dB -ac -aO -aO -aO -aO -aO -aO -dK -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -hP -"} -(116,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -My -mc -mc -gX -by -by -zp -zp -zp -zp -Wd -zp -zp -zp -by -by -by -RC -mc -mc -My -My -My -My -My -My -My -My -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -eG -lF -mN -mN -mN -mN -mN -cC -qV -mN -mN -cC -mN -mN -mN -mN -hX -mN -mN -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -WS -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -hY -mN -mN -cC -mN -eG -mN -hX -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -hP -"} -(117,1,1) = {" -av -mN -hX -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -pO -mN -mN -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -Ux -My -My -My -mc -Nt -by -by -PP -zp -Wd -zp -zp -KG -zp -zp -zp -PP -by -by -by -mc -mc -mc -My -My -My -My -My -My -My -mc -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -ac -ac -ac -uX -bD -TY -zr -Nw -qi -bD -ac -aD -kl -kn -eF -kp -kw -kz -ac -dU -lO -tv -lO -lO -lO -lO -BV -ac -ac -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -hP -"} -(118,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mc -My -Ux -Ux -Ux -DW -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -mc -mc -by -by -RC -PP -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -PP -by -RQ -Nt -mc -My -My -My -My -My -My -My -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -hY -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -gN -ac -ac -UF -bD -Fk -Fm -Nw -qi -bD -ac -bs -eF -eF -eF -eF -eF -kA -ac -lO -FD -ks -ks -gJ -kY -lO -Mn -ac -gN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -hP -"} -(119,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mc -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -My -mc -by -by -RC -by -iq -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -by -by -RC -mc -mc -My -My -My -My -My -My -My -mc -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -ac -ac -nX -bD -bD -bD -bD -bD -bD -wv -eF -eF -eF -eF -eF -eF -eF -It -lO -ty -dz -dz -wD -HW -Wn -ac -ac -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -hX -mN -mN -mN -eG -mN -mN -mN -mN -mN -mc -mc -mc -hP -"} -(120,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -lF -mN -mc -My -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -Ux -My -mc -mc -by -by -by -by -PP -Wd -zp -zp -Wd -zp -zp -zp -zp -Wd -zp -KG -zp -PP -by -by -by -mc -mc -My -My -My -My -My -My -mc -mN -hX -mN -mN -hX -mN -mN -mN -wt -mN -mN -mN -hY -mN -mN -mN -yP -mN -mN -mN -cC -fB -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -ac -JF -bD -bD -bD -bD -bD -bD -ac -ct -eF -eF -eF -eF -eF -kB -ac -lO -FT -Ys -Ys -fJ -Uv -lO -ac -gN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mc -mc -mc -hP -"} -(121,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mc -My -Ux -Ux -DW -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -RQ -by -by -by -by -zp -zp -zp -zp -zp -RR -zp -zp -zp -zp -zp -zp -zp -zp -iq -by -by -gX -mc -mc -My -My -My -My -My -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -lF -cC -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -ac -lA -bD -VX -Nw -qi -bD -bD -ac -cW -Tg -eF -eF -eF -LX -kH -ac -dU -lO -Jb -lO -lO -lO -kQ -ac -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mc -mc -mc -hP -"} -(122,1,1) = {" -av -mN -mN -mN -mN -mN -hX -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -pO -mc -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -by -by -by -iq -zp -zp -KG -Ct -zp -zp -zp -zp -zp -zp -zp -Ct -zp -Wd -zp -PP -by -by -by -RC -mc -mc -My -My -My -My -mc -mN -mN -cC -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -cC -mN -lF -mN -mN -mN -mN -mN -mN -eG -mN -XP -mN -mN -mN -mN -mN -mN -mN -wt -mN -gN -ac -ac -ac -ac -ac -ac -nB -ac -ac -dC -XW -eF -eF -eF -lB -kJ -ac -ac -qK -ac -ac -ac -ac -ac -ac -mN -mN -mN -mN -aF -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -hX -mN -mN -mN -mN -mN -mN -mN -mc -mc -hP -"} -(123,1,1) = {" -av -mN -mN -mN -mN -hX -mN -cC -bl -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -ai -mN -mN -mN -mN -mN -mN -lF -mc -My -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -by -RC -by -PP -zp -zp -zp -zp -zp -zp -zp -Wd -zp -zp -zp -zp -zp -zp -zp -zp -PP -sA -by -by -by -mc -My -My -My -My -mc -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -wt -mN -hY -mN -lF -mN -mN -mN -mN -mN -hX -mN -mN -mN -hX -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -ac -ac -rj -LQ -eE -eE -LI -ac -dO -YV -eF -eF -eF -RX -kK -ac -og -lO -lO -dy -dy -ac -ac -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -hP -"} -(124,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -cC -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -wt -mN -mN -hX -mN -mN -gr -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -Ux -Ux -Ux -Ux -Ux -My -mc -by -sA -by -zp -zp -zp -zp -Wd -zp -PP -by -RR -zp -zp -zp -zp -zp -zp -zp -zp -by -sA -by -by -RQ -mc -My -My -My -My -mc -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -gN -ac -ac -ac -ac -un -eE -pM -ac -dV -dn -Qq -eF -GS -bp -kL -ac -sJ -lO -lO -dy -es -ac -ac -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mc -mc -hP -"} -(125,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gr -My -My -Ux -DW -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -by -sA -by -zp -zp -RR -zp -zp -zp -TG -by -by -PP -zp -zp -zp -zp -Wd -zp -zp -by -sA -by -Nt -by -mc -mc -My -My -My -mc -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -eG -mN -hX -mN -mN -mN -gN -ac -dd -LQ -eE -eE -to -ac -cW -Tg -eF -eF -eF -LX -kH -ac -Iz -lO -lO -dy -eL -ac -mN -mN -mN -hY -mN -mN -mN -ry -mN -mN -mN -mN -eG -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -hP -"} -(126,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -wt -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -gr -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -by -sA -PP -zp -zp -zp -zp -zp -zp -zp -by -SQ -by -zp -zp -zp -zp -zp -zp -zp -PP -by -by -by -by -pu -mc -My -My -My -mc -mc -mN -mN -cC -hX -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -lF -mN -mN -dq -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -cC -mN -mN -mN -mN -mN -mN -ac -ac -ac -ac -wa -ac -ac -kk -lB -eF -eF -eF -XW -kM -ac -KU -lO -ZB -Hs -ac -ac -gN -mN -mN -mN -mN -mN -mN -cC -mN -mN -cC -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -cC -mN -mN -mN -mN -cC -mN -mN -mN -mN -mc -mc -hP -"} -(127,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -vh -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mc -My -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -by -by -iq -zp -Wd -zp -zp -zp -zp -zp -PP -by -by -PP -zp -zp -zp -zp -zp -zp -PP -sA -by -by -by -pu -mc -My -My -My -My -mc -mN -mN -mN -mN -mN -mN -mN -mN -cC -wt -mN -mN -mN -mN -mN -lF -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -gN -ac -ac -Bb -eE -OH -ac -dO -YV -eF -eF -eF -RX -kK -ac -df -lO -WJ -lO -ac -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -hX -mN -mN -mN -mN -mN -mN -mc -mc -hP -"} -(128,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mc -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -by -sA -by -zp -zp -zp -zp -zp -zp -Wd -zp -KG -by -TG -zp -Wd -zp -zp -zp -zp -iq -sA -by -bd -by -pu -mc -My -My -My -My -mc -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -ga -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -ac -ac -MX -eE -pM -ac -cD -km -ko -eF -kr -kx -kO -ac -lO -Dy -ac -ac -ac -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -mN -mN -mN -mc -mc -hP -"} -(129,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -hY -lF -mN -mc -My -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -RQ -sA -PP -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -by -sA -by -by -by -bm -mc -My -My -My -My -mc -mN -mN -mN -mN -mN -mN -qm -mN -mN -mN -mN -mN -mN -mN -bK -ga -bK -bK -bK -bK -bK -bK -bK -dq -mN -mN -mN -mN -mN -mN -mN -Pc -fB -mN -mN -mN -mN -mN -mN -ac -Bb -eE -OH -ac -ac -ac -ac -PM -ac -ac -ac -ac -Dl -ac -ac -ac -mN -mN -mN -mN -mN -mN -bS -mN -cC -mN -mN -mN -mN -mN -mN -mN -fB -dq -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mc -mc -hP -"} -(130,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -vh -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mc -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -by -sA -by -zp -zp -zp -Wd -RR -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -PP -by -by -Nt -by -pu -mc -My -My -My -My -mc -mN -mN -mN -hY -mN -mN -mN -mN -fB -mN -mN -mN -dq -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -fB -hX -mN -fB -mN -mN -mN -mN -gN -ac -ac -mU -ac -ac -lO -lO -lO -lO -lO -lO -lO -ac -eE -Wt -ac -ac -mN -mN -wt -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -hP -"} -(131,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -cC -mN -eG -mN -mN -mN -lF -mN -mN -mc -My -Ux -Ux -Ux -Ux -Ux -DW -Ux -Ux -Ux -Ux -Ux -My -mc -by -by -by -PP -zp -zp -KG -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -Wd -zp -zp -PP -sA -by -by -by -pu -mc -My -My -My -My -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -ac -ac -ac -ac -lO -FD -ks -ks -ks -iW -lO -ac -un -rN -ac -gN -mN -mN -mN -mN -mN -mN -mN -mN -aF -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -hP -"} -(132,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -lF -hX -mN -mc -My -My -Ux -DW -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -Ji -by -by -RC -zp -zp -zp -zp -zp -Ct -zp -zp -Wd -zp -zp -RR -zp -KG -zp -Wd -by -sA -by -by -by -pu -mc -My -My -My -My -My -My -mc -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -gN -ac -ac -ac -ac -uO -FT -Ys -Zl -Ys -Uv -EJ -ac -VV -ac -ac -gN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mc -mc -hP -"} -(133,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -KP -mN -mN -mN -mN -mN -lF -mN -mN -mc -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -mc -Nt -aK -RC -iq -PP -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -zp -by -by -sA -by -Nt -by -mc -mc -My -Ux -Ux -Ux -Ux -My -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -gN -ac -ac -ac -Hi -Hi -Hi -Yq -Hi -Hi -Hi -ac -ac -ac -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -hP -"} -(134,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -wt -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -lF -mN -mN -mN -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -mc -mc -by -by -by -by -PP -zp -zp -Wd -zp -zp -zp -zp -zp -zp -zp -zp -PP -by -by -by -by -by -by -mc -My -My -Ux -Ux -Ux -Ux -My -mc -mc -mN -mN -mN -mN -wt -mN -mN -mN -mN -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -aF -hY -mN -mN -mN -mN -mN -mN -mN -mN -gN -ac -ac -BW -Bt -Bt -Bt -nZ -ac -ac -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -fB -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -dq -mN -aF -mN -mN -mN -mc -mc -hP -"} -(135,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -hX -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -aF -mN -mN -lF -mN -mN -mN -mc -My -My -DW -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -My -My -mc -mc -Nt -by -by -by -by -zp -zp -zp -zp -zp -zp -zp -PP -RC -by -by -by -by -Nt -by -by -Ji -mc -My -Ux -DW -Ux -Ux -Ux -My -My -mc -mN -mN -mN -mN -fB -mN -mN -mN -bK -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -eG -mN -cC -hX -mN -mN -mN -mN -eG -mN -mN -mN -mN -gN -mN -gN -gN -gN -gN -mN -mN -gN -gN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -cC -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -hP -"} -(136,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -aF -mN -lF -mN -mN -mN -mc -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -My -mc -mc -by -by -by -by -by -iq -PP -zp -zp -PP -iq -by -by -by -by -by -by -by -mc -mc -mc -mc -My -Ux -Ux -Ux -Ux -Ux -My -My -mc -mN -mN -mN -mN -mN -hX -mN -mN -bK -bK -bK -bK -ga -Ud -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -eG -mN -mN -mN -Pc -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -hP -"} -(137,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -qm -mN -mN -mN -cC -mN -mN -lF -mN -mN -mN -mN -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -My -mc -mc -RQ -by -Nt -RC -by -by -by -PP -by -by -by -by -by -by -by -RQ -mc -mc -My -My -My -My -Ux -Ux -Ux -Ux -Ux -My -mc -mc -mN -mN -mN -mN -mN -mN -mN -dq -bK -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -dq -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mc -mc -hP -"} -(138,1,1) = {" -bG -lF -lF -lF -lF -lF -lF -yP -Dw -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -fX -lF -lF -lF -lF -lF -lF -lF -gr -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -My -mc -mc -mc -Ji -by -by -by -ne -by -ne -by -by -by -Ji -mc -mc -mc -mc -My -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -gr -lF -lF -xp -lF -lF -lF -lF -lF -ga -ga -ga -ga -ga -ga -ga -ga -ga -ga -ga -ga -ga -ga -ga -ga -ga -ga -lF -lF -lF -lF -fX -lF -lF -lF -lF -lF -lF -lF -UN -lF -lF -lF -lF -lF -lF -lF -lF -lF -lF -fX -lF -lF -lF -lF -lF -lF -lF -lF -lF -xp -lF -lF -lF -pO -lF -lF -lF -lF -lF -lF -yP -lF -lF -lF -lF -fX -lF -lF -lF -lF -Xf -lF -wr -lF -lF -lF -lF -lF -gr -ZL -"} -(139,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -wt -mN -cC -mN -mN -mN -mN -aF -lF -mN -mN -hY -mN -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -My -My -mc -mc -mc -mc -mc -My -sX -My -mc -mc -mc -mc -mc -My -My -My -My -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -My -mc -mN -mN -mN -mN -mN -mN -mN -bK -bK -bK -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mc -hP -"} -(140,1,1) = {" -av -mN -mN -mN -mN -mN -mN -cC -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -My -My -My -My -My -My -sX -My -My -My -My -My -My -My -Ux -Ux -Ux -Ux -Ux -Ux -DW -Ux -Ux -Ux -My -My -mc -mc -mN -mN -mN -mN -mN -mN -bK -bK -bK -bK -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -eG -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -hP -"} -(141,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -lF -mN -mN -mN -mN -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -RQ -Ux -Ux -DW -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -My -My -mc -mN -mN -mN -mN -fB -mN -hX -bK -bK -bK -bK -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -eG -mN -mN -mN -hX -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -ai -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -hP -"} -(142,1,1) = {" -av -mN -mN -mN -mN -wt -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mc -My -Ux -Ux -DW -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -Ux -Ux -Ux -OB -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -My -mc -mN -mN -mN -mN -mN -mN -mN -bK -bK -bK -bK -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -hX -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -hX -mN -cC -mN -wt -mN -cC -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mc -hP -"} -(143,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -lF -mN -mN -hX -mN -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -mc -mN -mN -mN -wt -mN -mN -mN -bK -bK -bK -bK -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -mc -hP -"} -(144,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -eG -mN -lF -mN -mN -mN -mN -mc -My -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -mN -mN -mN -mN -mN -mN -mN -bK -bK -bK -bK -bK -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -dq -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -XP -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -aF -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mc -hP -"} -(145,1,1) = {" -av -mN -hX -mN -mN -mN -mN -mN -bl -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -lF -mN -mN -mN -mN -mc -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -Ux -Ux -My -mc -mN -mN -mN -mN -mN -mN -dq -bK -bK -bK -bK -bK -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -eG -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -eG -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -hP -"} -(146,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -cC -lF -mN -mN -mN -mN -mN -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -My -mc -mN -mN -mN -fB -mN -mN -bK -bK -bK -bK -bK -bK -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -mN -mN -mN -cB -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -hX -mN -fB -mN -eG -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mc -hP -"} -(147,1,1) = {" -av -mN -mN -mN -wt -mN -mN -mN -bl -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -hY -mN -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -Ux -Ux -Ux -Ux -Ux -My -mc -mc -mN -mN -mN -mN -mN -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -hX -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -yf -aF -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -hX -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -mc -hP -"} -(148,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -hX -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mc -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -mN -mN -mN -mN -mN -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -hP -"} -(149,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mc -mc -mc -wI -Nt -by -gX -wI -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -wr -mN -mN -mN -mN -mc -My -My -Ux -Ux -DW -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -mN -mN -mN -hX -mN -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -mN -mN -mN -mc -hP -"} -(150,1,1) = {" -av -mN -mN -mN -mN -cC -mN -mN -bl -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -kU -uf -by -by -by -by -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mc -My -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -mN -mN -mN -hX -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -aF -cC -mN -aF -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -zR -hX -mN -mN -mc -hP -"} -(151,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -by -vA -by -by -by -by -by -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mc -mc -My -My -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -mN -mN -mN -mN -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -mN -eG -mN -fB -mN -mN -mN -fB -mN -mN -fB -mN -mN -fB -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mc -hP -"} -(152,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -zY -by -by -by -by -RC -vA -by -mc -mc -mc -mc -mN -mN -mN -mN -aF -mN -lF -mN -mN -eG -mN -mN -mc -mc -mc -My -My -My -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -mN -mN -mN -mN -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -cC -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -aF -mN -mN -mc -hP -"} -(153,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -Mp -by -RC -Nt -by -uf -by -by -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -Ux -Ux -My -mc -mN -mN -mN -mN -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -dq -mN -mN -mN -mN -dq -mN -mN -mN -mN -mN -mN -qm -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -fB -mN -mN -fB -mN -mN -mN -mN -mN -qm -mN -mN -mN -mN -DS -mN -mN -mN -mN -mc -hP -"} -(154,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -by -by -uf -by -by -by -by -wI -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -lF -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mc -My -My -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -mc -mN -mN -mN -mN -dq -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -Ov -mN -mN -cC -mN -aF -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -hP -"} -(155,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -wI -by -vA -by -vA -by -by -by -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -lF -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -My -Ux -Ux -Ux -DW -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -Ux -Ux -Ux -Ux -My -My -My -My -mc -mN -fB -mN -mN -mN -mN -bK -bK -bK -bK -bK -bK -dq -mN -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -fB -eG -mN -mN -mN -mN -mN -eG -fB -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -aF -mN -mN -mN -cC -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -mc -hP -"} -(156,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -zY -by -RC -by -by -RC -by -by -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mc -My -My -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -My -mc -mc -mc -mc -mN -fB -mN -mN -mN -mN -bK -bK -bK -bK -bK -mN -mN -mN -bK -bK -ga -bK -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -dq -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -ai -cC -mN -mN -hX -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -cC -mN -mN -fB -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mc -hP -"} -(157,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -by -uf -by -Nt -RC -by -by -by -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -My -My -Ux -DW -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -My -My -My -My -My -My -My -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -vB -mN -mN -mN -ga -bK -bK -bK -bK -bK -bK -bK -bK -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -fB -mN -mN -mN -mN -aA -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mc -hP -"} -(158,1,1) = {" -av -mN -mN -mN -cC -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -LE -by -by -by -by -by -by -by -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -lF -hY -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -My -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -DW -Ux -My -My -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -lF -mN -bK -bK -bK -bK -bK -bK -dq -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -eG -mN -mN -fB -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -cC -aF -mN -aF -mN -mN -mN -cC -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -mN -mc -hP -"} -(159,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -wI -by -by -by -by -Nt -Nt -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -lF -mN -mN -mN -mN -cC -aF -mN -mN -hX -mN -mN -mN -mN -mN -mN -mc -mc -My -My -Ux -Ux -Ux -DW -Ux -Ux -DW -Ux -Ux -Ux -Ux -Ux -My -My -My -My -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -aF -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -cC -mN -mN -mN -mN -mN -aF -mN -mN -mN -mc -hP -"} -(160,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -by -by -by -by -by -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mc -mc -My -My -My -Ux -Ux -Ux -Ux -Ux -Ux -Ux -Ux -My -My -My -mc -mc -mc -mc -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -hX -hX -mN -fB -mN -mN -mN -mN -mN -mN -hY -aF -mN -fB -fB -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -hP -"} -(161,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -by -by -by -by -by -by -by -sX -by -mc -mc -mc -mc -Dx -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mc -mc -mc -My -My -My -My -My -My -My -My -My -My -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -hY -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -aF -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mc -hP -"} -(162,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -hX -mN -mN -mN -mN -mN -wt -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -by -by -RC -by -sX -sX -by -by -mN -mN -mN -lF -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -cC -cC -eG -mN -mN -fB -nf -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mc -hP -"} -(163,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -sX -by -RC -mN -mN -mN -mN -lF -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -cC -mN -ON -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -hX -mN -mN -mN -mN -lF -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -wt -mN -mN -mN -aF -mN -mN -cC -aF -mN -mN -mN -cC -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mc -hP -"} -(164,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -Dx -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -qO -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -aA -mN -mN -mN -mN -hX -mN -mN -mN -mN -dq -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -cC -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -hY -mc -hP -"} -(165,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -fB -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -lF -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -hP -"} -(166,1,1) = {" -av -mN -mN -mN -mN -cC -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -vp -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -ai -hX -mN -mN -mN -fB -mN -mN -mN -mN -aF -mN -mN -hY -mN -mN -mN -mN -mN -mN -eG -mN -lF -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -fB -mN -mN -fB -dq -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -aF -mN -hX -mN -mN -mN -mc -hP -"} -(167,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -lF -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -cC -cC -mN -eG -mN -mN -mN -mN -mN -aF -mN -aF -mN -aF -mN -mN -IU -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -eG -mN -fB -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -nf -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mc -hP -"} -(168,1,1) = {" -av -mN -mN -mN -mN -aF -cC -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -lF -mN -mN -wt -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -jn -mN -cC -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -fB -mN -mN -mN -Cg -mN -mN -mN -mN -mN -mN -fB -mN -lF -mN -mN -mN -eG -mN -mN -mN -mN -mN -eG -mN -mN -mN -hX -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -wt -mN -mN -mN -mc -hP -"} -(169,1,1) = {" -av -mN -hX -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -cC -eG -mN -cC -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -dq -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -yf -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -eG -mN -mN -hX -mN -mN -mN -mN -cC -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -hP -"} -(170,1,1) = {" -av -mN -mN -mN -mN -mN -aF -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -eG -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -lF -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -dq -mN -aF -mN -mN -mN -dq -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hP -"} -(171,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -fB -Cg -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -hX -fB -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -an -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -aF -mN -mN -mN -mN -mN -mN -hP -"} -(172,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -cC -eG -mN -jn -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -lF -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -dq -mN -mN -mN -dq -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -ry -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -CM -mN -mN -mN -mN -mN -hP -"} -(173,1,1) = {" -av -mN -mN -mN -mN -mN -mN -cC -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -aF -mN -mN -mN -hX -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -lF -mN -mN -mN -fB -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -hP -"} -(174,1,1) = {" -av -mN -mN -mN -mN -mN -mN -cC -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -vp -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -fB -mN -mN -mN -aF -mN -hX -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -hX -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -fB -mN -mN -mN -mN -mN -mN -fB -mN -dq -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -hP -"} -(175,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -hX -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -aF -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -wt -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -hP -"} -(176,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -qm -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -hP -"} -(177,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -bl -rc -bl -bl -bl -bl -bl -bl -bl -ca -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -vh -bl -bl -bl -bl -bl -bl -Dw -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -Dw -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -bl -hP -"} -(178,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -aF -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -Xf -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -hX -mN -mN -hP -"} -(179,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -wt -mN -mN -aF -mN -mN -mN -mN -mN -mN -cC -mN -aF -mN -cC -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -hX -mN -mN -eG -mN -mN -mN -mN -dq -mN -mN -hY -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -dq -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hP -"} -(180,1,1) = {" -av -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -cC -mN -cC -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -wt -mN -aF -mN -mN -aF -aF -mN -eG -mN -"} -(181,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -aF -mN -mN -mN -mN -mN -eG -mN -mN -aF -mN -mN -mN -wt -mN -mN -aF -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -"} -(182,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -dq -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -"} -(183,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -wt -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -aF -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -eG -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hX -mN -mN -mN -lF -mN -mN -dq -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -mN -eG -mN -mN -mN -hY -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -dq -mN -mN -mN -mN -hY -mN -mN -mN -eG -mN -mN -mN -hX -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -hY -mN -mN -mN -hX -mN -mN -mN -hX -mN -mN -hY -mN -mN -hX -"} -(184,1,1) = {" -av -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -aF -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -lF -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -"} -(185,1,1) = {" -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -bG -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -bG -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -"} diff --git a/maps/southern_sun/southern_cross_areas.dm b/maps/southern_sun/southern_cross_areas.dm deleted file mode 100644 index 7feb5ad6fe..0000000000 --- a/maps/southern_sun/southern_cross_areas.dm +++ /dev/null @@ -1,5247 +0,0 @@ - -/* -/datum/map/southern_cross - - post_round_safe_areas = list ( - /area/centcom, - /area/shuttle/escape/centcom, - /area/shuttle/escape_pod1/centcom, - /area/shuttle/escape_pod2/centcom, - /area/shuttle/escape_pod3/centcom, - /area/shuttle/escape_pod5/centcom, - /area/shuttle/transport1/centcom, - /area/shuttle/administration/centcom, - /area/shuttle/response_ship, - ) -*/ - -//Planetside - -/area/surface - name = "The Surface (Don't Use)" - flags = RAD_SHIELDED - -/area/surface/center - name = "Center" - icon_state = "center" - -/area/surface/north - name = "Outpost" - icon_state = "north" - -/area/surface/south - name = "Lake" - icon_state = "south" - -/area/surface/east - name = "Shoreline" - icon_state = "east" - -/area/surface/west - name = "Snowfields" - icon_state = "west" - -/area/surface/northeast - name = "Depths" - icon_state = "northeast" - -/area/surface/northwest - name = "Mountains" - icon_state = "northwest" - -/area/surface/southwest - name = "Glowing Forest" - icon_state = "southwest" - -/area/surface/southeast - name = "Southern Shoreline" - icon_state = "southeast" - -/area/surface/outside - ambience = AMBIENCE_SIF - always_unpowered = TRUE - flags = AREA_FLAG_IS_NOT_PERSISTENT - outdoors = OUTDOORS_YES - -// The area near the outpost, so POIs don't show up right next to the outpost. -/area/surface/outside/plains/outpost - name = "Outpost Perimeter" - icon_state = "green" - -// Rest of the 'plains' Z-level, for POIs. -/area/surface/outside/plains/normal - name = "Plains" - icon_state = "yellow" - -// So POIs don't get embedded in rock. -/area/surface/outside/plains/mountains - name = "Mountains" - icon_state = "darkred" - -// Paths get their own area so POIs don't overwrite pathways. -/area/surface/outside/path - name = "Pathway" - icon_state = "purple" - -/area/surface/outside/path/plains - -/area/surface/outside/wilderness/normal - name = "Wilderness" - icon_state = "yellow" - -/area/surface/outside/wilderness/deep - name = "Deep Wilderness" - icon_state = "red" - -// So POIs don't get embedded in rock. -/area/surface/outside/wilderness/mountains - name = "Mountains" - icon_state = "darkred" - -/* //Sky islands removal, lack of use -/area/surface/outside/wilderness/skylands - name = "Floating Islands" - icon_state = "blue" - -/area/surface/outside/wilderness/skylands/empty - name = "Sky" - icon_state = "red" - luminosity = 1 -*/ - - -/area/surface/outside/path/wilderness - -// Water -/area/surface/outside/ocean - name = "Sea" - icon_state = "bluenew" - -/area/surface/outside/river - name = "River" - icon_state = "bluenew" - -/area/surface/outside/river/faxalven - name = "Faxälven River" - -/area/surface/outside/river/indalsalven - name = "Indalsälven River" - -/area/surface/outside/river/svartan - name = "Svartån River" - -/area/surface/outside/lake/romsele - name = "Romsele Lake" - icon_state = "blue2" - - - -/area/surface/cave - flags = RAD_SHIELDED - always_unpowered = TRUE - -/area/surface/cave - ambience = list('sound/ambience/ambimine.ogg', 'sound/ambience/song_game.ogg', 'sound/music/LRRMenu.ogg', 'sound/music/LRRTrack3.ogg', 'sound/ambience/cave/AmbCaveDebriA.ogg', 'sound/ambience/cave/AmbCaveDebriB.ogg', 'sound/ambience/cave/AmbCaveDebriC.ogg', 'sound/ambience/cave/AmbCaveDebriD.ogg') - -// The bottom half that connects to the outpost and is safer. -/area/surface/cave/explored/normal - name = "Tunnels" - icon_state = "explored" - -/area/surface/cave/explored/trader - name = "Trader Hideout" - icon_state = "hideaway" - -/area/surface/cave/unexplored/normal - name = "Tunnels" - icon_state = "unexplored" - -// The top half of the map that is more dangerous. -/area/surface/cave/explored/deep - name = "Depths" - icon_state = "explored_deep" - -/area/surface/cave/unexplored/deep - name = "Depths" - icon_state = "unexplored_deep" - - - -//Surface Outposts - -/area/surface/outpost - ambience = AMBIENCE_GENERIC - -//Wilderness Shuttle Shelter - -/area/surface/outpost/shelter - name = "Wilderness Shelter" - -/area/surface/outpost/shelter/dorms - name = "Wilderness Shelter Dorms" - icon_state = "Sleep" - soundproofed = TRUE - limit_mob_size = FALSE - block_suit_sensors = TRUE - flags = RAD_SHIELDED - block_tracking = TRUE - -/area/surface/outpost/shelter/exterior - name = "Wilderness Shelter Exterior" - icon_state = "exit" - ambience = list('sound/ambience/ambimine.ogg', 'sound/ambience/song_game.ogg', 'sound/music/LRRMenu.ogg', 'sound/music/LRRTrack3.ogg', 'sound/ambience/cave/AmbCaveDebriA.ogg', 'sound/ambience/cave/AmbCaveDebriB.ogg', 'sound/ambience/cave/AmbCaveDebriC.ogg', 'sound/ambience/cave/AmbCaveDebriD.ogg') - outdoors = OUTDOORS_YES - -/area/surface/outpost/shelter/utilityroom - name = "Wilderness Shelter Utility Room" - icon_state = "substation" - -//Valley stuffs, chomps Edit by Jasper, for wilds but stranger. -/area/surface/outpost/unfinished - name = "Unfinished" - icon_state = "red" - -/area/surface/outside/valley/inner - name = "Valley Inner" - icon_state = "yellow" - -/area/surface/outside/valley/walls - name = "Valley Walls" - icon_state = "yellow" - outdoors = OUTDOORS_NO - -/area/surface/outside/valley/edge - name = "Valley Edge" - icon_state = "yellow" - -/area/surface/outside/valley/river - name = "Valley River" - icon_state = "yellow" - -/area/surface/outside/valley/end - name = "Valley's End" - icon_state = "red" - -// Main mining outpost -/area/surface/outpost/mining_main - name = "North Mining Outpost" - icon_state = "outpost_mine_main" - outdoors = OUTDOORS_NO - -/area/surface/outpost/mining_main/exterior - name = "North Mining Outpost Exterior" - icon_state = "outpost_mine_main" - outdoors = OUTDOORS_YES - -/area/surface/outpost/mining_main/crew_area - name = "North Mining Crew Area" - -/area/surface/outpost/mining_main/firstaid - name = "North Mining First-Aid Station" - -/area/surface/outpost/mining_main/storage - name = "North Mining Gear Storage" - -/area/surface/outpost/mining_main/uxstorage - name = "North Mining Gear Secondary Storage" - -/area/surface/outpost/mining_main/mech_bay - name = "North Mining Mech Bay" - -/area/surface/outpost/mining_main/emergencystorage - name = "\improper North Mining Emergency Storage" - flags = RAD_SHIELDED - icon_state = "emergencystorage" - sound_env = SMALL_ENCLOSED - -/area/surface/outpost/mining_main/refinery - name = "North Mining Refinery" - -/area/surface/outpost/mining_main/restroom - name = "North Mining Restroom" - sound_env = SMALL_ENCLOSED - -/area/surface/outpost/mining_main/tools - name = "North Mining Tool Storage" - -/area/surface/outpost/mining_main/cave - name = "North Mining Outpost Cave" - icon_state = "outpost_mine_main" - -//Rust-Engine Outpost CHOMPedit - ksc - -/area/surface/outpost/engineering/atmos_room - name = "North Atmos Room" - icon_state = "atmos" - -/area/surface/outpost/engineering/smes - name = "North Engineering SMES" - icon_state = "substation" - ambience = AMBIENCE_SUBSTATION //CHOMP Addition - -/area/surface/outpost/engineering/reactor_smes - name = "North Engineering Reactor SMES" - icon_state = "engine_smes" - ambience = AMBIENCE_SUBSTATION //CHOMP Addition - -/area/surface/outpost/engineering/storage - name = "North Engineering Storage" - icon_state = "storage" - -/area/surface/outpost/engineering/monitoring - name = "North Engineering Monitoring" - icon_state = "engine_monitoring" - -/area/surface/outpost/engineering/auxiliary_storage - name = "North Engineering Auxiliary Storage" - icon_state = "emergencystorage" - -//Research Surface Outpost - -/area/surface/outpost/research - icon_state = "outpost_research" - outdoors = OUTDOORS_NO - -/area/surface/outpost/research/xenoresearch - name = "\improper Xenoresearch" - -/area/surface/outpost/research/xenoresearch/smes - name = "\improper Xenoresearch SMES Maintenance" - icon_state = "substation" - sound_env = SMALL_ENCLOSED - ambience = AMBIENCE_SUBSTATION //CHOMP Addition - -/area/surface/outpost/research/xenoresearch/emergencystorage - name = "\improper Xenoresearch Emergency Storage" - icon_state = "emergencystorage" - sound_env = SMALL_ENCLOSED - -/area/surface/outpost/research/xenoresearch/first_aid //CHOMPstation edit - name = "\improper Xenoresearch First-Aid Station" - icon_state = "medbay2" - -/area/surface/outpost/research/xenoresearch/restroom - name = "\improper Xenoresearch Restroom" - icon_state = "research_restroom" - sound_env = SMALL_ENCLOSED - -/area/surface/outpost/research/xenoresearch/xenobiology - name = "\improper Xenobiology Lab" - icon_state = "xeno_lab" - -/area/surface/outpost/research/xenoresearch/xenoflora - name = "\improper Xenoflora Lab" - icon_state = "xeno_f_lab" - -/area/surface/outpost/research/xenoresearch/xenoflora_storage - name = "\improper Xenoflora Storage" - icon_state = "xeno_f_store" - -/area/surface/outpost/research/xenoresearch/medical - name = "Xenoresearch First-Aid Station" - -/area/surface/outpost/research/xenoarcheology - name = "\improper Xenoarcheology" - -/area/surface/outpost/research/xenoarcheology/exterior - name = "\improper xenoarcheology Exterior" - icon_state = "exit" - -/area/surface/outpost/research/xenoarcheology/medical - name = "Xenoarcheology First-Aid Station" - -/area/surface/outpost/research/xenoarcheology/smes - name = "\improper Xenoarcheology SMES Maintenance" - icon_state = "substation" - sound_env = SMALL_ENCLOSED - ambience = AMBIENCE_SUBSTATION //CHOMP Addition - -/area/surface/outpost/research/xenoarcheology/emergencystorage - name = "\improper Xenoarcheology Emergency Storage" - icon_state = "emergencystorage" - sound_env = SMALL_ENCLOSED - -/area/surface/outpost/research/xenoarcheology/restroom - name = "\improper Xenoarcheology Restroom" - icon_state = "research_restroom" - sound_env = SMALL_ENCLOSED - -/area/surface/outpost/research/xenoarcheology/analysis - name = "Xenoarcheology Sample Analysis" - -/area/surface/outpost/research/xenoarcheology/anomaly - name = "Xenoarcheology Anomalous Materials Lab" - -/area/surface/outpost/research/xenoarcheology/isolation_a - name = "Xenoarcheology Isolation A" - -/area/surface/outpost/research/xenoarcheology/isolation_b - name = "Xenoarcheology Isolation B" - -/area/surface/outpost/research/xenoarcheology/isolation_c - name = "Xenoarcheology Isolation C" - -/area/surface/outpost/research/xenoarcheology/lounge - name = "Xenoarcheology Research Lounge" - -/area/surface/outpost/research/xenoarcheology/longtermstorage - name = "Xenoarcheology Long-Term Anomalous Storage" - -/area/surface/outpost/research/xenoarcheology/exp_prep - name = "Xenoarcheology Expedition Preperation" - -//Main Outpost - -/area/surface/outpost/main - name = "\improper Main Outpost" - icon_state = "Sleep" - outdoors = OUTDOORS_NO - -/area/surface/outpost/main/laundry - name = "\improper Main Outpost Laundry Room" - -/area/surface/outpost/main/landing - name = "\improper Main Outpost Shuttle Landing" - icon_state = "hangar" - -/area/surface/outpost/main/gen_room - name = "\improper Main Outpost SMES" - icon_state = "substation" - ambience = AMBIENCE_SUBSTATION //CHOMP Edit - -/area/surface/outpost/main/gen_room/smes_left - name = "\improper Main Outpost Left Wing SMES" - -/area/surface/outpost/main/gen_room/smes_right - name = "\improper Main Outpost Right Wing SMES" - -/area/surface/outpost/main/gen_room/smes - name = "\improper Main Outpost Dorm SMES" - icon_state = "substation" - -/area/surface/outpost/main/pool - name = "\improper Main Outpost Pool" - icon_state = "pool" - -/area/surface/outpost/main/restroom - name = "\improper Main Outpost Restroom" - icon_state = "toilet" - sound_env = SMALL_ENCLOSED - -/area/surface/outpost/main/showers - name = "\improper Main Outpost Showers" - icon_state = "toilet" - sound_env = SMALL_ENCLOSED - -/area/surface/outpost/main/gym - name = "\improper Main Outpost Gym" - icon_state = "fitness" - -/area/surface/outpost/main/garage - name = "\improper Main Outpost Garage" - icon_state = "storage" - -/area/surface/outpost/main/crew_quarters - name = "\improper Main Outpost Crew Quarters" - sound_env = MEDIUM_SOFTFLOOR - -/area/surface/outpost/main/tcomm - name = "\improper Main Outpost Telecommunications" - icon_state = "tcomsatcham" - music = "signal" - -/area/surface/outpost/main/teleporter - name = "\improper Main Outpost Teleporter" - icon_state = "teleporter" - -/area/surface/outpost/main/first_aid - name = "\improper Main Outpost First-Aid Station" - icon_state = "medbay2" - -/area/surface/outpost/main/search_and_rescue - name = "\improper Main Outpost Search and Rescue" - icon_state = "medbay2" - -/area/surface/outpost/main/exploration - name = "\improper Main Outpost Exploration Prep Room" - icon_state = "outpost_research" - -/area/surface/outpost/main/exploration/containment - name = "\improper Main Outpost Fauna Containment" - -/area/surface/outpost/main/security - name = "\improper Main Outpost Security Station" - icon_state = "checkpoint1" - -/area/surface/outpost/main/gateway - name = "\improper Main Outpost Gateway" - icon_state = "teleporter" - music = "signal" - -/area/surface/outpost/main/gateway - name = "\improper Main Outpost Gateway" - icon_state = "teleporter" - -/area/surface/outpost/main/corridor - name = "\improper Main Outpost Corridor" - icon_state = "dk_yellow" - -/area/surface/outpost/main/corridor/dorms - name = "\improper Main Outpost Dorm Corridor" - -/area/surface/outpost/main/corridor/right_lower - name = "\improper Main Outpost Right Wing Lower Corridor" - -/area/surface/outpost/main/corridor/right_upper - name = "\improper Main Outpost Right Wing Upper Corridor" - -/area/surface/outpost/main/corridor/left_lower - name = "\improper Main Outpost Left Wing Lower Corridor" - -/area/surface/outpost/main/corridor/left_upper - name = "\improper Main Outpost Left Wing Upper Corridor" - -/area/surface/outpost/main/bar - name = "\improper Main Outpost Bar" - icon_state = "bar" -/* -/area/surface/outpost/main/dorms - name = "\improper Main Outpost Dorms" - -/area/surface/outpost/main/dorms/dorm_1 - name = "\improper Main Outpost Dorm One" - -/area/surface/outpost/main/dorms/dorm_2 - name = "\improper Main Outpost Dorm Two" - -/area/surface/outpost/main/dorms/dorm_3 - name = "\improper Main Outpost Dorm Three" - -/area/surface/outpost/main/dorms/dorm_4 - name = "\improper Main Outpost Dorm Four" - -/area/surface/outpost/main/dorms/dorm_5 - name = "\improper Main Outpost Dorm Five" - -/area/surface/outpost/main/dorms/dorm_6 - name = "\improper Main Outpost Dorm Six" -*/ -/area/surface/outpost/main/airlock - name = "\improper Main Outpost Airlock" - icon_state = "red" - ambience = AMBIENCE_SIF - -/area/surface/outpost/main/airlock/left_one - name = "\improper Outpost Left Wing Airlock One" - -/area/surface/outpost/main/airlock/left_two - name = "\improper Outpost Left Wing Airlock Two" - -/area/surface/outpost/main/airlock/left_three - name = "\improper Outpost Left Wing Airlock Three" - -/area/surface/outpost/main/airlock/right_one - name = "\improper Outpost Right Wing Airlock One" - -/area/surface/outpost/main/airlock/right_two - name = "\improper Outpost Right Wing Airlock Two" - -/area/surface/outpost/main/airlock/right_three - name = "\improper Outpost Right Wing Airlock Three" - -/area/surface/outpost/main/airlock/landing_north - name = "\improper Main Outpost North Airlock" - -/area/surface/outpost/main/airlock/landing_south - name = "\improper Main Outpost South Airlock" - -/area/surface/outpost/main/construction_area - name = "\improper Main Outpost Construction Area" - icon_state = "construction" - -/area/surface/outpost/main/janitor - name = "\improper Main Outpost Custodial Closet" - icon_state = "janitor" - -/area/surface/outpost/main/emergency_storage - flags = RAD_SHIELDED - name = "Emergency Storage" - icon_state = "emergencystorage" - -/area/surface/outpost/main/emergency_storage/one - name = "\improper Main Outpost Emergency Storage One" - -/area/surface/outpost/main/emergency_storage/two - name = "\improper Main Outpost Emergency Storage Two" - -/area/surface/outpost/wall - name = "The Wall" - icon_state = "red" - requires_power = FALSE - ambience = AMBIENCE_HIGHSEC - -/area/surface/outpost/wall/checkpoint - name = "Checkpoint" - ambience = AMBIENCE_HIGHSEC - -//Civilian Outpost - -/area/surface/outpost/civilian - name = "\improper Civilian Outpost" - icon_state = "recreation_area" - -/area/surface/outpost/civilian/smes - name = "\improper Civilian Outpost SMES" - icon_state = "substation" - ambience = AMBIENCE_ENGINEERING - -/area/surface/outpost/civilian/fishing - name = "\improper Civilian Outpost Fishing Supplies" - icon_state = "storage" - -/area/surface/outpost/civilian/pool - name = "\improper Civilian Outpost Pool" - icon_state = "pool" - -/area/surface/outpost/civilian/sauna - name = "\improper Civilian Outpost Sauna" - -/area/surface/outpost/civilian/emergency_storage - flags = RAD_SHIELDED - name = "\improper Civilian Outpost Emergency Storage" - icon_state = "emergencystorage" - -//Security Outpost - -/area/surface/outpost/security - name = "\improper Security Outpost" - icon_state = "checkpoint1" - -/area/surface/outpost/security/maa - name = "\improper Security Outpost Gear Storage" - icon_state = "security" - -/area/surface/outpost/security/smes - name = "\improper Security Outpost SMES" - icon_state = "substation" - ambience = AMBIENCE_SUBSTATION //CHOMP Edit - -//Mining Station - -/area/outpost/mining_station - icon_state = "outpost_mine_main" - name = "Mining Station" - outdoors = OUTDOORS_NO - -/area/outpost/mining_station/dorms - name = "Mining Station Dormitory" - -/area/outpost/mining_station/storage - name = "Mining Station Gear Storage" - -/area/outpost/mining_station/gen_station - name = "Mining Station Generator Room" - icon_state = "substation" - ambience = AMBIENCE_SUBSTATION //CHOMP Edit - -/area/outpost/mining_station/crew_area - name = "Mining Station Crew Area" - -/area/outpost/mining_station/refinery - name = "Mining Station Refinery" - -/area/outpost/mining_station/telecomms - name = "Main Station Telecommunications" - sound_env = SMALL_ENCLOSED - -/area/outpost/mining_station/dock - name = "Mining Station Dock" -z -//Turbolift - -/area/turbolift - name = "\improper Turbolift" - icon_state = "shuttle" - requires_power = 0 - dynamic_lighting = 1 - flags = RAD_SHIELDED - -/area/turbolift/start - name = "\improper Turbolift Start" - -/area/turbolift/firstdeck - name = "\improper first deck" - base_turf = /turf/simulated/floor/plating - -/area/turbolift/seconddeck - name = "\improper second deck" - base_turf = /turf/simulated/open - -/area/turbolift/thirddeck - name = "\improper third deck" - base_turf = /turf/simulated/open - -// Elevator areas. -// CHOMPEdit - Maintenance Deck -/* -/area/turbolift/port_deck_maints - name = "lift (maints deck)" - lift_floor_label = "Deck 0" - lift_floor_name = "Maintenance Deck" - lift_announce_str = "Arriving at Maintenance Deck: Engineering. Power Back Up. Gravity Generator." - base_turf = /turf/simulated/floor -*/ -/area/turbolift/port_deck_one - name = "lift (first deck)" - lift_floor_label = "Deck 1" - lift_floor_name = "Hangar Deck" - lift_announce_str = "Arriving at Hangar Deck: Main Hangars.Cargo Delivery. Telecommunications. Auxiliary Shuttle Docks. Escape Pods." - base_turf = /turf/simulated/floor - -/area/turbolift/port_deck_two - name = "lift (second deck)" - lift_floor_label = "Deck 2" - lift_floor_name = "Operations Deck" - lift_announce_str = "Arriving at Operations Deck: Engineering. Cargo. Medbay. Research. Security. Crew Facilities Shuttle Docks. Cryogenic Storage." - -/area/turbolift/port_deck_three - name = "lift (third deck)" - lift_floor_label = "Deck 3" - lift_floor_name = "Command Deck" - lift_announce_str = "Arriving at Command Deck: Bridge. Meeting Room. Command Quarters. AI Core. Solars." - -/area/turbolift/starboard_deck_one - name = "lift (first deck)" - lift_floor_label = "Deck 1" - lift_floor_name = "Hangar Deck" - lift_announce_str = "Arriving at Hangar Deck: Main Hangars.Cargo Delivery. Telecommunications. Auxiliary Shuttle Docks. Escape Pods." - base_turf = /turf/simulated/floor - -/area/turbolift/starboard_deck_two - name = "lift (second deck)" - lift_floor_label = "Deck 2" - lift_floor_name = "Operations Deck" - lift_announce_str = "Arriving at Operations Deck: Engineering. Cargo. Medbay. Research. Security. Crew Facilities, Shuttle Docks. Cryogenic Storage." - -/area/turbolift/starboard_deck_three - name = "lift (third deck)" - lift_floor_label = "Deck 3" - lift_floor_name = "Command Deck" - lift_announce_str = "Arriving at Command Deck: Bridge. Meeting Room. Command Quarters. AI Core. Solars." - -/area/turbolift/center_deck_one - name = "lift (first deck)" - lift_floor_label = "Deck 1" - lift_floor_name = "Hangar Deck" - lift_announce_str = "Arriving at Hangar Deck: Main Hangars. Cargo Delivery. Telecommunications. Auxiliary Shuttle Docks. Escape Pods." - base_turf = /turf/simulated/floor - -/area/turbolift/center_deck_two - name = "lift (second deck)" - lift_floor_label = "Deck 2" - lift_floor_name = "Operations Deck" - lift_announce_str = "Arriving at Operations Deck: Engineering. Cargo. Medbay. Research. Security. Crew Facilities Shuttle Docks. Cryogenic Storage." - -/area/turbolift/center_deck_three - name = "lift (third deck)" - lift_floor_label = "Deck 3" - lift_floor_name = "Command Deck" - lift_announce_str = "Arriving at Command Deck: Bridge. Meeting Room. Command Quarters. AI Core. Solars." - -/area/turbolift/cargo_deck_one - name = "lift (first deck)" - lift_floor_label = "Deck 1" - lift_floor_name = "Hangar Deck" - lift_announce_str = "Arriving at Cargo Delivery." - base_turf = /turf/simulated/floor - -/area/turbolift/cargo_deck_two - name = "lift (second deck)" - lift_floor_label = "Deck 2" - lift_floor_name = "Operations Deck" - lift_announce_str = "Arriving at Cargo." - -/area/turbolift/aft_deck_one - name = "lift (first deck)" - lift_floor_label = "Deck 1" - lift_floor_name = "Hangar Deck" - lift_announce_str = "Arriving at Hangar Deck: Main Hangars. Cargo Delivery. Telecommunications. Auxiliary Shuttle Docks. Escape Pods." - base_turf = /turf/simulated/floor - -/area/turbolift/aft_deck_two - name = "lift (second deck)" - lift_floor_label = "Deck 2" - lift_floor_name = "Operations Deck" - lift_announce_str = "Arriving at Operations Deck: Engineering. Cargo. Medbay. Research. Security. Crew Facilities Shuttle Docks. Cryogenic Storage." - -/area/turbolift/aft_deck_three - name = "lift (third deck)" - lift_floor_label = "Deck 3" - lift_floor_name = "Command Deck" - lift_announce_str = "Arriving at Command Deck: Bridge. Meeting Room. Command Quarters. AI Core. Solars." - -/area/turbolift/forward_deck_one - name = "lift (first deck)" - lift_floor_label = "Deck 1" - lift_floor_name = "Hangar Deck" - lift_announce_str = "Arriving at Hangar Deck: Main Hangars. Cargo Delivery. Telecommunications. Auxiliary Shuttle Docks. Escape Pods." - base_turf = /turf/simulated/floor - -/area/turbolift/forward_deck_two - name = "lift (second deck)" - lift_floor_label = "Deck 2" - lift_floor_name = "Operations Deck" - lift_announce_str = "Arriving at Operations Deck: Engineering. Cargo. Medbay. Research. Security. Crew Facilities Shuttle Docks. Cryogenic Storage." - -/area/turbolift/forward_deck_three - name = "lift (third deck)" - lift_floor_label = "Deck 3" - lift_floor_name = "Command Deck" - lift_announce_str = "Arriving at Command Deck: Bridge. Meeting Room. Command Quarters. AI Core. Solars." - - -//Deck One (Z-1) - -/area/engineering/auxiliary_engineering - name = "\improper Auxiliary Engineering Station" - sound_env = SMALL_ENCLOSED -/* -//KSC - CHOMPStation Edit 1/19/21 - Moving this to the second-deck -/area/crew_quarters/firstdeck/gym - name = "\improper Station Gym" - icon_state = "fitness" -*/ - -/area/construction/firstdeck/ - name = "\improper Engineering Construction Area" - icon_state = "construction" - -/area/construction/firstdeck/construction1 - name = "\improper First Deck Engineering Construction Area 1" - -/area/construction/firstdeck/construction2 - name = "\improper First Deck Engineering Construction Area 2" - -/area/construction/firstdeck/construction3 - name = "\improper First Deck Engineering Construction Area 3" - -/area/construction/firstdeck/construction4 - name = "\improper First Deck Engineering Construction Area 4" - -/area/construction/firstdeck/construction5 - name = "\improper First Deck Engineering Construction Area 5" - -/area/crew_quarters/toilet/firstdeck - name = "\improper First Deck Restroom" - -/area/maintenance/firstdeck - name = "First Deck Maintenance" - icon_state = "maintcentral" - -/area/maintenance/firstdeck/aftstarboard - name = "First Deck Aft Starboard Maintenance" - icon_state = "asmaint" - -/area/maintenance/firstdeck/aftport - name = "First Deck Aft Port Maintenance" - icon_state = "apmaint" - -/area/maintenance/firstdeck/forestarboard - name = "First Deck Fore Starboard Maintenance" - icon_state = "fsmaint" - -/area/maintenance/firstdeck/foreport - name = "First Deck Fore Port Maintenance" - icon_state = "fpmaint" - -/area/maintenance/firstdeck/centralstarboard - name = "First Deck Starboard Maintenance" - icon_state = "smaint" - -/area/maintenance/firstdeck/centralport - name = "First Deck Port Maintenance" - icon_state = "pmaint" - -/area/maintenance/substation/firstdeck - name = "First Deck Utility Access" - -/area/maintenance/substation/firstdeck/cargo - name = "First Deck Cargo Substation" - -/area/hallway/primary/firstdeck/elevator - name = "\improper First Deck Central Elevator Access" - icon_state = "hallC" - -/area/hallway/primary/firstdeck/fore - name = "\improper First Deck Fore Hallway" - icon_state = "hallF" - -/area/hallway/primary/firstdeck/fpcenter - name = "\improper First Deck Fore Port Central Hallway" - icon_state = "hallC1" - -/area/hallway/primary/firstdeck/fscenter - name = "\improper First Deck Fore Starboard Central Hallway" - icon_state = "hallC2" - -/area/hallway/primary/firstdeck/apcenter - name = "\improper First Deck Aft Port Central Hallway" - icon_state = "hallC3" - -/area/hallway/primary/firstdeck/ascenter - name = "\improper First Deck Aft Starboard Central Hallway" - icon_state = "hallC4" - -/area/hallway/primary/firstdeck/aft - name = "\improper First Deck Aft Hallway" - icon_state = "hallA" - -/area/hallway/primary/firstdeck/port - name = "\improper First Deck Port Hallway" - icon_state = "hallP" - -/area/hallway/primary/firstdeck/starboard - name = "\improper First Deck Starboard Hallway" - icon_state = "hallS" - -/area/hallway/primary/firstdeck/auxdockaft - name = "\improper First Deck Aft Auxiliary Dock" - icon_state = "docking_hallway" - forbid_events = TRUE - -/area/hallway/primary/firstdeck/auxdockfore - name = "\improper First Deck Fore Auxiliary Dock" - icon_state = "docking_hallway" - -//CHOMPStation Edit. Two new areas for the vault. -/area/hallway/primary/firstdeck/vaultcheckpoint - name = "\improper Vault Checkpoint" - icon_state = "nuke_storage" - -/area/hallway/primary/firstdeck/vaultlobby - name = "\improper Vault Lobby" - icon_state = "nuke_storage" - -//CHOMPStation Edit Start TFF 4/5/20 - One of these ain't the same thing, bruh. Escape Pod 1, Escape Pod 2, Research Access Hallway. -/area/hallway/secondary/escape/firstdeck/ep_port - name = "\improper Large Escape Pod 2 Port" - icon_state = "escape_pod" - -/area/hallway/secondary/escape/firstdeck/ep_starboard - name = "\improper Large Escape Pod 2 Starboard" - icon_state = "escape_pod" - -/area/hallway/secondary/escape/firstdeck/ep_aftport - name = "\improper Escape Pods Aft Port" - icon_state = "escape_pod" - -/area/hallway/secondary/escape/firstdeck/ep_aftstarboard - name = "\improper Escape Pods Aft Starboard" - icon_state = "escape_pod" - -/area/hallway/secondary/firstdeck/research_access - name = "\improper First Deck Research Access Hallway" - icon_state = "hallS" -//CHOMPStation Edit End -/* Moving hangars to Space Station 13 areas.dm -/area/hangar - name = "\improper First Deck Hangar" - icon_state = "hangar" - sound_env = LARGE_ENCLOSED - -/area/hangar/one - name = "\improper Hangar One" - -/area/hangar/lockerroomone - name = "\improper Exploration Locker Room One" - icon_state = "hangarcontrol" - -/area/hangar/two - name = "\improper Hangar Two" - -/area/hangar/lockerroomtwo - name = "\improper Exploration Locker Room Two" - icon_state = "hangarcontrol" - -/area/hangar/three - name = "\improper Hangar Three" - -/area/hangar/lockerroomthree - name = "\improper Exploration Locker Room Three" - icon_state = "hangarcontrol" -*/ -/area/security/checkpoint3 - name = "\improper Security - Auxiliary Checkpoint" - icon_state = "security" - -/area/medical/first_aid_station - name = "\improper First-Aid Station" - icon_state = "medbay2" - -//CHOMPedit begin 7/9/23, adds chem distillery -/area/medical/distillery - name ="\improper Chemistry Distillery" - icon_state = "chem" -//CHOMPedit end -/area/medical/first_aid_station/firstdeck/ - name = "\improper First Deck First-Aid Station" - -/area/storage/emergency_storage/ - flags = RAD_SHIELDED - name = "Emergency Storage" - icon_state = "emergencystorage" - -/area/storage/emergency_storage/firstdeck/aft_emergency - name = "First Deck Aft Emergency Storage" - -/area/storage/emergency_storage/firstdeck/ap_emergency - name = "First Deck Aft Port Emergency Storage" - -/area/storage/emergency_storage/firstdeck/as_emergency - name = "First Deck Aft Starboard Emergency Storage" - -/area/storage/emergency_storage/firstdeck/fore_emergency - name = "First Deck Fore Emergency Storage" - -/area/storage/emergency_storage/firstdeck/fp_emergency - name = "First Deck Fore Port Emergency Storage" - -/area/storage/emergency_storage/firstdeck/fs_emergency - name = "First Deck Fore Starboard Emergency Storage" - -//CHOMPStation Edit Start 10/5/20 TFF - Change Pilot EVA to Auxillary EVA -/area/ai_monitored/storage/eva/aux - name = "Auxiliary EVA Storage" - icon_state = "eva" -//Chompstation Edit End - -/area/tcomm/ - icon_state = "tcomsatcham" - holomap_color = HOLOMAP_AREACOLOR_COMMAND - -/area/tcomm/entrance - name = "\improper Telecomms Teleporter" - icon_state = "tcomsatentrance" - -/area/tcomm/tcomfoyer - name = "\improper Telecomms Foyer" - icon_state = "tcomsatfoyer" - -/area/tcomm/chamber - name = "\improper Telecomms Central Compartment" - icon_state = "tcomsatcham" - -/area/tcomm/tcomstorage - name = "\improper Telecomms Storage" - icon_state = "tcomsatstore" - -/area/tcomm/computer - name = "\improper Telecomms Control Room" - icon_state = "tcomsatcomp" - -/area/quartermaster/hallway - name = "\improper Cargo Bay Hallway" - icon_state = "quart" - -/area/quartermaster/mininglockerroom - name = "\improper Mining Locker Room" - icon_state = "mining" - -//ChompStation Edit Start - New Teleporter Bay for station to SIF travel - -/area/teleporter/firstdeck - icon_state = "red" - name = "Teleporter Bay Core" - -/area/teleporter/firstdeck/prep - name = "Teleporter Bay Prep" - - -//Deck Two (Z-2) - -/area/maintenance/substation/atmospherics - name = "Atmospherics Substation" - ambience = AMBIENCE_SUBSTATION //CHOMP Addition - -/area/maintenance/emergencyeva - name = "\improper Emergency EVA Maintenance" - icon_state = "maint_eva" - -/area/maintenance/substation/central // n/a - name = "Central Substation" - ambience = AMBIENCE_SUBSTATION //CHOMP Addition - -//CHOMPStation Edit Start TFF 6/2/20 - Added substation - -/area/maintenance/substation/dorms - name = "Substation" - icon_state = "substation" - sound_env = SMALL_ENCLOSED - ambience = AMBIENCE_SUBSTATION //CHOMP Addition - -//CHOMPStation Edit End - -/area/maintenance/robotics - name = "Robotics Maintenance" - icon_state = "maint_research" - -/area/maintenance/research_medical - name = "Research Medical Maintenance" - icon_state = "maint_research" - -/area/construction/seconddeck/ - name = "\improper Second Deck Engineering Construction Area" - icon_state = "construction" - -/area/construction/seconddeck/construction1 - name = "\improper Second Deck Engineering Construction Area 1" - -/area/crew_quarters/seconddeck/locker - name = "\improper Locker Room" - icon_state = "locker" - -//CHOMPStation Edit Start KSC 1/19/21 - Added area for new GYM - -/area/crew_quarters/seconddeck/gym - name = "\improper Station Gym" - icon_state = "fitness" - -//CHOMPstation Edit 8/8/22 - Added a Art Gallery and some missing areas Kassc wanted me to add -/area/crew_quarters/seconddeck/artgallery - name = "\improper Art Gallery" - icon_state = "art" - -/area/crew_quarters/seconddeck/artsupplies - name = "\improper Art Supplies" - icon_state = "artsupply" - -/area/crew_quarters/seconddeck/gameroom - name = "\improper Game Room" - icon_state = "gaming" - -//CHOMPstation Edit 8/27/22 - VR Room for station baby~ -/area/crew_quarters/thirddeck/vrroom - name = "\improper Virtual Reality Room" - icon_state = "gaming" - flags = RAD_SHIELDED //Depending on the video game, you might still get figuative cancer - -//CHOMPStation Edit End - -/area/crew_quarters/seconddeck/locker/locker_toilet - name = "\improper Locker Toilets" - icon_state = "toilet" - sound_env = SMALL_ENCLOSED - -/area/crew_quarters/seconddeck/barrestroom - name = "\improper Bar Restroom" - icon_state = "bar" - -/area/crew_quarters/heads/sc/ - name = "\improper Command - Head Office" - icon_state = "head_quarters" - flags = RAD_SHIELDED - sound_env = MEDIUM_SOFTFLOOR - -/area/crew_quarters/heads/sc/hop - name = "\improper Command - HoP's Office" - icon_state = "head_quarters" - holomap_color = HOLOMAP_AREACOLOR_COMMAND - -/area/crew_quarters/heads/sc/hor - name = "\improper Research - RD's Office" - icon_state = "head_quarters" - holomap_color = HOLOMAP_AREACOLOR_SCIENCE - -/area/crew_quarters/heads/sc/chief - name = "\improper Engineering - CE's Office" - icon_state = "head_quarters" - holomap_color = HOLOMAP_AREACOLOR_ENGINEERING - -/area/crew_quarters/heads/sc/hos - name = "\improper Security - HoS' Office" - icon_state = "head_quarters" - holomap_color = HOLOMAP_AREACOLOR_SECURITY - -/area/crew_quarters/heads/sc/cmo - name = "\improper Medbay - CMO's Office" - icon_state = "head_quarters" - holomap_color = HOLOMAP_AREACOLOR_MEDICAL - -/area/engineering/engineer_eva - name = "\improper Engineering EVA" - icon_state = "engine_eva" - -/area/engineering/engi_restroom - name = "\improper Engineering Restroom" - icon_state = "toilet" - flags = RAD_SHIELDED - sound_env = SMALL_ENCLOSED - -/area/engineering/hallway/atmos_hallway - name = "\improper Atmospherics Hallway" - -/area/engineering/hallway/engineer_hallway - name = "\improper Engineering Hallway" - icon_state = "engineering_aft_hallway" - -/area/hallway/primary/seconddeck/stairwell - name = "\improper Second Deck Central Stairwell Access" - icon_state = "hallC" - -/area/hallway/primary/seconddeck/fore - name = "\improper Second Deck Fore Hallway" - icon_state = "hallF" - -/area/hallway/primary/seconddeck/fpcenter - name = "\improper Second Deck Fore Port Central Hallway" - icon_state = "hallC1" - -/area/hallway/primary/seconddeck/fscenter - name = "\improper Second Deck Fore Starboard Central Hallway" - icon_state = "hallC2" - -/area/hallway/primary/seconddeck/apcenter - name = "\improper Second Deck Aft Port Central Hallway" - icon_state = "hallC3" - -/area/hallway/primary/seconddeck/ascenter - name = "\improper Second Deck Aft Starboard Central Hallway" - icon_state = "hallC4" - -/area/hallway/primary/seconddeck/aft - name = "\improper Second Deck Aft Hallway" - icon_state = "hallA" - -/area/hallway/primary/seconddeck/port - name = "\improper Second Deck Port Hallway" - icon_state = "hallP" - -/area/hallway/primary/seconddeck/starboard - name = "\improper Second Deck Starboard Hallway" - icon_state = "hallS" - -/area/hallway/primary/seconddeck/dockhallway - name = "\improper Shuttle Dock Hallway" - icon_state = "docking_hallway" - -/area/hallway/secondary/seconddeck/research_medical - name = "Research Medical Hallway" - icon_state = "hallS" - -/area/medical/foyer - name = "\improper Medbay Foyer" - icon_state = "medbay2" - music = 'sound/ambience/signal.ogg' - -/area/medical/first_aid_station/seconddeck/ - name = "\improper First-Aid Station" - -/area/medical/first_aid_station/seconddeck/port - name = "\improper Port First-Aid Station" - -/area/medical/first_aid_station/seconddeck/fore - name = "\improper Fore First-Aid Station" - -/area/medical/first_aid_station/seconddeck/aft - name = "\improper Aft First-Aid Station" - -/area/medical/medical_lockerroom - name = "\improper Medbay Locker Room" - icon_state = "locker" - -/area/medical/medical_restroom - name = "\improper Medbay Restroom" - icon_state = "medbay_restroom" - flags = RAD_SHIELDED - sound_env = SMALL_ENCLOSED - -/area/security/aid_station - name = "\improper Security - Aid Station" - icon_state = "security_aid_station" - -/area/security/security_ses - name = "\improper Security - Secondary Equipment Storage" - icon_state = "security_equip_storage" - -/area/security/security_restroom - name = "\improper Security - Restroom" - icon_state = "security_bathroom" - flags = RAD_SHIELDED - sound_env = SMALL_ENCLOSED - -/area/storage/emergency_storage/seconddeck/ap_emergency - name = "Second Deck Aft Port Emergency Storage" - -/area/storage/emergency_storage/seconddeck/as_emergency - name = "Second Deck Aft Starboard Emergency Storage" - -/area/storage/emergency_storage/seconddeck/central_emergency - name = "Second Deck Central Emergency Storage" - -/area/storage/emergency_storage/seconddeck/fp_emergency - name = "Second Deck Fore Port Emergency Storage" - -/area/storage/emergency_storage/seconddeck/fs_emergency - name = "Second Deck Fore Starboard Emergency Storage" - -/area/storage/emergency_storage/seconddeck/port_emergency - name = "Second Deck Port Emergency Storage" - -/area/rnd/research_restroom_sc - name = "\improper Research Restroom" - icon_state = "research_restroom" - flags = RAD_SHIELDED - sound_env = SMALL_ENCLOSED - -/area/rnd/research_lockerroom - name = "\improper Research - Locker Room" - icon_state = "toxlab" - -/area/rnd/toxins_launch - name = "\improper Research - Toxins Launch Room" - icon_state = "toxtest" - -/area/rnd/research/firstdeck/hallway - name = "\improper Research - First Deck Hallway" - icon_state = "research" - -/area/rnd/xenobiology/xenoflora_isolation - name = "\improper Xenoflora Isolation" - icon_state = "xeno_f_store" - -/area/quartermaster/lockerroom - name = "\improper Cargo Locker Room" - icon_state = "quart" - -/area/security/security_hallway - name = "\improper Security Hallway" - icon_state = "security" - -//Deck Three (Z-3) - -/area/ai - holomap_color = HOLOMAP_AREACOLOR_COMMAND - ambience = AMBIENCE_AI - -/area/ai/ai_cyborg_station - name = "\improper Cyborg Station" - icon_state = "ai_cyborg" - sound_env = SMALL_ENCLOSED - -/area/ai/ai_upload - name = "\improper AI Upload Chamber" - icon_state = "ai_upload" - -/area/ai/ai_upload_foyer - name = "AI Upload Access" - icon_state = "ai_foyer" - sound_env = SMALL_ENCLOSED - -/area/ai/ai_server_room - name = "Messaging Server Room" - icon_state = "ai_server" - sound_env = SMALL_ENCLOSED - -/area/crew_quarters/heads/sc/sd - name = "\improper Command - Station Director's Office" - icon_state = "captain" - sound_env = MEDIUM_SOFTFLOOR - holomap_color = HOLOMAP_AREACOLOR_COMMAND - -/area/crew_quarters/heads/sc/hop/quarters - name = "\improper Command - HoP's Quarters" - icon_state = "head_quarters" - -/area/crew_quarters/heads/sc/hor/quarters - name = "\improper Research - RD's Quarters" - icon_state = "research" - -/area/crew_quarters/heads/sc/chief/quarters - name = "\improper Engineering - CE's Quarters" - icon_state = "engine" - -/area/crew_quarters/heads/sc/hos/quarters - name = "\improper Security - HoS' Quarters" - icon_state = "security" - -/area/crew_quarters/heads/sc/cmo/quarters - name = "\improper Medbay - CMO's Quarters" - icon_state = "medbay" - -/area/crew_quarters/heads/sc/restroom - name = "\improper Command - Restroom" - icon_state = "toilet" - -/area/crew_quarters/heads/sc/bs - name = "\improper Command - Secretary Quarters" - -/area/hallway/primary/thirddeck/central - name = "\improper Third Deck Port Hallway" - icon_state = "hallC" - -/area/hallway/primary/thirddeck/port - name = "\improper Third Deck Port Hallway" - icon_state = "hallP" - -/area/hallway/primary/thirddeck/starboard - name = "\improper Third Deck Starboard Hallway" - icon_state = "hallS" - -//CHOMPStation Edit Start TFF 6/2/20 KC - Added new hallway for dorms. 11/20/20 KC - Added more areas for gateway and halls. - -/area/hallway/primary/thirddeck/aftportcentral - name = "\improper Third Deck Central Aft Port Hallway" - icon_state = "hallC" - -/area/hallway/primary/thirddeck/aftstarboardcentral - name = "\improper Third Deck Central Aft Starboard Hallway" - icon_state = "hallC" - -/area/hallway/primary/thirddeck/stationgateway - name = "\improper Third Deck Central Gateway" - icon_state = "teleporter" - -/area/hallway/primary/thirddeck/aft - name = "\improper Third Deck Aft Hallway" - icon_state = "hallA" - -/area/hallway/primary/thirddeck/aftdoorm - name = "\improper Third Deck Aft Doorm Hallway" - icon_state = "docking_hallway" - -/area/maintenance/thirddeck/dormsport - name = "Third Deck Aft Starboard Maintenance" - icon_state = "asmaint" - -/area/maintenance/thirddeck/dormsstarboard - name = "Third Deck Aft Starboard Maintenance" - icon_state = "asmaint" - -//CHOMPedit Giving a maint bar its own APC -/area/maintenance/thirddeck/dormsstarboard/maintbar - name = "Third Deck Aft Starboard Speakeasy" - icon_state = "asmaint" -//CHOMPedit end -/area/maintenance/thirddeck/dormsaft - name = "Third Deck Aft Starboard Maintenance" - icon_state = "asmaint" - -/area/maintenance/thirddeck/hiddenkitchen - name = "Third Deck Hidden Kitchen" - icon_state = "asmaint" - -/area/maintenance/thirddeck/dormsatmos - name = "Third Deck Dorm's Atmospherics" - icon_state = "asmaint" - -//CHOMPStation Edit Start TFF 6/2/20 KC - Added new First Aid station. - -/area/medical/first_aid_station/thirddeck - name = "\improper Center Thirddeck First-Aid Station" - icon_state = "medbay2" - -//CHOMPStation Edit End - -/area/maintenance/thirddeck/aftstarboard - name = "Third Deck Aft Starboard Maintenance" - icon_state = "asmaint" - -/area/maintenance/thirddeck/aftport - name = "Third Deck Aft Port Maintenance" - icon_state = "apmaint" - -/area/maintenance/thirddeck/forestarboard - name = "Third Deck Fore Starboard Maintenance" - icon_state = "fsmaint" - -/area/maintenance/thirddeck/foreport - name = "Third Deck Fore Port Maintenance" - icon_state = "fpmaint" - -/area/maintenance/solars - icon_state = "SolarcontrolA" - sound_env = SMALL_ENCLOSED - holomap_color = HOLOMAP_AREACOLOR_ENGINEERING - -/area/maintenance/solars/aftportsolar - name = "Solar Maintenance - Aft Port" - icon_state = "SolarcontrolP" - -/area/maintenance/solars/aftstarboardsolar - name = "Solar Maintenance - Aft Starboard" - icon_state = "SolarcontrolS" - -/area/maintenance/solars/foreportsolar - name = "Solar Maintenance - Fore Port" - icon_state = "SolarcontrolP" - -/area/maintenance/solars/forestarboardsolar - name = "Solar Maintenance - Fore Starboard" - icon_state = "SolarcontrolS" - -/area/solar - requires_power = 1 - always_unpowered = 1 - ambience = AMBIENCE_SPACE - -/area/solar/aftportsolar - name = "\improper Aft Port Solar Array" - icon_state = "panelsP" - -/area/solar/foreportsolar - name = "\improper Fore Port Solar Array" - icon_state = "panelsP" - -/area/solar/aftstarboardsolar - name = "\improper Aft Starboard Solar Array" - icon_state = "panelsS" - -/area/solar/forestarboardsolar - name = "\improper Fore Starboard Solar Array" - icon_state = "panelsS" - -/area/thirddeck/roof - name = "\improper Third Deck Plating" - dynamic_lighting = 0 - ambience = AMBIENCE_SPACE - -// Shuttles - -//NT response shuttle - -/area/shuttle/response_ship - name = "\improper Response Team Ship" - icon_state = "shuttlered" - requires_power = 0 - flags = RAD_SHIELDED - ambience = AMBIENCE_HIGHSEC - -/* Chompstation Edit - Removing Shuttle 1 & 2 -//Shuttle One - -/area/shuttle/shuttle1 - name = "\improper Hangar Deck" - icon_state = "yellow" - requires_power = 0 - dynamic_lighting = 1 - flags = RAD_SHIELDED - -/area/shuttle/shuttle1/start - name = "\improper Hangar One" - icon_state = "shuttlered" - base_turf = /turf/simulated/floor/reinforced - -/area/shuttle/shuttle1/arrivals_dock - name = "\improper docked with Southern Cross" - icon_state = "shuttle" - -/area/shuttle/shuttle1/seconddeck - name = "south of second deck" - icon_state = "south" - -/area/shuttle/shuttle1/mining - name = "wilderness site" - icon_state = "shuttlered" - -/area/shuttle/shuttle1/planet - name = "planetside outpost" - icon_state = "shuttlered" - base_turf = /turf/simulated/floor/plating/sif/planetuse - -/area/shuttle/shuttle1/transit - name = "transit" - icon_state = "shuttlered" - base_turf = /turf/space/transit/north - -/area/shuttle/shuttle1/orbit - name = "in orbit of Sif" - icon_state = "shuttlegrn" - base_turf = /turf/space - -/area/shuttle/shuttle1/sky - name = "hovering over skies of sif" - icon_state = "shuttlegrn" - base_turf = /turf/simulated/sky - -/area/shuttle/shuttle1/sky_transit - name = "in flight over sif" - icon_state = "shuttlered" - base_turf = /turf/simulated/sky/moving - -//Shuttle Two - -/area/shuttle/shuttle2 - name = "\improper Hangar Deck" - icon_state = "yellow" - requires_power = 0 - dynamic_lighting = 1 - flags = RAD_SHIELDED - -/area/shuttle/shuttle2/start - name = "\improper Hangar Two" - icon_state = "shuttlered" - base_turf = /turf/simulated/floor/reinforced - -/area/shuttle/shuttle2/arrivals_dock - name = "\improper docked with Southern Cross" - icon_state = "shuttle" - -/area/shuttle/shuttle2/seconddeck - name = "south of second deck" - icon_state = "south" - -/area/shuttle/shuttle2/mining - name = "wilderness site" - icon_state = "shuttlered" - -/area/shuttle/shuttle2/planet - name = "planetside outpost" - icon_state = "shuttlered" - base_turf = /turf/simulated/floor/plating/sif/planetuse - -/area/shuttle/shuttle2/transit - name = "transit" - icon_state = "shuttlered" - base_turf = /turf/space/transit/north - -/area/shuttle/shuttle2/orbit - name = "in orbit of Sif" - icon_state = "shuttlegrn" - base_turf = /turf/space - -/area/shuttle/shuttle2/sky - name = "hovering over skies of sif" - icon_state = "shuttlegrn" - base_turf = /turf/simulated/sky - -/area/shuttle/shuttle2/sky_transit - name = "in flight over sif" - icon_state = "shuttlered" - base_turf = /turf/simulated/sky/moving - -End Chompstation Edit*/ - -// Centcom Transport Shuttle -/area/shuttle/transport1 - icon_state = "shuttle" - name = "\improper Transport Shuttle" - -// Centcom Admin Shuttle - -/area/shuttle/administration - name = "\improper Administration Shuttle" - icon_state = "shuttlered" - -//Merc - -/area/syndicate_mothership - name = "\improper Mercenary Base" - icon_state = "syndie-ship" - requires_power = 0 - dynamic_lighting = 0 - flags = RAD_SHIELDED - ambience = AMBIENCE_HIGHSEC - -/area/syndicate_station - name = "\improper Mercenary Base" - icon_state = "syndie-ship" - requires_power = 0 - dynamic_lighting = 0 - flags = RAD_SHIELDED - ambience = AMBIENCE_HIGHSEC - -/area/syndicate_station/start - name = "\improper Mercenary Ship" - icon_state = "shuttlered" - -/area/syndicate_station/firstdeck - name = "north-west of first deck" - icon_state = "northwest" - -/area/syndicate_station/seconddeck - name = "north-east of second deck" - icon_state = "northeast" - -/area/syndicate_station/thirddeck - name = "south-east of third deck" - icon_state = "southeast" - -/area/syndicate_station/mining - name = "mining site" - icon_state = "shuttlered" - -/area/syndicate_station/planet - name = "planetside" - dynamic_lighting = 1 - icon_state = "shuttlered" - base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse - -/area/syndicate_station/transit - name = " transit" - icon_state = "shuttlered" - base_turf = /turf/space/transit/east - -/area/syndicate_station/orbit - name = "in orbit of Sif" - icon_state = "shuttlegrn" - base_turf = /turf/space - -/area/syndicate_station/sky - name = "hovering over skies of sif" - icon_state = "shuttlegrn" - base_turf = /turf/simulated/sky/west - -/area/syndicate_station/sky_transit - name = "in flight over sif" - icon_state = "shuttlered" - base_turf = /turf/simulated/sky/moving/west - -/area/syndicate_station/arrivals_dock - name = "\improper docked with Southern Cross" - dynamic_lighting = 0 - icon_state = "shuttle" - -//Skipjack - -/area/skipjack_station - name = "Raider Outpost" - icon_state = "yellow" - requires_power = 0 - dynamic_lighting = 0 - flags = RAD_SHIELDED - ambience = AMBIENCE_HIGHSEC - -/area/skipjack_station/transit - name = "transit" - icon_state = "shuttlered" - base_turf = /turf/space/transit/north - -/area/skipjack_station/firstdeck - name = "north of first deck" - icon_state = "northwest" - -/area/skipjack_station/seconddeck - name = "west of second deck" - icon_state = "west" - -/area/skipjack_station/thirddeck - name = "east of third deck" - icon_state = "east" - -/area/skipjack_station/mining - name = "mining site" - icon_state = "shuttlered" - -/area/skipjack_station/planet - name = "planet" - icon_state = "shuttlered" - dynamic_lighting = 1 - base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse - -/area/skipjack_station/orbit - name = "in orbit of Sif" - icon_state = "shuttlegrn" - base_turf = /turf/space - -/area/skipjack_station/sky - name = "hovering over skies of sif" - icon_state = "shuttlegrn" - base_turf = /turf/simulated/sky/north - -/area/skipjack_station/sky_transit - name = "in flight over sif" - icon_state = "shuttlered" - base_turf = /turf/simulated/sky/moving/north - -/area/skipjack_station/arrivals_dock - name = "\improper docked with Southern Cross" - icon_state = "shuttle" - -// Ninja areas -/area/ninja_dojo - name = "\improper Ninja Base" - icon_state = "green" - requires_power = 0 - flags = RAD_SHIELDED - ambience = AMBIENCE_HIGHSEC - -/area/ninja_dojo/dojo - name = "\improper Clan Dojo" - dynamic_lighting = 0 - -/area/shuttle/ninja - name = "\improper Ninja Shuttle" - icon_state = "shuttlered" - -//Trade Ship - -/area/shuttle/merchant - icon_state = "shuttle" - -/area/shuttle/merchant/home - name = "\improper Merchant Vessel - Home" - -/area/shuttle/merchant/away - name = "\improper Merchant Vessel - Away" - -//Small Escape Pods - -/area/shuttle/escape_pod1 - name = "\improper Escape Pod One" - music = "music/escape.ogg" - -/area/shuttle/escape_pod1/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/airless - -/area/shuttle/escape_pod1/centcom - icon_state = "shuttle" - -/area/shuttle/escape_pod1/transit - icon_state = "shuttle" - -/area/shuttle/escape_pod2 - name = "\improper Escape Pod Two" - music = "music/escape.ogg" - -/area/shuttle/escape_pod2/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/airless - -/area/shuttle/escape_pod2/centcom - icon_state = "shuttle" - -/area/shuttle/escape_pod2/transit - icon_state = "shuttle" - -/area/shuttle/escape_pod3 - name = "\improper Escape Pod Three" - music = "music/escape.ogg" - -/area/shuttle/escape_pod3/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/airless - -/area/shuttle/escape_pod3/centcom - icon_state = "shuttle" - -/area/shuttle/escape_pod3/transit - icon_state = "shuttle" - -/area/shuttle/escape_pod4 - name = "\improper Escape Pod Four" - music = "music/escape.ogg" - -/area/shuttle/escape_pod4/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/airless - -/area/shuttle/escape_pod4/centcom - icon_state = "shuttle" - -/area/shuttle/escape_pod4/transit - icon_state = "shuttle" - -/area/shuttle/escape_pod5 - name = "\improper Escape Pod Five" - music = "music/escape.ogg" - -/area/shuttle/escape_pod5/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/airless - -/area/shuttle/escape_pod5/centcom - icon_state = "shuttle" - -/area/shuttle/escape_pod5/transit - icon_state = "shuttle" - -/area/shuttle/escape_pod6 - name = "\improper Escape Pod Six" - music = "music/escape.ogg" - -/area/shuttle/escape_pod6/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/airless - -/area/shuttle/escape_pod6/centcom - icon_state = "shuttle" - -/area/shuttle/escape_pod6/transit - icon_state = "shuttle" - -/area/shuttle/escape_pod7 - name = "\improper Escape Pod Seven" - music = "music/escape.ogg" - -/area/shuttle/escape_pod7/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/reinforced/airless - -/area/shuttle/escape_pod7/centcom - icon_state = "shuttle" - -/area/shuttle/escape_pod7/transit - icon_state = "shuttle" - -/area/shuttle/escape_pod8 - name = "\improper Escape Pod Eight" - music = "music/escape.ogg" - -/area/shuttle/escape_pod8/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/reinforced/airless - -/area/shuttle/escape_pod8/centcom - icon_state = "shuttle" - -/area/shuttle/escape_pod8/transit - icon_state = "shuttle" - -/area/shuttle/escape_pod9 - name = "\improper Escape Pod Nine" - music = "music/escape.ogg" - -/area/shuttle/escape_pod9/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/reinforced/airless - -/area/shuttle/escape_pod9/centcom - icon_state = "shuttle" - -/area/shuttle/escape_pod9/transit - icon_state = "shuttle" - -/area/shuttle/escape_pod10 - name = "\improper Escape Pod Ten" - music = "music/escape.ogg" - -/area/shuttle/escape_pod10/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/reinforced/airless - -/area/shuttle/escape_pod10/centcom - icon_state = "shuttle" - -/area/shuttle/escape_pod10/transit - icon_state = "shuttle" - -/area/shuttle/escape_pod11 - name = "\improper Escape Pod Eleven" - music = "music/escape.ogg" - -/area/shuttle/escape_pod11/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/reinforced/airless - -/area/shuttle/escape_pod11/centcom - icon_state = "shuttle" - -/area/shuttle/escape_pod11/transit - icon_state = "shuttle" - -/area/shuttle/escape_pod12 - name = "\improper Escape Pod Twelve" - music = "music/escape.ogg" - -/area/shuttle/escape_pod12/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/reinforced/airless - -/area/shuttle/escape_pod12/centcom - icon_state = "shuttle" - -/area/shuttle/escape_pod12/transit - icon_state = "shuttle" - -/area/shuttle/escape_pod13 - name = "\improper Escape Pod Thirteen" - music = "music/escape.ogg" - -/area/shuttle/escape_pod13/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/reinforced/airless - -/area/shuttle/escape_pod13/centcom - icon_state = "shuttle" - -/area/shuttle/escape_pod13/transit - icon_state = "shuttle" - -/area/shuttle/escape_pod14 - name = "\improper Escape Pod Fourteen" - music = "music/escape.ogg" - -/area/shuttle/escape_pod14/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/reinforced/airless - -/area/shuttle/escape_pod14/centcom - icon_state = "shuttle" - -/area/shuttle/escape_pod14/transit - icon_state = "shuttle" - -//Large Escape Pods - -/area/shuttle/large_escape_pod1 - name = "\improper Large Escape Pod One" - music = "music/escape.ogg" - -/area/shuttle/large_escape_pod1/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/airless - -/area/shuttle/large_escape_pod1/centcom - icon_state = "shuttle" - -/area/shuttle/large_escape_pod1/transit - icon_state = "shuttle" - -/area/shuttle/large_escape_pod2 - name = "\improper Large Escape Pod Two" - music = "music/escape.ogg" - -/area/shuttle/large_escape_pod2/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/airless - -/area/shuttle/large_escape_pod2/centcom - icon_state = "shuttle" - -/area/shuttle/large_escape_pod2/transit - icon_state = "shuttle" - -/area/shuttle/large_escape_pod3 - name = "\improper Large Escape Pod Three" - music = "music/escape.ogg" - -/area/shuttle/large_escape_pod3/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/airless - -/area/shuttle/large_escape_pod3/centcom - icon_state = "shuttle" - -/area/shuttle/large_escape_pod3/transit - icon_state = "shuttle" - -/area/shuttle/large_escape_pod4 - name = "\improper Large Escape Pod Four" - music = "music/escape.ogg" - -/area/shuttle/large_escape_pod4/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/airless - -/area/shuttle/large_escape_pod4/centcom - icon_state = "shuttle" - -/area/shuttle/large_escape_pod4/transit - icon_state = "shuttle" -/area/shuttle/cryo - name = "\improper Cryogenic Storage" - -/area/shuttle/cryo/station - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/airless - -/area/shuttle/cryo/centcom - icon_state = "shuttle" - -/area/shuttle/cryo/transit - icon_state = "shuttle" - -// Fishing CHOMPstation edit - -/area/surface/outpost/fishing - name = "\improper Fishing Outpost" - icon_state = "recreation_area" - -/area/surface/outpost/fishing/smes - name = "\improper Fishing SMES Maintenance" - icon_state = "substation" - ambience = AMBIENCE_SUBSTATION //CHOMP Addition - -//Shuttle 3 CHOMPedit - -/area/shuttle/shuttle3 - name = "\improper Hangar Deck" - icon_state = "yellow" - requires_power = 0 - dynamic_lighting = 1 - flags = RAD_SHIELDED - -/area/shuttle/shuttle3/start - name = "\improper Expedition Hangar One" - icon_state = "shuttlered" - base_turf = /turf/simulated/floor/reinforced - -/area/shuttle/shuttle3/seconddeck - name = "south of second deck" - icon_state = "south" - -/area/shuttle/shuttle3/stationhangar3 - name = "\improper Hangar Three" - icon_state = "shuttlered" - base_turf = /turf/simulated/floor/reinforced - -/area/shuttle/shuttle3/mining - name = "wilderness site" - icon_state = "shuttlered" - -/area/shuttle/shuttle3/transit - name = "transit" - icon_state = "shuttlered" - base_turf = /turf/space/transit/north - -/area/shuttle/shuttle3/orbit - name = "in orbit of Sif" - icon_state = "shuttlegrn" - base_turf = /turf/space - -/area/shuttle/shuttle3/sky - name = "hovering over skies of sif" - icon_state = "shuttlegrn" - base_turf = /turf/simulated/sky - -/area/shuttle/shuttle3/sky_transit - name = "in flight over sif" - icon_state = "shuttlered" - base_turf = /turf/simulated/sky/moving - -//CHOMPedit: Exploration outpost ferry shuttle - -/area/shuttle/expoutpost/site - name = "\improper Exploration Sling" - icon_state = "shuttle2" - -/area/shuttle/expoutpost/station - name = "\improper Exploration Sling" - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/reinforced/airless - -//CHOMPedit: New Explo Carrier Areas. - -/area/expoutpost/stationshuttle - name = "\improper Station Shuttle to Exploration Carrier" - -// Bow - -/area/expoutpost/portbowairlock - name = "\improper Port Bow Airlock" - -/area/expoutpost/starboardbowairlock - name = "\improper Starboard Bow Airlock" - -/area/expoutpost/eva - name = "\improper EVA" - -/area/expoutpost/botany - name = "\improper Botany Lab" - -/area/expoutpost/washroom - name = "\improper Washroom" - -/area/expoutpost/civaccesshallway - name = "\improper Civilian Access Hallway" - -/area/expoutpost/janitorial - name = "\improper Janitorial Closet" - -/area/expoutpost/kitchen - name = "\improper Kitchen" - -/area/expoutpost/restrooms - name = "\improper Restrooms" - -/area/expoutpost/portbowhallway - name = "\improper Port Bow Hallway" - -/area/expoutpost/bar - name = "\improper Bar" - flags = RAD_SHIELDED - -/area/expoutpost/starbowhallway - name = "\improper Starboard Bow Hallway" - -/area/expoutpost/suite1 - name = "\improper Suite One" - flags = RAD_SHIELDED - -/area/expoutpost/suite2 - name = "\improper Suite Two" - flags = RAD_SHIELDED - -/area/expoutpost/pathfinderroom - name = "\improper Pathfinder's Ready-Room" - flags = RAD_SHIELDED - -/area/expoutpost/commanderroom - name = "\improper Security Commander's Ready-Room" - flags = RAD_SHIELDED - -/area/expoutpost/portqpadjunction - name = "\improper Port Q-Pad Junction" - -/area/expoutpost/starqpadjunction - name = "\improper Starboard Q-Pad Junction" - -/area/expoutpost/slingcarrierdock - name = "\improper Sling Carrier Dock" - -/area/expoutpost/stationqpad - name ="\improper Station Q-Pad Junction" - -/area/expoutpost/secbowcheckpoint - name = "\improper Security Bow Checkpoint" - -// Midship - -/area/expoutpost/staginghangar - name = "\improper Staging Hangar" - -// Stern - -/area/expoutpost/uppersternhallway - name = "\improper Upper Stern Hallway" - -/area/expoutpost/medbaylobby - name = "\improper Medbay Lobby" - -/area/expoutpost/medicalbay - name = "\improper Medical Bay" - -/area/expoutpost/surgical1 - name = "\improper Surgical Theatre One" - -/area/expoutpost/midsternhallway - name = "\improper Middle Stern Hallway" - -/area/expoutpost/exploarmory - name = "\improper Exploration Armory" - -/area/expoutpost/explobriefroom - name = "\improper Exploration Briefing Room" - -/area/expoutpost/explodorm1 - name = "\improper Exploration Dorm One" - flags = RAD_SHIELDED - -/area/expoutpost/explodorm2 - name = "\improper Exploration Dorm Two" - flags = RAD_SHIELDED - -/area/expoutpost/breakroom - name = "\improper Public Breakroom" - -/area/expoutpost/cic - name = "\improper Combat Information Center" - -/area/expoutpost/secoffice - name = "\improper Security Office" - -/area/expoutpost/gatewayeva - name = "\improper Gateway EVA" - -/area/expoutpost/gateway - name = "\improper Gateway" - -/area/expoutpost/secarmory - name = "\improper Security Armory" - -/area/expoutpost/miningfoyer - name = "\improper Mining Foyer" - -/area/expoutpost/reactoraccess - name = "\improper Reactor Access" - -/area/expoutpost/reactorcr - name = "\improper Reactor Control Room" - -/area/expoutpost/reactorroom - name = "\improper Fusion Reactor" - -/area/expoutpost/rndlobby - name = "\improper R&D Lobby" - -/area/expoutpost/rnd - name = "\improper Research and Development" - -/area/expoutpost/engoffice - name = "\improper Engineering Office" - -/area/expoutpost/engstorage - name = "\improper Engineering Equipment Room" - -/area/expoutpost/atmospherics - name = "\improper Atmospherics" - -/area/expoutpost/secureaccess - name = "\improper Secure Access Corridor" - -/area/expoutpost/techstorage - name = "\improper Technical Storage" - -/area/expoutpost/aicore - name = "\improper Auxiliary AI Core" - -/area/expoutpost/telecomms - name = "\improper Ship Telecomms" - -/area/expoutpost/disposals - name = "\improper Disposals Sorting" - -/area/expoutpost/lowersternhallway - name = "\improper Lower Stern Hallway" - -/area/expoutpost/portfuelstorage - name = "\improper Port Fuel Storage" - -/area/expoutpost/starfuelstorage - name = "\improper Starboard Fuel Storage" - -// Maints - -/area/expoutpost/portuppermaint - name = "\improper Port Upper Maintenance" - -/area/expoutpost/staruppermaint - name = "\improper Starboard Upper Maintenance" - -/area/expoutpost/portexplomaint - name = "\improper Port Exploration Maintenance" - -/area/expoutpost/starsciencemaint - name = "\improper Starboard Science Maintenance" - -/area/expoutpost/portlowermaint - name = "\improper Port Lower Maintenance" - -/area/expoutpost/starlowermaint - name = "\improper Starboard Lower Maintenance" - -/area/expoutpost/portsternairlock - name = "\improper Port Stern Airlock" - -/area/expoutpost/starsternairlock - name = "\improper Starboard Stern Airlock" - -// Hangars - -/area/expoutpost/hangarone - name = "\improper Exploration Carrier Hangar One" - icon_state = "hangar" - -/area/expoutpost/hangartwo - name = "\improper Exploration Carrier Hangar Two" - icon_state = "hangar" - -/area/expoutpost/hangarthree - name = "\improper Exploration Carrier Hangar Three" - icon_state = "hangar" - -/area/expoutpost/hangarfour - name = "\improper Exploration Carrier Hangar Four" - icon_state = "hangar" - -/area/expoutpost/hangarfive - name = "\improper Exploration Carrier Hangar Five" - icon_state = "hangar" - -/area/expoutpost/hangarsix - name = "\improper Exploration Carrier Hangar Six" - icon_state = "hangar" - -//CHOMPedit: Exploration backup shuttle. For now this is a placeholder for future expedition content. - -/area/shuttle/shuttlebackup - name = "\improper Hangar Deck" - icon_state = "yellow" - requires_power = 0 - dynamic_lighting = 1 - flags = RAD_SHIELDED - -/area/shuttle/shuttlebackup/start - name = "\improper Expedition Backup Shuttle Docks" - icon_state = "shuttlered" - -// Misc - -/area/wreck/ufoship - name = "\improper Wreck" - icon_state = "storage" - ambience = AMBIENCE_OTHERWORLDLY - -/area/wreck/supplyshuttle - name = "\improper Wreck" - icon_state = "storage" - ambience = AMBIENCE_RUINS - -/area/shuttle/overmap/sif - name = "wilderness site" - icon_state = "shuttlered" - -//Temp Removal TFF 15/2/20 -/* -// CHOMP-Edit: This is the Belt Mining addition -// Belt Mining Areas -/area/mine/unexplored/belt_miner - name = "\improper Belt Mining" - base_turf = /turf/space -/area/mine/explored/belt_miner - name = "\improper Belt Mining" - base_turf = /turf/space - -// Belt Mining outpost areas -/area/outpost/mining_main/passage - name = "\improper Mining Outpost Passage" -/area/outpost/mining_main/hangar - name = "\improper Mining Outpost Belt Miner Hangar" -/area/outpost/mining_main/belt_outpost // Master area for "Belt Outpost", all sub-areas follow this one's preset - name = "\improper Belt Mining Outpost" - sound_env = ASTEROID - forced_ambience = list('sound/ambience/ruins/ruins1.ogg') - lightswitch = 0 -/area/outpost/mining_main/belt_outpost/airlock - name = "\improper Belt Mining Airlock" -/area/outpost/mining_main/belt_outpost/dorms - name = "\improper Belt Mining Dorms" - forced_ambience = list('sound/ambience/generic/generic1.ogg') -/area/outpost/mining_main/belt_outpost/substation - name = "\improper Belt Mining Substation" - ambience = list('sound/ambience/engineering/engineering1.ogg') -/area/outpost/mining_main/belt_outpost/atmos - name = "\improper Belt Mining Atmos" - ambience = list('sound/ambience/ambiatm1.ogg') -/area/outpost/mining_main/belt_outpost/solars - name = "\improper Belt Mining Solars" -/area/outpost/mining_main/belt_outpost/tank_storage - name = "\improper Belt Mining Tank Holding and Console Access" - -// Belter 2.0 Areas! -/area/shuttle/beltferry/station - name = "Belter M2.0 Landed" - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/reinforced - -/area/shuttle/beltferry/belt // This is our "dock" area for the Belter M2.0 - name = "Belter M2.0 Holding Position" - icon_state = "shuttle2" - base_turf = /turf/space - -/area/shuttle/beltferry/transit // Transit Area - the in-between. - name = "Belter M2.0 Transit" - icon_state = "shuttle2" -*/ -// CHOMPAdd Start - Maintenance Deck Areas -/area/maintenance/abcargo - name = "Abandoned Cargo" - icon_state = "maint_cargo" - -/area/maintenance/abmedical - name = "Abandoned Medical" - icon_state = "maint_medbay" - -/area/maintenance/abfirstaid - name = "Abandoned First Aid Station" - icon_state = "maint_medbay" - -/area/maintenance/abchemistry - name = "Abandoned Chemistry" - icon_state = "maint_medbay" - -/area/maintenance/abscience - name = "Abandoned Science" - icon_state = "asmaint" - -/area/maintenance/absgenetics - name = "Abandoned Genetics" - icon_state = "asmaint" - -/area/maintenance/thrift - name = "Abandoned Thrift Store" - icon_state = "mid_civilian_hallway" - -/area/maintenance/abtheatre - name = "Abandoned Theatre" - icon_state = "Theatre" - sound_env = LARGE_SOFTFLOOR - -/area/maintenance/ragecage - name = "Rage Cage" - icon_state = "nuke_storage" - -/area/engineering/lowlobby - name = "Engineering Deck 0 Lobby" - icon_state = "maint_pumpstation" - -/area/engineering/backuppowerlobby - name = "Engineering Backup Power Lobby" - icon_state = "engineering" - -/area/engineering/backuppower - name = "Engineering Backup Power" - icon_state = "engineering" - -/area/maintenance/substation/gravgen - name = "Gravity Generator Substation" - icon_state = "engineering" - -/area/engineering/gravgen - name = "Gravity Generator" - icon_state = "engineering" - -/area/maintenance/engineering/gravgen - name = "Gravity Generator Maintenance" - -/area/maintenance/maintdeck/field - name = "Maintenance Deck Field" - -/area/maintenance/maintdeck/fieldhallway - name = "Maintenance Deck Field Hallway" -/area/maintenance/maintdeck/fieldthrift - name = "Maintenance Deck Thrift Store Hallway" - -/area/maintenance/abhydroponicssupp - name = "Abandoned Botany Supplies" - -/area/maintenance/abhydroponics - name = "Abandoned Botany" - -/area/maintenance/smoleroom - name = "Smole Room" - -/area/maintenance/janitoral - name = "Maintenance Deck Janitoral" - -/area/maintenance/lookout - name = "Maintenance Deck Lookout" - -/area/maintenance/bar/dorm_1 - name = "Maintenance Deck Bar Dorms 1" - -/area/maintenance/bar/dorm_2 - name = "Maintenance Deck Bar Dorms 2" - -//ALL THE NEW AREAS FOR NEW STATION! KAS - -/area/SouthernCrossV2 // Parent for var inheritence - name = "\improper SouthernCross Areas" - icon_state = "yellow" -// requires_power = FALSE - -//BRIDGE AREAS - -/area/SouthernCrossV2/Bridge/ - icon_state = "bridge" - holomap_color = HOLOMAP_AREACOLOR_COMMAND - ambience = AMBIENCE_ARRIVALS - sound_env = LARGE_ENCLOSED - lightswitch = 0 - -/area/SouthernCrossV2/Bridge/HoP_Office - name = "\improper HoP Office" - icon_state = "bridge" - -/area/SouthernCrossV2/Bridge/AI_Core_Chamber - name = "\improper AI Core Chamber" - icon_state = "bridge" - sound_env = AMBIENCE_AI - -/area/SouthernCrossV2/Bridge/AI_Upload_Hall - name = "\improper AI Upload Hall" - icon_state = "bridge" - sound_env = AMBIENCE_AI - -/area/SouthernCrossV2/Bridge/Cyborg_Station - name = "\improper Cyborg Station" - icon_state = "bridge" - sound_env = AMBIENCE_AI - -/area/SouthernCrossV2/Bridge/Server_Room - name = "\improper Server Room" - icon_state = "bridge" - sound_env = AMBIENCE_AI - -/area/SouthernCrossV2/Bridge/Deck3_Corridor - name = "\improper 3 Deck Corridor" - icon_state = "bridge" - lightswitch = 1 - -/area/SouthernCrossV2/Bridge/HoP_Quarters - name = "\improper HoP Quarters" - icon_state = "bridge" - flags = RAD_SHIELDED - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Bridge/CE_Quarters - name = "\improper CE Quarters" - icon_state = "bridge" - flags = RAD_SHIELDED - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Bridge/CMO_Quarters - name = "\improper CMO Quarters" - icon_state = "bridge" - flags = RAD_SHIELDED - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Bridge/RD_Quarters - name = "\improper RD Quarters" - icon_state = "bridge" - flags = RAD_SHIELDED - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Bridge/HoS_Quarters - name = "\improper HoS Quarters" - icon_state = "bridge" - flags = RAD_SHIELDED - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Bridge/Secretary_Quarters - name = "\improper Secretary Quarters" - icon_state = "bridge" - flags = RAD_SHIELDED - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Bridge/Leisure_Room - name = "\improper Leisure Room" - icon_state = "bridge" - -/area/SouthernCrossV2/Bridge/Breakroom - name = "\improper Breakroom" - icon_state = "bridge" - -/area/SouthernCrossV2/Bridge/Control_Atrium - name = "\improper Control Atrium" - icon_state = "bridge" - -/area/SouthernCrossV2/Bridge/Captain_Office - name = "\improper Captain Office" - icon_state = "bridge" - -/area/SouthernCrossV2/Bridge/Captain_Quarters - name = "\improper Captain Quarters" - icon_state = "bridge" - flags = RAD_SHIELDED - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Bridge/Conference_Room - name = "\improper Conference Room" - icon_state = "bridge" - -/area/SouthernCrossV2/Bridge/Embassy - name = "\improper Embassy" - icon_state = "bridge" - -/area/SouthernCrossV2/Bridge/Firstaid_Post - name = "\improper FirstAid Post" - icon_state = "bridge" - -/area/SouthernCrossV2/Bridge/Vault_Reception - name = "\improper Vault Reception" - icon_state = "bridge" - -/area/SouthernCrossV2/Bridge/Vault - name = "\improper Vault" - icon_state = "bridge" - -//SECURITY AREAS - -/area/SouthernCrossV2/Security - icon_state = "security" - holomap_color = HOLOMAP_AREACOLOR_SECURITY - ambience = AMBIENCE_HIGHSEC - sound_env = STANDARD_STATION - lightswitch = 0 - -/area/SouthernCrossV2/Security/Aft_Security_Post - name = "\improper Aft Security Post" - icon_state = "security" - -/area/SouthernCrossV2/Security/Reception - name = "\improper Reception" - icon_state = "security" - -/area/SouthernCrossV2/Security/Deck2_1_Corridor - name = "\improper 2 Deck 1 Corridor" - icon_state = "security" - -/area/SouthernCrossV2/Security/Deck2_2_Corridor - name = "\improper 2 Deck 2 Corridor" - icon_state = "security" - -/area/SouthernCrossV2/Security/Forensics_Office - name = "\improper Forensics Office" - icon_state = "security" - -/area/SouthernCrossV2/Security/Internal_Affairs_Office - name = "\improper Internal Affairs Office" - icon_state = "security" - -/area/SouthernCrossV2/Security/HoS_Office - name = "\improper HoS Office" - icon_state = "security" - -/area/SouthernCrossV2/Security/Wardens_Office - name = "\improper Wardens Office" - icon_state = "security" - -/area/SouthernCrossV2/Security/Equipment_Storage - name = "\improper Equipment Storage" - icon_state = "security" - -/area/SouthernCrossV2/Security/Restroom - name = "\improper Restroom" - icon_state = "security" - lightswitch = 1 - -/area/SouthernCrossV2/Security/Lobby - name = "\improper Lobby" - icon_state = "security" - -/area/SouthernCrossV2/Security/Boardroom - name = "\improper Boardroom" - icon_state = "security" - -/area/SouthernCrossV2/Security/Locker_Room - name = "\improper Locker Room" - icon_state = "security" - -/area/SouthernCrossV2/Security/Firing_Range - name = "\improper Firing Range" - icon_state = "security" - -/area/SouthernCrossV2/Security/Storage_Room - name = "\improper Storage Room" - icon_state = "security" - -/area/SouthernCrossV2/Security/Shuttlebay_Storage - name = "\improper Shuttlebay Storage" - icon_state = "security" - -/area/SouthernCrossV2/Security/Processing_Room - name = "\improper Processing Room" - icon_state = "security" - -/area/SouthernCrossV2/Security/Evidence_Storage - name = "\improper Evidence Storage" - icon_state = "security" - -/area/SouthernCrossV2/Security/Armory - name = "\improper Armory" - icon_state = "security" - -/area/SouthernCrossV2/Security/Brig - name = "\improper Brig" - icon_state = "security" - -/area/SouthernCrossV2/Security/Prison_Wing - name = "\improper Prison Wing" - icon_state = "security" - -/area/SouthernCrossV2/Security/Visitation_Room - name = "\improper Visitation Room" - icon_state = "security" - -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint - name = "\improper Quantum Pad Checkpoint" - icon_state = "security" - lightswitch = 1 - -/area/SouthernCrossV2/Security/Quantum_Pad_Storage - name = "\improper Quantum Pad Storage" - icon_state = "security" - -/area/SouthernCrossV2/Security/Exploration_Ship_Bay - name = "\improper Exploration Ship Bay" - icon_state = "security" - ambience = AMBIENCE_HANGAR - -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle - name = "\improper Station Shuttle to Exploration Carrier" - icon_state = "security" - ambience = AMBIENCE_HANGAR - -/area/SouthernCrossV2/Security/Transit_Turrets - name = "\improper Transit Turrets" - icon_state = "security" - -//MEDICAL AREAS - -/area/SouthernCrossV2/Medical - icon_state = "medbay" - holomap_color = HOLOMAP_AREACOLOR_MEDICAL - ambience = AMBIENCE_GENERIC - sound_env = STANDARD_STATION - lightswitch = 0 - -/area/SouthernCrossV2/Medical/For_Medical_Post - name = "\improper For Medical Post" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Aft_Medical_Post - name = "\improper Aft Medical Post" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Port_Medical_Post - name = "\improper Port Medical Post" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/EMT_Bay - name = "\improper EMT Bay" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Reception - name = "\improper Reception" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/FirstAid_Storage - name = "\improper FirstAid Storage" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Chemistry - name = "\improper Chemistry" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Distillery - name = "\improper Distillery" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Treatment_Hall - name = "\improper Treatment Hall" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Surgery_Viewing - name = "\improper Surgery Viewing" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Surgery_Room_1 - name = "\improper Surgery Room 1" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Surgery_Room_2 - name = "\improper Surgery Room 2" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor - name = "\improper 2 Deck Evac Corridor" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Deck2_Corridor - name = "\improper 2 Deck Corridor" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Patient_Ward - name = "\improper Patient Ward" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Dressing_Room - name = "\improper Dressing Room" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Locker_Room - name = "\improper Locker Room" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/CMO_Office - name = "\improper CMO Office" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Stairwell - name = "\improper Stairwell" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Morgue - name = "\improper Morgue" - icon_state = "medbay" - ambience = AMBIENCE_GHOSTLY - -/area/SouthernCrossV2/Medical/Resleeving - name = "\improper Resleeving" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Lounge - name = "\improper Lounge" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Patient_1 - name = "\improper Patient 1" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Patient_2 - name = "\improper Patient 2" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Patient_3 - name = "\improper Patient 3" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Patient_4 - name = "\improper Patient 4" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Psych_Room_1 - name = "\improper Psych Room 1" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Psych_Room_2 - name = "\improper Psych Room 2" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Virology - name = "\improper Virology" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Genetics_Lab - name = "\improper Genetics Lab" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Surgery_Storage - name = "\improper Surgery Storage" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Deck3_Corridor - name = "\improper 3 Deck Corridor" - icon_state = "medbay" - -/area/SouthernCrossV2/Medical/Autoresleeving - name = "\improper Autoresleeving" - icon_state = "medbay" - ambience = AMBIENCE_GHOSTLY - -/area/SouthernCrossV2/Medical/Restrooms - name = "\improper Restrooms" - icon_state = "medbay" - lightswitch = 1 - -//SCIENCE AREAS - -/area/SouthernCrossV2/Science - icon_state = "research" - holomap_color = HOLOMAP_AREACOLOR_SCIENCE - ambience = AMBIENCE_ENGINEERING - sound_env = LARGE_SOFTFLOOR - lightswitch = 0 - -/area/SouthernCrossV2/Science/Research_Lab - name = "\improper Research Lab" - icon_state = "research" - -/area/SouthernCrossV2/Science/Robotics_Lab - name = "\improper Robotics Lab" - icon_state = "research" - -/area/SouthernCrossV2/Science/Mech_Bay - name = "\improper Mech Bay" - icon_state = "research" - -/area/SouthernCrossV2/Science/Locker_Room - name = "\improper Locker Room" - icon_state = "research" - -/area/SouthernCrossV2/Science/Server_Room - name = "\improper Server Room" - icon_state = "research" - -/area/SouthernCrossV2/Science/Circuitry_Den - name = "\improper Circuitry Den" - icon_state = "research" - -/area/SouthernCrossV2/Science/Testing_Lab - name = "\improper Testing Lab" - icon_state = "research" - -/area/SouthernCrossV2/Science/Toxins_Storage - name = "\improper Toxins Storage" - icon_state = "research" - -/area/SouthernCrossV2/Science/Toxins_Mixing_Room - name = "\improper Toxins Mixing Room" - icon_state = "research" - -/area/SouthernCrossV2/Science/Toxins_Viewing_Port - name = "\improper Toxins Viewing Port" - icon_state = "research" - -/area/SouthernCrossV2/Science/RD_Office - name = "\improper RD Office" - icon_state = "research" - -/area/SouthernCrossV2/Science/Observation_Hall - name = "\improper Observation Hall" - icon_state = "research" - -/area/SouthernCrossV2/Science/PA_Chamber - name = "\improper PA Chamber" - icon_state = "research" - -/area/SouthernCrossV2/Science/Research_Ship_Bay - name = "\improper Research Ship Bay" - icon_state = "research" - ambience = AMBIENCE_HANGAR - -/area/SouthernCrossV2/Science/Xenobiology_Lab - name = "\improper Xenobiology Lab" - icon_state = "research" - -/area/SouthernCrossV2/Science/Xenobotany_Lab - name = "\improper Xenobotany Lab" - icon_state = "research" - -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber - name = "\improper Xenobotany Isolation Chamber" - icon_state = "research" - -/area/SouthernCrossV2/Science/Testing_Chamber - name = "\improper Testing Chamber" - icon_state = "research" - -/area/SouthernCrossV2/Science/PA_Access - name = "\improper Testing PA Access" - icon_state = "research" - -/area/SouthernCrossV2/Science/Deck2_Corridor - name = "\improper 2 Deck Corridor" - icon_state = "research" - - -//ENGINEERING AREAS - -/area/SouthernCrossV2/Engineering - icon_state = "engineering" - holomap_color = HOLOMAP_AREACOLOR_ENGINEERING - ambience = AMBIENCE_ENGINEERING - sound_env = LARGE_ENCLOSED - lightswitch = 0 - -/area/SouthernCrossV2/Engineering/Central_Engineering_Post - name = "\improper Central Engineering Post" - icon_state = "engineering" - lightswitch = 1 - -/area/SouthernCrossV2/Engineering/GravGen_Room - name = "\improper GravGen Room" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Telecomms_Foyer - name = "\improper Telecomms Foyer" - icon_state = "engineering" - ambience = AMBIENCE_AI - -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room - name = "\improper Telecomms Control Room" - icon_state = "engineering" - ambience = AMBIENCE_AI - -/area/SouthernCrossV2/Engineering/Telecomms_Network - name = "\improper Telecomms Network" - icon_state = "engineering" - ambience = AMBIENCE_AI - lightswitch = 1 - -/area/SouthernCrossV2/Engineering/Reception - name = "\improper Reception" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Engineering_EVA - name = "\improper Engineering EVA" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Locker_Room - name = "\improper Locker Room" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Engineering_Workshop - name = "\improper Engineering Workshop" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor - name = "\improper 2 Deck 1 Corridor" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor - name = "\improper 2 Deck 2 Corridor" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor - name = "\improper 2 Deck Evac Corridor" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Storage - name = "\improper Storage" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Drone_Fab - name = "\improper Drone Fab" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Canister_Storage - name = "\improper Canister Storage" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Mech_Bay - name = "\improper Mech Bay" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Technical_Storage - name = "\improper Technical Storage" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/CE_Office - name = "\improper CE Office" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor - name = "\improper 3 Deck 1 Corridor" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor - name = "\improper 3 Deck 2 Corridor" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber - name = "\improper Atmospherics Chamber" - icon_state = "engineering" - ambience = AMBIENCE_ATMOS - -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room - name = "\improper Atmospherics Control Room" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Atmospherics_Substation - name = "\improper Atmospherics Substation" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Engine1_Chamber - name = "\improper 1 Engine Chamber" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Engine1_Control_Room - name = "\improper 1 Engine Control Room" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall - name = "\improper 1 Engine Access Hall" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Engine1_Substation - name = "\improper 1 Engine Substation" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Engine2_Chamber - name = "\improper 2 Engine Chamber" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Engine3_Control_Room - name = "\improper 2 Engine Control Room" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall - name = "\improper 2 Engine Access Hall" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Engine2_Substation - name = "\improper 2 Engine Substation" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage - name = "\improper 2 Engine Canister Storage" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling - name = "\improper 2 Engine Waste Handling" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Construction_Area - name = "\improper Construction Area" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Airlock_Access - name = "\improper Airlock Access" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage - name = "\improper Engine Tech Storage" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Breakroom - name = "\improper Engineering Breakroom" - icon_state = "engineering" - -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort - name = "\improper Solar Control ForPort" - icon_state = "engineering" - ambience = AMBIENCE_SPACE - -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar - name = "\improper Solar Control ForStar" - icon_state = "engineering" - ambience = AMBIENCE_SPACE - -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort - name = "\improper Solar Control AftPort" - icon_state = "engineering" - ambience = AMBIENCE_SPACE - -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar - name = "\improper Solar Control AftStar" - icon_state = "engineering" - ambience = AMBIENCE_SPACE - -/area/SouthernCrossV2/Engineering/Solar_Array_ForPort - name = "\improper Solar Array ForPort" - icon_state = "engineering" - ambience = AMBIENCE_SPACE - dynamic_lighting = 0 - -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar - name = "\improper Solar Array ForStar" - icon_state = "engineering" - ambience = AMBIENCE_SPACE - dynamic_lighting = 0 - -/area/SouthernCrossV2/Engineering/Solar_Array_AftPort - name = "\improper Solar Array AftPort" - icon_state = "engineering" - ambience = AMBIENCE_SPACE - dynamic_lighting = 0 - -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar - name = "\improper Solar Array AftStar" - icon_state = "engineering" - ambience = AMBIENCE_SPACE - dynamic_lighting = 0 - -//CARGO AREAS - -/area/SouthernCrossV2/Cargo - icon_state = "quart" - holomap_color = HOLOMAP_AREACOLOR_CARGO - ambience = AMBIENCE_HANGAR - sound_env = SOUND_ENVIRONMENT_HANGAR - lightswitch = 0 - -/area/SouthernCrossV2/Cargo/For_Tool_Storage - name = "\improper For Tool Storage" - icon_state = "quart" - -/area/SouthernCrossV2/Cargo/Star_Tool_Storage - name = "\improper Star Tool Storage" - icon_state = "quart" - -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage - name = "\improper Aft Tool Storage" - icon_state = "quart" - -/area/SouthernCrossV2/Cargo/Reception - name = "\improper Reception" - icon_state = "quart" - -/area/SouthernCrossV2/Cargo/Packaging_Room - name = "\improper Packaging Room" - icon_state = "quart" - -/area/SouthernCrossV2/Cargo/Recycling - name = "\improper Recycling" - icon_state = "quart" - -/area/SouthernCrossV2/Cargo/Warehouse - name = "\improper Warehouse" - icon_state = "quart" - -/area/SouthernCrossV2/Cargo/Deck2_Stairwell - name = "\improper 2 Deck Stairwell" - icon_state = "quart" - -/area/SouthernCrossV2/Cargo/Deck1_Stairwell - name = "\improper 1 Deck Stairwell" - icon_state = "quart" - -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay - name = "\improper Supply Ship Bay" - icon_state = "quart" - ambience = AMBIENCE_HANGAR - -/area/SouthernCrossV2/Cargo/Depot1 - name = "\improper 1 Depot" - icon_state = "quart" - -/area/SouthernCrossV2/Cargo/Depot2 - name = "\improper 2 Depot" - icon_state = "quart" - -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay - name = "\improper Mining Ship Bay" - icon_state = "quart" - ambience = AMBIENCE_HANGAR - -/area/SouthernCrossV2/Cargo/Mining_EVA - name = "\improper Mail Room" - icon_state = "quart" - -/area/SouthernCrossV2/Cargo/Waste_Disposals - name = "\improper Waste Disposals" - icon_state = "quart" - -/area/SouthernCrossV2/Cargo/QM_Office - name = "\improper QM Office" - icon_state = "quart" - -/area/SouthernCrossV2/Cargo/Mail_Room - name = "\improper Mail Room" - icon_state = "quart" - -/area/SouthernCrossV2/Cargo/Deck1_Corridor - name = "\improper Mail Room" - icon_state = "quart" - -/area/SouthernCrossV2/Cargo/Breakroom - name = "\improper Cargo Breakroom" - icon_state = "quart" - -//DOMICILE AREAS - -/area/SouthernCrossV2/Domicile - icon_state = "gaming" - ambience = AMBIENCE_GENERIC - sound_env = SOUND_ENVIRONMENT_HALLWAY - lightswitch = 0 - -/area/SouthernCrossV2/Domicile/Holodeck - name = "\improper Holodeck" - icon_state = "gaming" - -/area/SouthernCrossV2/Domicile/Midnight_Bar - name = "\improper Midnight Bar" - icon_state = "gaming" - flags = RAD_SHIELDED - -/area/SouthernCrossV2/Domicile/Midnight_Kitchen - name = "\improper Midnight Kitchen" - icon_state = "gaming" - flags = RAD_SHIELDED - -/area/SouthernCrossV2/Domicile/Gallery - name = "\improper Gallery" - icon_state = "gaming" - -/area/SouthernCrossV2/Domicile/VR - name = "\improper VR" - icon_state = "gaming" - -/area/SouthernCrossV2/Domicile/Gym - name = "\improper Gym" - icon_state = "gaming" - -/area/SouthernCrossV2/Domicile/Gym_Sauna - name = "\improper Gym Sauna" - icon_state = "gaming" - -/area/SouthernCrossV2/Domicile/Chapel_Lobby - name = "\improper Chapel Lobby" - icon_state = "gaming" - ambience = AMBIENCE_CHAPEL - -/area/SouthernCrossV2/Domicile/Chapel_Morgue - name = "\improper Chapel Morgue" - icon_state = "gaming" - ambience = AMBIENCE_CHAPEL - -/area/SouthernCrossV2/Domicile/Chapel_Office - name = "\improper Chapel Office" - icon_state = "gaming" - ambience = AMBIENCE_CHAPEL - -/area/SouthernCrossV2/Domicile/Central_Restroom - name = "\improper Central Restroom" - icon_state = "gaming" - flags = RAD_SHIELDED - lightswitch = 1 - -/area/SouthernCrossV2/Domicile/For_Restroom - name = "\improper For Restroom" - icon_state = "gaming" - flags = RAD_SHIELDED - lightswitch = 1 - -/area/SouthernCrossV2/Domicile/Star_Restroom - name = "\improper Star Restroom" - icon_state = "gaming" - flags = RAD_SHIELDED - lightswitch = 1 - -/area/SouthernCrossV2/Domicile/Aft_Restroom - name = "\improper Aft Restroom" - icon_state = "gaming" - flags = RAD_SHIELDED - lightswitch = 1 - -/area/SouthernCrossV2/Domicile/Port_Restroom - name = "\improper Port Restroom" - icon_state = "gaming" - flags = RAD_SHIELDED - lightswitch = 1 - -/area/SouthernCrossV2/Domicile/Library - name = "\improper Library" - icon_state = "gaming" - ambience = AMBIENCE_SPACE - -/area/SouthernCrossV2/Domicile/Library_Cafe - name = "\improper Library Cafe" - icon_state = "gaming" - ambience = AMBIENCE_SPACE - -/area/SouthernCrossV2/Domicile/Library_Office - name = "\improper Library Office" - icon_state = "gaming" - ambience = AMBIENCE_SPACE - -/area/SouthernCrossV2/Domicile/Rec_Lounge - name = "\improper Rec Lounge" - icon_state = "gaming" - -/area/SouthernCrossV2/Domicile/Office_Lounge - name = "\improper Office Lounge" - icon_state = "gaming" - -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics - name = "\improper Chomp Hydroponics" - icon_state = "gaming" - flags = RAD_SHIELDED - -/area/SouthernCrossV2/Domicile/Chomp_Kitchen - name = "\improper Chomp Kitchen" - icon_state = "gaming" - flags = RAD_SHIELDED - -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1 - name = "\improper Chomp Dinner 1" - icon_state = "gaming" - flags = RAD_SHIELDED - lightswitch = 1 - -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2 - name = "\improper Chomp Dinner 2" - icon_state = "gaming" - flags = RAD_SHIELDED - lightswitch = 1 - -/area/SouthernCrossV2/Domicile/Chomp_Lounge - name = "\improper Chomp Lounge" - icon_state = "gaming" - flags = RAD_SHIELDED - -/area/SouthernCrossV2/Domicile/Public_Hydroponics - name = "\improper Public Hydroponics" - icon_state = "gaming" - -/area/SouthernCrossV2/Domicile/Botanical_Shop - name = "\improper Botanical Shop" - icon_state = "gaming" - -/area/SouthernCrossV2/Domicile/Observation_Atrium - name = "\improper Observation Atrium" - icon_state = "gaming" - -/area/SouthernCrossV2/Domicile/Observation_Lounge - name = "\improper Observation Lounge" - icon_state = "gaming" - -/area/SouthernCrossV2/Domicile/Public_Garden - name = "\improper Public Garden" - icon_state = "gaming" - -/area/SouthernCrossV2/Domicile/Dormitory_01 - name = "\improper Dormitory 01" - icon_state = "gaming" - flags = RAD_SHIELDED - lightswitch = 0 - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Domicile/Dormitory_02 - name = "\improper Dormitory 02" - icon_state = "gaming" - flags = RAD_SHIELDED - lightswitch = 0 - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Domicile/Dormitory_03 - name = "\improper Dormitory 03" - icon_state = "gaming" - flags = RAD_SHIELDED - lightswitch = 0 - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Domicile/Dormitory_04 - name = "\improper Dormitory 04" - icon_state = "gaming" - flags = RAD_SHIELDED - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Domicile/Dormitory_05 - name = "\improper Dormitory 05" - icon_state = "gaming" - flags = RAD_SHIELDED - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Domicile/Dormitory_06 - name = "\improper Dormitory 06" - icon_state = "gaming" - flags = RAD_SHIELDED - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Domicile/Dormitory_07 - name = "\improper Dormitory 07" - icon_state = "gaming" - flags = RAD_SHIELDED - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Domicile/Dormitory_08 - name = "\improper Dormitory 08" - icon_state = "gaming" - flags = RAD_SHIELDED - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Domicile/Dormitory_09 - name = "\improper Dormitory 09" - icon_state = "gaming" - flags = RAD_SHIELDED - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Domicile/Dormitory_10 - name = "\improper Dormitory 10" - icon_state = "gaming" - flags = RAD_SHIELDED - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Domicile/Dormitory_11 - name = "\improper Dormitory 11" - icon_state = "gaming" - flags = RAD_SHIELDED - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Domicile/Dormitory_12 - name = "\improper Dormitory 12" - icon_state = "gaming" - flags = RAD_SHIELDED - limit_mob_size = FALSE - block_suit_sensors = TRUE - block_tracking = TRUE - soundproofed = TRUE - forbid_events = TRUE - -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1 - name = "\improper Dorm Corridor 1" - icon_state = "gaming" - lightswitch = 1 - -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2 - name = "\improper Dorm Corridor 2" - icon_state = "gaming" - lightswitch = 1 - -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3 - name = "\improper Dorm Corridor 3" - icon_state = "gaming" - lightswitch = 1 - -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4 - name = "\improper Dorm Corridor 4" - icon_state = "gaming" - lightswitch = 1 - -/area/SouthernCrossV2/Domicile/Dorm_Foyer - name = "\improper Dorm Foyer" - icon_state = "gaming" - lightswitch = 1 - -/area/SouthernCrossV2/Domicile/Public_Gateway - name = "\improper Public Gateway" - icon_state = "gaming" - -/area/SouthernCrossV2/Domicile/Emergency_EVA - name = "\improper Emergency EVA" - icon_state = "gaming" - -/area/SouthernCrossV2/Domicile/Public_EVA - name = "\improper Public EVA" - icon_state = "gaming" - -/area/SouthernCrossV2/Domicile/Custodial_Office - name = "\improper Custodial Office" - icon_state = "gaming" - -//COMMONS AREAS -/area/SouthernCrossV2/Commons - icon_state = "hallA" - ambience = AMBIENCE_GENERIC - sound_env = MEDIUM_SOFTFLOOR - -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory - name = "\improper ForPort 1 Deck Observatory" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory - name = "\improper ForStar 1 Deck Observatory" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory - name = "\improper AftPort 1 Deck Observatory" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory - name = "\improper AftStar 1 Deck Observatory" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory - name = "\improper ForPort 2 Deck Observatory" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory - name = "\improper ForStar 2 Deck Observatory" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory - name = "\improper AftPort 2 Deck Observatory" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory - name = "\improper AftStar 2 Deck Observatory" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/For_Transit_Foyer - name = "\improper For Transit Foyer" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Star_Transit_Foyer - name = "\improper Star Transit Foyer" - icon_state = "hallA" - flags = RAD_SHIELDED - -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby - name = "\improper Aft Transit Lobby" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Port_Transit_Foyer - name = "\improper Port Transit Foyer" - icon_state = "hallA" - flags = RAD_SHIELDED - -/area/SouthernCrossV2/Commons/For_1_Deck_Stairwell - name = "\improper For 1 Deck Stairwell" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell - name = "\improper For 2 Deck Stairwell" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell - name = "\improper For 3 Deck Stairwell" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Star_1_Deck_Stairwell - name = "\improper Star 1 Deck Stairwell" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell - name = "\improper Star 2 Deck Stairwell" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell - name = "\improper Star 3 Deck Stairwell" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell - name = "\improper Aft 1 Deck Stairwell" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell - name = "\improper Aft 2 Deck Stairwell" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell - name = "\improper Aft 3 Deck Stairwell" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Port_1_Deck_Stairwell - name = "\improper Port 1 Deck Stairwell" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell - name = "\improper Port 2 Deck Stairwell" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell - name = "\improper Port 3 Deck Stairwell" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1 - name = "\improper For 2 Deck Central Corridor 1" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2 - name = "\improper For 2 Deck Central Corridor 2" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1 - name = "\improper Star 2 Deck Central Corridor 1" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_2 - name = "\improper Star 2 Deck Central Corridor 2" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1 - name = "\improper Aft 2 Deck Central Corridor 1" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2 - name = "\improper Aft 2 Deck Central Corridor 2" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1 - name = "\improper Port 2 Deck Central Corridor 1" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_2 - name = "\improper Port 2 Deck Central Corridor 2" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1 - name = "\improper Aft 3 Deck Central Corridor 1" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_2 - name = "\improper Aft 3 Deck Central Corridor 2" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1 - name = "\improper For 2 Deck Corridor 1" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_2 - name = "\improper For 2 Deck Corridor 2" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1 - name = "\improper Star 2 Deck Corridor 1" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2 - name = "\improper Star 2 Deck Corridor 2" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1 - name = "\improper Aft 2 Deck Corridor 1" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2 - name = "\improper Aft 2 Deck Corridor 2" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1 - name = "\improper Port 2 Deck Corridor 1" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2 - name = "\improper Port 2 Deck Corridor 2" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby - name = "\improper Aft 2 Deck Lobby" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor - name = "\improper Aft 2 Deck Shuttlebay Corridor" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall - name = "\improper Central 1 Deck Hall" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall - name = "\improper Central 2 Deck Hall" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall - name = "\improper Central 3 Deck Hall" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Cryostorage_Lounge - name = "\improper Cryostorage Lounge" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall - name = "\improper 1 Deck Transit Hall" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Deck1_Corridor - name = "\improper 1 Deck Corridor" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/For_Locker_Room - name = "\improper For Locker Room" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Planetside_Equipment - name = "\improper Planetside Equipment" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Star_Breakroom - name = "\improper Star Breakroom" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Port_Breakroom - name = "\improper Port Breakroom" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1 - name = "\improper Port Deck1 Central Corridor 1" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_2 - name = "\improper Port Deck1 Central Corridor 2" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1 - name = "\improper Star Deck1 Central Corridor 1" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_2 - name = "\improper Star Deck1 Central Corridor 2" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium - name = "\improper Port Deck1 Atrium" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium - name = "\improper Star Deck1 Atrium" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Stairwell_For - name = "\improper Stairwell Forward" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Stairwell_Star - name = "\improper Stairwell Starboard" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Stairwell_Aft - name = "\improper Stairwell Aft" - icon_state = "hallA" - -/area/SouthernCrossV2/Commons/Stairwell_Port - name = "\improper Stairwell Port" - icon_state = "hallA" - - -//HARBOR AREAS - -/area/SouthernCrossV2/Harbor - icon_state = "hangar" - ambience = AMBIENCE_ARRIVALS - sound_env = SOUND_ENVIRONMENT_HANGAR - - -/area/SouthernCrossV2/Harbor/Dock1 - name = "\improper 1 Dock" - icon_state = "hangar" - flags = RAD_SHIELDED - -/area/SouthernCrossV2/Harbor/Dock2 - name = "\improper 2 Dock" - icon_state = "hangar" - flags = RAD_SHIELDED - -/area/SouthernCrossV2/Harbor/Dock3 - name = "\improper 3 Dock" - icon_state = "hangar" - flags = RAD_SHIELDED - -/area/SouthernCrossV2/Harbor/Dock4 - name = "\improper 4 Dock" - icon_state = "hangar" - flags = RAD_SHIELDED - -/area/SouthernCrossV2/Harbor/Dock5 - name = "\improper 5 Dock" - icon_state = "hangar" - flags = RAD_SHIELDED - -/area/SouthernCrossV2/Harbor/Ship_Bay1 - name = "\improper 1 Ship Bay" - icon_state = "hangar" - ambience = AMBIENCE_HANGAR - -/area/SouthernCrossV2/Harbor/Ship_Bay2 - name = "\improper 2 Ship Bay" - icon_state = "hangar" - ambience = AMBIENCE_HANGAR - -/area/SouthernCrossV2/Harbor/Ship_Bay3 - name = "\improper 3 Ship Bay" - icon_state = "hangar" - ambience = AMBIENCE_HANGAR - -/area/SouthernCrossV2/Harbor/Ship_Bay4 - name = "\improper 4 Ship Bay" - icon_state = "hangar" - ambience = AMBIENCE_HANGAR - -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer - name = "\improper Port Docking Foyer" - icon_state = "hangar" - flags = RAD_SHIELDED - -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer - name = "\improper Star Docking Foyer" - icon_state = "hangar" - flags = RAD_SHIELDED - -/area/SouthernCrossV2/Harbor/Fueling_Post - name = "\improper Fueling Post" - icon_state = "hangar" - -/area/SouthernCrossV2/Harbor/Fueling_Storage - name = "\improper Fueling Storage" - icon_state = "hangar" - -/area/SouthernCrossV2/Harbor/For_Shuttlebay - name = "\improper For Shuttlebay" - icon_state = "hangar" - -/area/SouthernCrossV2/Harbor/Star_Shuttlebay - name = "\improper Star Shuttlebay" - icon_state = "hangar" - -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay - name = "\improper Aft Shuttlebay" - icon_state = "hangar" - -/area/SouthernCrossV2/Harbor/Port_Shuttlebay - name = "\improper Port Shuttlebay" - icon_state = "hangar" - -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1 - name = "\improper For 3 Deck Airlock Access 1" - icon_state = "hangar" - -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2 - name = "\improper For 3 Deck Airlock Access 2" - icon_state = "hangar" - -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access - name = "\improper Star 2 Deck Airlock Access" - icon_state = "hangar" - -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access - name = "\improper Star 3 Deck Airlock Access" - icon_state = "hangar" - -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access - name = "\improper Aft 3 Deck Airlock Access" - icon_state = "hangar" - -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access - name = "\improper Aft 2 Deck Airlock Access" - icon_state = "hangar" - -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access - name = "\improper Port 3 Deck Airlock Access" - icon_state = "hangar" - -//EVACUATION AREAS - -/area/SouthernCrossV2/Evac - icon_state = "shuttle2" - requires_power = FALSE - flags = RAD_SHIELDED - ambience = AMBIENCE_SPACE - sound_env = SMALL_SOFTFLOOR - base_turf = /turf/simulated/floor/airless - -/area/SouthernCrossV2/Evac/Pod01 - name = "\improper 01 Pod" - icon_state = "shuttle2" - -/area/SouthernCrossV2/Evac/Pod02 - name = "\improper 02 Pod" - icon_state = "shuttle2" - -/area/SouthernCrossV2/Evac/Pod03 - name = "\improper 03 Pod" - icon_state = "shuttle2" - -/area/SouthernCrossV2/Evac/Pod04 - name = "\improper 04 Pod" - icon_state = "shuttle2" - -/area/SouthernCrossV2/Evac/Pod05 - name = "\improper 05 Pod" - icon_state = "shuttle2" - -/area/SouthernCrossV2/Evac/Pod06 - name = "\improper 06 Pod" - icon_state = "shuttle2" - -/area/SouthernCrossV2/Evac/Pod07 - name = "\improper 07 Pod" - icon_state = "shuttle2" - -/area/SouthernCrossV2/Evac/Pod08 - name = "\improper 08 Pod" - icon_state = "shuttle2" - -/area/SouthernCrossV2/Evac/Pod09 - name = "\improper 09 Pod" - icon_state = "shuttle2" - -/area/SouthernCrossV2/Evac/Pod10 - name = "\improper 10 Pod" - icon_state = "shuttle2" - -/area/SouthernCrossV2/Evac/Pod11 - name = "\improper 11 Pod" - icon_state = "shuttle2" - -/area/SouthernCrossV2/Evac/Pod12 - name = "\improper 12 Pod" - icon_state = "shuttle2" - -/area/SouthernCrossV2/Evac/Pod13 - name = "\improper 13 Pod" - icon_state = "shuttle2" - -/area/SouthernCrossV2/Evac/Pod14 - name = "\improper 14 Pod" - icon_state = "shuttle2" - -/area/SouthernCrossV2/Evac/Cryogenic_Shuttle - name = "\improper Cryogenic Shuttle" - icon_state = "shuttle2" - -/area/SouthernCrossV2/Evac/Star_Transport_Shuttle - name = "\improper Star Transport Shuttle" - icon_state = "shuttle2" - -/area/SouthernCrossV2/Evac/Port_Transport_Shuttle - name = "\improper Port Transport Shuttle" - icon_state = "shuttle2" - -/area/SouthernCrossV2/Evac/Medical_Shuttle - name = "\improper Medical Shuttle" - icon_state = "shuttle2" - -/area/SouthernCrossV2/Evac/Engineering_Shuttle - name = "\improper Engineering Shuttle" - icon_state = "shuttle2" - -//MAINTENANCE AREAS - -/area/SouthernCrossV2/Maints - icon_state = "fsmaint" - flags = RAD_SHIELDED - ambience = AMBIENCE_MAINTENANCE - sound_env = SOUND_ENVIRONMENT_SEWER_PIPE - -/area/SouthernCrossV2/Maints/ab_StripBar - name = "\improper abandoned StripBar" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/ab_Medical - name = "\improper abandoned Medical" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/ab_Surgery - name = "\improper abandoned Surgery" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/ab_GeneralStore - name = "\improper abandoned GeneralStore" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/ab_Kitchen - name = "\improper abandoned Kitchen" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/ab_Hydroponics - name = "\improper abandoned Hydroponics" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/ab_SportsField - name = "\improper abandoned SportsField" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/ab_CardTrading - name = "\improper abandoned CardTrading" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/ab_ChuteTrade - name = "\improper abandoned ChuteTrade" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/ab_Theater - name = "\improper abandoned Theater" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/ab_Pdance - name = "\improper abandoned Pdance" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/ab_Chapel - name = "\improper abandoned Chapel" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/ab_TeshDen - name = "\improper abandoned TeshDen" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Market_Stall_1 - name = "\improper Market Stall 1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Market_Stall_2 - name = "\improper Market Stall 2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Market_Stall_3 - name = "\improper Market Stall 3" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Market_Stall_4 - name = "\improper Market Stall 4" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Market_Stall_5 - name = "\improper Market Stall 5" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Market_Stall_6 - name = "\improper Market Stall 6" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor - name = "\improper Deck1 Port Corridor" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor - name = "\improper Deck1 Star Corridor" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1 - name = "\improper Deck1 ForPort Corridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2 - name = "\improper Deck1 ForPort Corridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3 - name = "\improper Deck1 ForPort Corridor3" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1 - name = "\improper Deck1 ForPort Chamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1 - name = "\improper Deck1 ForStar Corridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2 - name = "\improper Deck1 ForStar Corridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3 - name = "\improper Deck1 ForStar Corridor3" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1 - name = "\improper Deck1 ForStar Chamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2 - name = "\improper Deck1 ForStar Chamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3 - name = "\improper Deck1 ForStar Chamber3" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1 - name = "\improper Deck1 AftStar1 Corridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2 - name = "\improper Deck1 AftStar1 Corridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3 - name = "\improper Deck1 AftStar1 Corridor3" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1 - name = "\improper Deck1 AftPort Corridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2 - name = "\improper Deck1 AftPort Corridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3 - name = "\improper Deck1 AftPort Corridor3" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1 - name = "\improper Deck1 AftPort Chamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2 - name = "\improper Deck1 AftPort Chamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3 - name = "\improper Deck1 AftPort Chamber3" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1 - name = "\improper Deck1 Cargo Corridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2 - name = "\improper Deck1 Cargo Corridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3 - name = "\improper Deck1 Cargo Corridor3" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1 - name = "\improper Deck1 Cargo Chamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1 - name = "\improper Deck1 Security PortCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2 - name = "\improper Deck1 Security PortCorridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1 - name = "\improper Deck1 Security PortChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2 - name = "\improper Deck1 Security PortChamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3 - name = "\improper Deck1 Security PortChamber3" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1 - name = "\improper Deck1 Security StarCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2 - name = "\improper Deck1 Security StarCorridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3 - name = "\improper Deck1 Security StarCorridor3" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1 - name = "\improper Deck1 Security StarChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2 - name = "\improper Deck1 Security StarChamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1 - name = "\improper Deck1 Science ForCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1 - name = "\improper Deck1 Science AftCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_For_Corridor - name = "\improper Deck2 For Corridor" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor - name = "\improper Deck2 ForStar Corridor" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor - name = "\improper Deck2 Star Corridor" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor - name = "\improper Deck2 AftStar Corridor" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor - name = "\improper Deck2 Aft Corridor" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor - name = "\improper Deck2 AftPort Corridor" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor - name = "\improper Deck2 Port Corridor" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor - name = "\improper Deck2 ForPort Corridor" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Security_StarCorridor1 - name = "\improper Deck2 Security StarCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1 - name = "\improper Deck2 Security AftStarCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2 - name = "\improper Deck2 Security AftStarCorridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1 - name = "\improper Deck2 Security AftPortCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor2 - name = "\improper Deck2 Security AftPortCorridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Security_ForPortCorridor1 - name = "\improper Deck2 Security ForPortCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Security_ForPortChamber1 - name = "\improper Deck2 Security ForPortChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1 - name = "\improper Deck2 Security ForCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2 - name = "\improper Deck2 Security ForCorridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3 - name = "\improper Deck2 Security ForCorridor3" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Security_PortCorridor1 - name = "\improper Deck2 Security PortCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1 - name = "\improper Deck2 Security ForCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Security_ForStar_Chamber - name = "\improper Deck2 Security ForStar Chamber" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1 - name = "\improper Deck2 Science ForCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1 - name = "\improper Deck2 Science StarCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor2 - name = "\improper Deck2 Science StarCorridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1 - name = "\improper Deck2 Science StarChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Corridor - name = "\improper Deck2 Science ForPort Corridor" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Chamber - name = "\improper Deck2 Science ForPort Chamber" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortChamber1 - name = "\improper Deck2 Medical AftPortChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortCorridor1 - name = "\improper Deck2 Medical AftPortCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1 - name = "\improper Deck2 Medical AftCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2 - name = "\improper Deck2 Medical AftCorridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1 - name = "\improper Deck2 Medical AftStarChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1 - name = "\improper Deck2 Civilian ForStarCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2 - name = "\improper Deck2 Civilian ForStarCorridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1 - name = "\improper Deck2 Civilian StarCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1 - name = "\improper Deck2 Civilian StarChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2 - name = "\improper Deck2 Civilian StarChamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1 - name = "\improper Deck2 Civilian AftCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1 - name = "\improper Deck2 Civilian AftPortCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1 - name = "\improper Deck2 Civilian PortChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2 - name = "\improper Deck2 Civilian PortChamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1 - name = "\improper Deck2 Civilian ForPortCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2 - name = "\improper Deck2 Civilian ForPortCorridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1 - name = "\improper Deck2 Civilian ForPortChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Cargo_StarChamber1 - name = "\improper Deck2 Cargo StarChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarChamber1 - name = "\improper Deck2 Cargo AftStarChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarCorridor1 - name = "\improper Deck2 Cargo AftStarCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1 - name = "\improper Deck2 Cargo AftCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2 - name = "\improper Deck2 Cargo AftCorridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1 - name = "\improper Deck2 Cargo AftPortCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1 - name = "\improper Deck2 Engineering PortCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2 - name = "\improper Deck2 Engineering PortCorridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber1 - name = "\improper Deck2 Engineering PortChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2 - name = "\improper Deck2 Engineering PortChamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber1 - name = "\improper Deck2 Engineering ForStarChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber2 - name = "\improper Deck2 Engineering ForStarChamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarCorridor1 - name = "\improper Deck2 Engineering ForStarCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForChamber1 - name = "\improper Deck3 Bridge ForChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1 - name = "\improper Deck3 Bridge ForStarCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2 - name = "\improper Deck3 Bridge ForStarCorridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor3 - name = "\improper Deck3 Bridge ForStarCorridor3" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1 - name = "\improper Deck3 Bridge ForStarChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1 - name = "\improper Deck3 Bridge AftStarCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1 - name = "\improper Deck3 Bridge AftPortCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1 - name = "\improper Deck3 Bridge ForStarCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2 - name = "\improper Deck3 Bridge ForStarCorridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor3 - name = "\improper Deck3 Bridge ForStarCorridor3" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1 - name = "\improper Deck3 Bridge ForPort Chamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1 - name = "\improper Deck3 Bridge ForPort Corridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2 - name = "\improper Deck3 Bridge ForPort Corridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber1 - name = "\improper Deck3 Medical ForChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2 - name = "\improper Deck3 Medical ForChamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3 - name = "\improper Deck3 Medical ForChamber3" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1 - name = "\improper Deck3 Medical ForStarChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2 - name = "\improper Deck3 Medical ForStarChamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3 - name = "\improper Deck3 Medical ForStarChamber3" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1 - name = "\improper Deck3 Medical StarCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1 - name = "\improper Deck3 Medical AftStarChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1 - name = "\improper Deck3 Medical AftCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor2 - name = "\improper Deck3 Medical AftCorridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortCorridor1 - name = "\improper Deck3 Medical AftPortCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1 - name = "\improper Deck3 Medical AftPortChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2 - name = "\improper Deck3 Medical AftPortChamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1 - name = "\improper Deck3 Medical PortChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2 - name = "\improper Deck3 Medical PortChamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1 - name = "\improper Deck3 Medical ForPortChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2 - name = "\improper Deck3 Medical ForPortChamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1 - name = "\improper Deck3 Dorms ForCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1 - name = "\improper Deck3 Dorms ForStarChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2 - name = "\improper Deck3 Dorms ForStarChamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1 - name = "\improper Deck3 Dorms StarCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2 - name = "\improper Deck3 Dorms StarCorridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1 - name = "\improper Deck3 Dorms StarChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2 - name = "\improper Deck3 Dorms StarChamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1 - name = "\improper Deck3 Dorms AftCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2 - name = "\improper Deck3 Dorms AftCorridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1 - name = "\improper Deck3 Dorms AftPortChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2 - name = "\improper Deck3 Dorms AftPortChamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1 - name = "\improper Deck3 Dorms PortCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortChamber1 - name = "\improper Deck3 Dorms PortChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1 - name = "\improper Deck3 Dorms ForStarChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2 - name = "\improper Deck3 Dorms ForStarChamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1 - name = "\improper Deck3 Dorms ForPort Corridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1 - name = "\improper Deck3 Dorms ForPort Chamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1 - name = "\improper Deck3 Engineering ForCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1 - name = "\improper Deck3 Engineering ForStarChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2 - name = "\improper Deck3 Engineering ForStarChamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1 - name = "\improper Deck3 Engineering StarChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1 - name = "\improper Deck3 Engineering AftStarCorridor1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2 - name = "\improper Deck3 Engineering AftStarCorridor2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1 - name = "\improper Deck3 Engineering AftStarChamber1" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2 - name = "\improper Deck3 Engineering AftStarChamber2" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3 - name = "\improper Deck3 Engineering AftStarChamber3" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Center_Star - name = "\improper Deck3 Center Star" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Deck3_Center_Port - name = "\improper Deck3 Center Port" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Distro_Central - name = "\improper Distro Central" - icon_state = "engineering" - ambience = AMBIENCE_ATMOS - -/area/SouthernCrossV2/Maints/Distro_Harbor - name = "\improper Distro Harbor" - icon_state = "engineering" - ambience = AMBIENCE_ATMOS - -/area/SouthernCrossV2/Maints/Distro_Civilian - name = "\improper Distro Civilian" - icon_state = "engineering" - ambience = AMBIENCE_ATMOS - -/area/SouthernCrossV2/Maints/Research_Substation - name = "\improper Research Substation" - icon_state = "engineering" - ambience = AMBIENCE_SUBSTATION - lightswitch = 1 - -/area/SouthernCrossV2/Maints/Medical_Substation - name = "\improper Medical Substation" - icon_state = "engineering" - ambience = AMBIENCE_SUBSTATION - lightswitch = 1 - -/area/SouthernCrossV2/Maints/Dorms_Substation - name = "\improper Dorms Substation" - icon_state = "engineering" - ambience = AMBIENCE_SUBSTATION - lightswitch = 1 - -/area/SouthernCrossV2/Maints/Domicile_Substation - name = "\improper Domicile Substation" - icon_state = "engineering" - ambience = AMBIENCE_SUBSTATION - lightswitch = 1 - -/area/SouthernCrossV2/Maints/Harbor_Substation - name = "\improper Harbor Substation" - icon_state = "engineering" - ambience = AMBIENCE_SUBSTATION - lightswitch = 1 - -/area/SouthernCrossV2/Maints/Telecomms_Substation - name = "\improper Telecomms Substation" - icon_state = "engineering" - ambience = AMBIENCE_SUBSTATION - lightswitch = 1 - -/area/SouthernCrossV2/Maints/Security_Substation - name = "\improper Security Substation" - icon_state = "engineering" - ambience = AMBIENCE_SUBSTATION - lightswitch = 1 - -/area/SouthernCrossV2/Maints/Bridge_Substation - name = "\improper Bridge Substation" - icon_state = "engineering" - ambience = AMBIENCE_SUBSTATION - lightswitch = 1 - -/area/SouthernCrossV2/Maints/AI_Substation - name = "\improper AI Substation" - icon_state = "engineering" - ambience = AMBIENCE_SUBSTATION - lightswitch = 1 - -/area/SouthernCrossV2/Maints/Cargo_Substation - name = "\improper Cargo Substation" - icon_state = "engineering" - ambience = AMBIENCE_SUBSTATION - lightswitch = 1 - -/area/SouthernCrossV2/Maints/Engineering_Substation - name = "\improper Engineering Substation" - icon_state = "engineering" - ambience = AMBIENCE_SUBSTATION - lightswitch = 1 - -//Temp Testing areas -/area/SouthernCrossV2/Maints/Room_01 - name = "\improper Room 01" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_02 - name = "\improper Room 02" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_03 - name = "\improper Room 03" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_04 - name = "\improper Room 04" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_05 - name = "\improper Room 05" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_06 - name = "\improper Room 06" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_07 - name = "\improper Room 07" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_08 - name = "\improper Room 08" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_09 - name = "\improper Room 09" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_10 - name = "\improper Room 10" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_11 - name = "\improper Room 11" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_12 - name = "\improper Room 12" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_13 - name = "\improper Room 13" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_14 - name = "\improper Room 14" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_15 - name = "\improper Room 15" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_16 - name = "\improper Room 16" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_17 - name = "\improper Room 17" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_18 - name = "\improper Room 18" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_19 - name = "\improper Room 19" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_20 - name = "\improper Room 20" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_21 - name = "\improper Room 21" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_22 - name = "\improper Room 22" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_23 - name = "\improper Room 23" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_24 - name = "\improper Room 24" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_25 - name = "\improper Room 25" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_26 - name = "\improper Room 26" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_27 - name = "\improper Room 27" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_28 - name = "\improper Room 28" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_29 - name = "\improper Room 29" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_30 - name = "\improper Room 30" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_31 - name = "\improper Room 31" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_32 - name = "\improper Room 32" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_33 - name = "\improper Room 33" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_34 - name = "\improper Room 34" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_35 - name = "\improper Room 35" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_36 - name = "\improper Room 36" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_37 - name = "\improper Room 37" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_38 - name = "\improper Room 38" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_39 - name = "\improper Room 39" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_40 - name = "\improper Room 40" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_41 - name = "\improper Room 41" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_42 - name = "\improper Room 42" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_43 - name = "\improper Room 43" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_44 - name = "\improper Room 44" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_45 - name = "\improper Room 45" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_46 - name = "\improper Room 46" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_47 - name = "\improper Room 47" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_48 - name = "\improper Room 48" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_49 - name = "\improper Room 49" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_50 - name = "\improper Room 50" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_51 - name = "\improper Room 51" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_52 - name = "\improper Room 52" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_53 - name = "\improper Room 53" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_54 - name = "\improper Room 54" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_55 - name = "\improper Room 55" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_56 - name = "\improper Room 56" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_57 - name = "\improper Room 57" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_58 - name = "\improper Room 58" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_59 - name = "\improper Room 59" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_60 - name = "\improper Room 60" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_61 - name = "\improper Room 61" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_62 - name = "\improper Room 62" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_63 - name = "\improper Room 63" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_64 - name = "\improper Room 64" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_65 - name = "\improper Room 65" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_66 - name = "\improper Room 66" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_67 - name = "\improper Room 67" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_68 - name = "\improper Room 68" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_69 - name = "\improper Room 69" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_70 - name = "\improper Room 70" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_71 - name = "\improper Room 71" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_72 - name = "\improper Room 72" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_73 - name = "\improper Room 73" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_74 - name = "\improper Room 74" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_75 - name = "\improper Room 75" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_76 - name = "\improper Room 76" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_77 - name = "\improper Room 77" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_78 - name = "\improper Room 78" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_79 - name = "\improper Room 79" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_80 - name = "\improper Room 80" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_81 - name = "\improper Room 81" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_82 - name = "\improper Room 82" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_83 - name = "\improper Room 83" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_84 - name = "\improper Room 84" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_85 - name = "\improper Room 85" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_86 - name = "\improper Room 86" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_87 - name = "\improper Room 87" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_88 - name = "\improper Room 88" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_89 - name = "\improper Room 89" - icon_state = "fsmaint" - -/area/SouthernCrossV2/Maints/Room_90 - name = "\improper Room 90" - icon_state = "fsmaint" diff --git a/maps/southern_sun/southern_cross_events.dm b/maps/southern_sun/southern_cross_events.dm deleted file mode 100644 index 0fdce99136..0000000000 --- a/maps/southern_sun/southern_cross_events.dm +++ /dev/null @@ -1,23 +0,0 @@ -// The Station Director's office is specific to the Southern Cross, so this needs to go here. -/datum/event2/event/prison_break/bridge - area_types_to_break = list( - /area/bridge, - /area/bridge_hallway, - /area/crew_quarters/heads/sc/sd - ) - -// So is xenoflora isolation it seems. -/datum/event2/meta/prison_break/xenobio - irrelevant_areas = list( - /area/rnd/xenobiology/xenoflora, - /area/rnd/xenobiology/xenoflora_storage, - /area/rnd/xenobiology/xenoflora_isolation - ) - -/datum/event2/event/prison_break/xenobio - area_types_to_ignore = list( - /area/rnd/xenobiology/xenoflora, - /area/rnd/xenobiology/xenoflora_storage, - /area/rnd/xenobiology/xenoflora_isolation - ) - ignore_blast_doors = TRUE // Needed to avoid a breach. \ No newline at end of file diff --git a/maps/southern_sun/southern_cross_jobs.dm b/maps/southern_sun/southern_cross_jobs.dm deleted file mode 100644 index a1597d9ddb..0000000000 --- a/maps/southern_sun/southern_cross_jobs.dm +++ /dev/null @@ -1,106 +0,0 @@ -// Pilots - -var/const/SAR =(1<<11) -var/const/PILOT =(1<<13) -var/const/EXPLORER =(1<<14) - -var/const/access_pilot = 67 -var/const/access_explorer = 43 - -/datum/access/pilot - id = access_pilot - desc = JOB_PILOT - region = ACCESS_REGION_SUPPLY - -/datum/access/explorer - id = access_explorer - desc = JOB_EXPLORER - region = ACCESS_REGION_GENERAL - -//SC Jobs - -/* - -//Will see about getting working later. - -/datum/job/captain - title = "Station Director" - flag = CAPTAIN - department = "Command" - head_position = 1 - department_flag = ENGSEC - faction = "Station" - total_positions = 1 - spawn_positions = 1 - supervisors = "company officials and Corporate Regulations" - selection_color = "#1D1D4F" - req_admin_notify = 1 - access = list() //See get_access() - minimal_access = list() //See get_access() - minimal_player_age = 14 - economic_modifier = 20 - - minimum_character_age = 25 - ideal_character_age = 50 // Because 70 is a tad on the old side - - outfit_type = /decl/hierarchy/outfit/job/captain - alt_titles = list("Site Manager", "Overseer") - -/datum/job/captain/get_access() - return get_all_station_access() -*/ - -/datum/job/pilot - title = JOB_PILOT - flag = PILOT - department = "Civilian" - department_flag = CIVILIAN - faction = FACTION_STATION - total_positions = 2 - spawn_positions = 2 - supervisors = "the " + JOB_HEAD_OF_PERSONNEL - selection_color = "#515151" - economic_modifier = 4 - access = list(access_eva, access_maint_tunnels, access_external_airlocks, access_pilot, access_cargo, access_mining, access_mining_station) - minimal_access = list(access_eva, access_maint_tunnels, access_external_airlocks, access_pilot, access_cargo, access_mining, access_mining_station) - outfit_type = /decl/hierarchy/outfit/job/pilot - -/datum/job/explorer - title = JOB_EXPLORER - flag = EXPLORER - department = "Civilian" - department_flag = CIVILIAN - faction = FACTION_STATION - total_positions = 4 - spawn_positions = 4 - supervisors = "the " + JOB_PATHFINDER + " and the " + JOB_HEAD_OF_PERSONNEL - selection_color = "#515151" - economic_modifier = 4 - access = list(access_explorer, access_research) - minimal_access = list(access_explorer, access_research) - banned_job_species = list(SPECIES_ZADDAT) - - outfit_type = /decl/hierarchy/outfit/job/explorer2 -/* - alt_titles = list( - JOB_ALT_EXPLORERE_TECHNICIAN = /decl/hierarchy/outfit/job/explorer2/technician, - JOB_ALT_EXPLORER_MEDIC = /decl/hierarchy/outfit/job/explorer2/medic) -*/ - -/datum/job/sar - title = JOB_SEARCH_AND_RESCUE - flag = SAR - department = "Medical" - department_flag = MEDSCI - faction = FACTION_STATION - total_positions = 2 - spawn_positions = 2 - supervisors = "the " * JOB_CHIEF_MEDICAL_OFFICER - selection_color = "#515151" - economic_modifier = 4 - access = list(access_medical, access_medical_equip, access_morgue, access_surgery, access_chemistry, access_virology, access_eva, access_maint_tunnels, access_external_airlocks, access_psychiatrist, access_explorer) - minimal_access = list(access_medical, access_medical_equip, access_morgue, access_explorer) - min_age_by_species = list(SPECIES_PROMETHEAN = 2) - - outfit_type = /decl/hierarchy/outfit/job/medical/sar - job_description = "A " + JOB_SEARCH_AND_RESCUE + " operative recovers individuals who are injured or dead on the surface of Sif." diff --git a/maps/southern_sun/southern_cross_overrides.dm b/maps/southern_sun/southern_cross_overrides.dm deleted file mode 100644 index 24c83dd82b..0000000000 --- a/maps/southern_sun/southern_cross_overrides.dm +++ /dev/null @@ -1,31 +0,0 @@ -/mob/living/silicon/robot/platform/explorer - req_access = list(access_explorer) - -/mob/living/silicon/robot/platform/cargo - req_access = list(access_cargo_bot) - -/obj/item/card/id/platform/Initialize() - . = ..() - access |= access_explorer - access |= access_pilot - -/obj/structure/dark_portal/hub - destination_station_areas = list(/area/hallway/primary/firstdeck/elevator) - destination_wilderness_areas = list(/area/surface/outside/path/plains) - -/datum/map_template/shelter/dark_portal/New() - . = ..() - blacklisted_areas = typecacheof(list(/area/centcom, /area/shadekin, /area/vr)) - -/mob/living/carbon/human/shadekin_ability_check() - . = ..() - if(. && istype(get_area(src), /area/vr)) - to_chat(src, "The VR systems cannot comprehend this power! This is useless to you!") - . = FALSE - - -/obj/item/disposable_teleporter/attack_self(mob/user as mob)//Prevents people from using technomancer gear to escape to station from the VR pods. - if(istype(get_area(user), /area/vr)) - to_chat(user, "\The [src] does not appear to work in VR! This is useless to you!") - return - . = ..() diff --git a/maps/southern_sun/southern_cross_shuttles_ch.dm b/maps/southern_sun/southern_cross_shuttles_ch.dm deleted file mode 100644 index 32e15be1df..0000000000 --- a/maps/southern_sun/southern_cross_shuttles_ch.dm +++ /dev/null @@ -1,26 +0,0 @@ - -//Exploration carrier -/obj/machinery/computer/shuttle_control/exploration - name = "Exploration Sling Control Console" - shuttle_tag = "Exploration" - -/datum/shuttle/autodock/ferry/exploration - name = "Exploration" - warmup_time = 10 - location = FERRY_LOCATION_STATION - shuttle_area = /area/shuttle/expoutpost/station - landmark_offsite = "sling_outpost" - landmark_station = "sling_station" - docking_controller_tag = "exp_sling" - -/obj/effect/shuttle_landmark/southern_cross/sling_station - name = "Sling Station" - landmark_tag = "sling_station" - docking_controller = "exp_sling_station" - base_area = /area/space - base_turf = /turf/simulated/floor/reinforced/airless - -/obj/effect/shuttle_landmark/southern_cross/sling_outpost - name = "Sling Carrier" - landmark_tag = "sling_outpost" - docking_controller = "exp_sling_outpost" \ No newline at end of file diff --git a/maps/southern_sun/structures/closets/engineering.dm b/maps/southern_sun/structures/closets/engineering.dm deleted file mode 100644 index fdaffb3995..0000000000 --- a/maps/southern_sun/structures/closets/engineering.dm +++ /dev/null @@ -1,32 +0,0 @@ -/* - * SC Engineering - */ - - -/obj/structure/closet/secure_closet/engineering_chief_wardrobe - name = "chief engineer's wardrobe" - req_access = list(access_ce) - closet_appearance = /decl/closet_appearance/secure_closet/engineering/ce - - starts_with = list( - /obj/item/clothing/under/rank/chief_engineer, - /obj/item/clothing/under/rank/chief_engineer/skirt, - /obj/item/clothing/head/hardhat/white, - /obj/item/clothing/shoes/brown, - /obj/item/cartridge/ce, - /obj/item/radio/headset/heads/ce, - /obj/item/radio/headset/heads/ce/alt, - /obj/item/clothing/suit/storage/hazardvest, - /obj/item/clothing/mask/gas, - /obj/item/tank/emergency/oxygen/engi, - /obj/item/taperoll/engineering, - /obj/item/clothing/suit/storage/hooded/wintercoat/engineering) - -/obj/structure/closet/secure_closet/engineering_chief_wardrobe/Initialize() - if(prob(50)) - starts_with += /obj/item/storage/backpack/industrial - else - starts_with += /obj/item/storage/backpack/satchel/eng - if(prob(50)) - starts_with += /obj/item/storage/backpack/dufflebag/eng - return ..() diff --git a/maps/southern_sun/structures/closets/medical.dm b/maps/southern_sun/structures/closets/medical.dm deleted file mode 100644 index 5af03b5151..0000000000 --- a/maps/southern_sun/structures/closets/medical.dm +++ /dev/null @@ -1,47 +0,0 @@ -/* - * SC Medical - */ - - -/obj/structure/closet/secure_closet/CMO_wardrobe - name = "chief medical officer's locker" - req_access = list(access_cmo) - closet_appearance = /decl/closet_appearance/secure_closet/cmo - - starts_with = list( - /obj/item/clothing/under/rank/chief_medical_officer, - /obj/item/clothing/under/rank/chief_medical_officer/skirt, - /obj/item/clothing/suit/storage/toggle/labcoat/cmo, - /obj/item/clothing/suit/storage/toggle/labcoat/cmoalt, - /obj/item/clothing/suit/storage/toggle/labcoat/modern/cmo, - /obj/item/cartridge/cmo, - /obj/item/clothing/gloves/sterile/latex, - /obj/item/clothing/shoes/brown, - /obj/item/radio/headset/heads/cmo, - /obj/item/clothing/suit/storage/hooded/wintercoat/medical, - /obj/item/clothing/shoes/white) - -/obj/structure/closet/secure_closet/CMO_wardrobe/Initialize() - if(prob(50)) - starts_with += /obj/item/storage/backpack/medic - else - starts_with += /obj/item/storage/backpack/satchel/med - if(prob(50)) - starts_with += /obj/item/storage/backpack/dufflebag/med - switch(pick("blue", "green", "purple", "black", "navyblue")) - if ("blue") - starts_with += /obj/item/clothing/under/rank/medical/scrubs - starts_with += /obj/item/clothing/head/surgery/blue - if ("green") - starts_with += /obj/item/clothing/under/rank/medical/scrubs/green - starts_with += /obj/item/clothing/head/surgery/green - if ("purple") - starts_with += /obj/item/clothing/under/rank/medical/scrubs/purple - starts_with += /obj/item/clothing/head/surgery/purple - if ("black") - starts_with += /obj/item/clothing/under/rank/medical/scrubs/black - starts_with += /obj/item/clothing/head/surgery/black - if ("navyblue") - starts_with += /obj/item/clothing/under/rank/medical/scrubs/navyblue - starts_with += /obj/item/clothing/head/surgery/navyblue - return ..() diff --git a/maps/southern_sun/structures/closets/misc.dm b/maps/southern_sun/structures/closets/misc.dm deleted file mode 100644 index c69a233141..0000000000 --- a/maps/southern_sun/structures/closets/misc.dm +++ /dev/null @@ -1,152 +0,0 @@ -//Gun Cabinets - -/obj/structure/closet/secure_closet/guncabinet/sidearm - name = "emergency weapon cabinet" - req_one_access = list(access_armory,access_captain) - - starts_with = list( - /obj/item/gun/energy/gun = 4) - - -/obj/structure/closet/secure_closet/guncabinet/rifle - name = "rifle cabinet" - req_one_access = list(access_explorer,access_brig) - - starts_with = list( - /obj/item/ammo_magazine/clip/c762/hunter = 9, - /obj/item/gun/projectile/shotgun/pump/rifle = 2) - -/obj/structure/closet/secure_closet/guncabinet/rifle/Initialize() - if(prob(85)) - starts_with += /obj/item/gun/projectile/shotgun/pump/rifle - else - starts_with += /obj/item/gun/projectile/shotgun/pump/rifle/lever - return ..() - -/obj/structure/closet/secure_closet/guncabinet/phase - name = "explorer weapon cabinet" - req_one_access = list(access_explorer,access_brig) - - starts_with = list( - /obj/item/gun/energy/locked/phasegun = 2, - /obj/item/gun/energy/locked/phasegun/pistol, - /obj/item/cell/device/weapon = 2, - /obj/item/clothing/accessory/permit/gun/planetside) - -//Explorer Lockers - -/obj/structure/closet/secure_closet/explorer - name = "explorer locker" - req_access = list(access_explorer) - - starts_with = list( - /obj/item/clothing/under/explorer, - /obj/item/clothing/suit/armor/pcarrier/explorer/light, - /obj/item/clothing/head/helmet/explorer, - /obj/item/clothing/suit/storage/hooded/explorer, - /obj/item/clothing/mask/gas/explorer, - /obj/item/storage/belt/explorer, //CHOMPADD - /obj/item/clothing/shoes/boots/winter/explorer, - /obj/item/clothing/gloves/black, - /obj/item/radio/headset/explorer, - /obj/item/radio/headset/explorer/alt, //CHOMPADD - /obj/item/flashlight, - /obj/item/gps/explorer, - /obj/item/storage/box/flare, - /obj/item/geiger, - /obj/item/cell/device, - /obj/item/stack/marker_beacon/thirty, - /obj/item/reagent_containers/food/snacks/liquidfood, //CHOMPADD - /obj/item/reagent_containers/food/snacks/liquidprotein, //CHOMPADD - /obj/item/cataloguer - ) - -/obj/structure/closet/secure_closet/explorer/Initialize() - if(prob(50)) - starts_with += /obj/item/storage/backpack - else - starts_with += /obj/item/storage/backpack/satchel/norm - if(prob(75)) - starts_with += /obj/item/material/knife/tacknife/survival - else - starts_with += /obj/item/material/knife/machete - return ..() - -//SAR Lockers - -/obj/structure/closet/secure_closet/sar - name = "search and rescue locker" - desc = "Supplies for a wilderness first responder." - req_access = list(access_medical_equip) - closet_appearance = /decl/closet_appearance/secure_closet/medical - - starts_with = list( - /obj/item/storage/backpack/dufflebag/emt, - /obj/item/storage/box/autoinjectors, - /obj/item/storage/box/syringes, - /obj/item/reagent_containers/glass/bottle/inaprovaline, - /obj/item/reagent_containers/glass/bottle/antitoxin, - /obj/item/storage/belt/medical/emt, - /obj/item/clothing/mask/gas, - /obj/item/clothing/suit/storage/hooded/wintercoat/medical/sar, - /obj/item/clothing/shoes/boots/winter/explorer, - /obj/item/radio/headset/sar, - /obj/item/cartridge/medical, - /obj/item/flashlight, - /obj/item/tank/emergency/oxygen/engi, - /obj/item/clothing/glasses/hud/health, - /obj/item/healthanalyzer, - /obj/item/radio/off, - /obj/random/medical, - /obj/item/tool/crowbar, - /obj/item/extinguisher/mini, - /obj/item/storage/box/freezer, - /obj/item/clothing/accessory/storage/white_vest, - /obj/item/taperoll/medical, - /obj/item/gps, - /obj/item/geiger, - /obj/item/bodybag/cryobag) - -//Pilot Locker - -/obj/structure/closet/secure_closet/pilot - name = "pilot locker" - req_access = list(access_pilot) - - starts_with = list( - /obj/item/storage/backpack/parachute, - /obj/item/material/knife/tacknife/survival, - /obj/item/clothing/head/pilot, - /obj/item/clothing/under/rank/pilot1, - /obj/item/clothing/suit/storage/toggle/bomber/pilot, - /obj/item/clothing/mask/gas/half, - /obj/item/clothing/shoes/black, - /obj/item/clothing/gloves/fingerless, - /obj/item/radio/headset/pilot/alt, - /obj/item/flashlight, - /obj/item/reagent_containers/food/snacks/liquidfood, - /obj/item/reagent_containers/food/drinks/cans/waterbottle, - /obj/item/storage/box/flare, - /obj/item/cell/device, - /obj/item/radio) - -/obj/structure/closet/secure_closet/pilot/Initialize() - if(prob(50)) - starts_with += /obj/item/storage/backpack - else - starts_with += /obj/item/storage/backpack/satchel/norm - return ..() - -//Exotic Seeds Crate - -/obj/structure/closet/crate/hydroponics/exotic - name = "exotic seeds crate" - desc = "All you need to destroy that pesky planet." - - starts_with = list( - /obj/item/seeds/random = 6, - /obj/item/seeds/replicapod = 2, - /obj/item/seeds/ambrosiavulgarisseed = 2, - /obj/item/seeds/kudzuseed, - /obj/item/seeds/libertymycelium, - /obj/item/seeds/reishimycelium) diff --git a/maps/southern_sun/structures/closets/research.dm b/maps/southern_sun/structures/closets/research.dm deleted file mode 100644 index a279eeef77..0000000000 --- a/maps/southern_sun/structures/closets/research.dm +++ /dev/null @@ -1,20 +0,0 @@ -/* - * SC Science - */ - - -/obj/structure/closet/secure_closet/RD_wardrobe - name = "research director's locker" - req_access = list(access_rd) - closet_appearance = /decl/closet_appearance/secure_closet/science/rd - - starts_with = list( - /obj/item/clothing/under/rank/research_director, - /obj/item/clothing/under/rank/research_director/rdalt, - /obj/item/clothing/under/rank/research_director/dress_rd, - /obj/item/clothing/suit/storage/toggle/labcoat, - /obj/item/cartridge/rd, - /obj/item/clothing/shoes/white, - /obj/item/clothing/shoes/laceup/brown, - /obj/item/clothing/gloves/sterile/latex, - /obj/item/radio/headset/heads/rd) diff --git a/maps/southern_sun/structures/closets/security.dm b/maps/southern_sun/structures/closets/security.dm deleted file mode 100644 index e6036fdf88..0000000000 --- a/maps/southern_sun/structures/closets/security.dm +++ /dev/null @@ -1,35 +0,0 @@ -/* - * SC Security - */ - - -/obj/structure/closet/secure_closet/hos_wardrobe - name = "head of security's locker" - req_access = list(access_hos) - closet_appearance = /decl/closet_appearance/secure_closet/security/hos - - starts_with = list( - /obj/item/clothing/head/helmet/HoS, - /obj/item/clothing/head/helmet/HoS/hat, - /obj/item/clothing/suit/storage/vest/hos, - /obj/item/clothing/under/rank/head_of_security/jensen, - /obj/item/clothing/under/rank/head_of_security/corp, - /obj/item/clothing/suit/storage/vest/hoscoat/jensen/alt, - /obj/item/clothing/suit/storage/vest/hoscoat/jensen, - /obj/item/clothing/suit/storage/vest/hoscoat, - /obj/item/cartridge/hos, - /obj/item/clothing/head/helmet/dermal, - /obj/item/radio/headset/heads/hos, - /obj/item/radio/headset/heads/hos/alt, - /obj/item/clothing/head/beret/sec/corporate/hos, - /obj/item/clothing/suit/storage/hooded/wintercoat/security/hos, - /obj/item/clothing/mask/gas/half) - -/obj/structure/closet/secure_closet/hos_wardrobe/Initialize() - if(prob(50)) - starts_with += /obj/item/storage/backpack/security - else - starts_with += /obj/item/storage/backpack/satchel/sec - if(prob(50)) - starts_with += /obj/item/storage/backpack/dufflebag/sec - return ..() diff --git a/maps/southern_sun/submaps/_southern_cross_submaps.dm b/maps/southern_sun/submaps/_southern_cross_submaps.dm deleted file mode 100644 index 099bfea2d6..0000000000 --- a/maps/southern_sun/submaps/_southern_cross_submaps.dm +++ /dev/null @@ -1,287 +0,0 @@ -// This causes submap maps to get 'checked' and compiled, when undergoing a unit test. -// This is so Travis can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors. - -/////////////////////////////////////////////////////////////////////////////// -// Primary Load - these are areas that will ALWAYS be in play. - - -////////////////////////////////////////////////////////////////////////////// -/// Away Missions -/// If you're reading this and want to add a new away mission, reference /tether/submaps/_tether_submaps.dm or existing away missions for how to set it up. - -// This is for integration tests only. -// Always add any new away missions/gateways/lateloaded maps that are not PoIs here. -#if AWAY_MISSION_TEST -//#include "../overmap/planets/kara/aerostat/aerostat.dmm" //Disabled due to low usage -//#include "../overmap/planets/kara/northern_star/northern_star_mine.dmm" //Disabled due to low usage -#include "../overmap/space/fueldepot.dmm" -#include "../overmap/planets/thor/thor.dmm" //The datum is in southern_cross_defines.dm -#include "../overmap/planets/tyr/tyr.dmm" //The datum is in southern_cross_defines.dm -#include "gateway/BaseBlep.dmm" -#include "gateway/maddnesslab.dmm" -#include "gateway/snowfield.dmm" -#include "gateway/hiddeneclipse.dmm" -#include "modular_chomp/maps/virtual_reality/constructVR.dmm" -#endif - - -////////////////////////////////////////////////////////////////////////////////////// - -// Gateway submaps go here -/datum/map_template/sc_lateload/gateway - name = "Gateway Submap" - desc = "Please do not use this." - mappath = null - associated_map_datum = null - -/datum/map_z_level/sc_lateload/gateway_destination - name = "Gateway Destination" - z = Z_LEVEL_GATEWAY - -#include "gateway/snowfield_ch.dm" //CHOMPEDIT - Use the good one instead -/datum/map_template/sc_lateload/gateway/snowfield - name = "Snow Field" - desc = "An old base in middle of snowy wasteland" - mappath = "maps/southern_sun/submaps/gateway/snowfield.dmm" - -#include "gateway/darkrps.dm" -/datum/map_template/sc_lateload/gateway/darkrps - name = "Abandoned City" - desc = "An abandoned city overrun with piracy and mercernaries." - mappath = "maps/southern_sun/submaps/gateway/darkrps.dmm" - associated_map_datum = /datum/map_z_level/sc_lateload/gateway_destination - -#include "gateway/diescraper.dm" -/datum/map_template/sc_lateload/gateway/diescraper - name = "Skyscraper" - desc = "A skyscraper of various businesses, apartments, and recreations. Do not fall" - mappath = "maps/southern_sun/submaps/gateway/diescraper.dmm" - associated_map_datum = /datum/map_z_level/sc_lateload/gateway_destination - -#include "gateway/BaseBlep.dm" -/datum/map_template/sc_lateload/gateway/baseblep - name = "Base Blep" - desc = "A brand new but already lost base at the end of a squishy canyon" - - mappath = "maps/southern_sun/submaps/gateway/BaseBlep.dmm" - associated_map_datum = /datum/map_z_level/sc_lateload/gateway_destination - -#include "gateway/maddnesslab.dm" -/datum/map_template/sc_lateload/gateway/maddnesslab - name = "Maddness Lab" - desc = "An ancient base brimming with creations of maddness" - mappath = "maps/southern_sun/submaps/gateway/maddnesslab.dmm" - associated_map_datum = /datum/map_z_level/sc_lateload/gateway_destination - -#include "gateway/carpfarm.dm" -/datum/map_template/sc_lateload/gateway/carpfarm - name = "Carp Farm" - desc = "Asteroid base surrounded by carp" - mappath = "maps/southern_sun/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 = "maps/southern_sun/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 -/datum/map_template/sc_lateload/vr_world - name = "VR World" - desc = "A dynamic, virtual world." - mappath = "modular_chomp/maps/virtual_reality/constructVR.dmm" //Use modular - associated_map_datum = /datum/map_z_level/sc_lateload/vr_world - -/datum/map_z_level/sc_lateload/vr_world - name = "VR World" - z = Z_LEVEL_VR_REALM - -/datum/map_template/sc_lateload/thor - name = "Thor Surface" - desc = "The jungle like surface of Sif's moon" - mappath = "maps/southern_cross/overmap/planets/thor/thor.dmm" - associated_map_datum = /datum/planet/thor - -/datum/map_template/sc_lateload/tyr - name = "Desert Valley" - desc = "An anomalous valley within tyr" - mappath = "maps/southern_sun/overmap/planets/tyr/tyr.dmm" - associated_map_datum = /datum/planet/tyr - -//Space submaps/sectors/POIs/whatever you wanna freaking call it, go here. -/* Pretty sure we don't use this. -#include "../../expedition_vr/space/_fueldepot.dm" -/datum/map_template/sc_lateload/away_fueldepot - name = "Fuel Depot - Z1 Space" - desc = "An unmanned fuel depot floating in space." - mappath = "maps/expedition_vr/space/fueldepot.dmm" - associated_map_datum = /datum/map_z_level/sc_lateload/away_fueldepot - -/datum/map_z_level/sc_lateload/away_fueldepot - name = "Away Mission - Fuel Depot" - z = Z_LEVEL_FUELDEPOT -*/ - -////////////////////////////////////////////////////////////////////////////////////// -// Code Shenanigans for lateload maps - -/datum/map_template/sc_lateload - allow_duplicates = FALSE - var/associated_map_datum - -/datum/map_template/sc_lateload/on_map_loaded(z) - if(!associated_map_datum || !ispath(associated_map_datum)) - log_game("Extra z-level [src] has no associated map datum") - return - - new associated_map_datum(using_map, z) - -/datum/map_z_level/sc_lateload - z = 0 - flags = MAP_LEVEL_SEALED - -/datum/map_z_level/sc_lateload/New(var/datum/map/map, mapZ) - if(mapZ && !z) - z = mapZ - return ..(map) - -/turf/unsimulated/wall/seperator //to block vision between transit zones - name = "" - icon = 'icons/effects/effects.dmi' - icon_state = "1" - -/obj/effect/step_trigger/zlevel_fall/beach - var/static/target_z - -/obj/effect/step_trigger/zlevel_fall //Don't ever use this, only use subtypes.Define a new var/static/target_z on each - affect_ghosts = 1 - -/obj/effect/step_trigger/zlevel_fall/Initialize() - . = ..() - - if(istype(get_turf(src), /turf/simulated/floor)) - src:target_z = z - return INITIALIZE_HINT_QDEL - -/obj/effect/step_trigger/zlevel_fall/Trigger(var/atom/movable/A) //mostly from /obj/effect/step_trigger/teleporter/planetary_fall, step_triggers.dm L160 - if(!src:target_z) - return - - var/attempts = 100 - var/turf/simulated/T - while(attempts && !T) - var/turf/simulated/candidate = locate(rand(5,world.maxx-5),rand(5,world.maxy-5),src:target_z) - if(candidate.density) - attempts-- - continue - - T = candidate - break - - if(!T) - return - - if(isobserver(A)) - A.forceMove(T) // Harmlessly move ghosts. - return - - A.forceMove(T) - if(isliving(A)) // Someday, implement parachutes. For now, just turbomurder whoever falls. - message_admins("\The [A] fell out of the sky.") - var/mob/living/L = A - L.fall_impact(T, 42, 90, FALSE, TRUE) //You will not be defibbed from this. - - -///////////////////////////////////////////////////////////////////////////////////// -// Add objects that will be used in ALL away missions. Keep area specific stuff separate. - -/obj/structure/old_roboprinter - name = "old drone fabricator" - desc = "Built like a tank, still working after so many years." - icon = 'icons/obj/machines/drone_fab.dmi' - icon_state = "drone_fab_idle" - anchored = TRUE - density = TRUE - -/obj/sc_away_spawner - name = "RENAME ME, JERK" - desc = "Spawns the mobs!" - icon = 'icons/mob/screen1.dmi' - icon_state = "x" - invisibility = 101 - mouse_opacity = 0 - density = 0 - anchored = 1 - - //Weighted with values (not %chance, but relative weight) - //Can be left value-less for all equally likely - var/list/mobs_to_pick_from - - //When the below chance fails, the spawner is marked as depleted and stops spawning - var/prob_spawn = 100 //Chance of spawning a mob whenever they don't have one - var/prob_fall = 5 //Above decreases by this much each time one spawns - - //Settings to help mappers/coders have their mobs do what they want in this case - var/faction //To prevent infighting if it spawns various mobs, set a faction - var/atmos_comp //TRUE will set all their survivability to be within 20% of the current air - //var/guard //# will set the mobs to remain nearby their spawn point within this dist - - //Internal use only - var/mob/living/simple_mob/my_mob - var/depleted = FALSE - -/obj/sc_away_spawner/Initialize() - . = ..() - - if(!LAZYLEN(mobs_to_pick_from)) - error("Mob spawner at [x],[y],[z] ([get_area(src)]) had no mobs_to_pick_from set on it!") - flags |= ATOM_INITIALIZED //CHOMPEdit - return INITIALIZE_HINT_QDEL - START_PROCESSING(SSobj, src) - -/obj/sc_away_spawner/process() - if(my_mob && my_mob.stat != DEAD) - return //No need - - if(LAZYLEN(loc.human_mobs(world.view))) - return //I'll wait. - - if(prob(prob_spawn)) - prob_spawn -= prob_fall - var/picked_type = pickweight(mobs_to_pick_from) - my_mob = new picked_type(get_turf(src)) - my_mob.low_priority = TRUE - - if(faction) - my_mob.faction = faction - - if(atmos_comp) - var/turf/T = get_turf(src) - var/datum/gas_mixture/env = T.return_air() - if(env) - my_mob.minbodytemp = env.temperature * 0.8 - my_mob.maxbodytemp = env.temperature * 1.2 - - var/list/gaslist = env.gas - my_mob.min_oxy = gaslist["oxygen"] * 0.8 - my_mob.min_tox = gaslist["phoron"] * 0.8 - my_mob.min_n2 = gaslist["nitrogen"] * 0.8 - my_mob.min_co2 = gaslist["carbon_dioxide"] * 0.8 - my_mob.max_oxy = gaslist["oxygen"] * 1.2 - my_mob.max_tox = gaslist["phoron"] * 1.2 - my_mob.max_n2 = gaslist["nitrogen"] * 1.2 - my_mob.max_co2 = gaslist["carbon_dioxide"] * 1.2 -/* //VORESTATION AI TEMPORARY REMOVAL - if(guard) - my_mob.returns_home = TRUE - my_mob.wander_distance = guard -*/ - return - else - STOP_PROCESSING(SSobj, src) - depleted = TRUE - return diff --git a/maps/southern_sun/submaps/asteroid_belt/_templates.dm b/maps/southern_sun/submaps/asteroid_belt/_templates.dm deleted file mode 100644 index a68f97765b..0000000000 --- a/maps/southern_sun/submaps/asteroid_belt/_templates.dm +++ /dev/null @@ -1,80 +0,0 @@ -/datum/map_template/asteroid_belt - name = "Belt Miner Content" - desc = "For seeding submaps in the Asteroid Belt" - allow_duplicates = TRUE - -/datum/map_template/asteroid_belt/normal_cave - name = "Belt Normal Mob Cave" - mappath = "maps/southern_sun/submaps/asteroid_belt/normal_cave.dmm" - cost = 5 - -/datum/map_template/asteroid_belt/broken_o2_gen - name = "Belt Broken O2 generator" - mappath = "maps/southern_sun/submaps/asteroid_belt/broken_o2_gen.dmm" - cost = 15 - -/datum/map_template/asteroid_belt/corrupt_hound_bay - name = "Belt Corrupt Hound Bay" - mappath = "maps/southern_sun/submaps/asteroid_belt/corrupt_hound_bay.dmm" - cost = 25 - allow_duplicates = FALSE - -/datum/map_template/asteroid_belt/crashed_shuttle - name = "Belt Crashed Belt Shuttle" - mappath = "maps/southern_sun/submaps/asteroid_belt/crashed_shuttle.dmm" - cost = 10 - allow_duplicates = FALSE - -/datum/map_template/asteroid_belt/frost_spider_nest - name = "Belt Frost Spider Nest" - mappath = "maps/southern_sun/submaps/asteroid_belt/frost_spider_nest.dmm" - cost = 10 - -/datum/map_template/asteroid_belt/hard_cave - name = "Belt Hard Mob Cave" - mappath = "maps/southern_sun/submaps/asteroid_belt/hard_cave.dmm" - cost = 10 - -/datum/map_template/asteroid_belt/infection_pod - name = "Belt Infection Pod" - mappath = "maps/southern_sun/submaps/asteroid_belt/infection_pod.dmm" - cost = 10 - allow_duplicates = FALSE - -/datum/map_template/asteroid_belt/inferno - name = "Belt Thermal Spider Nest" - mappath = "maps/southern_sun/submaps/asteroid_belt/inferno.dmm" - cost = 5 - -/datum/map_template/asteroid_belt/large_cave - name = "Belt Large Cave" - mappath = "maps/southern_sun/submaps/asteroid_belt/large_cave.dmm" - cost = 15 - -/datum/map_template/asteroid_belt/mimicry - name = "Belt Mimic Cave" - mappath = "maps/southern_sun/submaps/asteroid_belt/mimicry.dmm" - cost = 5 - -/datum/map_template/asteroid_belt/mysterious_cavern - name = "Belt Mysterious Cave" - mappath = "maps/southern_sun/submaps/asteroid_belt/mysterious_cavern.dmm" - cost = 25 - allow_duplicates = FALSE - -/datum/map_template/asteroid_belt/pressure_seal - name = "Belt Pressurized Cave" - mappath = "maps/southern_sun/submaps/asteroid_belt/pressure_seal.dmm" - cost = 5 - -/datum/map_template/asteroid_belt/space_cave - name = "Belt Space Cave" - mappath = "maps/southern_sun/submaps/asteroid_belt/space_cave.dmm" - cost = 5 - -/* -/datum/map_template/asteroid_belt/whatever_treasure - name = "Some Kinda Treasure" //A name, only visible to admins - mappath = "maps/southern_sun/submaps/asteroid_belt/hard_mob.dmm" //The .dmm file for this template (in this folder) - cost = 10 //How 'valuable' this template is -*/ diff --git a/maps/southern_sun/submaps/asteroid_belt/belt_miner_things.dm b/maps/southern_sun/submaps/asteroid_belt/belt_miner_things.dm deleted file mode 100644 index 348e65d6d8..0000000000 --- a/maps/southern_sun/submaps/asteroid_belt/belt_miner_things.dm +++ /dev/null @@ -1,94 +0,0 @@ -/mob/living/simple_mob/animal/giant_spider/frost/space - desc = "Icy and blue, it makes you shudder to look at it. This one has brilliant blue eyes, and looks adapted to space survival." - catalogue_data = list(/datum/category_item/catalogue/fauna/giant_spider/frost_spider) - - icon_state = "frost" - icon_living = "frost" - icon_dead = "frost_dead" - - maxHealth = 225 - health = 225 - - poison_per_bite = 10 - poison_type = "cryotoxin" - heat_resist = -0.50 - cold_resist = 0.75 - min_oxy = 0 - max_oxy = 0 - min_tox = 0 - max_tox = 0 - min_co2 = 0 - max_co2 = 0 - min_n2 = 0 - max_n2 = 0 - minbodytemp = 0 - -/mob/living/simple_mob/animal/giant_spider/frost/space/Process_Spacemove(var/check_drift = 0) - return TRUE - -// Belt mob spawners -/obj/sc_away_spawner/belt_normal - name = "Belt Normal Spawner" - faction = "belter" - atmos_comp = TRUE - prob_spawn = 100 - prob_fall = 30 - //guard = 20 - mobs_to_pick_from = list( - /mob/living/simple_mob/animal/space/bats = 2, - /mob/living/simple_mob/animal/space/bear = 1, - /mob/living/simple_mob/animal/giant_spider/frost/space = 5, - ) - -/obj/sc_away_spawner/belt_hard - name = "Belt Hard Spawner" - faction = "belter" - atmos_comp = TRUE - prob_spawn = 100 - prob_fall = 50 - //guard = 20 - mobs_to_pick_from = list( - /mob/living/simple_mob/vore/aggressive/corrupthound = 3, - /mob/living/simple_mob/vore/aggressive/rat/phoron = 1 - ) - -/obj/sc_away_spawner/asteroid_drone_swarm - name = "Belt Drone Swarm Spawner" - faction = "belter" - atmos_comp = TRUE - prob_spawn = 100 - prob_fall = 10 - //guard = 20 - mobs_to_pick_from = list( - /mob/living/simple_mob/mechanical/corrupt_maint_drone = 3, - ) - -/obj/random/asteroid_belt - name = "random asteroid belt loot" - desc = "Random loot for Belt Miners." - icon = 'icons/obj/items.dmi' - icon_state = "spickaxe" - -/obj/effect/step_trigger/teleporter/debrisfield_loop/north/New() - ..() - teleport_x = x - teleport_y = 2 - teleport_z = z - -/obj/effect/step_trigger/teleporter/debrisfield_loop/south/New() - ..() - teleport_x = x - teleport_y = world.maxy - 1 - teleport_z = z - -/obj/effect/step_trigger/teleporter/debrisfield_loop/west/New() - ..() - teleport_x = world.maxx - 1 - teleport_y = y - teleport_z = z - -/obj/effect/step_trigger/teleporter/debrisfield_loop/east/New() - ..() - teleport_x = 2 - teleport_y = y - teleport_z = z diff --git a/maps/southern_sun/submaps/asteroid_belt/broken_o2_gen.dmm b/maps/southern_sun/submaps/asteroid_belt/broken_o2_gen.dmm deleted file mode 100644 index 3499f5f15b..0000000000 --- a/maps/southern_sun/submaps/asteroid_belt/broken_o2_gen.dmm +++ /dev/null @@ -1,291 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"b" = ( -/turf/simulated/wall, -/area/mine/explored/belt_miner) -"c" = ( -/obj/structure/door_assembly/door_assembly_eng, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"d" = ( -/obj/structure/ghost_pod/manual/lost_drone/dogborg, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"e" = ( -/obj/structure/old_roboprinter, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"f" = ( -/obj/machinery/door/airlock/glass_engineering, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"g" = ( -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"h" = ( -/obj/structure/barricade, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"i" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"j" = ( -/obj/machinery/atmospherics/unary/heater, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"k" = ( -/obj/machinery/atmospherics/unary/freezer, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"l" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"m" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"n" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"o" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"p" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 6 - }, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"q" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"s" = ( -/obj/machinery/crystal/ice, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"t" = ( -/obj/machinery/gravity_generator, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"u" = ( -/obj/machinery/particle_smasher, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"v" = ( -/obj/sc_away_spawner/asteroid_drone_swarm, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) - -(1,1,1) = {" -b -b -b -b -b -b -b -b -g -g -g -g -g -"} -(2,1,1) = {" -b -e -e -a -a -p -i -b -g -g -s -g -g -"} -(3,1,1) = {" -b -a -a -a -a -q -a -b -h -g -g -g -g -"} -(4,1,1) = {" -b -v -v -a -a -q -v -c -h -g -g -g -g -"} -(5,1,1) = {" -b -a -a -a -a -a -a -b -h -g -g -g -g -"} -(6,1,1) = {" -b -t -a -a -a -q -a -b -g -g -g -g -s -"} -(7,1,1) = {" -b -a -a -d -a -q -a -f -g -g -s -g -g -"} -(8,1,1) = {" -b -a -a -a -a -q -a -b -g -g -g -g -g -"} -(9,1,1) = {" -b -a -a -a -a -q -a -b -h -g -g -g -g -"} -(10,1,1) = {" -b -j -l -l -m -q -v -c -h -g -s -g -g -"} -(11,1,1) = {" -b -a -a -a -n -o -a -b -h -g -g -g -g -"} -(12,1,1) = {" -b -k -l -l -o -a -u -b -g -g -g -s -g -"} -(13,1,1) = {" -b -b -b -b -b -b -b -b -g -g -g -g -g -"} diff --git a/maps/southern_sun/submaps/asteroid_belt/corrupt_hound_bay.dmm b/maps/southern_sun/submaps/asteroid_belt/corrupt_hound_bay.dmm deleted file mode 100644 index 0b5bd976b1..0000000000 --- a/maps/southern_sun/submaps/asteroid_belt/corrupt_hound_bay.dmm +++ /dev/null @@ -1,216 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/machinery/door/airlock/sandstone, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"b" = ( -/turf/simulated/wall, -/area/mine/explored/belt_miner) -"c" = ( -/turf/simulated/floor/tiled/dark, -/area/mine/explored/belt_miner) -"d" = ( -/obj/structure/dogbed, -/turf/simulated/floor/tiled/dark, -/area/mine/explored/belt_miner) -"e" = ( -/obj/machinery/door/airlock/sandstone, -/turf/simulated/floor/tiled/dark, -/area/mine/explored/belt_miner) -"f" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/dark, -/area/mine/explored/belt_miner) -"g" = ( -/obj/machinery/light/flicker, -/turf/simulated/floor/tiled/dark, -/area/mine/explored/belt_miner) -"h" = ( -/obj/machinery/implantchair, -/turf/simulated/floor/tiled/dark, -/area/mine/explored/belt_miner) -"i" = ( -/obj/machinery/compressor, -/turf/simulated/floor/tiled/dark, -/area/mine/explored/belt_miner) -"j" = ( -/obj/machinery/auto_cloner, -/turf/simulated/floor/tiled/dark, -/area/mine/explored/belt_miner) -"k" = ( -/obj/structure/old_roboprinter, -/turf/simulated/floor/tiled/dark, -/area/mine/explored/belt_miner) -"l" = ( -/obj/sc_away_spawner/belt_hard, -/turf/simulated/floor/tiled/dark, -/area/mine/explored/belt_miner) -"m" = ( -/obj/sc_away_spawner/asteroid_drone_swarm, -/turf/simulated/floor/tiled/dark, -/area/mine/explored/belt_miner) -"n" = ( -/mob/living/simple_mob/vore/aggressive/corrupthound, -/turf/simulated/floor/tiled/dark, -/area/mine/explored/belt_miner) - -(1,1,1) = {" -b -b -b -b -b -b -b -b -"} -(2,1,1) = {" -b -c -n -i -b -k -f -b -"} -(3,1,1) = {" -b -c -c -c -b -c -c -b -"} -(4,1,1) = {" -b -e -b -b -b -m -c -b -"} -(5,1,1) = {" -a -c -c -c -c -c -g -b -"} -(6,1,1) = {" -a -c -c -c -c -c -c -b -"} -(7,1,1) = {" -b -b -b -c -c -b -b -b -"} -(8,1,1) = {" -b -n -c -c -c -l -d -b -"} -(9,1,1) = {" -b -c -c -c -c -c -j -b -"} -(10,1,1) = {" -b -b -b -c -c -b -b -b -"} -(11,1,1) = {" -a -c -c -c -c -c -c -b -"} -(12,1,1) = {" -a -c -c -c -c -c -g -b -"} -(13,1,1) = {" -b -b -b -e -b -c -c -b -"} -(14,1,1) = {" -b -c -c -c -b -c -c -b -"} -(15,1,1) = {" -b -h -c -c -b -c -f -b -"} -(16,1,1) = {" -b -b -b -b -b -b -b -b -"} diff --git a/maps/southern_sun/submaps/asteroid_belt/crashed_shuttle.dmm b/maps/southern_sun/submaps/asteroid_belt/crashed_shuttle.dmm deleted file mode 100644 index eaa593bf62..0000000000 --- a/maps/southern_sun/submaps/asteroid_belt/crashed_shuttle.dmm +++ /dev/null @@ -1,194 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"b" = ( -/turf/simulated/wall/rshull, -/area/mine/explored/belt_miner) -"c" = ( -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"d" = ( -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"e" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8; - icon_state = "propulsion_r" - }, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"f" = ( -/obj/structure/shuttle/engine/heater{ - icon_state = "heater"; - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"g" = ( -/obj/structure/bed/chair/shuttle, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"h" = ( -/obj/item/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 27 - }, -/obj/structure/bed/chair/shuttle, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"i" = ( -/obj/structure/bed/chair/shuttle, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"j" = ( -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"k" = ( -/obj/sc_away_spawner/belt_normal, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"l" = ( -/obj/machinery/computer/shuttle_control/beltferry{ - icon_state = "computer"; - dir = 8 - }, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"m" = ( -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"n" = ( -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"o" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"p" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"q" = ( -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) - -(1,1,1) = {" -a -b -a -e -e -a -e -b -"} -(2,1,1) = {" -a -b -a -f -f -a -f -b -"} -(3,1,1) = {" -a -b -a -g -c -a -o -b -"} -(4,1,1) = {" -a -a -c -c -k -a -a -a -"} -(5,1,1) = {" -a -a -b -h -c -a -c -c -"} -(6,1,1) = {" -a -a -a -i -c -a -p -b -"} -(7,1,1) = {" -a -a -d -j -l -a -p -b -"} -(8,1,1) = {" -a -a -a -d -m -n -j -q -"} diff --git a/maps/southern_sun/submaps/asteroid_belt/frost_spider_nest.dmm b/maps/southern_sun/submaps/asteroid_belt/frost_spider_nest.dmm deleted file mode 100644 index 1c52b6fdd4..0000000000 --- a/maps/southern_sun/submaps/asteroid_belt/frost_spider_nest.dmm +++ /dev/null @@ -1,159 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/mob/living/simple_mob/animal/giant_spider/frost/space, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"b" = ( -/turf/simulated/mineral/ignore_cavegen, -/area/mine/explored/belt_miner) -"c" = ( -/turf/template_noop, -/area/mine/explored/belt_miner) -"d" = ( -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"e" = ( -/obj/effect/spider/spiderling/frost, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"f" = ( -/obj/effect/spider/stickyweb/dark, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"g" = ( -/obj/effect/spider/stickyweb, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"h" = ( -/obj/effect/decal/cleanable/spiderling_remains, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"i" = ( -/obj/effect/spider/eggcluster/small/frost, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"j" = ( -/obj/effect/spider/cocoon, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) - -(1,1,1) = {" -b -b -b -b -b -b -b -b -b -b -"} -(2,1,1) = {" -b -a -d -d -g -g -i -i -d -b -"} -(3,1,1) = {" -b -d -d -d -d -h -d -d -a -b -"} -(4,1,1) = {" -b -e -d -e -d -d -d -d -d -b -"} -(5,1,1) = {" -b -f -d -h -d -a -d -d -d -b -"} -(6,1,1) = {" -c -g -e -d -d -d -d -d -g -b -"} -(7,1,1) = {" -c -c -f -d -d -g -d -e -d -b -"} -(8,1,1) = {" -c -c -c -g -e -d -d -h -d -b -"} -(9,1,1) = {" -c -c -c -c -g -f -d -d -j -b -"} -(10,1,1) = {" -c -c -c -c -c -b -b -b -b -b -"} diff --git a/maps/southern_sun/submaps/asteroid_belt/hard_cave.dmm b/maps/southern_sun/submaps/asteroid_belt/hard_cave.dmm deleted file mode 100644 index 42e8120c61..0000000000 --- a/maps/southern_sun/submaps/asteroid_belt/hard_cave.dmm +++ /dev/null @@ -1,50 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/simulated/mineral/ignore_cavegen, -/area/mine/explored/belt_miner) -"b" = ( -/turf/template_noop, -/area/mine/explored/belt_miner) -"c" = ( -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"d" = ( -/obj/sc_away_spawner/belt_hard, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) - -(1,1,1) = {" -a -a -b -a -a -"} -(2,1,1) = {" -a -c -c -c -a -"} -(3,1,1) = {" -b -c -d -c -b -"} -(4,1,1) = {" -a -c -c -c -a -"} -(5,1,1) = {" -a -a -b -a -a -"} diff --git a/maps/southern_sun/submaps/asteroid_belt/infection_pod.dmm b/maps/southern_sun/submaps/asteroid_belt/infection_pod.dmm deleted file mode 100644 index 50d6f645b4..0000000000 --- a/maps/southern_sun/submaps/asteroid_belt/infection_pod.dmm +++ /dev/null @@ -1,73 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"b" = ( -/turf/simulated/wall, -/area/mine/explored/belt_miner) -"c" = ( -/turf/simulated/floor/plating, -/area/mine/explored/belt_miner) -"d" = ( -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/plating, -/area/mine/explored/belt_miner) -"e" = ( -/mob/living/simple_mob/mechanical/infectionbot, -/turf/simulated/floor/plating, -/area/mine/explored/belt_miner) - -(1,1,1) = {" -a -a -a -a -a -a -a -"} -(2,1,1) = {" -a -b -b -b -b -b -a -"} -(3,1,1) = {" -a -d -c -c -e -b -a -"} -(4,1,1) = {" -a -d -c -c -e -b -a -"} -(5,1,1) = {" -a -b -b -b -b -b -a -"} -(6,1,1) = {" -a -a -a -a -a -a -a -"} diff --git a/maps/southern_sun/submaps/asteroid_belt/inferno.dmm b/maps/southern_sun/submaps/asteroid_belt/inferno.dmm deleted file mode 100644 index 9e4249685f..0000000000 --- a/maps/southern_sun/submaps/asteroid_belt/inferno.dmm +++ /dev/null @@ -1,80 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/simulated/mineral/ignore_cavegen, -/area/mine/explored/belt_miner) -"b" = ( -/obj/effect/spider/stickyweb/dark, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"c" = ( -/obj/effect/spider/stickyweb, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"d" = ( -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"e" = ( -/obj/effect/spider/spiderling, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"f" = ( -/mob/living/simple_mob/animal/giant_spider/thermic, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"g" = ( -/obj/effect/spider/eggcluster, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"h" = ( -/obj/effect/spider/cocoon, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) - -(1,1,1) = {" -a -a -a -a -a -a -"} -(2,1,1) = {" -a -c -d -f -e -a -"} -(3,1,1) = {" -b -c -e -d -h -a -"} -(4,1,1) = {" -b -c -d -e -g -a -"} -(5,1,1) = {" -a -c -f -g -g -a -"} -(6,1,1) = {" -a -a -a -a -a -a -"} diff --git a/maps/southern_sun/submaps/asteroid_belt/large_cave.dmm b/maps/southern_sun/submaps/asteroid_belt/large_cave.dmm deleted file mode 100644 index 2f3ace4a02..0000000000 --- a/maps/southern_sun/submaps/asteroid_belt/large_cave.dmm +++ /dev/null @@ -1,690 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/simulated/mineral/ignore_cavegen, -/area/mine/explored/belt_miner) -"b" = ( -/turf/template_noop, -/area/mine/explored/belt_miner) -"c" = ( -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"d" = ( -/obj/sc_away_spawner/belt_normal, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) - -(1,1,1) = {" -b -b -b -b -b -a -c -c -a -a -a -a -a -c -a -c -c -a -c -c -c -a -b -b -b -"} -(2,1,1) = {" -b -b -b -b -b -a -c -c -a -d -c -a -a -c -a -c -c -a -c -c -c -a -b -b -b -"} -(3,1,1) = {" -b -b -b -b -b -a -c -c -a -c -c -a -a -c -a -c -c -a -c -c -c -a -b -b -b -"} -(4,1,1) = {" -b -b -b -b -b -a -c -c -a -c -c -a -a -c -a -c -c -a -c -c -c -a -a -a -a -"} -(5,1,1) = {" -b -b -b -b -b -a -c -c -a -c -c -a -a -c -a -a -a -a -a -a -a -a -a -a -a -"} -(6,1,1) = {" -b -b -b -b -b -a -c -c -a -c -c -a -a -c -c -c -c -c -c -c -a -c -c -c -c -"} -(7,1,1) = {" -b -b -b -b -b -a -c -c -a -c -c -a -a -c -c -c -c -c -c -c -a -c -c -c -c -"} -(8,1,1) = {" -b -b -b -b -b -a -c -c -a -c -c -a -a -a -a -a -a -c -c -c -a -c -c -a -c -"} -(9,1,1) = {" -a -a -a -a -a -a -c -c -c -c -c -c -c -c -c -c -c -c -c -c -a -c -c -a -c -"} -(10,1,1) = {" -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -a -c -c -a -c -"} -(11,1,1) = {" -c -a -a -a -a -a -a -a -c -c -c -c -c -c -a -a -a -a -a -a -a -c -c -c -c -"} -(12,1,1) = {" -c -a -d -c -a -c -c -c -c -c -a -a -a -a -a -c -c -c -c -c -c -c -c -c -c -"} -(13,1,1) = {" -a -a -c -c -a -c -c -c -c -c -a -c -c -c -a -c -c -c -c -c -c -c -a -a -a -"} -(14,1,1) = {" -a -c -c -a -a -c -c -a -c -c -a -c -d -c -a -a -a -a -a -c -c -c -a -c -c -"} -(15,1,1) = {" -a -c -c -c -c -c -c -a -c -c -a -c -d -c -c -c -c -c -c -c -c -c -a -c -c -"} -(16,1,1) = {" -a -c -c -c -a -c -c -a -c -c -a -c -c -c -c -c -c -c -c -c -c -c -a -c -c -"} -(17,1,1) = {" -a -c -c -c -a -c -c -a -c -c -a -a -a -a -a -c -c -c -a -a -a -a -a -c -c -"} -(18,1,1) = {" -a -a -a -a -a -a -a -a -c -c -c -c -c -c -c -c -c -c -a -c -c -c -c -c -c -"} -(19,1,1) = {" -c -c -c -c -c -c -a -a -a -a -a -a -c -c -c -c -a -c -a -c -c -c -c -c -c -"} -(20,1,1) = {" -c -c -c -c -c -c -c -a -a -a -a -a -a -a -a -c -c -c -a -c -c -c -c -c -c -"} -(21,1,1) = {" -c -c -c -c -c -c -c -a -c -c -c -c -c -c -a -c -c -c -a -c -c -a -a -a -a -"} -(22,1,1) = {" -a -a -a -a -a -c -c -a -c -c -c -c -c -c -a -c -c -c -a -c -c -a -b -b -b -"} -(23,1,1) = {" -b -b -b -b -a -c -c -a -a -a -a -a -c -c -a -a -a -a -a -c -c -a -b -b -b -"} -(24,1,1) = {" -b -b -b -b -a -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -a -b -b -b -"} -(25,1,1) = {" -b -b -b -b -a -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -a -b -b -b -"} diff --git a/maps/southern_sun/submaps/asteroid_belt/mimicry.dmm b/maps/southern_sun/submaps/asteroid_belt/mimicry.dmm deleted file mode 100644 index 15c7a553fd..0000000000 --- a/maps/southern_sun/submaps/asteroid_belt/mimicry.dmm +++ /dev/null @@ -1,68 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/simulated/mineral/ignore_cavegen, -/area/mine/explored/belt_miner) -"b" = ( -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"c" = ( -/obj/structure/closet/crate/mimic/guaranteed, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"d" = ( -/obj/structure/closet/crate/mimic/cointoss, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"e" = ( -/obj/structure/closet/crate/mimic/safe, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) - -(1,1,1) = {" -a -a -a -a -a -a -"} -(2,1,1) = {" -a -c -e -d -c -a -"} -(3,1,1) = {" -b -b -b -b -e -a -"} -(4,1,1) = {" -b -b -b -b -d -a -"} -(5,1,1) = {" -a -d -e -e -e -a -"} -(6,1,1) = {" -a -a -a -a -a -a -"} diff --git a/maps/southern_sun/submaps/asteroid_belt/mysterious_cavern.dmm b/maps/southern_sun/submaps/asteroid_belt/mysterious_cavern.dmm deleted file mode 100644 index 36086a8734..0000000000 --- a/maps/southern_sun/submaps/asteroid_belt/mysterious_cavern.dmm +++ /dev/null @@ -1,478 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/simulated/mineral/ignore_cavegen, -/area/mine/explored/belt_miner) -"b" = ( -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"c" = ( -/turf/simulated/wall, -/area/mine/explored/belt_miner) -"d" = ( -/obj/sc_away_spawner/belt_normal, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"e" = ( -/obj/structure/old_roboprinter, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"f" = ( -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"g" = ( -/obj/random/unidentified_medicine/combat_medicine, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"h" = ( -/obj/sc_away_spawner/asteroid_drone_swarm, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"i" = ( -/mob/living/simple_mob/animal/giant_spider/frost/space, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"j" = ( -/obj/structure/ghost_pod/manual/lost_drone/dogborg, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) - -(1,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(2,1,1) = {" -a -b -b -b -b -b -b -c -c -c -b -a -a -b -b -a -a -a -a -a -"} -(3,1,1) = {" -a -b -b -b -b -b -b -c -f -c -b -b -b -b -b -b -b -a -a -a -"} -(4,1,1) = {" -a -b -b -a -a -b -b -c -f -c -b -b -b -b -b -b -b -b -b -a -"} -(5,1,1) = {" -a -b -b -a -b -b -b -b -b -b -b -b -c -c -c -c -b -b -b -a -"} -(6,1,1) = {" -a -b -b -a -b -b -b -b -b -b -b -b -c -f -j -c -b -b -b -a -"} -(7,1,1) = {" -a -b -b -a -b -b -b -b -b -b -b -b -c -f -c -c -b -b -b -a -"} -(8,1,1) = {" -a -b -b -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -"} -(9,1,1) = {" -b -b -b -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -"} -(10,1,1) = {" -a -a -a -a -b -b -c -b -b -b -b -b -b -b -b -b -b -b -b -a -"} -(11,1,1) = {" -a -b -b -b -b -d -c -d -b -b -b -b -b -b -b -c -c -c -c -a -"} -(12,1,1) = {" -b -b -b -b -b -c -c -c -b -b -a -a -a -b -b -c -e -e -e -a -"} -(13,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -b -a -b -b -c -f -f -f -a -"} -(14,1,1) = {" -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -h -h -h -a -"} -(15,1,1) = {" -a -b -b -a -b -b -a -a -b -b -b -b -b -b -b -c -f -f -f -a -"} -(16,1,1) = {" -a -b -b -a -b -b -b -a -b -b -b -b -b -b -b -f -f -f -f -a -"} -(17,1,1) = {" -a -b -b -a -b -b -b -a -b -b -c -c -c -b -b -c -f -f -f -a -"} -(18,1,1) = {" -a -b -b -a -b -b -a -a -b -b -f -f -c -b -b -c -f -f -f -a -"} -(19,1,1) = {" -a -b -b -a -b -b -a -i -b -b -c -c -c -b -b -c -f -f -g -a -"} -(20,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} diff --git a/maps/southern_sun/submaps/asteroid_belt/normal_cave.dmm b/maps/southern_sun/submaps/asteroid_belt/normal_cave.dmm deleted file mode 100644 index 80a77657a2..0000000000 --- a/maps/southern_sun/submaps/asteroid_belt/normal_cave.dmm +++ /dev/null @@ -1,135 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/template_noop, -/area/mine/explored/belt_miner) -"b" = ( -/turf/simulated/mineral/ignore_cavegen, -/area/mine/explored/belt_miner) -"c" = ( -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"d" = ( -/obj/sc_away_spawner/belt_normal, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) - -(1,1,1) = {" -a -a -a -b -c -c -b -a -a -a -"} -(2,1,1) = {" -a -a -a -b -c -c -b -a -a -a -"} -(3,1,1) = {" -a -a -a -b -c -c -b -a -a -a -"} -(4,1,1) = {" -b -b -b -b -c -c -b -b -b -b -"} -(5,1,1) = {" -b -c -c -c -c -d -c -c -c -c -"} -(6,1,1) = {" -c -c -c -b -c -c -b -c -c -c -"} -(7,1,1) = {" -b -b -b -b -c -c -b -b -b -b -"} -(8,1,1) = {" -a -a -a -b -c -c -b -a -a -a -"} -(9,1,1) = {" -a -a -a -b -c -c -b -a -a -a -"} -(10,1,1) = {" -a -a -a -b -c -c -b -a -a -a -"} diff --git a/maps/southern_sun/submaps/asteroid_belt/pressure_seal.dmm b/maps/southern_sun/submaps/asteroid_belt/pressure_seal.dmm deleted file mode 100644 index 684f341ff7..0000000000 --- a/maps/southern_sun/submaps/asteroid_belt/pressure_seal.dmm +++ /dev/null @@ -1,60 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/simulated/mineral/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"b" = ( -/turf/simulated/mineral/floor/ignore_cavegen, -/area/mine/explored/belt_miner) -"c" = ( -/obj/sc_away_spawner/asteroid_drone_swarm, -/turf/simulated/mineral/floor/ignore_cavegen, -/area/mine/explored/belt_miner) - -(1,1,1) = {" -a -a -a -a -a -a -"} -(2,1,1) = {" -a -b -b -b -b -a -"} -(3,1,1) = {" -a -b -b -b -b -a -"} -(4,1,1) = {" -a -b -c -b -b -a -"} -(5,1,1) = {" -a -b -b -b -b -a -"} -(6,1,1) = {" -a -a -a -a -a -a -"} diff --git a/maps/southern_sun/submaps/asteroid_belt/space_cave.dmm b/maps/southern_sun/submaps/asteroid_belt/space_cave.dmm deleted file mode 100644 index 2341146222..0000000000 --- a/maps/southern_sun/submaps/asteroid_belt/space_cave.dmm +++ /dev/null @@ -1,115 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/space, -/area/mine/explored/belt_miner) -"b" = ( -/turf/simulated/mineral/ignore_cavegen, -/area/mine/explored/belt_miner) -"c" = ( -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) - -(1,1,1) = {" -a -a -b -c -c -c -"} -(2,1,1) = {" -a -a -b -c -c -c -"} -(3,1,1) = {" -a -a -c -c -c -c -"} -(4,1,1) = {" -a -a -c -c -c -c -"} -(5,1,1) = {" -a -a -c -c -c -c -"} -(6,1,1) = {" -a -a -c -c -c -c -"} -(7,1,1) = {" -a -a -b -c -c -c -"} -(8,1,1) = {" -a -a -b -c -c -c -"} -(9,1,1) = {" -a -a -b -c -c -c -"} -(10,1,1) = {" -a -a -b -c -c -c -"} -(11,1,1) = {" -a -a -b -c -b -b -"} -(12,1,1) = {" -a -a -a -a -a -a -"} -(13,1,1) = {" -a -a -a -a -a -a -"} diff --git a/maps/southern_sun/submaps/gateway/BaseBlep.dm b/maps/southern_sun/submaps/gateway/BaseBlep.dm deleted file mode 100644 index 7b84fb1cd4..0000000000 --- a/maps/southern_sun/submaps/gateway/BaseBlep.dm +++ /dev/null @@ -1,36 +0,0 @@ -/area/awaymission/baseblep - icon_state = "green" - base_turf = /turf/simulated/floor/outdoors/dirt - ambience = AMBIENCE_OTHERWORLDLY - -/area/awaymission/baseblep/base - name = "Base Blep" - icon_state = "green" - -/area/awaymission/baseblep/cavern - icon_state = "blue" - ambience = list('sound/ambience/ambimine.ogg', 'sound/ambience/song_game.ogg', 'sound/music/LRRMenu.ogg', 'sound/music/LRRTrack3.ogg', \ - 'sound/ambience/cave/AmbCaveDebriA.ogg', 'sound/ambience/cave/AmbCaveDebriB.ogg', 'sound/ambience/cave/AmbCaveDebriC.ogg', \ - 'sound/ambience/cave/AmbCaveDebriD.ogg') - outdoors = 1 - name = "Squish Caverns" - -/area/awaymission/baseblep/caynon - name = "Squish Caynon" - icon_state = "red" - ambience = list('sound/ambience/ambimine.ogg', 'sound/ambience/song_game.ogg', 'sound/music/LRRMenu.ogg', 'sound/music/LRRTrack3.ogg', \ - 'sound/ambience/cave/AmbCaveDebriA.ogg', 'sound/ambience/cave/AmbCaveDebriB.ogg', 'sound/ambience/cave/AmbCaveDebriC.ogg', \ - 'sound/ambience/cave/AmbCaveDebriD.ogg') - dynamic_lighting = 1 - outdoors = 1 - -/area/awaymission/baseblep/hivebotsphere - name = "Checkpoint" - requires_power = 0 - -/area/awaymission/baseblep/finale - name = "Gateway" - requires_power = 0 - -//Because dumb Vr errors -/area/vr \ No newline at end of file diff --git a/maps/southern_sun/submaps/gateway/BaseBlep.dmm b/maps/southern_sun/submaps/gateway/BaseBlep.dmm deleted file mode 100644 index 8c6df79ea1..0000000000 --- a/maps/southern_sun/submaps/gateway/BaseBlep.dmm +++ /dev/null @@ -1,67321 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ac" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"aD" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/radiation, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"bb" = ( -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"bh" = ( -/obj/machinery/gateway/centeraway{ - calibrated = 0 - }, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/finale) -"bk" = ( -/mob/living/simple_mob/slime/feral/orange, -/turf/simulated/floor/outdoors/ironsand{ - temperature = 300 - }, -/area/awaymission/baseblep/caynon) -"bs" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"bP" = ( -/turf/simulated/mineral/alt, -/area/awaymission/baseblep/hivebotsphere) -"bZ" = ( -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"ct" = ( -/turf/simulated/wall/lead, -/area/awaymission/baseblep/base) -"cI" = ( -/mob/living/carbon/human/monkey, -/turf/simulated/floor/outdoors/grass/heavy, -/area/awaymission/baseblep/hivebotsphere) -"dm" = ( -/obj/machinery/power/rad_collector, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"dy" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/finale) -"dz" = ( -/obj/effect/landmark/gateway_scatter, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"dO" = ( -/mob/living/simple_mob/slime/feral/purple, -/turf/simulated/floor/outdoors/ironsand{ - temperature = 300 - }, -/area/awaymission/baseblep/caynon) -"dP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/turf/simulated/shuttle/floor/darkred, -/area/awaymission/baseblep/hivebotsphere) -"dS" = ( -/obj/effect/map_helper/base_turf{ - baseturf = /turf/simulated/floor/outdoors/dirt/sif/planetuse - }, -/turf/simulated/wall/solidrock, -/area/awaymission/baseblep) -"ee" = ( -/obj/machinery/power/rad_collector, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"ek" = ( -/mob/living/simple_mob/vore/bigdragon{ - damage_fatigue_mult = 0 - }, -/turf/simulated/floor/outdoors/grass/heavy, -/area/awaymission/baseblep/hivebotsphere) -"ex" = ( -/turf/simulated/mineral/alt, -/area/awaymission/baseblep/finale) -"eE" = ( -/mob/living/simple_mob/mechanical/hivebot/precusor/chrono{ - damage_fatigue_mult = 0 - }, -/turf/simulated/shuttle/floor/alienplating/blue, -/area/awaymission/baseblep/finale) -"eH" = ( -/obj/structure/loot_pile/surface/alien/medical, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"eN" = ( -/mob/living/simple_mob/slime/feral/emerald, -/turf/simulated/floor/outdoors/rocks{ - temperature = 300 - }, -/area/awaymission/baseblep/cavern) -"fl" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"fF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = null - }, -/turf/simulated/shuttle/floor/darkred, -/area/awaymission/baseblep/hivebotsphere) -"fL" = ( -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"fM" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"ga" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"gA" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/baseblep) -"gK" = ( -/obj/machinery/door/blast/puzzle{ - id = "BaseBlepD" - }, -/turf/simulated/shuttle/floor/darkred, -/area/awaymission/baseblep/hivebotsphere) -"gW" = ( -/obj/structure/table/steel, -/obj/item/storage/pill_bottle/nutriment, -/obj/item/gun/projectile/cell_loaded/medical/cmo, -/turf/simulated/shuttle/floor/black, -/area/awaymission/baseblep/base) -"gY" = ( -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"hM" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/baseblep/hivebotsphere) -"ij" = ( -/obj/machinery/door/blast/puzzle{ - id = "BaseBlepA" - }, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/finale) -"ir" = ( -/mob/living/simple_mob/mechanical/hivebot/precusor/laser, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"iV" = ( -/obj/structure/table/darkglass, -/obj/machinery/button/remote/blast_door{ - id = "BaseBlepD" - }, -/turf/simulated/shuttle/floor/black, -/area/awaymission/baseblep/base) -"jl" = ( -/turf/simulated/floor/outdoors/ironsand{ - temperature = 300 - }, -/area/awaymission/baseblep/caynon) -"jt" = ( -/mob/living/simple_mob/slime/feral/dark_purple, -/turf/simulated/floor/outdoors/ironsand{ - temperature = 300 - }, -/area/awaymission/baseblep/caynon) -"jC" = ( -/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"kc" = ( -/obj/structure/closet, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"ke" = ( -/mob/living/simple_mob/animal/giant_spider/broodmother, -/turf/simulated/floor/outdoors/grass/forest, -/area/awaymission/baseblep/hivebotsphere) -"kr" = ( -/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/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"ky" = ( -/obj/machinery/power/rad_collector, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"kD" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"kF" = ( -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/finale) -"kI" = ( -/obj/structure/table/alien/blue, -/obj/machinery/button/remote/blast_door{ - id = "BaseBlepA" - }, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"kX" = ( -/mob/living/simple_mob/slime/feral/silver, -/turf/simulated/floor/outdoors/ironsand{ - temperature = 300 - }, -/area/awaymission/baseblep/caynon) -"li" = ( -/obj/machinery/mecha_part_fabricator/pros, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"lu" = ( -/turf/simulated/shuttle/floor/alienplating/blue, -/area/awaymission/baseblep/finale) -"lI" = ( -/obj/effect/landmark/gateway_scatter, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"lM" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"lR" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"lY" = ( -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"mc" = ( -/turf/simulated/floor/outdoors/rocks{ - temperature = 300 - }, -/area/awaymission/baseblep/cavern) -"mf" = ( -/obj/machinery/mecha_part_fabricator, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"mi" = ( -/mob/living/simple_mob/slime/feral/emerald, -/turf/simulated/floor/outdoors/ironsand{ - temperature = 300 - }, -/area/awaymission/baseblep/caynon) -"mB" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/dot, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"mN" = ( -/turf/simulated/floor/tiled/red, -/area/awaymission/baseblep/base) -"na" = ( -/mob/living/simple_mob/animal/giant_spider/nurse, -/turf/simulated/floor/outdoors/grass/heavy, -/area/awaymission/baseblep/hivebotsphere) -"nG" = ( -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"nJ" = ( -/mob/living/simple_mob/slime/feral/bluespace, -/turf/simulated/floor/outdoors/rocks{ - temperature = 300 - }, -/area/awaymission/baseblep/cavern) -"oo" = ( -/obj/structure/closet/secure_closet/medical3, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"oz" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/bed, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"oP" = ( -/mob/living/simple_mob/slime/feral/red, -/turf/simulated/floor/outdoors/rocks{ - temperature = 300 - }, -/area/awaymission/baseblep/cavern) -"oU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = null - }, -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"pd" = ( -/obj/machinery/r_n_d/circuit_imprinter, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"pf" = ( -/obj/structure/table/rack/shelf, -/obj/item/shield/primitive, -/obj/item/material/sword/katana, -/obj/item/material/twohanded/sledgehammer, -/turf/simulated/floor/tiled/red, -/area/awaymission/baseblep/base) -"ph" = ( -/obj/machinery/door/blast/puzzle{ - id = "BaseBlepA" - }, -/turf/simulated/floor/outdoors/grass/forest, -/area/awaymission/baseblep/hivebotsphere) -"pl" = ( -/obj/effect/map_helper/no_tele, -/turf/simulated/wall/solidrock, -/area/awaymission/baseblep) -"qp" = ( -/obj/structure/closet/crate/medical/blood, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"qr" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"qw" = ( -/obj/structure/reagent_dispensers/fueltank/high, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"qB" = ( -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"qL" = ( -/obj/structure/loot_pile/surface/alien/security, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"rZ" = ( -/obj/structure/table/steel, -/obj/item/storage/pill_bottle/healing_nanites, -/turf/simulated/shuttle/floor/black, -/area/awaymission/baseblep/base) -"sN" = ( -/obj/structure/loot_pile/surface/alien/end, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"sZ" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"tA" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"tH" = ( -/turf/simulated/floor/outdoors/grass/forest, -/area/awaymission/baseblep/hivebotsphere) -"tL" = ( -/obj/machinery/gateway{ - dir = 8 - }, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/finale) -"uq" = ( -/mob/living/simple_mob/slime/feral/dark_purple, -/turf/simulated/floor/outdoors/rocks{ - temperature = 300 - }, -/area/awaymission/baseblep/cavern) -"uC" = ( -/turf/simulated/mineral/alt, -/area/awaymission/baseblep/base) -"uN" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/declone, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"uS" = ( -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/baseblep/finale) -"uT" = ( -/obj/random/outcrop, -/turf/simulated/floor/outdoors/rocks{ - temperature = 300 - }, -/area/awaymission/baseblep/cavern) -"vC" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/bed, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"vM" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"we" = ( -/obj/structure/table/steel, -/obj/item/stack/material/mhydrogen{ - amount = 3 - }, -/turf/simulated/shuttle/floor/black, -/area/awaymission/baseblep/base) -"wx" = ( -/turf/simulated/shuttle/wall/alien, -/area/awaymission/baseblep/hivebotsphere) -"wO" = ( -/mob/living/simple_mob/mechanical/hivebot/swarm, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"xk" = ( -/obj/machinery/power/smes/buildable, -/obj/structure/cable/yellow, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"xn" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"xs" = ( -/obj/structure/table/steel, -/obj/item/gun/projectile/deagle/gold, -/turf/simulated/shuttle/floor/black, -/area/awaymission/baseblep/base) -"xM" = ( -/turf/simulated/shuttle/wall/voidcraft, -/area/awaymission/baseblep/base) -"yh" = ( -/obj/machinery/chem_master, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"yj" = ( -/turf/simulated/mineral/alt, -/area/awaymission/baseblep) -"yp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"yq" = ( -/obj/structure/table/steel, -/obj/item/gun/projectile/heavysniper/collapsible, -/obj/item/gun/projectile/heavysniper/collapsible, -/obj/item/gun/projectile/revolvingrifle, -/obj/item/gun/projectile/revolvingrifle, -/obj/item/gun/projectile/shotgun/semi, -/obj/item/gun/projectile/shotgun/semi, -/obj/item/gun/energy/monorifle/combat, -/obj/item/gun/energy/monorifle/combat, -/obj/item/gun/energy/hooklauncher, -/obj/item/gun/energy/hooklauncher, -/obj/item/gun/energy/laser{ - icon = 'icons/obj/gun.dmi'; - icon_state = "pulse"; - name = "Expirmental Pulse Rifle"; - firemodes = list(list("mode_name" = "normal", "fire_delay" = 8, "projectile_type" = /obj/item/projectile/beam/midlaser, "charge_cost" = 120),list("mode_name" = "suppressive", "fire_delay" = 5, "projectile_type" = /obj/item/projectile/beam/weaklaser, "charge_cost" = 30)) - }, -/obj/item/gun/energy/laser{ - icon = 'icons/obj/gun.dmi'; - icon_state = "pulse"; - name = "Expirmental Pulse Rifle"; - firemodes = list(list("mode_name" = "normal", "fire_delay" = 8, "projectile_type" = /obj/item/projectile/beam/midlaser, "charge_cost" = 120),list("mode_name" = "suppressive", "fire_delay" = 5, "projectile_type" = /obj/item/projectile/beam/weaklaser, "charge_cost" = 30)) - }, -/turf/simulated/shuttle/floor/darkred, -/area/awaymission/baseblep/hivebotsphere) -"yu" = ( -/mob/living/simple_mob/slime/feral/yellow, -/turf/simulated/floor/outdoors/rocks{ - temperature = 300 - }, -/area/awaymission/baseblep/cavern) -"yA" = ( -/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_bullet, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"yN" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/baseblep/base) -"zA" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Armoury Tactical Equipment"; - req_access = list(3); - req_one_access = list(3) - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/baseblep/base) -"zD" = ( -/obj/effect/floor_decal/corner/white{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"zK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8; - health = null - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/floor/darkred, -/area/awaymission/baseblep/hivebotsphere) -"Ac" = ( -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/wall/solidrock, -/area/awaymission/baseblep) -"Ao" = ( -/mob/living/simple_mob/slime/feral/ruby, -/turf/simulated/floor/outdoors/rocks{ - temperature = 300 - }, -/area/awaymission/baseblep/cavern) -"Bc" = ( -/obj/structure/closet/crate/medical, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"Bv" = ( -/turf/simulated/shuttle/wall/voidcraft/orange, -/area/awaymission/baseblep/hivebotsphere) -"Bx" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"BW" = ( -/mob/living/simple_mob/slime/feral/yellow, -/turf/simulated/floor/outdoors/ironsand{ - temperature = 300 - }, -/area/awaymission/baseblep/caynon) -"Cy" = ( -/obj/machinery/computer/rdconsole/robotics{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"CJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/floor/darkred, -/area/awaymission/baseblep/hivebotsphere) -"CU" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"Dh" = ( -/obj/machinery/r_n_d/protolathe, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"Dj" = ( -/obj/structure/table/alien/blue, -/obj/machinery/button/remote/blast_door{ - id = "BaseBlepB" - }, -/turf/simulated/floor/outdoors/grass/heavy, -/area/awaymission/baseblep/hivebotsphere) -"Dq" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"Dt" = ( -/obj/structure/table/steel, -/obj/item/storage/pill_bottle/dice_nerd, -/turf/simulated/shuttle/floor/black, -/area/awaymission/baseblep/base) -"DE" = ( -/turf/simulated/shuttle/wall/alien, -/area/awaymission/baseblep/finale) -"DI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/turf/simulated/shuttle/floor/darkred, -/area/awaymission/baseblep/hivebotsphere) -"Et" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"ER" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"Fb" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"Fe" = ( -/obj/structure/table/steel, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"Fo" = ( -/obj/structure/table/steel, -/obj/item/stack/material/void_opal, -/turf/simulated/shuttle/floor/black, -/area/awaymission/baseblep/base) -"Fs" = ( -/obj/machinery/gateway{ - dir = 4 - }, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/finale) -"Fv" = ( -/turf/simulated/floor/water, -/area/awaymission/baseblep/caynon) -"FK" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/wall/uranium, -/area/awaymission/baseblep/base) -"FQ" = ( -/obj/structure/inflatable, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"FY" = ( -/turf/simulated/wall/uranium, -/area/awaymission/baseblep/base) -"GW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/floor/darkred, -/area/awaymission/baseblep/hivebotsphere) -"Hj" = ( -/obj/structure/table/steel, -/obj/machinery/door/window/westright{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"Ht" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"Hw" = ( -/obj/structure/table/steel, -/obj/item/gun/projectile/automatic/sol, -/turf/simulated/shuttle/floor/black, -/area/awaymission/baseblep/base) -"HP" = ( -/mob/living/simple_mob/slime/feral/pink, -/turf/simulated/floor/outdoors/rocks{ - temperature = 300 - }, -/area/awaymission/baseblep/cavern) -"HQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"Iu" = ( -/obj/machinery/gateway{ - dir = 1 - }, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/finale) -"Ji" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8; - health = null - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/shuttle/floor/darkred, -/area/awaymission/baseblep/hivebotsphere) -"Jm" = ( -/mob/living/simple_mob/slime/feral/green, -/turf/simulated/floor/outdoors/ironsand{ - temperature = 300 - }, -/area/awaymission/baseblep/caynon) -"JN" = ( -/obj/machinery/door/airlock/medical, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"JQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8; - health = null - }, -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/turf/simulated/shuttle/floor/darkred, -/area/awaymission/baseblep/hivebotsphere) -"Kn" = ( -/obj/machinery/autolathe, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"Ko" = ( -/obj/machinery/gateway{ - density = 0; - dir = 10 - }, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/finale) -"KD" = ( -/mob/living/simple_mob/slime/feral/bluespace, -/turf/simulated/floor/outdoors/ironsand{ - temperature = 300 - }, -/area/awaymission/baseblep/caynon) -"Lf" = ( -/mob/living/simple_mob/vore/aggressive/rat, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"Lz" = ( -/mob/living/simple_mob/slime/feral/orange, -/turf/simulated/floor/outdoors/rocks{ - temperature = 300 - }, -/area/awaymission/baseblep/cavern) -"LA" = ( -/obj/structure/table/steel, -/obj/item/stack/material/painite{ - amount = 8 - }, -/turf/simulated/shuttle/floor/black, -/area/awaymission/baseblep/base) -"LW" = ( -/obj/machinery/gateway{ - density = 0; - dir = 6 - }, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/finale) -"LX" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"MB" = ( -/obj/machinery/power/rad_collector, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"MQ" = ( -/obj/structure/table/steel, -/obj/item/gun/energy/gun/compact/dazzle, -/turf/simulated/shuttle/floor/black, -/area/awaymission/baseblep/base) -"Nm" = ( -/obj/machinery/door/blast/puzzle{ - id = "BaseBlepB" - }, -/turf/simulated/shuttle/floor/black, -/area/awaymission/baseblep/base) -"NK" = ( -/obj/machinery/porta_turret/alien{ - active_power_usage = 0; - installation = /obj/item/gun/energy/crossbow/largecrossbow; - auto_repair = 1 - }, -/turf/simulated/shuttle/floor/darkred, -/area/awaymission/baseblep/hivebotsphere) -"OM" = ( -/obj/machinery/computer/rdconsole/core{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"ON" = ( -/obj/structure/table/rack/shelf, -/obj/item/material/twohanded/fireaxe, -/obj/item/whetstone, -/obj/item/material/twohanded/fireaxe, -/obj/item/whetstone, -/obj/item/stack/material/plasteel{ - amount = 30 - }, -/obj/item/stack/material/plasteel{ - amount = 30 - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/baseblep/base) -"OO" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/backline, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"Pm" = ( -/obj/machinery/telecomms/relay/preset/southerncross, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"Pn" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"PA" = ( -/turf/simulated/shuttle/floor/darkred, -/area/awaymission/baseblep/hivebotsphere) -"PE" = ( -/obj/machinery/door/airlock/alien/locked, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"PW" = ( -/turf/simulated/floor/outdoors/grass/heavy, -/area/awaymission/baseblep/hivebotsphere) -"PZ" = ( -/mob/living/simple_mob/slime/feral/silver, -/turf/simulated/floor/outdoors/rocks{ - temperature = 300 - }, -/area/awaymission/baseblep/cavern) -"Qg" = ( -/obj/machinery/r_n_d/destructive_analyzer, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"Qk" = ( -/obj/machinery/power/rad_collector, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"Qn" = ( -/mob/living/simple_mob/slime/feral/pink, -/turf/simulated/floor/outdoors/ironsand{ - temperature = 300 - }, -/area/awaymission/baseblep/caynon) -"Qq" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable/cyan, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"Qr" = ( -/obj/machinery/gateway, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/finale) -"Qt" = ( -/obj/structure/table/steel, -/obj/item/stack/material/durasteel{ - amount = 3 - }, -/turf/simulated/shuttle/floor/black, -/area/awaymission/baseblep/base) -"QG" = ( -/mob/living/simple_mob/slime/feral/ruby, -/turf/simulated/floor/outdoors/ironsand{ - temperature = 300 - }, -/area/awaymission/baseblep/caynon) -"QH" = ( -/obj/machinery/body_scanconsole, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"QW" = ( -/mob/living/carbon/human/monkey, -/turf/simulated/floor/outdoors/grass/forest, -/area/awaymission/baseblep/hivebotsphere) -"Ra" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Armoury Section"; - req_access = list(63); - req_one_access = list(1) - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/baseblep/base) -"Ry" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/finale) -"RC" = ( -/turf/simulated/shuttle/floor/alien, -/area/awaymission/baseblep/finale) -"RD" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/corner/white/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"RE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"RL" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"SE" = ( -/obj/machinery/power/rad_collector, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"SN" = ( -/obj/structure/table/alien/blue, -/obj/machinery/button/remote/blast_door{ - id = "BaseBlepC" - }, -/turf/simulated/floor/outdoors/grass/heavy, -/area/awaymission/baseblep/hivebotsphere) -"Tg" = ( -/obj/machinery/bodyscanner, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"Tr" = ( -/obj/structure/loot_pile/surface/alien, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"Tx" = ( -/mob/living/simple_mob/mechanical/hivebot/tank/meatshield, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"Ty" = ( -/obj/machinery/power/rad_collector, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"TS" = ( -/obj/structure/closet/l3closet/medical, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"Uh" = ( -/obj/structure/table/steel, -/obj/item/gun/energy/gun/burst/mg42, -/turf/simulated/shuttle/floor/black, -/area/awaymission/baseblep/base) -"Ul" = ( -/obj/machinery/power/smes/batteryrack, -/turf/simulated/floor/tiled/eris/steel, -/area/awaymission/baseblep/base) -"Uy" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/rapid, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"UK" = ( -/obj/item/modular_computer/console/preset/medical{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"Vu" = ( -/obj/machinery/door/window/westright, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"Vy" = ( -/obj/machinery/optable, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"VF" = ( -/obj/effect/fake_sun/warm, -/turf/simulated/wall/solidrock, -/area/awaymission/baseblep) -"VM" = ( -/turf/simulated/mineral/alt, -/area/awaymission/baseblep/cavern) -"VS" = ( -/mob/living/simple_mob/slime/feral/green, -/turf/simulated/floor/outdoors/rocks{ - temperature = 300 - }, -/area/awaymission/baseblep/cavern) -"VV" = ( -/mob/living/simple_mob/mechanical/hivebot/precusor/machinegun, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"Wr" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"WQ" = ( -/obj/structure/loot_pile/surface/alien/engineering, -/turf/simulated/shuttle/floor/alienplating, -/area/awaymission/baseblep/hivebotsphere) -"Xv" = ( -/obj/machinery/door/blast/puzzle{ - id = "BaseBlepC" - }, -/turf/simulated/shuttle/floor/black, -/area/awaymission/baseblep/base) -"Xw" = ( -/obj/structure/table/glass, -/obj/machinery/chemical_dispenser/full, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) -"XU" = ( -/turf/simulated/shuttle/wall/alien/blue, -/area/awaymission/baseblep/finale) -"Yp" = ( -/mob/living/simple_mob/vore/aggressive/rat, -/turf/simulated/floor/plating{ - icon_state = "asteroidplating2"; - temperature = 310 - }, -/area/awaymission/baseblep/base) -"Yw" = ( -/turf/simulated/shuttle/floor/black, -/area/awaymission/baseblep/base) -"YE" = ( -/obj/machinery/sleep_console{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/awaymission/baseblep/base) - -(1,1,1) = {" -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -pl -"} -(2,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yN -yN -yN -yN -yN -yN -yN -gA -gA -dS -"} -(3,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -ct -ct -ct -ct -ct -ct -ct -ct -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yN -xM -xM -xM -xM -xM -yN -yj -yj -VF -"} -(4,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -lY -lY -lY -ct -lY -lY -lY -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -yj -yj -yj -yj -yj -yj -yj -yj -yj -yN -xM -Yw -Yw -Yw -xM -yN -yj -yj -Ac -"} -(5,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yN -yN -yN -xM -Yw -iV -Yw -xM -yN -yN -yN -gA -"} -(6,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -dz -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -dz -lY -ct -yj -yj -yj -yj -yj -yj -yj -yN -xM -xM -xM -Yw -Yw -Yw -xM -xM -xM -yN -gA -"} -(7,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yN -xM -rZ -Yw -Yw -Yw -Yw -Yw -Uh -xM -yN -gA -"} -(8,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yN -xM -we -Yw -Yw -Yw -Yw -Yw -we -xM -yN -gA -"} -(9,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yN -xM -Fo -Yw -Yw -Yw -Yw -Yw -Fo -xM -yN -gA -"} -(10,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yN -xM -we -Yw -Yw -Yw -Yw -Yw -we -xM -yN -gA -"} -(11,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -ct -ct -ct -lY -lY -lY -ct -lY -lY -lY -ct -ct -ct -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yN -xM -xs -Yw -Yw -Yw -Yw -Yw -gW -xM -yN -gA -"} -(12,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -uT -mc -mc -mc -eN -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yN -xM -xM -xM -Xv -Xv -Xv -xM -xM -xM -yN -gA -"} -(13,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -mc -mc -mc -mc -Ao -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yN -yN -yN -xM -Xv -Xv -Xv -xM -yN -yN -yN -gA -"} -(14,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -mc -mc -HP -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yN -yN -yN -xM -Nm -Nm -Nm -xM -yN -yN -yN -gA -"} -(15,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yN -xM -xM -xM -Nm -Nm -Nm -xM -xM -xM -yN -gA -"} -(16,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -lY -lY -lY -ct -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -ct -lY -Yp -lY -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -yj -yj -yN -xM -Dt -Yw -Yw -Yw -Yw -Yw -Hw -xM -yN -gA -"} -(17,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -hM -hM -hM -hM -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -Lz -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yN -xM -LA -Yw -Yw -Yw -Yw -Yw -LA -xM -yN -gA -"} -(18,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -hM -hM -hM -tH -tH -tH -hM -hM -hM -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -yu -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -VS -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yN -xM -Qt -Yw -Yw -Yw -Yw -Yw -Qt -xM -yN -gA -"} -(19,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -hM -hM -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -hM -hM -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -Lz -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -Yp -lY -lY -lY -lY -ct -ct -ct -ct -ct -ct -gY -Lf -gY -ct -ct -ct -ct -ct -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yN -xM -LA -Yw -Yw -Yw -Yw -Yw -LA -xM -yN -gA -"} -(20,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -gY -ER -gY -gY -ct -gY -gY -gY -gY -gY -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yN -xM -MQ -Yw -Yw -Yw -Yw -Yw -Dt -xM -yN -gA -"} -(21,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -gY -gY -gY -gY -ct -gY -gY -gY -gY -gY -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yN -xM -xM -xM -Yw -Yw -Yw -xM -xM -xM -yN -gA -"} -(22,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VS -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -ct -ct -ct -ct -ct -ct -ct -gY -gY -gY -gY -ct -gY -gY -gY -gY -gY -gY -gY -gY -ct -ct -ct -ct -ct -ct -ct -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yN -yN -yN -xM -Yw -Yw -Yw -xM -yN -yN -yN -gA -"} -(23,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -ct -Pm -Kn -Dh -pd -Ul -ct -gY -gY -gY -ct -ct -ct -ct -ct -ct -ct -gY -gY -gY -ct -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yN -xM -Nm -xM -Xv -xM -yN -yj -yj -gA -"} -(24,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -PZ -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -ct -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -ct -gY -gY -gY -gY -gY -ct -gY -gY -gY -ct -Dq -gY -gY -gY -Dq -ct -gY -gY -gY -ct -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yN -xM -Nm -xM -Xv -xM -yN -yj -yj -gA -"} -(25,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -yu -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ac -gY -Qg -OM -gY -ct -mf -gY -tA -ct -Dq -gY -gY -gY -Dq -ct -gY -gY -gY -ct -lY -lY -lY -lY -lY -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -lY -lY -lY -ct -uC -yj -yj -gA -"} -(26,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -ek -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -eN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -PZ -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -gY -gY -gY -gY -sZ -gY -gY -gY -gY -gY -ct -gY -gY -mf -ct -Dq -gY -gY -gY -Dq -ct -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -gA -"} -(27,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -PW -PW -PW -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -Ao -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -gY -gY -gY -gY -Ht -gY -gY -gY -gY -gY -ct -Bx -gY -Cy -ct -Dq -gY -gY -gY -Dq -ct -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -gA -"} -(28,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -tH -tH -tH -tH -tH -tH -tH -tH -ek -PW -SN -PW -ek -tH -tH -tH -tH -tH -tH -tH -tH -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VS -mc -mc -mc -mc -mc -mc -HP -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -gY -gY -gY -gY -CU -gY -gY -gY -gY -gY -gY -gY -gY -li -ct -Dq -gY -gY -gY -Dq -ct -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -gA -"} -(29,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -PW -PW -PW -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -gY -gY -gY -ct -fM -fM -ct -HQ -HQ -ct -gY -gY -gY -ct -Dq -gY -gY -gY -Dq -ct -gY -gY -gY -ct -ct -ct -ct -ct -ct -ct -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -gA -"} -(30,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -PW -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -gY -gY -gY -gY -gY -gY -gY -gY -gY -ct -gY -gY -gY -ct -ct -gY -gY -gY -ct -ct -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -gA -"} -(31,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -gY -gY -gY -gY -gY -gY -gY -gY -gY -ct -ct -oU -ct -ct -qw -gY -gY -gY -qw -ct -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -gA -"} -(32,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -gA -"} -(33,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -VS -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -dz -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -gY -gY -gY -Lf -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -lI -gY -gY -gY -gY -gY -gY -gY -lY -lY -Yp -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -dz -lY -ct -yj -yj -yj -gA -"} -(34,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -gY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -gA -"} -(35,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -gY -gY -gY -gY -gY -gY -gY -gY -gY -ct -ct -ct -ct -ct -qw -gY -gY -gY -qw -ct -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -gA -"} -(36,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -gY -gY -gY -gY -gY -gY -gY -gY -gY -ct -kc -kc -Et -ct -ct -gY -gY -gY -ct -ct -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -gA -"} -(37,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -hM -hM -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -hM -hM -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -bP -bP -bP -bP -bP -wx -wx -wx -bP -bP -bP -bP -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -gY -gY -gY -ct -bs -UK -yh -Xw -Vu -ct -bb -bb -Et -ct -Dq -gY -gY -gY -Dq -ct -gY -gY -gY -ct -ct -ct -ct -ct -ct -ct -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -gA -"} -(38,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -hM -hM -hM -hM -ph -ph -ph -hM -hM -hM -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -bP -wx -wx -wx -wx -wx -qL -wx -wx -wx -wx -wx -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -gY -gY -gY -gY -Hj -bb -bb -bb -bb -bb -RL -bb -bb -Et -ct -Dq -gY -gY -gY -Dq -ct -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -gA -"} -(39,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -hM -ph -ph -ph -hM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -gY -gY -gY -gY -Fe -bb -bb -nG -bb -Pn -ct -bb -bb -bb -ct -Dq -gY -gY -gY -Dq -ct -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -gA -"} -(40,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -Lz -mc -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -gY -gY -gY -gY -RL -bb -nG -RD -nG -Tg -ct -vC -bb -oz -ct -Dq -gY -gY -gY -Dq -ct -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -gA -"} -(41,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -yu -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -lY -lY -lY -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -YE -zD -RD -zD -QH -ct -ct -RL -ct -ct -Dq -gY -gY -gY -Dq -ct -gY -gY -gY -ct -lY -lY -lY -lY -lY -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -lY -lY -lY -ct -yj -yj -yj -gA -"} -(42,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -wx -fL -fL -fL -wx -fL -fL -wx -wx -wx -jC -yA -wx -fL -fL -fL -wx -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -Lz -mc -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -FQ -FQ -FQ -ct -jl -jl -jl -jl -jl -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -vM -bb -qB -bZ -bb -RL -bb -bb -oo -ct -Dq -gY -gY -gY -Dq -ct -gY -gY -gY -ct -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -ct -lY -lY -lY -ct -yj -yj -yj -gA -"} -(43,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -wx -fL -fL -fL -fL -fL -fL -fL -wx -OO -Uy -fL -yA -fL -fL -fL -wx -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -ct -FK -dm -LX -fl -xk -ct -ct -ct -Et -Et -Vy -Et -Et -ct -bb -bb -bb -ct -ct -ct -ct -ct -ct -ct -gY -gY -gY -ct -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -ct -mN -mN -mN -ct -yj -yj -yj -gA -"} -(44,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -wx -fL -fL -fL -fL -fL -fL -fL -fL -OO -Tx -Uy -jC -fL -fL -fL -wx -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -uT -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -ct -Qk -FY -SE -Wr -Qq -ct -ct -ct -ct -ct -ct -ct -ct -ct -bb -bb -bb -kc -ct -gY -gY -gY -gY -gY -gY -gY -gY -ct -ct -ct -ct -ct -ct -ct -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -ct -mN -mN -mN -ct -yj -yj -yj -gA -"} -(45,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -wx -wx -fL -fL -fL -wx -fL -fL -fL -fL -fL -OO -OO -wx -fL -fL -fL -wx -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -ct -FY -MB -lM -lY -RE -ct -lY -lY -lY -lY -lY -lY -lY -ct -bb -bb -bb -bb -JN -gY -gY -gY -gY -gY -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -ct -ct -ct -ct -ct -Ra -ct -ct -ct -ct -ct -gA -"} -(46,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -wx -sN -fL -fL -fL -wx -wx -fL -fL -kI -VV -fL -wx -wx -fL -fL -fL -PE -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -ct -Fb -Ty -kr -lY -qr -ga -lY -lY -lY -lY -lY -lY -lY -ct -TS -Bc -qp -kc -ct -gY -gY -gY -gY -gY -gY -gY -gY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -ct -pf -mN -ct -mN -mN -mN -ct -mN -pf -ct -gA -"} -(47,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -wx -wx -fL -fL -fL -wx -fL -fL -fL -fL -fL -OO -OO -wx -fL -fL -fL -wx -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -ct -kD -FY -ee -lY -lY -xn -lY -lY -Yp -lY -lY -lY -lY -ct -ct -ct -ct -ct -ct -lY -Yp -lY -ct -ct -ct -ct -ct -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -ct -pf -mN -Ra -mN -mN -mN -Ra -mN -pf -ct -gA -"} -(48,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -wx -fL -fL -fL -fL -fL -fL -fL -fL -OO -Tx -Uy -jC -fL -fL -fL -wx -mc -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -ct -FY -ky -yp -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -ct -pf -mN -ct -mN -mN -mN -ct -mN -pf -ct -gA -"} -(49,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -wx -fL -fL -fL -fL -fL -fL -fL -wx -OO -Uy -fL -yA -fL -fL -fL -wx -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -ct -ct -ct -ct -ct -ct -ct -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -ct -ct -ct -ct -ct -Ra -ct -ct -ct -ct -ct -gA -"} -(50,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -wx -fL -fL -fL -wx -fL -fL -wx -wx -wx -jC -yA -wx -fL -fL -fL -wx -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -Lz -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -Yp -lY -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -yj -yj -yj -yj -yj -ct -pf -mN -pf -ct -yj -yj -yj -gA -"} -(51,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -yu -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -pf -mN -pf -ct -yj -yj -yj -gA -"} -(52,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -mc -mc -mc -mc -mc -PZ -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -Lz -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -ct -zA -ct -ct -yj -yj -yj -gA -"} -(53,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -yu -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -PZ -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -ON -ct -yj -yj -yj -yj -gA -"} -(54,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -mc -mc -mc -mc -PZ -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -bP -wx -wx -wx -wx -wx -qL -wx -wx -wx -wx -wx -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -yu -mc -mc -mc -mc -mc -mc -mc -eN -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ct -ct -ct -yj -yj -yj -yj -gA -"} -(55,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -bP -bP -bP -bP -bP -wx -wx -wx -bP -bP -bP -bP -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -PZ -mc -mc -mc -mc -mc -mc -mc -mc -mc -Ao -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(56,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -HP -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -ct -ct -ct -lY -lY -lY -ct -lY -lY -lY -ct -ct -ct -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(57,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -mc -uT -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(58,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -eN -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VS -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(59,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -Ao -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(60,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VS -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -HP -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VS -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(61,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -lY -dz -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -dz -lY -ct -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(62,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -ct -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(63,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -uq -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -lY -lY -lY -ct -lY -lY -lY -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -ct -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(64,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -uq -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -ct -FQ -FQ -FQ -ct -ct -ct -ct -ct -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(65,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -uq -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(66,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VS -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(67,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jt -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(68,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jt -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(69,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -yu -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jt -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(70,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -Lz -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -uq -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -nJ -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Jm -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(71,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -yu -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -uq -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -yu -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -BW -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(72,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -Lz -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -uq -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -jl -jl -jl -jl -jl -KD -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(73,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -BW -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(74,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(75,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(76,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VS -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(77,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -mi -jl -jl -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(78,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -QG -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(79,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -uq -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -VS -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Qn -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(80,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -uq -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(81,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -uq -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -Lz -mc -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(82,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -yu -mc -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -BW -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(83,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -Lz -mc -mc -mc -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -KD -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(84,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -BW -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(85,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(86,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(87,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Jm -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(88,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -VS -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(89,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -PZ -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(90,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -mc -mc -mc -mc -mc -PZ -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -yu -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(91,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -mc -mc -mc -mc -mc -mc -yu -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -PZ -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(92,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -uT -mc -mc -mc -mc -PZ -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Jm -jl -jl -jl -jl -jl -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(93,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -bk -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -VS -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(94,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -BW -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(95,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -bk -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(96,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(97,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -mi -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(98,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -QG -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(99,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Qn -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(100,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -uT -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(101,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -bP -bP -bP -bP -wx -wx -wx -bP -bP -bP -bP -bP -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jt -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(102,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -wx -wx -wx -wx -wx -Tr -wx -wx -wx -wx -wx -bP -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jt -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(103,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jt -jl -jl -jl -jl -jl -jl -Jm -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(104,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -uT -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(105,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -mc -mc -mc -VS -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(106,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -wx -fL -fL -fL -wx -fL -fL -wx -wx -wx -fL -fL -wx -fL -fL -fL -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(107,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -uT -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -wx -fL -fL -fL -fL -fL -fL -fL -wx -fL -fL -fL -fL -fL -fL -fL -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(108,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Jm -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -uq -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(109,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -VM -VM -wx -fL -fL -fL -wx -fL -fL -VV -fL -ir -fL -fL -wx -fL -fL -fL -wx -wx -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -kX -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -uq -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(110,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -VM -uT -VM -mc -mc -mc -PE -fL -fL -fL -wx -wx -fL -fL -kI -fL -fL -wx -wx -fL -fL -fL -sN -wx -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -BW -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -uq -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(111,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -wx -fL -fL -fL -wx -fL -fL -VV -fL -ir -fL -fL -wx -fL -fL -fL -wx -wx -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -kX -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(112,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(113,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -wx -fL -fL -fL -fL -fL -fL -fL -wx -fL -fL -fL -fL -fL -fL -fL -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(114,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -wx -fL -fL -fL -wx -fL -fL -wx -wx -wx -fL -fL -wx -fL -fL -fL -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(115,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(116,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -VS -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(117,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -nJ -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -bP -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Jm -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(118,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -oP -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -wx -wx -wx -wx -wx -Tr -wx -wx -wx -wx -wx -bP -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(119,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -PZ -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -bP -bP -bP -bP -wx -wx -wx -bP -bP -bP -bP -bP -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(120,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(121,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(122,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -BW -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(123,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -eN -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -KD -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(124,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -Ao -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -BW -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(125,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -HP -mc -mc -mc -mc -mc -VS -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -bP -bP -bP -bP -bP -wx -wx -wx -bP -bP -bP -bP -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(126,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Jm -bk -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -bP -wx -wx -wx -wx -wx -WQ -wx -wx -wx -wx -wx -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(127,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -BW -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(128,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -bk -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(129,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -VM -VM -VM -VM -mc -mc -mc -PZ -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(130,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -bk -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -wx -fL -fL -fL -wx -mB -uN -wx -wx -wx -uN -mB -wx -fL -fL -fL -wx -VM -VM -VM -mc -mc -mc -mc -mc -yu -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(131,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -dO -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -wx -fL -fL -fL -mB -aD -lR -fL -wx -fL -lR -aD -mB -fL -fL -fL -wx -VM -mc -mc -mc -mc -mc -mc -PZ -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(132,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -Qn -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -wx -fL -fL -fL -uN -lR -fL -fL -fL -fL -fL -lR -uN -fL -fL -fL -wx -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(133,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -wx -wx -fL -fL -fL -wx -fL -fL -fL -fL -fL -fL -fL -wx -fL -fL -fL -wx -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -yu -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(134,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -wx -sN -fL -fL -fL -wx -wx -fL -fL -kI -fL -fL -wx -wx -fL -fL -fL -PE -mc -mc -mc -mc -mc -mc -mc -mc -mc -VS -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -nJ -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(135,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -wx -wx -fL -fL -fL -wx -fL -fL -fL -fL -fL -fL -fL -wx -fL -fL -fL -wx -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -yu -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(136,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -wx -fL -fL -fL -uN -fL -fL -fL -fL -fL -fL -lR -uN -fL -fL -fL -wx -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(137,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -kX -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -wx -fL -fL -fL -mB -aD -fL -fL -wx -fL -lR -aD -mB -fL -fL -fL -wx -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VS -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(138,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -BW -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -wx -fL -fL -fL -wx -mB -uN -wx -wx -wx -uN -mB -wx -fL -fL -fL -wx -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(139,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -kX -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -mi -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(140,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -QG -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(141,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Qn -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(142,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -bP -wx -wx -wx -wx -wx -WQ -wx -wx -wx -wx -wx -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(143,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -bP -bP -bP -bP -bP -wx -wx -wx -bP -bP -bP -bP -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(144,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(145,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Jm -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(146,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(147,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jt -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(148,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jt -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(149,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jt -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(150,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Jm -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(151,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -mi -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(152,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -QG -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(153,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Qn -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -Lz -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(154,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Jm -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Jm -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -yu -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(155,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -bk -jl -jl -jl -jl -jl -jl -jl -jl -jl -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -Lz -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(156,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -dO -jl -jl -jl -jl -jl -jl -jl -jl -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(157,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Qn -jl -jl -jl -jl -jl -jl -jl -jl -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -Lz -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(158,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -yu -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -yu -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(159,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -nJ -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -Lz -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(160,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -yu -mc -mc -VS -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(161,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(162,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(163,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(164,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(165,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(166,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -dO -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(167,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -mi -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -Fv -Fv -jl -jl -jl -jl -Qn -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(168,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -QG -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -bk -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(169,1,1) = {" -gA -yj -yj -yj -yj -bP -bP -bP -bP -bP -bP -hM -hM -hM -hM -bP -bP -bP -hM -hM -hM -hM -bP -bP -bP -bP -bP -bP -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Qn -jl -jl -jl -jl -jl -jl -jl -jl -jl -Fv -Fv -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(170,1,1) = {" -gA -yj -yj -yj -yj -bP -bP -bP -bP -bP -hM -hM -hM -hM -Bv -gK -gK -gK -Bv -hM -hM -hM -hM -bP -bP -bP -bP -bP -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(171,1,1) = {" -gA -yj -yj -yj -yj -bP -bP -bP -bP -hM -hM -hM -hM -hM -Bv -gK -gK -gK -Bv -hM -hM -hM -hM -hM -bP -bP -bP -bP -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -VS -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(172,1,1) = {" -gA -yj -yj -yj -yj -bP -bP -bP -hM -hM -hM -hM -hM -hM -Bv -gK -gK -gK -Bv -hM -hM -hM -hM -hM -hM -bP -bP -bP -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -nJ -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(173,1,1) = {" -gA -yj -yj -yj -yj -bP -bP -hM -hM -hM -hM -hM -hM -hM -Bv -gK -gK -gK -Bv -hM -hM -hM -hM -hM -hM -hM -bP -bP -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -oP -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(174,1,1) = {" -gA -yj -yj -yj -yj -bP -hM -hM -hM -hM -Bv -Bv -Bv -Bv -Bv -gK -gK -gK -Bv -Bv -Bv -Bv -Bv -hM -hM -hM -hM -bP -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Jm -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -PZ -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(175,1,1) = {" -gA -yj -yj -yj -yj -hM -hM -hM -hM -hM -Bv -Bv -Bv -Bv -NK -PA -PA -PA -NK -Bv -Bv -Bv -Bv -hM -hM -hM -hM -hM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -bk -jl -jl -jl -jl -jl -Jm -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(176,1,1) = {" -gA -yj -yj -yj -yj -hM -hM -hM -hM -hM -Bv -Bv -Bv -NK -PA -PA -PA -PA -PA -NK -Bv -Bv -Bv -hM -hM -hM -hM -hM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -BW -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(177,1,1) = {" -gA -yj -yj -yj -yj -hM -hM -hM -hM -hM -Bv -Bv -NK -PA -PA -PA -PA -PA -PA -PA -NK -Bv -Bv -hM -hM -hM -hM -hM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -bk -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(178,1,1) = {" -gA -yj -yj -yj -yj -hM -Bv -Bv -Bv -Bv -Bv -NK -PA -PA -PA -PA -PA -PA -PA -PA -PA -NK -Bv -Bv -Bv -Bv -Bv -hM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -bk -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(179,1,1) = {" -gA -yj -yj -yj -yj -bP -gK -gK -gK -gK -gK -PA -PA -PA -PA -zK -Ji -JQ -PA -PA -PA -PA -gK -gK -gK -gK -gK -bP -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -dO -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -VS -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(180,1,1) = {" -gA -yj -yj -yj -yj -bP -gK -gK -gK -gK -gK -PA -PA -PA -PA -dP -yq -CJ -PA -PA -PA -PA -gK -gK -gK -gK -gK -bP -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -Qn -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(181,1,1) = {" -gA -yj -yj -yj -yj -bP -gK -gK -gK -gK -gK -PA -PA -PA -PA -GW -fF -DI -PA -PA -PA -PA -gK -gK -gK -gK -gK -bP -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(182,1,1) = {" -gA -yj -yj -yj -yj -hM -Bv -Bv -Bv -Bv -Bv -NK -PA -PA -PA -PA -PA -PA -PA -PA -PA -NK -Bv -Bv -Bv -Bv -Bv -hM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Jm -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -bP -bP -bP -bP -wx -wx -wx -bP -bP -bP -bP -bP -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -Lz -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(183,1,1) = {" -gA -yj -yj -yj -yj -hM -hM -hM -hM -hM -Bv -Bv -NK -PA -PA -PA -PA -PA -PA -PA -NK -Bv -Bv -hM -hM -hM -hM -hM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -wx -wx -wx -wx -wx -eH -wx -wx -wx -wx -wx -bP -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -yu -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(184,1,1) = {" -gA -yj -yj -yj -yj -hM -hM -hM -hM -hM -Bv -Bv -Bv -NK -PA -PA -PA -PA -PA -NK -Bv -Bv -Bv -hM -hM -hM -hM -hM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Jm -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -Lz -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(185,1,1) = {" -gA -yj -yj -yj -yj -hM -hM -hM -hM -hM -Bv -Bv -Bv -Bv -NK -PA -PA -PA -NK -Bv -Bv -Bv -Bv -hM -hM -hM -hM -hM -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(186,1,1) = {" -gA -yj -yj -yj -yj -bP -hM -hM -hM -hM -Bv -Bv -Bv -Bv -Bv -gK -gK -gK -Bv -Bv -Bv -Bv -Bv -hM -hM -hM -hM -bP -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(187,1,1) = {" -gA -yj -yj -yj -yj -bP -bP -hM -hM -hM -hM -hM -hM -hM -Bv -gK -gK -gK -Bv -hM -hM -hM -hM -hM -hM -hM -bP -bP -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -wx -fL -fL -fL -wx -wO -wO -wx -wx -wx -wO -wO -wx -fL -fL -fL -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(188,1,1) = {" -gA -yj -yj -yj -yj -bP -bP -bP -hM -hM -hM -hM -hM -hM -Bv -gK -gK -gK -Bv -hM -hM -hM -hM -hM -hM -bP -bP -bP -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -wx -fL -fL -fL -wO -wO -wO -wO -wx -wO -wO -wO -wO -fL -fL -fL -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(189,1,1) = {" -gA -yj -yj -yj -yj -bP -bP -bP -bP -hM -hM -hM -hM -hM -Bv -gK -gK -gK -Bv -hM -hM -hM -hM -hM -bP -bP -bP -bP -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -wx -fL -fL -fL -wO -wO -wO -wO -wO -wO -wO -wO -wO -fL -fL -fL -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(190,1,1) = {" -gA -yj -yj -yj -yj -bP -bP -bP -bP -bP -hM -hM -hM -hM -Bv -gK -gK -gK -Bv -hM -hM -hM -hM -bP -bP -bP -bP -bP -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -wx -fL -fL -fL -wx -wO -wO -wO -wO -wO -wO -wO -wx -fL -fL -fL -wx -wx -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -uT -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(191,1,1) = {" -gA -yj -yj -yj -yj -bP -bP -bP -bP -bP -bP -hM -hM -hM -hM -bP -bP -bP -hM -hM -hM -hM -bP -bP -bP -bP -bP -bP -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -PE -fL -fL -fL -wx -wx -wO -wO -kI -wO -wO -wx -wx -fL -fL -fL -sN -wx -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(192,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -wx -fL -fL -fL -wx -wO -wO -wO -wO -wO -wO -wO -wx -fL -fL -fL -wx -wx -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(193,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -mi -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -wx -fL -fL -fL -wO -wO -wO -wO -wO -wO -wO -wO -wO -fL -fL -fL -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(194,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -QG -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -wx -fL -fL -fL -wO -wO -wO -wO -wx -wO -wO -wO -wO -fL -fL -fL -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(195,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -Qn -jl -jl -jl -jl -Jm -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -wx -fL -fL -fL -wx -wO -wO -wx -wx -wx -wO -wO -wx -fL -fL -fL -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -yu -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(196,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -nJ -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(197,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -yu -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(198,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -bP -bP -wx -wx -fL -fL -fL -fL -fL -fL -fL -fL -fL -wx -wx -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(199,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -Lz -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -wx -wx -wx -wx -wx -eH -wx -wx -wx -wx -wx -bP -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(200,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ex -ex -ex -ex -ex -XU -XU -XU -XU -XU -XU -XU -XU -XU -XU -XU -ex -ex -ex -ex -ex -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -yu -mc -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -bP -bP -bP -bP -wx -wx -wx -bP -bP -bP -bP -bP -bP -bP -bP -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(201,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ex -ex -ex -ex -XU -XU -uS -uS -uS -uS -uS -uS -uS -uS -uS -XU -XU -ex -ex -ex -ex -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -Lz -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(202,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ex -ex -ex -XU -XU -uS -uS -kF -kF -DE -DE -DE -kF -kF -uS -uS -XU -XU -ex -ex -ex -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(203,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ex -ex -XU -XU -uS -uS -kF -kF -RC -RC -RC -RC -RC -kF -kF -uS -uS -XU -XU -ex -ex -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -VS -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(204,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ex -XU -XU -uS -uS -kF -kF -RC -RC -lu -lu -lu -RC -RC -kF -kF -uS -uS -XU -XU -ex -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VS -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(205,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XU -XU -uS -uS -kF -kF -RC -RC -lu -lu -uS -lu -lu -RC -RC -kF -kF -uS -uS -XU -XU -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(206,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XU -uS -uS -kF -kF -RC -RC -DE -lu -uS -uS -uS -lu -DE -RC -RC -kF -kF -uS -uS -XU -yj -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(207,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XU -uS -kF -kF -RC -RC -DE -lu -uS -uS -DE -uS -uS -lu -DE -RC -RC -kF -kF -uS -XU -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -nJ -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(208,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XU -XU -XU -XU -XU -XU -XU -uS -kF -RC -RC -DE -lu -uS -uS -kF -kF -kF -uS -uS -lu -DE -RC -RC -kF -uS -XU -yj -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -oP -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(209,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XU -kF -kF -kF -kF -kF -XU -uS -kF -RC -lu -lu -uS -uS -kF -kF -RC -kF -kF -uS -uS -lu -lu -RC -kF -uS -XU -yj -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -PZ -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(210,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XU -kF -dy -tL -Ko -kF -ij -uS -DE -RC -lu -uS -uS -kF -kF -RC -RC -RC -kF -kF -uS -uS -lu -RC -DE -uS -ij -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(211,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XU -kF -Iu -bh -Qr -kF -ij -uS -DE -RC -lu -uS -DE -kF -RC -RC -eE -RC -RC -kF -DE -uS -lu -RC -DE -uS -ij -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -bP -bP -bP -bP -bP -bP -bP -bP -bP -hM -hM -hM -hM -hM -bP -bP -bP -bP -bP -bP -bP -bP -bP -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(212,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XU -kF -Ry -Fs -LW -kF -ij -uS -DE -RC -lu -uS -uS -kF -kF -RC -RC -RC -kF -kF -uS -uS -lu -RC -DE -uS -ij -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -VS -mc -mc -mc -VM -VM -VM -VM -bP -bP -bP -bP -bP -bP -hM -hM -hM -hM -tH -tH -tH -hM -hM -hM -hM -bP -bP -bP -bP -bP -bP -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(213,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XU -kF -kF -kF -kF -kF -XU -uS -kF -RC -lu -lu -uS -uS -kF -kF -RC -kF -kF -uS -uS -lu -lu -RC -kF -uS -XU -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -bP -bP -bP -hM -hM -hM -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -hM -hM -hM -bP -bP -bP -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(214,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XU -XU -XU -XU -XU -XU -XU -uS -kF -RC -RC -DE -lu -uS -uS -kF -kF -kF -uS -uS -lu -DE -RC -RC -kF -uS -XU -VM -jl -jl -jl -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -bP -bP -hM -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -hM -bP -bP -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(215,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XU -uS -kF -kF -RC -RC -DE -lu -uS -uS -DE -uS -uS -lu -DE -RC -RC -kF -kF -uS -XU -VM -VM -jl -jl -jl -jl -jl -jl -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -bP -bP -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -bP -bP -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(216,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XU -uS -uS -kF -kF -RC -RC -DE -lu -uS -uS -uS -lu -DE -RC -RC -kF -kF -uS -uS -XU -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -VM -VM -bP -bP -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -bP -bP -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(217,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -XU -XU -uS -uS -kF -kF -RC -RC -lu -lu -uS -lu -lu -RC -RC -kF -kF -uS -uS -XU -XU -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -uT -VM -bP -hM -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -hM -bP -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(218,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ex -XU -XU -uS -uS -kF -kF -RC -RC -lu -lu -lu -RC -RC -kF -kF -uS -uS -XU -XU -ex -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -yu -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -bP -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -bP -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(219,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ex -ex -XU -XU -uS -uS -kF -kF -RC -RC -RC -RC -RC -kF -kF -uS -uS -XU -XU -ex -ex -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -nJ -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VM -bP -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -QW -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -bP -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(220,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ex -ex -ex -XU -XU -uS -uS -kF -kF -DE -DE -DE -kF -kF -uS -uS -XU -XU -ex -ex -ex -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -yu -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -VM -hM -hM -tH -tH -tH -tH -tH -tH -tH -tH -QW -na -QW -tH -tH -tH -tH -tH -tH -tH -tH -hM -hM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(221,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ex -ex -ex -ex -XU -XU -uS -uS -uS -uS -uS -uS -uS -uS -uS -XU -XU -ex -ex -ex -ex -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -yu -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -VS -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -ph -ph -tH -tH -tH -tH -tH -tH -tH -QW -na -cI -na -QW -tH -tH -tH -tH -tH -tH -tH -tH -hM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(222,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -ex -ex -ex -ex -ex -XU -XU -XU -XU -XU -XU -XU -XU -XU -XU -XU -ex -ex -ex -ex -ex -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -mc -nJ -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -ph -ph -tH -tH -tH -tH -tH -tH -QW -na -cI -Dj -cI -na -QW -ke -tH -tH -tH -tH -tH -tH -hM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(223,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -yu -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -ph -ph -tH -tH -tH -tH -tH -tH -tH -QW -na -cI -na -QW -tH -tH -tH -tH -tH -tH -tH -tH -hM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(224,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VS -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -hM -hM -tH -tH -tH -tH -tH -tH -tH -tH -QW -na -QW -tH -tH -tH -tH -tH -tH -tH -tH -hM -hM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(225,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -uT -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -QW -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -bP -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(226,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -uT -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -bP -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(227,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VS -mc -Lz -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -hM -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -hM -bP -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(228,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -yu -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -bP -bP -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(229,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -uT -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -Lz -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -bP -bP -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(230,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -hM -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -hM -bP -bP -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(231,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -mc -mc -mc -mc -mc -uT -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -hM -hM -hM -hM -tH -tH -tH -tH -tH -tH -tH -tH -tH -hM -hM -hM -hM -bP -bP -bP -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(232,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -bP -bP -bP -hM -hM -hM -hM -tH -tH -tH -hM -hM -hM -hM -bP -bP -bP -bP -bP -bP -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(233,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -bP -bP -bP -bP -bP -bP -bP -bP -bP -hM -hM -hM -hM -hM -bP -bP -bP -bP -bP -bP -bP -bP -bP -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(234,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(235,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(236,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(237,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(238,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(239,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(240,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(241,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(242,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(243,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -yj -yj -yj -yj -yj -yj -gA -"} -(244,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(245,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(246,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(247,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(248,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(249,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(250,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(251,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(252,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(253,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(254,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(255,1,1) = {" -gA -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -yj -gA -"} -(256,1,1) = {" -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -gA -"} diff --git a/maps/southern_sun/submaps/gateway/carpfarm.dm b/maps/southern_sun/submaps/gateway/carpfarm.dm deleted file mode 100644 index 9e8e989fb2..0000000000 --- a/maps/southern_sun/submaps/gateway/carpfarm.dm +++ /dev/null @@ -1,25 +0,0 @@ -/area/awaymission/carpfarm - icon_state = "blank" - requires_power = 0 - -/area/awaymission/carpfarm/arrival - icon_state = "away" - requires_power = 0 - -/area/awaymission/carpfarm/base - icon_state = "away" - -/area/awaymission/carpfarm/hostilebase - icon_state = "green" - -/area/awaymission/carpfarm/base/entry - icon_state = "blue" - -/obj/item/paper/awaygate/carpfarm/suicide - name = "suicide letter" - info = "dear rescue,

my name markov. if reading this, i am dead. i am was miner for 3rd union of soviet socialist republiks. \ - comrades yuri, dimitri, ivan, all eaten by space carp. all started month ago when soviet shipment sent new sonic jackhammers. \ - carp attracted to vibrations. killed dimitri. yuri thought good idea to jury-rig hoverpods with lasers. not good idea. \ - very bad idea. only pissed them off. giant white carp appeared. killed ivan. then giant carp cracked yuri pod like \ - eggshell and swallowed yuri.

no food. can't call help. carp chewed comms relay. 2 weeks since then. \ - can't eat carp. is poison.

avenge comrades. avenge me. i die in glory.

-markov" diff --git a/maps/southern_sun/submaps/gateway/carpfarm.dmm b/maps/southern_sun/submaps/gateway/carpfarm.dmm deleted file mode 100644 index f973158889..0000000000 --- a/maps/southern_sun/submaps/gateway/carpfarm.dmm +++ /dev/null @@ -1,67395 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/space, -/area/space) -"ab" = ( -/obj/effect/blocker, -/turf/space{ - density = 1; - desc = "You can't go there!"; - name = "The 4th Wall" - }, -/area/space) -"ac" = ( -/turf/simulated/mineral, -/area/space) -"ad" = ( -/obj/effect/blocker, -/turf/space, -/area/space) -"ae" = ( -/mob/living/simple_mob/animal/space/carp, -/turf/space, -/area/space) -"af" = ( -/obj/effect/landmark/gateway_scatter, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/space) -"ag" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/landmark/loot_spawn, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"ah" = ( -/turf/simulated/mineral/floor/ignore_mapgen, -/area/space) -"ai" = ( -/obj/structure/closet/jcloset, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"aj" = ( -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/space) -"ak" = ( -/turf/simulated/mineral, -/area/mine/unexplored) -"al" = ( -/obj/structure/lattice, -/turf/space, -/area/space) -"am" = ( -/turf/simulated/wall/iron, -/area/awaymission/carpfarm/base) -"an" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/smes/buildable, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"ao" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8; - icon_state = "warning" - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"ap" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"as" = ( -/obj/structure/table/rack/shelf, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"at" = ( -/obj/machinery/shower{ - dir = 4; - icon_state = "shower"; - pixel_x = 5 - }, -/obj/machinery/door/window, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/carpfarm/base) -"au" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/carpfarm/base) -"av" = ( -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/tiled/white, -/area/awaymission/carpfarm/base) -"aw" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1; - icon_state = "bulb1" - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/carpfarm/base) -"ax" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/lino, -/area/awaymission/carpfarm/base) -"ay" = ( -/obj/structure/bedsheetbin, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/carpfarm/base) -"az" = ( -/obj/item/storage/toolbox/electrical, -/obj/structure/cable, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aA" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1; - icon_state = "warningcorner" - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aB" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aC" = ( -/mob/living/simple_mob/animal/space/carp/large, -/turf/space, -/area/space) -"aD" = ( -/mob/living/simple_mob/animal/space/carp/large/huge, -/turf/space, -/area/space) -"aE" = ( -/obj/item/paper/awaygate/carpfarm/suicide, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"aF" = ( -/obj/structure/window/basic{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/carpfarm/base) -"aG" = ( -/turf/simulated/floor/tiled/white, -/area/awaymission/carpfarm/base) -"aH" = ( -/obj/item/bedsheet, -/obj/structure/bed/padded, -/turf/simulated/floor/lino, -/area/awaymission/carpfarm/base) -"aI" = ( -/turf/simulated/floor/lino, -/area/awaymission/carpfarm/base) -"aJ" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/mining, -/obj/item/mining_scanner, -/obj/item/tank/jetpack/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aK" = ( -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aL" = ( -/obj/structure/closet/toolcloset, -/obj/item/pickaxe/jackhammer, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/multitool, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aM" = ( -/turf/simulated/wall/r_wall, -/area/space) -"aN" = ( -/obj/structure/door_assembly/door_assembly_hatch, -/turf/simulated/floor/tiled/airless, -/area/space) -"aO" = ( -/obj/machinery/door/airlock/external, -/turf/simulated/floor/tiled/airless, -/area/space) -"aP" = ( -/obj/structure/sink{ - dir = 8; - icon_state = "sink"; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/carpfarm/base) -"aQ" = ( -/turf/simulated/floor/tiled/airless, -/area/space) -"aR" = ( -/obj/structure/table/woodentable, -/obj/random/action_figure, -/turf/simulated/floor/lino, -/area/awaymission/carpfarm/base) -"aS" = ( -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"aT" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/random/medical, -/obj/random/medical, -/obj/random/medical, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"aU" = ( -/obj/structure/closet/gimmick/russian, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"aV" = ( -/mob/living/simple_mob/animal/space/carp/large/huge, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"aW" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aX" = ( -/obj/machinery/door/airlock/hatch, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aY" = ( -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aZ" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/lino, -/area/awaymission/carpfarm/base) -"ba" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"bb" = ( -/obj/structure/table/reinforced, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bc" = ( -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bd" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"be" = ( -/obj/structure/lattice, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/awaymission/carpfarm/base) -"bf" = ( -/obj/structure/closet/crate/freezer, -/obj/item/trash/syndi_cakes, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"bg" = ( -/obj/structure/closet/gimmick/russian, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"bh" = ( -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/awaymission/carpfarm/base) -"bi" = ( -/obj/structure/closet/wardrobe/black, -/obj/item/clothing/under/syndicate/tacticool, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"bj" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bk" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/landmark/costume, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"bl" = ( -/obj/structure/lattice, -/obj/effect/gibspawner/human, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/awaymission/carpfarm/base) -"bm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/crate/internals, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"bn" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/random/weapon, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"bo" = ( -/obj/machinery/door/airlock/mining, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bp" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bq" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"br" = ( -/obj/item/mecha_parts/mecha_equipment/tool/drill, -/obj/item/storage/toolbox/mechanical, -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bs" = ( -/obj/structure/ore_box, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bt" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/merc/axis/sovrig, -/obj/item/clothing/head/helmet/space/void/axis/merc/sovrigh, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bu" = ( -/obj/structure/table/rack, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bv" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bw" = ( -/obj/machinery/microwave{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bx" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"by" = ( -/obj/machinery/vending/coffee{ - prices = list() - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bz" = ( -/obj/machinery/vending/sovietsoda, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bA" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/vending/sovietvend, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bB" = ( -/obj/machinery/vending/cigarette{ - prices = list() - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bC" = ( -/obj/machinery/vending/dinnerware, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bD" = ( -/obj/structure/closet/crate/internals, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"bE" = ( -/obj/structure/closet/crate/plastic, -/obj/random/contraband, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"bF" = ( -/obj/structure/dispenser/oxygen, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1375; - master_tag = "carp_airlock"; - name = "interior access button"; - pixel_x = 26; - pixel_y = -26; - req_one_access = newlist() - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bK" = ( -/obj/machinery/suit_cycler/mining, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bL" = ( -/obj/structure/bed/chair, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bM" = ( -/obj/mecha/working/hoverpod/combatpod, -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bN" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bO" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bP" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/simulated/wall/iron, -/area/awaymission/carpfarm/base) -"bQ" = ( -/obj/machinery/door/airlock/external{ - frequency = 1375; - icon_state = "door_locked"; - id_tag = "carp_inner"; - locked = 1; - name = "External Access"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"bR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bS" = ( -/obj/item/reagent_containers/food/snacks/cubancarp, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/glass, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bT" = ( -/obj/item/reagent_containers/food/snacks/carpmeat, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/glass, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bV" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1375; - id_tag = "carp_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1375; - id_tag = "carp_airlock"; - pixel_x = -28; - pixel_y = 0; - req_access = null; - tag_airpump = "carp_pump"; - tag_chamber_sensor = "carp_sensor"; - tag_exterior_door = "carp_outer"; - tag_interior_door = "carp_inner" - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8; - icon_state = "warningcee" - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"bW" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1375; - id_tag = "carp_pump" - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4; - icon_state = "warningcee" - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"bX" = ( -/obj/structure/closet/emcloset, -/obj/item/storage/toolbox/emergency, -/obj/machinery/airlock_sensor{ - frequency = 1375; - id_tag = "carp_sensor"; - pixel_x = 28 - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"bY" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"ca" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/closet/crate/bin, -/obj/item/trash/candy/proteinbar, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"cb" = ( -/obj/machinery/door/airlock/external{ - frequency = 1375; - icon_state = "door_locked"; - id_tag = "carp_outer"; - locked = 1; - name = "External Access"; - req_access = newlist() - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"cc" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"cd" = ( -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"ce" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1375; - master_tag = "carp_airlock"; - name = "exterior access button"; - pixel_x = 26; - pixel_y = 26; - req_access = newlist() - }, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"cf" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/space, -/area/space) -"cg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/airless, -/area/space) -"ch" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/space) -"ci" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/airless, -/area/space) -"cj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/space) -"ck" = ( -/turf/simulated/floor/airless, -/area/space) -"cl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4; - icon_state = "warning" - }, -/turf/simulated/floor/airless, -/area/space) -"cm" = ( -/obj/structure/closet/crate/secure/weapon, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/gun/projectile/automatic/serdy/mosin, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"cn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/airless, -/area/space) -"co" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/airless, -/area/space) -"cp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/airless, -/area/space) -"cq" = ( -/obj/structure/closet/crate/secure/weapon, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"cr" = ( -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/unexplored) -"dc" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/carpfarm/hostilebase) -"dl" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/machinery/vending/snlvend, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"dz" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/carpfarm/hostilebase) -"dK" = ( -/mob/living/simple_mob/humanoid/pirate/mate/ranged/shotgun, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"ef" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor, -/area/awaymission/carpfarm/hostilebase) -"eh" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"ei" = ( -/obj/effect/landmark/loot_spawn, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/carpfarm/hostilebase) -"er" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/airlock/external, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/hostilebase) -"ex" = ( -/obj/machinery/power/rtg/fake_gen, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/hostilebase) -"fT" = ( -/turf/simulated/floor/plating, -/area/space) -"fV" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/structure/bed/chair, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/carpfarm/hostilebase) -"fX" = ( -/obj/structure/lattice, -/obj/item/material/shard{ - icon_state = "small" - }, -/turf/space, -/area/space) -"gS" = ( -/obj/effect/wingrille_spawn/reinforced_phoron, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/hostilebase) -"hf" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"iw" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/space/syndicate/black, -/obj/item/clothing/head/helmet/space/syndicate/black, -/turf/simulated/floor/tiled/airless, -/area/space) -"jK" = ( -/obj/machinery/gateway/brass{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/hostilebase) -"kH" = ( -/mob/living/simple_mob/humanoid/pirate/mate/ranged/bosun, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/hostilebase) -"la" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"lh" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"ly" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/carpfarm/hostilebase) -"mZ" = ( -/obj/machinery/power/rtg/fake_gen, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/hostilebase) -"nr" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/hostilebase) -"nD" = ( -/mob/living/simple_mob/humanoid/pirate/mate/ranged/rifle, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"nU" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/carpfarm/hostilebase) -"oe" = ( -/obj/machinery/door/airlock/highsecurity, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/carpfarm/hostilebase) -"og" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/carpfarm/hostilebase) -"ok" = ( -/obj/machinery/suit_cycler/syndicate, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/carpfarm/hostilebase) -"pd" = ( -/obj/machinery/gateway/brass{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/hostilebase) -"ph" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/hostilebase) -"pT" = ( -/obj/item/material/shard, -/turf/space, -/area/space) -"qR" = ( -/obj/machinery/atmospherics/unary/engine{ - dir = 8 - }, -/turf/space, -/area/space) -"qT" = ( -/mob/living/simple_mob/humanoid/pirate/armored, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"rr" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/carpfarm/hostilebase) -"rz" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/carpfarm/hostilebase) -"rG" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/carpfarm/hostilebase) -"sm" = ( -/obj/machinery/light{ - dir = 8 - }, -/mob/living/simple_mob/humanoid/pirate/machete, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"sL" = ( -/obj/item/material/shard{ - icon_state = "small" - }, -/turf/space, -/area/space) -"tn" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/carpfarm/hostilebase) -"to" = ( -/obj/structure/table/rack/shelf, -/obj/item/gun/projectile/automatic/serdy/hectate, -/obj/item/ammo_magazine/hectate/ap, -/obj/item/ammo_magazine/hectate/ap, -/obj/item/ammo_magazine/hectate, -/obj/item/ammo_magazine/hectate, -/obj/item/ammo_magazine/hectate, -/obj/item/ammo_magazine/hectate, -/turf/simulated/floor/tiled/airless, -/area/space) -"tA" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"tB" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/hostilebase) -"tY" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/carpfarm/hostilebase) -"uc" = ( -/obj/structure/closet/toolcloset, -/turf/simulated/floor/tiled/airless, -/area/space) -"uj" = ( -/turf/simulated/floor/tiled/freezer, -/area/awaymission/carpfarm/hostilebase) -"ux" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/carpfarm/hostilebase) -"va" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_ridged, -/area/awaymission/carpfarm/hostilebase) -"vR" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/carpfarm/hostilebase) -"wc" = ( -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor/tiled/airless, -/area/space) -"wB" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/hostilebase) -"xQ" = ( -/obj/structure/closet/toolcloset, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/hostilebase) -"yq" = ( -/obj/machinery/gateway/brass{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/hostilebase) -"yt" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/space) -"ze" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/hostilebase) -"zp" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"zs" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/carpfarm/hostilebase) -"Ab" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/carpfarm/hostilebase) -"Ah" = ( -/obj/mecha/working/hoverpod/shuttlecraft, -/turf/space, -/area/space) -"At" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled/airless, -/area/space) -"AW" = ( -/mob/living/simple_mob/humanoid/pirate/shield/machete/armored, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/carpfarm/hostilebase) -"Bf" = ( -/obj/machinery/vending/tool{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/hostilebase) -"BS" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/carpfarm/hostilebase) -"CF" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/awaymission/carpfarm/hostilebase) -"CH" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/carpfarm/hostilebase) -"Du" = ( -/obj/machinery/gateway/brass{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/hostilebase) -"Dx" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/structure/table/steel, -/obj/machinery/microwave/advanced, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"Ea" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/carpfarm/hostilebase) -"EL" = ( -/obj/machinery/gateway/brass{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/hostilebase) -"Fb" = ( -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/hostilebase) -"Fx" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/carpfarm/hostilebase) -"FT" = ( -/obj/effect/landmark/loot_spawn/low, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/carpfarm/hostilebase) -"FZ" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/carpfarm/hostilebase) -"GP" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"GV" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/hostilebase) -"He" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"HU" = ( -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/hostilebase) -"IV" = ( -/obj/effect/wingrille_spawn/reinforced_phoron, -/turf/simulated/floor, -/area/awaymission/carpfarm/hostilebase) -"Jy" = ( -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/carpfarm/hostilebase) -"Kl" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/machinery/vending/dinnerware, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"Ky" = ( -/obj/machinery/gateway/centeraway/mcguffin, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/hostilebase) -"KF" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/carpfarm/hostilebase) -"KG" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"KQ" = ( -/obj/item/multitool, -/obj/item/multitool, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/hostilebase) -"KX" = ( -/obj/machinery/suit_cycler, -/turf/simulated/floor/tiled/airless, -/area/space) -"Lr" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"Mt" = ( -/obj/machinery/door/airlock/vault, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/carpfarm/hostilebase) -"MO" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/machinery/vending/radren, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"MT" = ( -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled/airless, -/area/space) -"No" = ( -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor/airless, -/area/space) -"Nx" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/carpfarm/hostilebase) -"NE" = ( -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/carpfarm/hostilebase) -"NN" = ( -/obj/machinery/suit_cycler/syndicate, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/carpfarm/hostilebase) -"Ob" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/carpfarm/hostilebase) -"OL" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"PK" = ( -/turf/simulated/floor/tiled/steel_ridged, -/area/awaymission/carpfarm/hostilebase) -"Qa" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/machinery/vending/snack, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"QA" = ( -/obj/effect/floor_decal/industrial/hatch, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"QP" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/carpfarm/hostilebase) -"Rm" = ( -/mob/living/simple_mob/humanoid/pirate/las/armored, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"RW" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/machinery/vending/food, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"RY" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"SW" = ( -/obj/structure/sink{ - pixel_y = 16 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/carpfarm/hostilebase) -"SY" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/mob/living/simple_mob/humanoid/pirate/mate/ranged/bosun, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"TU" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"US" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"Vs" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/suit/space/void, -/obj/item/clothing/head/helmet/space/void, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"VH" = ( -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"VJ" = ( -/obj/machinery/gateway/brass{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/hostilebase) -"WW" = ( -/obj/machinery/gateway/brass{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/hostilebase) -"YF" = ( -/obj/machinery/door/airlock/security, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/carpfarm/hostilebase) -"Zd" = ( -/mob/living/simple_mob/humanoid/pirate/captain, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/hostilebase) -"Zh" = ( -/obj/machinery/gateway/brass, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/hostilebase) -"ZC" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/carpfarm/hostilebase) - -(1,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(2,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(3,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(4,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(5,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(6,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(7,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(8,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -"} -(9,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(10,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(11,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(12,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(13,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(14,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(15,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(16,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(17,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(18,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(19,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(20,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(21,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(22,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(23,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(24,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(25,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(26,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(27,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(28,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aj -aj -ac -aj -aj -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(29,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aj -aj -aj -aj -aj -aj -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(30,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aj -aj -aj -aj -af -aj -aj -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(31,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aj -af -aa -aj -aj -aj -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(32,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aj -aj -aa -aa -aj -aj -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(33,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aj -aj -af -aj -aj -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(34,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -aj -aj -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(35,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aj -aj -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(36,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aj -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(37,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(38,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(39,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(40,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(41,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(42,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(43,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -ae -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(44,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(45,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aj -aj -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(46,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aj -aj -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(47,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aj -aj -ac -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aj -aj -aj -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(48,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aj -aj -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aj -aj -aj -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(49,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aj -aj -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aj -aj -aj -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(50,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aj -af -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aj -aj -aj -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(51,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aj -aj -aa -aa -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aj -aj -af -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(52,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aj -aj -af -aj -aj -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aj -aj -aj -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(53,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -aj -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aj -aj -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(54,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aj -aj -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(55,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aj -aj -af -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(56,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aj -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(57,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aj -aj -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(58,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aj -aj -aj -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(59,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aj -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(60,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(61,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -ak -ak -ak -aa -aa -aa -aa -al -al -al -al -al -al -al -al -al -al -al -al -al -al -al -al -al -al -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(62,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -ak -ak -ak -ak -ak -ak -aa -ak -ak -ak -am -am -am -am -am -am -am -ba -ba -ba -am -am -am -am -am -am -al -al -cf -cf -cf -cf -cf -cf -cf -cf -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(63,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -an -az -aJ -aJ -aJ -am -bb -bb -bb -am -bq -bc -bc -bM -am -al -aa -aa -al -al -aa -al -al -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(64,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ao -aA -aK -aK -aK -aW -bc -bc -bc -am -br -bc -bc -bN -am -al -aa -aa -al -al -al -al -al -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(65,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ap -aB -aL -aL -aL -am -bc -bc -bc -am -bs -bc -bG -bO -am -al -aa -aa -al -al -aa -al -al -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(66,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -am -am -am -am -am -am -bd -bc -bc -am -bt -bc -bH -bP -am -am -cc -cg -cj -cj -cj -cj -cj -cn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(67,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -as -aS -aS -aS -aS -am -bc -bc -bc -am -bu -bc -bI -bQ -bV -cb -cd -ch -ck -ck -ck -ck -ck -co -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(68,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -as -aS -aS -aS -aS -aX -bc -bc -bc -bo -bc -bc -bJ -bQ -bW -cb -ce -ch -ck -ck -ck -ck -ck -co -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(69,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -as -aE -aS -aS -aS -am -bc -bc -bc -am -bv -bF -bK -am -bX -am -cd -ci -cl -cl -cl -cl -cl -cp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(70,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -am -am -am -am -am -am -bd -bc -bc -am -am -am -am -am -am -am -ak -aa -al -al -aa -al -al -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(71,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -at -aF -aP -aP -aP -am -bc -bc -bc -am -bw -bx -bx -bx -bY -am -cr -ak -al -al -al -al -al -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(72,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -au -aG -aG -aG -aG -aY -bc -bc -bc -bp -bx -bx -bx -bx -bx -am -cr -cr -cr -al -aa -al -al -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(73,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -av -am -av -am -av -am -bc -bc -bc -am -by -bx -bx -bR -bx -am -cr -cr -cr -cr -ak -ak -al -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(74,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aw -am -aw -am -aw -am -bc -bc -bc -am -bz -bx -bL -bS -bZ -am -cr -cr -cr -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(75,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -am -am -am -am -am -am -bd -bc -bc -am -bA -bx -bL -bT -bZ -am -cr -cr -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(76,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ax -aH -aI -aR -aH -am -bc -bc -bc -am -bB -bx -bx -bU -bx -am -cr -cr -cr -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(77,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ay -aI -aI -aI -aI -aZ -bc -bc -bc -bp -bx -bx -bx -bx -bx -am -cr -cr -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(78,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ax -aH -aI -ax -aH -am -bc -bc -bc -am -bC -bx -bx -bx -ca -am -cr -cr -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(79,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -am -am -am -am -am -am -am -bj -am -am -am -am -am -am -am -am -cr -cr -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(80,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ag -cd -bg -cd -bm -bD -cm -am -cr -ak -ak -ak -cr -cr -cr -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(81,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ag -aU -bh -be -bh -be -cq -am -cr -cr -ak -cr -cr -cr -cr -cr -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(82,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -cd -aV -be -bh -be -bh -cd -cd -cr -cr -cr -cr -cr -cr -cr -cr -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(83,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -cd -be -bh -bl -be -be -bh -cd -cr -cr -cr -cr -cr -cr -cr -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(84,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ai -bf -bh -be -bh -bh -ag -am -ak -cr -cr -ak -cr -cr -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(85,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aT -cd -bi -be -ag -bE -ag -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(86,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aT -cd -bk -cd -bn -cd -ag -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(87,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -am -am -am -am -am -am -am -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(88,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(89,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(90,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(91,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(92,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(93,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(94,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(95,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(96,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(97,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -ac -ac -ac -ac -ac -aj -aj -aj -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(98,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aj -aj -aj -aj -aj -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(99,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aj -aj -aj -aj -aj -af -aj -aj -aj -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(100,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aj -aj -aj -aj -aj -aj -aj -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(101,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aj -ac -ac -aj -aj -af -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(102,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aj -aj -ac -ac -ac -aj -aj -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(103,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aj -aj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(104,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(105,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(106,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(107,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(108,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(109,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(110,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(111,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(112,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(113,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(114,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(115,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(116,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(117,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(118,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(119,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(120,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(121,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(122,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(123,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(124,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(125,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(126,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(127,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(128,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(129,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(130,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(131,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(132,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(133,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(134,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(135,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(136,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(137,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(138,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(139,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(140,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(141,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(142,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(143,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -ac -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(144,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(145,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(146,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(147,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(148,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(149,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(150,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(151,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(152,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(153,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(154,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(155,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(156,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(157,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(158,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(159,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(160,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(161,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(162,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(163,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(164,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(165,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(166,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(167,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(168,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(169,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(170,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(171,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(172,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(173,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(174,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(175,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -Nx -Nx -Nx -Nx -gS -gS -Nx -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(176,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -mZ -ex -wB -ze -KQ -KQ -Nx -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(177,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -Fb -Fb -Fb -Fb -Fb -Fb -Nx -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(178,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -Fb -Fb -Fb -kH -Fb -Fb -Nx -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(179,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -ph -xQ -ph -xQ -Fb -Bf -Nx -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(180,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -ZC -Nx -Nx -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(181,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -og -og -og -og -og -og -og -Nx -VH -rr -VH -Nx -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(182,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -FT -FT -FT -og -FT -FT -FT -Nx -VH -rr -VH -Nx -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(183,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -vR -og -og -og -og -og -QP -Nx -la -rr -GP -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -aa -aa -aa -aa -al -fT -aa -Ah -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(184,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -FT -FT -FT -og -FT -FT -FT -Nx -VH -rr -dK -Nx -Vs -tn -Vs -rr -Vs -tn -Vs -Nx -aa -aa -aa -aa -al -fT -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(185,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -og -og -og -og -og -og -og -Nx -VH -rr -VH -Nx -Vs -rr -Vs -rr -Vs -rr -Vs -Nx -aa -aa -aa -aa -al -fT -aa -Ah -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(186,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -FT -FT -FT -og -FT -FT -FT -Nx -VH -rr -VH -Nx -QA -rr -QA -rr -QA -rr -QA -Nx -Nx -Nx -al -al -al -fT -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(187,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -vR -og -og -og -og -og -QP -Nx -nD -rr -VH -Nx -rr -rr -rr -rr -rr -rr -rr -er -Fb -er -fT -fT -fT -fT -fT -fT -fT -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(188,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -ei -ei -ei -og -ei -ei -ei -Nx -VH -rr -rr -oe -rr -rr -rr -rr -rr -rr -rr -er -Fb -er -fT -fT -fT -fT -fT -fT -fT -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(189,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -og -og -og -og -og -og -og -Nx -la -rr -GP -Nx -VH -VH -VH -VH -VH -VH -VH -Nx -Nx -Nx -al -al -al -fT -aa -Ah -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(190,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -ei -ei -ei -og -ei -ei -ei -Nx -VH -rr -VH -Nx -rr -rr -rr -rr -rr -rr -rr -Nx -aa -aa -aa -aa -al -fT -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(191,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -CF -PK -PK -PK -PK -PK -va -Nx -VH -rr -VH -Nx -ly -Ob -NE -zs -zs -ok -NN -Nx -aa -aa -aa -aa -al -fT -aa -Ah -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(192,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Mt -Nx -Nx -Nx -Nx -Nx -YF -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -aa -aa -aa -aa -al -fT -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(193,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -jK -EL -Du -tB -HU -Nx -VH -VH -RY -Zd -rr -VH -VH -sm -VH -VH -rr -VH -RY -VH -VH -Rm -RY -VH -VH -VH -Nx -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(194,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -pd -Ky -Zh -nr -HU -Mt -rr -rr -rr -rr -rr -rr -rr -rr -rr -rr -rr -rr -rr -rr -rr -rr -rr -rr -rr -VH -Nx -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(195,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -yq -WW -VJ -GV -HU -Nx -VH -VH -OL -VH -VH -VH -qT -OL -VH -VH -rr -VH -OL -VH -VH -VH -VH -VH -rr -VH -Nx -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(196,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Ea -Nx -Nx -ef -ef -ef -ef -Nx -Fx -Nx -Nx -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(197,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -CH -uj -uj -Nx -dz -tY -dz -Ab -Jy -Jy -FZ -Nx -dl -lh -lh -He -lh -rG -Lr -Nx -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(198,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -CH -uj -uj -Nx -nU -Jy -Jy -Jy -Jy -Jy -rz -Nx -Qa -SY -KG -US -zp -lh -rG -IV -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(199,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -CH -uj -KF -Nx -dz -tY -dz -tY -Jy -Jy -FZ -Nx -MO -lh -KG -US -zp -SY -rG -IV -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aD -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(200,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -SW -uj -uj -Nx -Jy -Jy -Jy -Jy -AW -Jy -FZ -Nx -RW -lh -KG -US -zp -lh -lh -IV -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(201,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -SW -uj -uj -dc -Jy -Jy -Jy -Jy -Jy -Jy -FZ -Nx -hf -lh -fV -US -zp -lh -US -IV -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(202,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -SW -uj -uj -Nx -dz -tY -dz -tY -Jy -Jy -FZ -Nx -TU -lh -lh -eh -rG -lh -US -IV -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(203,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -dc -Nx -dc -Nx -nU -Jy -Jy -Jy -Jy -Jy -rz -Nx -Kl -lh -lh -tA -lh -lh -Dx -Nx -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -sL -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(204,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -BS -Nx -BS -Nx -dz -tY -dz -ux -Jy -Jy -FZ -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -pT -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(205,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -Nx -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aM -ck -fX -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(206,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aM -aM -ck -No -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(207,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aM -aQ -ck -al -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(208,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aM -aQ -wc -aQ -al -aM -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(209,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aM -aQ -aQ -aQ -aQ -aM -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(210,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aM -uc -aQ -aQ -to -aM -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(211,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aM -uc -aQ -aQ -iw -aM -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(212,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aN -aQ -aQ -aQ -iw -aM -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(213,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aO -aQ -aQ -aQ -iw -aM -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(214,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aM -MT -aQ -aQ -KX -aM -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(215,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aM -At -aQ -aQ -aQ -aM -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(216,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aM -yt -yt -yt -yt -aM -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(217,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -qR -qR -qR -qR -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(218,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(219,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(220,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(221,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(222,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(223,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(224,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(225,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(226,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aC -aa -ac -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(227,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(228,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(229,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(230,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(231,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(232,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(233,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(234,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(235,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(236,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(237,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(238,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(239,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(240,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(241,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(242,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(243,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(244,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(245,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(246,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(247,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(248,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -"} -(249,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -"} -(250,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(251,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(252,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(253,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(254,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(255,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(256,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} diff --git a/maps/southern_sun/submaps/gateway/darkrps.dm b/maps/southern_sun/submaps/gateway/darkrps.dm deleted file mode 100644 index d6d7254923..0000000000 --- a/maps/southern_sun/submaps/gateway/darkrps.dm +++ /dev/null @@ -1,337 +0,0 @@ - - -// -- Areas -- // - -/area/awaymission/darkrp - icon_state = "blank" - base_turf = /turf/simulated/floor/outdoors/rocks - -/area/awaymission/darkrp/outside - icon_state = "green" - dynamic_lighting = 1 - requires_power = 0 - power_equip = 0 - power_environ = 1 - power_light = 1 - outdoors = OUTDOORS_YES - ambience = AMBIENCE_SIF - -/area/awaymission/darkrp/tunnels - icon_state = "green" - always_unpowered = 1 - outdoors = 0 - -/area/awaymission/darkrp/outside/warehouses - name = "City Warehouse District" - icon_state = "yellow" - - -/area/awaymission/darkrp/tunnels/warehouse - name = "City Warehouse Tunnels" - icon_state = "darkred" - -/area/awaymission/darkrp/warehouse1 - name = "Warehouse 1" - icon_state = "blue" - -/area/awaymission/darkrp/warehouse2 - name = "Warehouse 2" - icon_state = "blue" - -/area/awaymission/darkrp/warehouse3 - name = "Warehouse 3" - icon_state = "blue" - -/area/awaymission/darkrp/warehouseshack - name = "Warehouse Control Room" - icon_state = "blue" - -// Plaza - -/area/awaymission/darkrp/outside/plaza - name = "City Plaza" - icon_state = "green" - -/area/awaymission/darkrp/tunnels/plaza - name = "City Plaza Tunnels" - icon_state = "darkred" - -/area/awaymission/darkrp/plazarecroom - name = "Plaza Rec Room" - icon_state = "blue" - -/area/awaymission/darkrp/plazabunker - name = "Plaza Bunker" - icon_state = "blue" - -/area/awaymission/darkrp/plazahotel - name = "Plaza Hotel" - icon_state = "blue" - -/area/awaymission/darkrp/plazashop - name = "Plaza Shop" - icon_state = "blue" - -/area/awaymission/darkrp/plazacoffee - name = "Plaza Cafe" - icon_state = "blue" - -/area/awaymission/darkrp/plazacoffeeback - name = "Plaza Cafe Back" - icon_state = "blue" - -/area/awaymission/darkrp/plazawarehouse - name = "Plaza Storage Facility" - icon_state = "blue" - -//Downtown - -/area/awaymission/darkrp/outside/downtown - name = "City Downtown" - icon_state = "yellow" - -/area/awaymission/darkrp/pd - name = "Downtown Police Department" - icon_state = "security" - - -/area/awaymission/darkrp/downtownwarehouse - name = "Downtown Warehouse" - icon_state = "green" - -/area/awaymission/darkrp/downtowncenter - name = "Downtown Center Warehouse" - icon_state = "green" - -/area/awaymission/darkrp/downtownshop - name = "Downtown Shop" - icon_state = "green" - -/area/awaymission/darkrp/downtownresturaunt - name = "Downtown Resturaunt" - icon_state = "green" - -/area/awaymission/darkrp/downtownwarehouse - name = "Downtown Warehouse" - icon_state = "green" - -/area/awaymission/darkrp/downtownbar - name = "Downtown Bar" - icon_state = "green" - -/area/awaymission/darkrp/downtowngunshop - name = "Downtown Gun Shop" - icon_state = "green" - -/area/awaymission/darkrp/downtownpharmacy - name = "Downtown Pharmacy" - icon_state = "green" - -/area/awaymission/darkrp/downtownempty - name = "Downtown Empty Building" - icon_state = "green" - -//Park -/area/awaymission/darkrp/outside/park - name = "City Park" - icon_state = "yellow" - -/area/awaymission/darkrp/tunnels/park - name = "City Park Tunnels" - icon_state = "darkred" - -/area/awaymission/darkrp/parkcondo - name = "Park Condo" - icon_state = "green" - -/area/awaymission/darkrp/parkwallbunker - name = "Park Bunker" - icon_state = "green" - -/area/awaymission/darkrp/parkghetto1 - name = "Northern Single 1" - icon_state = "green" - -/area/awaymission/darkrp/parkghetto2 - name = "Northern Single 2" - icon_state = "green" - -/area/awaymission/darkrp/parkmaint - name = "Northern Maintinence Shack" - icon_state = "green" - -//Ghettos -/area/awaymission/darkrp/outside/ghetto - name = "City Ghettos" - icon_state = "yellow" - -/area/awaymission/darkrp/tunnel/ghettos - name = "City Ghettos Tunnels" - icon_state = "darkred" - -/area/awaymission/darkrp/ghettohouse1 - name = "Ghetto Condo" - icon_state = "green" - -/area/awaymission/darkrp/ghettohouse2 - name = "Ghetto Condo 2" - icon_state = "green" - -/area/awaymission/darkrp/ghettoeats - name = "Ghetto Resturaunt" - icon_state = "green" - -/area/awaymission/darkrp/ghettooffice - name = "Ghetto Office" - icon_state = "green" - -/area/awaymission/darkrp/ghettowarehouse - name = "Ghetto Warehouse" - icon_state = "green" - -/area/awaymission/darkrp/ghettoapartments - name = "Ghetto Apartments" - icon_state = "green" - -/area/awaymission/darkrp/ghettobank - name = "Ghetto Bank" - icon_state = "green" - -/area/awaymission/darkrp/ghettosouthwarehouse - name = "Ghetto Warehouse South" - icon_state = "green" - -//Suburbs -/area/awaymission/darkrp/outside/suburbs - name = "City Suburbs" - icon_state = "yellow" - -/area/awaymission/darkrp/tunnels/suburbs - name = "City Suburbs Tunnels" - icon_state = "darkred" - -/area/awaymission/darkrp/subapartments - name = "Suburbs Apartments" - icon_state = "green" - -/area/awaymission/darkrp/subhouse1 - name = "Suburbs House South" - icon_state = "green" - -/area/awaymission/darkrp/subhouse2 - name = "Suburbs House North" - icon_state = "green" - -/area/awaymission/darkrp/subgarage - name = "Suburbs House Garaged" - icon_state = "green" - -/area/awaymission/darkrp/subgas - name = "Suburbs Gas Station" - icon_state = "green" - -/area/awaymission/darkrp/subcondo - name = "Suburbs Condos" - icon_state = "green" - -/area/awaymission/darkrp/subpower - name = "Suburbs Power Station" - icon_state = "green" - outdoors = 1 - -/area/awaymission/darkrp/subpowermaint - name = "Suburbs Power Station Maint" - icon_state = "green" - -//center -/area/awaymission/darkrp/outside/center - name = "City Center" - icon_state = "yellow" - -/area/awaymission/darkrp/centerwarehouse - name = "Center Warehouse" - icon_state = "blue" - -/area/awaymission/darkrp/centermaint - name = "Center Maint Storage" - icon_state = "blue" - -/area/awaymission/darkrp/centersidehouse - name = "Center Side House" - icon_state = "blue" - -/area/awaymission/darkrp/reference - name = "Secret Tunnel Room" - icon_state = "blue" - requires_power = 0 - flags = PHASE_SHIELDED - -/area/awaymission/darkrp/toll - name = "Toll Booth" - icon_state = "blue" - requires_power = 0 - -/area/awaymission/darkrp/lockdown1 - name = "Lock Down Checkpoint" - icon_state = "blue" - -/area/awaymission/darkrp/brokehouse - name = "Dilapidated House" - icon_state = "blue" - -/area/awaymission/darkrp/elephantsfoot - name = "Radioactive Crater" - icon_state = "blue" -//Sewers,,, - -/area/awaymission/darkrp/subway - name = "Subway Enterence" - icon_state = "yellow" - requires_power = 0 - outdoors = 0 - -/area/awaymission/darkrp/sewers - name = "City Sewers" - icon_state = "blue" - requires_power = 0 - ambience = list('sound/ambience/ambimine.ogg', 'sound/ambience/cave/AmbCaveDebriA.ogg', 'sound/ambience/cave/AmbCaveDebriB.ogg', 'sound/ambience/cave/AmbCaveDebriC.ogg', 'sound/ambience/cave/AmbCaveDebriD.ogg') - -/area/awaymission/darkrp/sewers/subway - name = "City Subway" - icon_state = "blue" - -/area/awaymission/darkrp/sewers/maint - name = "City Sewers Maint" - icon_state = "blue" - -/area/awaymission/darkrp/sewers/subwaymaint - name = "City Subway Maintinence" - icon_state = "blue" - -/area/awaymission/darkrp/sewers/subwaytrack - name = "City Subway Tracks" - icon_state = "blue" - -/area/awaymission/darkrp/sewers/subwaytrack2 - name = "City Subway Twin Tracks" - icon_state = "blue" - -/area/awaymission/darkrp/sewers/subwaymaintroom - name = "City Subway Maintinence" - icon_state = "blue" - -/area/awaymission/darkrp/base // Limiting powered areas - icon_state = "away" - requires_power = 0 - power_equip = 1 - power_environ = 1 - power_light = 1 - -/area/awaymission/darkrp/powerless // Limiting powered areas - icon_state = "darkred" - always_unpowered = 1 - power_equip = 0 - power_environ = 0 - power_light = 0 - -//Map exclssive powers diff --git a/maps/southern_sun/submaps/gateway/darkrps.dmm b/maps/southern_sun/submaps/gateway/darkrps.dmm deleted file mode 100644 index 9e9006f4cc..0000000000 --- a/maps/southern_sun/submaps/gateway/darkrps.dmm +++ /dev/null @@ -1,57412 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaJ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"abV" = ( -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"acA" = ( -/obj/structure/table/woodentable, -/obj/machinery/chemical_dispenser/bar_alc/full, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"adj" = ( -/obj/structure/prop/dominator/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"adL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"aeh" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/outside/suburbs) -"afH" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"agd" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"agw" = ( -/obj/machinery/organ_printer/flesh/full, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"agB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"agR" = ( -/obj/structure/table/marble, -/obj/item/gun/projectile/automatic/l6_saw, -/obj/structure/prop/machine/random_radio{ - pixel_y = 15 - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/darkrp/sewers) -"ahv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"ahN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/bedsheet/rainbowdouble, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"ahV" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/subcondo) -"akp" = ( -/obj/structure/fence, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"akW" = ( -/obj/structure/table/marble, -/obj/machinery/microwave{ - pixel_x = -1; - pixel_y = 17 - }, -/obj/item/reagent_containers/food/condiment/carton/flour{ - pixel_x = -5; - pixel_y = -2 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"alH" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/morestuff, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"alR" = ( -/obj/structure/flora/tree/dead, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"alT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"ams" = ( -/obj/structure/table/standard, -/obj/item/ticket_printer, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/toll) -"anm" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/water/indoors, -/area/awaymission/darkrp/sewers) -"anQ" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/media/jukebox, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"aoL" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"apP" = ( -/obj/structure/table/rack/shelf, -/obj/item/canvas/twentyfour_twentyfour, -/obj/item/canvas/twentyfour_twentyfour, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"aqB" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/medical/pillbottle, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"aqI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"aqO" = ( -/obj/effect/floor_decal/rust, -/obj/random/trash, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"aqS" = ( -/obj/structure/bed/chair/wood{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkcondo) -"arC" = ( -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkcondo) -"arQ" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkmaint) -"asj" = ( -/obj/effect/map_effect/portal/line/side_a{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subway) -"asn" = ( -/obj/item/tool/crowbar/red, -/turf/simulated/mineral/floor/ignore_mapgen/cave{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"asp" = ( -/obj/structure/table/woodentable, -/obj/item/tool/screwdriver{ - pixel_y = -5; - pixel_x = 9 - }, -/obj/item/syndie/c4explosive/heavy/super_heavy, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"asB" = ( -/mob/living/simple_mob/humanoid/russian/ranged, -/obj/effect/floor_decal/milspec/color/red/half, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"asK" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subcondo) -"asY" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"atF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/ghetto) -"atN" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/tracks{ - color = "red"; - desc = "Your instincts say you shouldn't be following these."; - dir = 4; - icon = 'icons/effects/blood.dmi'; - icon_state = "tracks" - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"aue" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/table/standard, -/obj/item/defib_kit/loaded, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/item/defib_kit/loaded, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"auB" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/outdoors/mud{ - outdoors = -1; - temperature = 293.15 - }, -/area/awaymission/darkrp/sewers) -"auD" = ( -/obj/effect/decal/mecha_wreckage/shuttlecraft{ - anchored = 1 - }, -/turf/simulated/floor/lava/harmless, -/area/awaymission/darkrp/outside/ghetto) -"avs" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/carpet/blue, -/area/awaymission/darkrp/subhouse1) -"avT" = ( -/obj/structure/bonfire, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/tunnels/suburbs) -"awj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/bed/chair/bay/chair/padded/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"awX" = ( -/obj/effect/map_effect/portal/master/side_a{ - portal_id = "Gsewer3" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"axK" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"axQ" = ( -/obj/machinery/button/remote/blast_door{ - id = "warehouse2"; - name = "Warehouse Shutters Button"; - pixel_x = -4; - dir = 4; - pixel_y = 27 - }, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"azk" = ( -/obj/structure/flora/pottedplant/drooping, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"azJ" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"azS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/simple_door/wood, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subgas) -"azY" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/vehicle/train/trolley{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"aAn" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/darkrp/outside/suburbs) -"aBN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"aCO" = ( -/turf/simulated/wall, -/area/awaymission/darkrp/ghettooffice) -"aDq" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkcondo) -"aDw" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"aFt" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/basic, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"aFM" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/item/stack/cable_coil, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"aHH" = ( -/obj/item/material/barbedwire{ - anchored = 1; - icon_state = "barbedwire-out" - }, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"aKH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/obj/random/trash, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"aKS" = ( -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/downtownwarehouse) -"aLd" = ( -/obj/structure/railing/grey{ - pixel_y = 0; - dir = 8 - }, -/obj/structure/prop/statue/pillar, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/outside/plaza) -"aLq" = ( -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/plazahotel) -"aLF" = ( -/obj/random/junk, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"aLN" = ( -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"aLY" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkghetto1) -"aMH" = ( -/obj/structure/salvageable/autolathe, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"aMR" = ( -/obj/structure/railing/grey{ - pixel_y = 0; - dir = 1 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"aPs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subhouse2) -"aPB" = ( -/obj/structure/cliff/automatic/ramp{ - dir = 6 - }, -/obj/structure/cliff/automatic/ramp{ - dir = 9 - }, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"aQe" = ( -/obj/random/junk, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"aQm" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/toll) -"aQz" = ( -/obj/structure/simple_door/wood, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/tracks{ - color = "red"; - desc = "Your instincts say you shouldn't be following these."; - dir = 4; - icon = 'icons/effects/blood.dmi'; - icon_state = "tracks" - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"aQA" = ( -/obj/structure/salvageable/console_broken_os{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"aQF" = ( -/obj/structure/table/woodentable, -/obj/machinery/chemical_dispenser/bar_soft/full, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"aQK" = ( -/obj/machinery/computer/arcade/orion_trail, -/turf/simulated/floor/carpet/retro, -/area/awaymission/darkrp/plazarecroom) -"aSd" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/random/trash, -/obj/structure/prop/war/tgmc_missile/banshee, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"aSy" = ( -/obj/effect/landmark/corpse/random_civ, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"aSE" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkghetto2) -"aSS" = ( -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"aSZ" = ( -/obj/item/clothing/suit/radiation, -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gibdown1_flesh" - }, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"aTg" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centermaint) -"aTF" = ( -/obj/structure/prop/machine/alien_tank/starts_broken, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"aUP" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"aVp" = ( -/obj/item/card/id{ - access = list(696); - name = "Gun Store ID" - }, -/turf/simulated/floor/carpet/blue, -/area/awaymission/darkrp/plazahotel) -"aVq" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/ammo_magazine/m545, -/obj/item/ammo_magazine/m545, -/obj/item/ammo_magazine/m545, -/obj/item/ammo_magazine/m545, -/obj/item/ammo_magazine/m545, -/obj/item/ammo_magazine/m545, -/obj/item/ammo_magazine/m545, -/obj/item/ammo_magazine/m545, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"aVL" = ( -/mob/living/simple_mob/mechanical/mecha/combat/gygax/dark/advanced, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"aVY" = ( -/obj/structure/fireaxecabinet{ - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"aWu" = ( -/obj/machinery/light/floortube{ - dir = 1 - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/firstaid/fire{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/fire, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"aXL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"aXN" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"aXO" = ( -/obj/random/trash, -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centermaint) -"aXT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"aYL" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/subapartments) -"aYN" = ( -/obj/structure/table/woodentable, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"aYV" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/subhouse1) -"aZf" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/shuttle/floor/voidcraft, -/area/awaymission/darkrp/sewers) -"aZg" = ( -/obj/random/pottedplant, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subhouse2) -"aZx" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 6 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006; - pixel_y = 0 - }, -/obj/structure/table/rack/shelf/steel, -/obj/random/medical/pillbottle, -/obj/random/medical/pillbottle, -/obj/random/medical/pillbottle, -/obj/random/medical/pillbottle, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"aZy" = ( -/obj/structure/table/rack/shelf, -/obj/item/reagent_containers/food/condiment/carton/flour, -/obj/item/reagent_containers/food/condiment/small/packet/coffee{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/condiment/small/packet/coffee{ - pixel_x = 9; - pixel_y = -9 - }, -/obj/item/reagent_containers/food/condiment/small/packet/coffee{ - pixel_x = 9; - pixel_y = -1 - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazacoffee) -"baP" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"bbG" = ( -/obj/machinery/light{ - layer = 3 - }, -/obj/random/trash, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/rack/shelf/steel, -/obj/item/reagent_containers/chem_disp_cartridge/phosphorus, -/obj/item/reagent_containers/chem_disp_cartridge/carbon, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"bbI" = ( -/obj/item/weldingtool/mini/two, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"bbJ" = ( -/obj/item/stool/padded, -/turf/simulated/floor/carpet/retro, -/area/awaymission/darkrp/plazarecroom) -"bbK" = ( -/obj/item/flame/candle, -/turf/simulated/mineral/floor/ignore_mapgen/cave{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"bbN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/ghetto) -"bcn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"bcy" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/subhouse1) -"bcN" = ( -/obj/structure/table/rack/shelf/steel, -/obj/effect/floor_decal/milspec/color/red/half, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"bda" = ( -/obj/structure/bed/padded, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subcondo) -"bdj" = ( -/obj/structure/salvageable/data_os, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"bdJ" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"bdP" = ( -/obj/structure/table/gamblingtable, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"bfJ" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"bfN" = ( -/obj/structure/table/marble, -/obj/item/gun/projectile/revolver/slab, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/reference) -"bfZ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/base) -"bgg" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"bgp" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/plazahotel) -"bgI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/warehouses) -"bhS" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkcondo) -"bhW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkghetto1) -"bjk" = ( -/obj/structure/table/woodentable, -/obj/random/pizzabox, -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/subhouse1) -"bjJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkmaint) -"bjW" = ( -/mob/living/simple_mob/vore/alienanimals/skeleton/alt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgas) -"bkg" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/toxin, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"bkA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/item/clothing/accessory/stethoscope, -/obj/item/stack/material/uranium{ - amount = 12 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"blf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"bmi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/oldsofa/right{ - dir = 8 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"bmq" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/humanoid/merc/melee/poi, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"bmB" = ( -/obj/structure/fence/door{ - dir = 8 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"bmP" = ( -/obj/machinery/light{ - layer = 3 - }, -/obj/random/multiple/gun/projectile/smg, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"bng" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"bni" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"boc" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/research, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"bot" = ( -/obj/structure/table/woodentable, -/obj/random/toy, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"boG" = ( -/obj/item/stock_parts/scanning_module{ - pixel_y = 11; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"bpf" = ( -/obj/effect/landmark/corpse/engineer, -/obj/item/multitool, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"bps" = ( -/obj/random/trash, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/darkrp/sewers) -"bpu" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/vehicle/train/engine{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"bpJ" = ( -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = -4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"bpX" = ( -/obj/structure/bed/chair/comfy/black{ - pixel_y = 0; - dir = 4 - }, -/mob/living/simple_mob/humanoid/merc/melee/poi, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"brz" = ( -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/sewers) -"brM" = ( -/turf/simulated/wall, -/area/awaymission/darkrp/toll) -"brT" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/plazashop) -"brY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/clothing/gloves/fyellow, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"bse" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnels/park) -"bsp" = ( -/obj/item/stack/cable_coil, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/parkcondo) -"bsx" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"bsQ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"bsT" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/appliance/cooker/oven, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/downtownresturaunt) -"btw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"bun" = ( -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"buR" = ( -/obj/random/trash, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"bvs" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/subhouse1) -"bvI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "side-walk10" - }, -/area/awaymission/darkrp/outside/warehouses) -"bwt" = ( -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"bwI" = ( -/obj/random/trash, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"bwM" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/medical/pillbottle, -/obj/random/medical, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"bxD" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"byn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"bzf" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"bzh" = ( -/obj/random/cash, -/obj/item/ammo_magazine/m44, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"bzr" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"bAY" = ( -/obj/item/tool/wirecutters/brass, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"bBT" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"bCd" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"bCf" = ( -/obj/effect/map_effect/radiation_emitter/strong, -/obj/structure/prop/poicanister, -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"bCA" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"bCF" = ( -/obj/structure/fence/end{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"bCU" = ( -/obj/structure/prop/war/tgmc_missile/banshee, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"bDw" = ( -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subcondo) -"bDA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/redcross{ - pixel_y = 0; - pixel_x = -32; - icon_state = "lifestar" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"bDL" = ( -/obj/machinery/door/blast/angled{ - id = "boss" - }, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"bDR" = ( -/obj/structure/cliff/automatic{ - dir = 2 - }, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"bDX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"bEe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"bED" = ( -/obj/structure/table/rack/shelf, -/obj/item/reagent_containers/chem_disp_cartridge/coffee, -/obj/item/reagent_containers/chem_disp_cartridge/coffee, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazacoffee) -"bEG" = ( -/obj/item/material/shard, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/darkrp/brokehouse) -"bFm" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/reference) -"bGs" = ( -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"bGu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"bGL" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"bGY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"bJd" = ( -/obj/structure/table/hardwoodtable, -/obj/random/contraband/nofail, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"bJB" = ( -/obj/effect/decal/cleanable/greenglow, -/obj/item/storage/firstaid/adv, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"bJP" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazacoffee) -"bKb" = ( -/obj/machinery/door/blast/gate/bars, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"bMO" = ( -/obj/random/contraband, -/obj/structure/closet/crate, -/obj/item/reagent_containers/food/snacks/pastatomato, -/obj/item/reagent_containers/food/snacks/pastatomato, -/obj/item/reagent_containers/food/snacks/pastatomato, -/obj/item/reagent_containers/food/snacks/pastatomato, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"bMP" = ( -/obj/machinery/door/blast/shutters{ - id = "centralbuilding22"; - name = "Garage Door"; - dir = 2 - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"bMS" = ( -/turf/simulated/wall/wood, -/area/awaymission/darkrp/subgarage) -"bMU" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"bMX" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/plazabunker) -"bNl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"bPr" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/bed/double/padded, -/obj/item/bedsheet/rainbowdouble, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"bQn" = ( -/obj/structure/salvageable/machine, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"bQp" = ( -/turf/simulated/floor/carpet/blue, -/area/awaymission/darkrp/plazahotel) -"bRX" = ( -/turf/simulated/wall, -/area/awaymission/darkrp/warehouse3) -"bSX" = ( -/obj/structure/railing/grey{ - pixel_y = 0; - dir = 4 - }, -/obj/structure/bed/chair/sofa/bench/marble{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/outside/plaza) -"bTn" = ( -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"bTK" = ( -/obj/random/trash, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"bTN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"bTR" = ( -/obj/structure/table/steel_reinforced, -/obj/item/ammo_casing/a145{ - pixel_y = 5; - pixel_x = 5 - }, -/obj/item/ammo_casing/a145{ - pixel_y = -4; - pixel_x = -4; - dir = 1 - }, -/obj/item/ammo_casing/a145{ - pixel_y = 4; - pixel_x = -4; - dir = 2 - }, -/obj/item/ammo_casing/a145{ - pixel_y = 3; - pixel_x = 4; - dir = 8 - }, -/obj/item/ammo_casing/a145{ - pixel_y = -1; - pixel_x = 5; - dir = 2 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/reference) -"bUk" = ( -/obj/structure/bed/chair/wood, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkcondo) -"bUw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/gun/projectile/automatic/serdy/m4a1, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"bUB" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/orange, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/subhouse1) -"bVh" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkmaint) -"bVH" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"bWn" = ( -/obj/structure/table/marble, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"bWA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"bWB" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centermaint) -"bXp" = ( -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnels/suburbs) -"bXx" = ( -/obj/structure/table/woodentable, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"bXN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"bYm" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/popcorn{ - pixel_y = 0; - pixel_x = -4 - }, -/obj/item/reagent_containers/food/snacks/popcorn{ - pixel_y = 0; - pixel_x = 5 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgas) -"bYD" = ( -/obj/item/gun/magnetic/matfed, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"bYW" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subcondo) -"bZr" = ( -/obj/effect/decal/cleanable/blood/tracks{ - color = "red"; - desc = "Your instincts say you shouldn't be following these."; - icon = 'icons/effects/blood.dmi'; - icon_state = "tracks" - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"caf" = ( -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/outside/ghetto) -"caz" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/tiled/steel_ridged, -/area/awaymission/darkrp/plazawarehouse) -"cci" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"ccq" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/appliance/cooker/grill, -/obj/machinery/button/holosign{ - id = "poiopen"; - name = "Open Sign"; - pixel_x = 9; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"cdn" = ( -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/sewers) -"cdJ" = ( -/obj/effect/decal/cleanable/fruit_smudge, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"cdK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"ceA" = ( -/obj/structure/table/woodentable, -/obj/random/action_figure, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"ceD" = ( -/obj/machinery/light/small/flicker, -/mob/living/simple_mob/animal/space/bats/cult/strong, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"ceR" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/humanoid/merc/melee, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"cfu" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/clothing/head/collectable/tophat, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazarecroom) -"chy" = ( -/obj/machinery/gateway{ - density = 0; - dir = 6 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/darkrp/sewers) -"ciy" = ( -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"ciz" = ( -/obj/structure/simple_door/wood, -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/plazarecroom) -"ciE" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"cjK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/easel, -/obj/item/canvas/twentyfour_twentyfour, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"ckm" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northright{ - req_one_access = list(150) - }, -/obj/item/material/knife/tacknife/combatknife/fluff/katarina, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"ckO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/random/trash, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"clC" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"clS" = ( -/obj/machinery/light/floortube{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/hypospray/autoinjector/biginjector/glucose{ - pixel_y = 2 - }, -/obj/item/reagent_containers/hypospray/autoinjector/biginjector/glucose{ - pixel_y = -6 - }, -/obj/item/reagent_containers/hypospray/autoinjector/biginjector/glucose{ - pixel_y = -2 - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"cmx" = ( -/obj/structure/table/rack/shelf, -/obj/item/ammo_magazine/s357, -/obj/item/ammo_magazine/s357, -/obj/item/ammo_magazine/s357, -/obj/item/ammo_magazine/s357, -/obj/item/ammo_magazine/s357, -/obj/item/ammo_magazine/s357, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"cmN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/medical/lite, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"cny" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"cog" = ( -/obj/structure/salvageable/server_os, -/obj/item/spacecash/c500, -/obj/item/spacecash/c500, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"cpn" = ( -/obj/item/material/shard, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006; - pixel_y = 0 - }, -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor, -/area/awaymission/darkrp/brokehouse) -"cpy" = ( -/obj/machinery/chemical_dispenser, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"cpL" = ( -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkghetto2) -"cpP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"cqg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/porta_turret/stationary/syndie/CIWS, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"cqn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"csa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"csd" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"csy" = ( -/mob/living/simple_mob/animal/synx/scp{ - faction = "cult" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazarecroom) -"csD" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/centermaint) -"ctx" = ( -/mob/living/simple_mob/humanoid/pirate, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"ctD" = ( -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/structure/table/marble, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"ctK" = ( -/obj/item/stack/rods, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"cud" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"cvG" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"cvU" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"cwd" = ( -/obj/item/tool/screwdriver, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside/suburbs) -"cws" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/humanoid/cultist/caster, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"cwH" = ( -/obj/structure/sign/graffiti/pisoff{ - pixel_y = 0; - pixel_x = 30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"cwN" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gib1_flesh" - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"cxx" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"cxD" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"cxF" = ( -/obj/structure/salvageable/bliss, -/obj/item/spacecash/c10, -/obj/item/spacecash/c10, -/obj/item/spacecash/c10, -/obj/item/spacecash/c10, -/obj/item/spacecash/c10, -/obj/item/spacecash/c10, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"cxO" = ( -/obj/item/storage/bag/cash, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"cyp" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/medical, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"cyD" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"cyG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"czr" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"czF" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"cAB" = ( -/obj/item/ammo_magazine/m44, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"cAV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/ghettobank) -"cBG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/research, -/obj/random/material/precious, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"cBP" = ( -/obj/structure/table/woodentable, -/obj/item/material/ashtray/glass, -/obj/item/trash/chipbasket{ - pixel_y = 5 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"cBQ" = ( -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/outside/park) -"cBW" = ( -/obj/structure/coatrack, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/subhouse2) -"cBZ" = ( -/obj/effect/floor_decal/rust, -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"cCa" = ( -/obj/random/maintenance/foodstuff, -/obj/structure/table/marble, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"cEg" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/ketchup, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgas) -"cEz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"cFw" = ( -/obj/random/trash, -/obj/random/junk, -/obj/structure/closet/crate/trashcart, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"cFU" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/item/gun/energy/medigun, -/obj/item/cell/hyper, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"cGk" = ( -/obj/item/stack/animalhide/lizard, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"cGm" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"cGo" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/storage/bag/cash, -/obj/item/spacecasinocash, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"cGy" = ( -/obj/structure/table/woodentable, -/obj/item/storage/fancy/crayons{ - pixel_x = 11; - pixel_y = -3 - }, -/obj/item/storage/fancy/markers{ - pixel_x = 11; - pixel_y = 6 - }, -/obj/item/storage/fancy/crayons{ - pixel_x = 11; - pixel_y = -3 - }, -/obj/item/storage/fancy/markers{ - pixel_x = 11; - pixel_y = 6 - }, -/obj/item/pen/multi{ - pixel_x = -6; - pixel_y = -5 - }, -/obj/item/pen/multi{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/pen/multi{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"cGH" = ( -/mob/living/simple_mob/mechanical/hivebot/precusor/machinegun, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"cGM" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"cHm" = ( -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 2 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"cHK" = ( -/mob/living/simple_mob/humanoid/merc/ranged/grenadier, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/warehouses) -"cHR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"cJa" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"cJi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/lavaland/basalt, -/area/awaymission/darkrp/outside/plaza) -"cKj" = ( -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"cKu" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/centersidehouse) -"cKH" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 1; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"cKP" = ( -/obj/structure/cliff/automatic/corner{ - dir = 9 - }, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"cKQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside/suburbs) -"cKR" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"cLj" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"cNt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"cNx" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/wall/solidrock, -/area/awaymission/darkrp/outside/plaza) -"cOP" = ( -/obj/structure/barricade/planks, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnels/suburbs) -"cPd" = ( -/obj/effect/decal/remains, -/turf/simulated/floor/reinforced, -/area/awaymission/darkrp/ghettosouthwarehouse) -"cPB" = ( -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_y = -2; - dir = 1 - }, -/obj/structure/table/marble, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"cPH" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"cPN" = ( -/obj/item/syndie/c4explosive/heavy/super_heavy, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"cQh" = ( -/obj/structure/table/rack, -/obj/random/plushie, -/obj/random/plushie, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"cQS" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkcondo) -"cSO" = ( -/turf/unsimulated/wall/seperator, -/area/awaymission/darkrp/outside) -"cTI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"cTX" = ( -/mob/living/simple_mob/humanoid/merc, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"cUh" = ( -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/parkcondo) -"cUE" = ( -/obj/structure/sign/warning/lethal_turrets, -/turf/simulated/wall/r_concrete, -/area/awaymission/darkrp/tunnels/suburbs) -"cUZ" = ( -/obj/structure/fence, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"cVE" = ( -/obj/structure/table/steel_reinforced, -/obj/item/ammo_casing/a145{ - pixel_y = 5; - pixel_x = 5 - }, -/obj/item/ammo_casing/a145{ - pixel_y = -4; - pixel_x = -4; - dir = 1 - }, -/obj/item/ammo_casing/a145{ - pixel_y = 4; - pixel_x = -4; - dir = 2 - }, -/obj/item/ammo_casing/a145{ - pixel_y = 3; - pixel_x = 4; - dir = 8 - }, -/obj/item/ammo_casing/a145{ - pixel_y = -1; - pixel_x = 5; - dir = 2 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/reference) -"cVW" = ( -/obj/machinery/atmospherics/unary/cryo_cell, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/darkrp/downtownwarehouse) -"cWu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"cWZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"cYM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/darkrp/lockdown1) -"cZx" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"cZz" = ( -/mob/living/simple_mob/humanoid/merc/voxpirate/boarder, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"das" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"daA" = ( -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gibdown1_flesh" - }, -/turf/simulated/floor/carpet/blue, -/area/awaymission/darkrp/plazahotel) -"daY" = ( -/obj/structure/flora/pottedplant/drooping, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"dbd" = ( -/obj/structure/table/woodentable, -/obj/random/maintenance/clean, -/obj/item/pen, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"dca" = ( -/obj/structure/fence/corner{ - dir = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"dcp" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centermaint) -"ddl" = ( -/obj/item/cell/high, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"ddF" = ( -/obj/structure/prop/war/tgmc_missile/double, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"ddM" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"def" = ( -/obj/structure/table/woodentable, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"deE" = ( -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "boss" - }, -/obj/effect/floor_decal/industrial/warning/color/tile/red, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"dfr" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subcondo) -"dfD" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"dfJ" = ( -/obj/structure/table/woodentable, -/obj/item/paper/pamphlet, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"dgz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"dha" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"dhF" = ( -/obj/machinery/vending/tool{ - dir = 4; - emagged = 1; - pixel_x = 5; - req_access = list(777); - req_log_access = null - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"dhM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/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 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/center) -"dix" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"diK" = ( -/obj/machinery/gateway/centeraway{ - calibrated = 0 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/darkrp/sewers) -"djH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"djV" = ( -/obj/structure/mopbucket, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"dkc" = ( -/obj/structure/table/woodentable, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"dks" = ( -/obj/structure/table/hardwoodtable, -/obj/random/maintenance/morestuff, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"dkt" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "sewers1" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"dkL" = ( -/obj/machinery/light{ - layer = 3 - }, -/obj/structure/barricade/cutout/fluke, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"dlU" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"dml" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"dmz" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"dmM" = ( -/obj/item/stool/padded{ - dir = 8 - }, -/obj/effect/decal/remains/human, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"dmO" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"dnh" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"dnm" = ( -/obj/structure/table/standard, -/obj/random/maintenance/clean, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/ghettooffice) -"dof" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"doy" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"doL" = ( -/obj/machinery/power/port_gen/pacman/super, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/parkcondo) -"dqI" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/outside/ghetto) -"drq" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/darkrp/sewers) -"dsh" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkcondo) -"dsj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnels/suburbs) -"dsr" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/ghettobank) -"dsG" = ( -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"dtD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"dtJ" = ( -/obj/structure/bed/chair/oldsofa/left{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"dtT" = ( -/obj/item/clothing/accessory/stethoscope, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"dtY" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"dub" = ( -/turf/simulated/floor/water{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"duf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/vehicle/train/engine/quadbike, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"dux" = ( -/obj/item/material/shard/plastitaniumglass, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"duD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/mob/living/simple_mob/humanoid/merc/ranged/technician, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"dva" = ( -/obj/structure/fence/corner{ - dir = 4 - }, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"dvc" = ( -/obj/structure/table/woodentable, -/obj/item/clothing/head/collectable/pirate{ - pixel_x = 2; - pixel_y = -5 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"dvG" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "slab2" - }, -/area/awaymission/darkrp/outside/warehouses) -"dwh" = ( -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"dwz" = ( -/obj/structure/prop/rock/small, -/turf/simulated/floor/outdoors/dirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"dxt" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "amogus" - }, -/obj/item/reagent_containers/food/snacks/meatballspagetti, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"dxw" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/head/fishing, -/obj/structure/window/reinforced{ - health = 1e+006; - req_access = list(5) - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/downtowngunshop) -"dxI" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subcondo) -"dxM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnels/suburbs) -"dxN" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/plazashop) -"dyc" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazacoffee) -"dyj" = ( -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"dyI" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/orange, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"dyP" = ( -/obj/structure/table/steel_reinforced, -/obj/item/gun/projectile/shotgun/pump/rifle, -/obj/item/ammo_magazine/clip/c762, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/outside) -"dzj" = ( -/obj/structure/table/woodentable, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subcondo) -"dzm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"dzB" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/material/fishing_rod/modern/built, -/obj/machinery/door/window/southright{ - req_one_access = list(150) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/downtowngunshop) -"dzV" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/subhouse2) -"dAp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"dAR" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"dBw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 1 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"dCp" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"dCy" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/browndouble, -/obj/item/radio/subspace{ - pixel_y = 0; - pixel_x = 6 - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"dCN" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"dDr" = ( -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"dDN" = ( -/obj/machinery/light/small, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/subhouse1) -"dGv" = ( -/obj/effect/decal/cleanable/greenglow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"dHk" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/backline, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"dHH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"dHL" = ( -/obj/structure/sign/warning/lethal_turrets{ - name = "\improper SNIPER" - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/darkrp/sewers) -"dHX" = ( -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centermaint) -"dIS" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"dJj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"dJR" = ( -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"dKC" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"dKQ" = ( -/turf/simulated/wall, -/area/awaymission/darkrp/outside/ghetto) -"dKR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"dKX" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"dLu" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside) -"dLx" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/head/welding, -/obj/item/clothing/glasses/welding, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"dLB" = ( -/obj/structure/table/marble, -/obj/item/gun/projectile/automatic/serdy/m41ab, -/obj/item/ammo_magazine/m41, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/darkrp/sewers) -"dMa" = ( -/obj/structure/railing/grey{ - pixel_y = 0; - dir = 8 - }, -/obj/structure/bed/chair/sofa/bench/marble{ - pixel_y = 0; - dir = 4 - }, -/turf/simulated/floor/outdoors/lavaland/basalt, -/area/awaymission/darkrp/outside/plaza) -"dMe" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/wall/wood, -/area/awaymission/darkrp/subcondo) -"dNd" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/mineral/floor/ignore_mapgen/cave{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"dNE" = ( -/obj/machinery/button/remote/blast_door{ - id = "warehouse3"; - name = "Warehouse Shutters Button"; - pixel_x = -4; - dir = 4; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"dOh" = ( -/obj/structure/closet/secure_closet/freezer/kitchen{ - req_access = null - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/subhouse2) -"dQZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/tunnels/warehouse) -"dRd" = ( -/mob/living/carbon/human/ai_controlled/replicant{ - icon_state = "rune_teleport" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/ghetto) -"dRn" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"dRy" = ( -/obj/structure/table/hardwoodtable, -/obj/fiftyspawner/gold, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"dRL" = ( -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/centersidehouse) -"dSn" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/cell/high, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"dSp" = ( -/obj/item/flamethrower/full, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkmaint) -"dUh" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"dUl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"dUx" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/darkrp/tunnels/park) -"dUJ" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/humanoid/russian/ranged, -/obj/effect/floor_decal/milspec/color/red/half, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"dVl" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"dVw" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"dVN" = ( -/obj/structure/table/marble, -/obj/item/storage/box/donut{ - pixel_x = 3; - pixel_y = -4 - }, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_x = 6; - pixel_y = 2 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"dVV" = ( -/obj/effect/decal/cleanable/greenglow, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"dWQ" = ( -/turf/simulated/floor/carpet/oracarpet, -/area/awaymission/darkrp/plazahotel) -"dXz" = ( -/obj/machinery/door/window/eastright{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgas) -"dXW" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"dYl" = ( -/obj/effect/floor_decal/rust, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"dZL" = ( -/obj/structure/prop/rock/small, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"eaa" = ( -/obj/item/stool/padded{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"ebi" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green, -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/subhouse1) -"ebr" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"ebw" = ( -/obj/structure/table/woodentable, -/obj/random/maintenance/misc, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subcondo) -"ebV" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/downtownresturaunt) -"ecc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside/warehouses) -"ect" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/trash/plate, -/obj/item/material/kitchen/utensil/spork/plastic, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"edm" = ( -/obj/structure/fence/corner, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"edO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"ees" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/reagent_containers/food/snacks/waffles, -/obj/item/material/kitchen/utensil/fork/plastic, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"eeD" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"efK" = ( -/obj/random/trash, -/mob/living/simple_mob/mechanical/hivebot/precusor/laser, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"egt" = ( -/obj/machinery/button/remote/blast_door{ - id = "warehouse1"; - name = "Warehouse Shutters Button"; - pixel_x = -4; - dir = 4; - pixel_y = 27 - }, -/mob/living/simple_mob/humanoid/merc/melee/poi, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse1) -"egB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"egI" = ( -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"egP" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/action_figure{ - pixel_y = -3 - }, -/obj/item/glass_jar, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"egT" = ( -/obj/structure/reagent_dispensers/fueltank/barrel{ - anchored = 1 - }, -/turf/simulated/floor/outdoors/dirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"eht" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"ehz" = ( -/obj/structure/table/standard, -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/ghettooffice) -"eig" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"eij" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"eim" = ( -/turf/simulated/floor/lino, -/area/awaymission/darkrp/subhouse1) -"eiB" = ( -/obj/structure/table/woodentable, -/obj/item/storage/box/glasses/mug, -/obj/item/storage/box/glasses, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"eiD" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/vore/aggressive/deathclaw/den, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside) -"ejz" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"ejF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"eln" = ( -/turf/unsimulated/wall, -/area/awaymission/darkrp/sewers) -"elB" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/cigarettes, -/obj/random/cigarettes, -/obj/random/cigarettes, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgas) -"elS" = ( -/obj/structure/fence/corner{ - dir = 4 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"emz" = ( -/turf/simulated/wall, -/area/awaymission/darkrp/ghettoeats) -"emO" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/ghettobank) -"enX" = ( -/obj/machinery/light{ - dir = 1 - }, -/mob/living/simple_mob/humanoid/merc/melee, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"eov" = ( -/mob/living/simple_mob/animal/giant_spider, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"eow" = ( -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"eoX" = ( -/obj/structure/table/bench/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"eqa" = ( -/obj/machinery/button/remote/blast_door{ - id = "bank"; - name = "Shutters Button"; - pixel_x = 1; - dir = 4; - pixel_y = 24; - req_one_access = list(150) - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"eql" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"eqI" = ( -/mob/living/simple_mob/humanoid/cultist/human/bloodjaunt, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"eqV" = ( -/obj/item/gun/energy/taser, -/turf/simulated/floor/tiled/dark, -/area/awaymission/darkrp/lockdown1) -"erz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/grenade/confetti/party_ball, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"erS" = ( -/obj/item/trash/plate, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"esi" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/paper/crumpled{ - pixel_y = -3; - pixel_x = -4 - }, -/obj/item/reagent_containers/food/condiment/cornoil{ - pixel_y = 0; - pixel_x = 5 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"esL" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/subhouse1) -"etv" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"eug" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/random/grenade/lethal, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"euV" = ( -/obj/effect/map_effect/radiation_emitter/strong{ - radiation_power = 350 - }, -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"evh" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/rack/shelf/steel, -/obj/random/cigarettes, -/obj/random/cigarettes, -/obj/random/cigarettes, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgas) -"evw" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"evH" = ( -/obj/item/clothing/mask/gas/plaguedoctor, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownpharmacy) -"ewc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/mob/living/simple_mob/mechanical/hivebot/precusor/machinegun, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"eyg" = ( -/obj/machinery/light{ - layer = 3 - }, -/obj/structure/closet/crate, -/obj/item/storage/box/syndie_kit/combat_armor, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"eyh" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"eyi" = ( -/obj/machinery/button/remote/blast_door{ - id = "bank"; - name = "Shutters Button"; - pixel_x = 1; - dir = 4; - pixel_y = -25 - }, -/obj/structure/table/standard, -/obj/item/spacecash, -/obj/item/spacecash, -/obj/item/spacecash, -/obj/item/spacecash, -/obj/item/spacecash, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"eyk" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"eyC" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"eyX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/confetti, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"ezg" = ( -/obj/structure/table/standard, -/obj/random/contraband, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"ezr" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"ezY" = ( -/obj/structure/bed/chair/oldsofa{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"eAf" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"eAP" = ( -/mob/living/carbon/human/ai_controlled/greytide{ - icon_state = "rune_teleport" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/awaymission/darkrp/plazawarehouse) -"eAY" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/outdoors/dirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"eBf" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"eCo" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/downtowngunshop) -"eCG" = ( -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"eDq" = ( -/obj/item/flame/candle, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/outside) -"eEf" = ( -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"eEr" = ( -/turf/simulated/wall, -/area/awaymission/darkrp/outside/warehouses) -"eEv" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/vehicle/train/engine{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"eEV" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"eFx" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"eGZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"eHl" = ( -/obj/machinery/light{ - dir = 8 - }, -/mob/living/simple_mob/humanoid/cultist/initiate, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"eIb" = ( -/obj/structure/railing/grey{ - pixel_y = 0; - dir = 8 - }, -/obj/structure/bed/chair/sofa/bench/marble{ - pixel_y = 0; - dir = 4 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"eIW" = ( -/obj/structure/table/standard, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"eIZ" = ( -/obj/item/modular_computer/console/preset/civilian{ - pixel_y = 0; - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"eJw" = ( -/mob/living/carbon/human/ai_controlled/greytide{ - icon_state = "rune_teleport" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"eJA" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkmaint) -"eKo" = ( -/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"eKw" = ( -/obj/structure/fence/door{ - dir = 8 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"eKN" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/subhouse2) -"eKV" = ( -/obj/item/stack/material/uranium, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"eLy" = ( -/obj/structure/simple_door/wood, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/downtownresturaunt) -"eLL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnels/suburbs) -"eNs" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/machinery/door/window/brigdoor/westleft{ - name = "PD Armory"; - req_access = list(860) - }, -/obj/item/ammo_magazine/m41, -/obj/item/ammo_magazine/m41, -/obj/item/ammo_magazine/m41, -/obj/item/ammo_magazine/m41, -/obj/item/ammo_magazine/m41, -/obj/item/ammo_magazine/m41, -/obj/item/ammo_magazine/m41, -/obj/item/ammo_magazine/m41, -/obj/item/ammo_magazine/m16, -/obj/item/ammo_magazine/m16, -/obj/item/ammo_magazine/m16, -/obj/item/ammo_magazine/m16, -/obj/item/ammo_magazine/m16, -/obj/item/ammo_magazine/m16, -/obj/item/ammo_magazine/m16, -/obj/item/ammo_magazine/m16, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"eNv" = ( -/obj/structure/fence/end{ - dir = 1 - }, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"eOy" = ( -/obj/item/multitool, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/parkcondo) -"ePh" = ( -/obj/item/clothing/head/radiation, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"ePk" = ( -/mob/living/simple_mob/humanoid/merc/ranged/grenadier, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"ePr" = ( -/turf/simulated/floor/plating, -/area/awaymission/darkrp/parkcondo) -"ePY" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_containers/food/drinks/bottle/milk, -/obj/item/reagent_containers/food/drinks/bottle/milk, -/obj/item/reagent_containers/food/drinks/bottle/milk, -/obj/item/reagent_containers/food/drinks/soymilk, -/obj/item/reagent_containers/food/drinks/soymilk, -/obj/item/reagent_containers/food/drinks/soymilk, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgas) -"eQm" = ( -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"eQH" = ( -/mob/living/simple_mob/animal/giant_spider, -/turf/simulated/floor/water/indoors, -/area/awaymission/darkrp/sewers) -"eQP" = ( -/mob/living/simple_mob/humanoid/merc/ranged/rifle/mag, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"eRj" = ( -/obj/machinery/chemical_dispenser/bar_coffee/full{ - dir = 1; - pixel_y = -2 - }, -/obj/structure/table/marble, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"eRt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"eRP" = ( -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/sewers) -"eSb" = ( -/obj/item/trash/plate, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"eSH" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/cargo, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"eSN" = ( -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/tunnels/plaza) -"eUj" = ( -/mob/living/simple_mob/humanoid/cultist/lizard, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"eUo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/northright{ - req_access = null - }, -/obj/structure/window/reinforced{ - health = 1e+006; - req_access = list(5) - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/ears/earring/dangle/gold, -/obj/item/clothing/gloves/ring/material/diamond, -/obj/item/instrument/violin/golden, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"eUB" = ( -/obj/item/paper_bin, -/obj/item/pen/blue{ - pixel_x = -6 - }, -/obj/item/pen/red{ - pixel_x = 6 - }, -/obj/item/pen, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"eUT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/material/shard{ - pixel_x = 6 - }, -/obj/item/clothing/gloves/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"eVd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"eVu" = ( -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"eVR" = ( -/obj/structure/table/steel, -/obj/machinery/recharger, -/obj/item/clothing/suit/armor/material/makeshift, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"eVV" = ( -/mob/living/simple_mob/animal/giant_spider/tunneler, -/turf/simulated/floor/outdoors/mud{ - outdoors = -1; - temperature = 293.15 - }, -/area/awaymission/darkrp/sewers) -"eVY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/center) -"eWp" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/firstaid/experimental, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"eWw" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood{ - pixel_y = 2; - pixel_x = -33 - }, -/obj/effect/decal/cleanable/blood{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/blood, -/obj/random/meat, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"eXh" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"eYq" = ( -/mob/living/simple_mob/humanoid/merc/voxpirate/pirate, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"eZa" = ( -/obj/machinery/light/small/flicker{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"eZM" = ( -/obj/machinery/appliance/cooker/oven, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/subhouse2) -"eZS" = ( -/turf/simulated/floor/lava/harmless, -/area/awaymission/darkrp/outside/ghetto) -"eZU" = ( -/obj/structure/railing, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"fai" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"fav" = ( -/obj/structure/table/steel_reinforced, -/obj/item/ammo_casing/a145{ - pixel_y = 5; - pixel_x = 5 - }, -/obj/item/ammo_casing/a145{ - pixel_y = -4; - pixel_x = -4; - dir = 1 - }, -/obj/item/ammo_casing/a145{ - pixel_y = 4; - pixel_x = -4; - dir = 2 - }, -/obj/item/ammo_casing/a145{ - pixel_y = 3; - pixel_x = 4; - dir = 8 - }, -/obj/item/ammo_casing/a145{ - pixel_y = -1; - pixel_x = 5; - dir = 2 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/darkrp/reference) -"faO" = ( -/obj/random/outcrop, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"fbv" = ( -/obj/structure/bed/chair/sofa/right/brown{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"fbF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"fbP" = ( -/obj/random/humanoidremains, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/center) -"fcQ" = ( -/mob/living/simple_mob/humanoid/cultist/caster, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"fcX" = ( -/obj/machinery/light{ - dir = 2 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/outdoors/lavaland/basalt, -/area/awaymission/darkrp/reference) -"fdo" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/humanoid/merc/ranged/technician, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnels/suburbs) -"fdO" = ( -/obj/structure/table/reinforced, -/obj/item/material/fishing_net, -/obj/item/material/fishing_net, -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"fdX" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/parkcondo) -"fec" = ( -/obj/structure/table/steel_reinforced, -/obj/item/ammo_casing/a145{ - pixel_y = 5; - pixel_x = 5 - }, -/obj/item/ammo_casing/a145{ - pixel_y = -4; - pixel_x = -4; - dir = 1 - }, -/obj/item/ammo_casing/a145{ - pixel_y = 4; - pixel_x = -4; - dir = 2 - }, -/obj/item/ammo_casing/a145{ - pixel_y = 3; - pixel_x = 4; - dir = 8 - }, -/obj/item/ammo_casing/a145{ - pixel_y = -1; - pixel_x = 5; - dir = 2 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/darkrp/reference) -"fee" = ( -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"fek" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/marble, -/obj/machinery/microwave{ - pixel_y = 3; - pixel_x = 2 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"feQ" = ( -/obj/machinery/light{ - layer = 3 - }, -/obj/structure/table/steel, -/obj/random/toolbox, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"ffj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/autolathe{ - hacked = 1; - name = "hacked autolathe" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"ffo" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/ghettooffice) -"ffB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"ffI" = ( -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"fgO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"fgS" = ( -/obj/structure/flora/pottedplant/fern, -/obj/effect/floor_decal/carpet, -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/plazashop) -"fgV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"fht" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gib2_flesh" - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"fhV" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subhouse2) -"fiP" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/reagent_containers/chem_disp_cartridge/silicon, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"fjR" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/carpet/oracarpet, -/area/awaymission/darkrp/plazahotel) -"fkq" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/ghetto) -"fkO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"flh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgas) -"flj" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subapartments) -"flB" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/gun/projectile/automatic/serdy/type901, -/obj/item/gun/projectile/automatic/serdy/type901, -/obj/item/ammo_magazine/type901, -/obj/item/ammo_magazine/type901, -/obj/item/ammo_magazine/type901, -/obj/item/ammo_magazine/type901, -/obj/item/ammo_magazine/type901, -/obj/item/ammo_magazine/type901, -/obj/item/ammo_magazine/type901, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"flL" = ( -/obj/item/storage/firstaid/regular, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/outside) -"fmr" = ( -/obj/structure/window/plastitanium/full, -/obj/structure/window/reinforced/survival_pod{ - dir = 4 - }, -/obj/structure/window/reinforced/survival_pod{ - dir = 1 - }, -/obj/structure/window/reinforced/survival_pod, -/obj/structure/grille/rustic{ - health = 25; - name = "reinforced grille" - }, -/obj/machinery/door/blast/regular/open{ - id = "stargazer_blast"; - name = "window blast shield" - }, -/turf/simulated/shuttle/plating, -/area/awaymission/darkrp/sewers) -"fnK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subhouse2) -"foA" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"fpu" = ( -/obj/machinery/light/small/flicker, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"fpz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"fqB" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"fqC" = ( -/obj/random/pottedplant, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/subhouse2) -"fsR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"ftb" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/subhouse1) -"ftc" = ( -/obj/structure/table/woodentable, -/obj/random/cigarettes, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"ftl" = ( -/obj/random/obstruction, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 4 - }, -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/darkrp/ghettoapartments) -"ftA" = ( -/obj/structure/table/gamblingtable, -/obj/item/ammo_magazine/m12gdrumjack/pellet, -/obj/item/ammo_magazine/m12gdrumjack/pellet, -/obj/item/ammo_magazine/m12gdrumjack/pellet, -/obj/item/ammo_magazine/m12gdrumjack/pellet, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"fug" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"fxa" = ( -/obj/item/stool{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"fxx" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"fxF" = ( -/obj/item/moneybag, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"fxL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/landmark/corpse/scientist, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"fxW" = ( -/mob/living/simple_mob/humanoid/merc/ranged/rifle, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"fyi" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/microwave, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"fyu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"fyy" = ( -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"fyF" = ( -/obj/structure/table/marble, -/obj/item/storage/firstaid/combat, -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/darkrp/sewers) -"fzC" = ( -/obj/machinery/vending/wallmed1{ - dir = 4; - pixel_x = -23 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/ghettooffice) -"fAl" = ( -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/outside/ghetto) -"fAx" = ( -/obj/structure/table/woodentable, -/obj/machinery/light/small, -/obj/machinery/microwave{ - pixel_y = -3; - pixel_x = 2 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subcondo) -"fAK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"fAY" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/humanoid/merc/ranged/garand, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"fDb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"fDD" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/subhouse2) -"fEs" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/basic, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/tunnels/plaza) -"fES" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/box/syringes, -/obj/item/storage/box/syringes, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"fEV" = ( -/obj/effect/map_effect/radiation_emitter, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"fFx" = ( -/obj/structure/dogbed, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"fFH" = ( -/turf/simulated/wall/thull, -/area/awaymission/darkrp/sewers) -"fGO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"fHt" = ( -/obj/effect/map_effect/portal/line/side_b, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"fHH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"fHJ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"fHX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/ghetto) -"fIz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/random/cash, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"fIM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"fIP" = ( -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"fJv" = ( -/obj/item/gun/projectile/automatic/serdy/hunter, -/obj/item/ammo_magazine/m762svd, -/obj/item/ammo_magazine/m762svd, -/obj/item/ammo_magazine/m762svd, -/obj/item/ammo_magazine/m762svd, -/obj/structure/table/rack/shelf, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"fJy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash, -/mob/living/simple_mob/vore/aggressive/deathclaw/den, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside) -"fJV" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/ammo_magazine/m12gdrumjack/pellet, -/obj/item/ammo_magazine/m12gdrumjack/pellet, -/obj/item/ammo_magazine/m12gdrumjack/pellet, -/obj/item/ammo_magazine/m12gdrumjack/pellet, -/obj/item/ammo_magazine/m12gdrumjack/pellet, -/obj/item/ammo_magazine/m12gdrumjack/pellet, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"fLS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/wall/solidrock, -/area/awaymission/darkrp/outside/plaza) -"fMI" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"fNq" = ( -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"fOb" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/darkrp/outside) -"fOO" = ( -/obj/structure/bed/chair/sofa/left/lime, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"fOU" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/obj/structure/curtain/medical, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"fOY" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/item/material/shard/shrapnel{ - icon_state = "splinterslarge" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"fPS" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subapartments) -"fQr" = ( -/obj/structure/table/standard, -/obj/item/ticket_printer, -/obj/item/clothing/suit/armor/pcarrier/light, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/toll) -"fRa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/plazashop) -"fRx" = ( -/obj/structure/sign/flag/pirate, -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/plazacoffee) -"fSN" = ( -/obj/random/junk, -/mob/living/simple_mob/animal/giant_spider, -/turf/simulated/floor/outdoors/mud{ - outdoors = -1; - temperature = 293.15 - }, -/area/awaymission/darkrp/sewers) -"fTb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"fTh" = ( -/obj/structure/flora/grass/green, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/outside) -"fTi" = ( -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"fTB" = ( -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"fUH" = ( -/obj/structure/table/gamblingtable, -/obj/item/material/ashtray/glass, -/obj/item/card/emag, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"fVa" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/ghettobank) -"fVV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"fWI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"fYf" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/trash/plate, -/obj/item/material/kitchen/utensil/foon/plastic, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"fYO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"fYS" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - health = 1e+006; - req_access = list(5) - }, -/obj/item/gun/projectile/automatic/serdy/m41ab{ - pixel_x = -13 - }, -/obj/item/gun/projectile/automatic/serdy/m41ab{ - pixel_x = -13 - }, -/obj/machinery/door/window/brigdoor/westright{ - name = "PD Armory"; - req_access = list(860) - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"fYW" = ( -/obj/structure/prop/poicanister, -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"fZQ" = ( -/turf/simulated/floor/lava, -/area/awaymission/darkrp/outside/suburbs) -"gae" = ( -/obj/item/reagent_containers/syringe/ld50_syringe/choral{ - pixel_y = 8 - }, -/obj/structure/table/steel_reinforced, -/obj/item/storage/secure/safe{ - pixel_x = 5; - pixel_y = -26 - }, -/obj/item/reagent_containers/syringe/ld50_syringe/choral, -/obj/item/reagent_containers/syringe/ld50_syringe/choral{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"gaJ" = ( -/obj/structure/salvageable/implant_container_os, -/obj/item/spacecash/c10, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"gbs" = ( -/mob/living/simple_mob/humanoid/russian/ranged, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"gcl" = ( -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/subhouse1) -"gcI" = ( -/obj/machinery/power/quantumpad, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/parkcondo) -"gcJ" = ( -/obj/random/trash, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"gdn" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"gdt" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside) -"gdG" = ( -/obj/effect/decal/cleanable/greenglow, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 2 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"ged" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/warehouses) -"gfC" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"gfM" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"gfX" = ( -/obj/structure/table/reinforced, -/obj/structure/table/reinforced, -/obj/machinery/cash_register/civilian{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgas) -"ggg" = ( -/obj/random/trash, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"ghe" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"ghq" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/darkrp/outside/plaza) -"ghQ" = ( -/obj/structure/table/standard, -/obj/random/toolbox, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"ghX" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/contraband, -/obj/random/maintenance/clean, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"git" = ( -/obj/machinery/door/blast/shutters{ - id = "warehouse2"; - name = "Warehouse Garage Door"; - dir = 2 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"giX" = ( -/obj/structure/table/steel_reinforced, -/obj/item/modular_computer/laptop/preset/custom_loadout/cheap, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"giZ" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/light/small{ - dir = 8 - }, -/mob/living/simple_mob/humanoid/merc/voxpirate/boarder, -/obj/item/gun/projectile/shotgun/doublebarrel/pellet, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkcondo) -"gjd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"gki" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"gkk" = ( -/obj/item/stock_parts/gear, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"gku" = ( -/mob/living/simple_mob/humanoid/pirate/machete, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"gld" = ( -/obj/structure/table/hardwoodtable, -/obj/random/drinkbottle, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"glj" = ( -/obj/item/tool/screwdriver/brass, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"gml" = ( -/turf/simulated/floor/wood, -/area/awaymission/darkrp/outside) -"gmD" = ( -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"gmH" = ( -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"gmZ" = ( -/obj/machinery/button/remote/blast_door{ - id = "spawnwarehouse"; - name = "Shutters Button"; - pixel_x = 1; - dir = 4; - pixel_y = -25 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"gnx" = ( -/turf/simulated/floor/wood/broken, -/area/awaymission/darkrp/brokehouse) -"gnI" = ( -/obj/item/storage/pill_bottle/hyronalin, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"gnQ" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"gog" = ( -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/obj/item/stack/material/iron, -/obj/item/clothing/suit/armor/material/makeshift/glass, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"goo" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"gou" = ( -/obj/item/storage/secure/safe{ - pixel_y = 0; - pixel_x = 34 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"goO" = ( -/obj/item/material/shard, -/obj/item/ammo_magazine/ak74/ap, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"gpj" = ( -/obj/item/material/shard, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"gpP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/remote/blast_door{ - id = "spawnwarehouse"; - name = "Shutters Button"; - pixel_x = 1; - dir = 4; - pixel_y = 25 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"gqa" = ( -/obj/machinery/door/blast/gate{ - id = "jailrp" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"gqf" = ( -/obj/machinery/computer/security/telescreen/entertainment, -/turf/simulated/wall/wood, -/area/awaymission/darkrp/brokehouse) -"gqu" = ( -/obj/machinery/light/floortube, -/obj/structure/sink{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/downtownwarehouse) -"grz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/random/plushielarge, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"grL" = ( -/obj/item/tool/crowbar/brass, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"gse" = ( -/obj/random/firstaid, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"gth" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/sewers) -"gtW" = ( -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnels/park) -"gul" = ( -/obj/structure/prop/war/warhead1, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"gva" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"gvC" = ( -/obj/machinery/light/small, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkcondo) -"gvG" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/mineral/floor/ignore_mapgen/cave{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"gwc" = ( -/obj/machinery/appliance/cooker/oven, -/obj/item/reagent_containers/food/snacks/spagetti, -/obj/item/reagent_containers/food/snacks/spagetti, -/turf/simulated/floor/reinforced, -/area/awaymission/darkrp/ghettosouthwarehouse) -"gwZ" = ( -/obj/machinery/light/floortube{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"gxk" = ( -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/sewers) -"gxv" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/floor_light{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"gxH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"gxO" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/outdoors/lavaland/basalt, -/area/awaymission/darkrp/outside/plaza) -"gyh" = ( -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"gyJ" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/shoes/boots/marine, -/obj/item/clothing/shoes/boots/marine, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"gzl" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/cosmos, -/turf/simulated/floor/carpet/oracarpet, -/area/awaymission/darkrp/plazahotel) -"gzs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/material/steel{ - amount = 14 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"gzQ" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"gAn" = ( -/obj/structure/simple_door/wood, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"gAq" = ( -/obj/machinery/power/rtg/advanced, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"gAv" = ( -/obj/structure/table/marble, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/subhouse2) -"gAK" = ( -/obj/machinery/light/small, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subcondo) -"gAS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"gBn" = ( -/obj/machinery/light/small, -/turf/simulated/floor/outdoors/mud{ - outdoors = -1; - temperature = 293.15 - }, -/area/awaymission/darkrp/sewers) -"gBo" = ( -/obj/item/bone/leg, -/turf/simulated/shuttle/floor/voidcraft, -/area/awaymission/darkrp/sewers) -"gBz" = ( -/obj/machinery/door/blast/shutters{ - id = "garhouse"; - name = "Garage Door"; - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"gDe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"gDM" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"gFz" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/humanoid/cultist/human/bloodjaunt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"gGe" = ( -/obj/structure/table/steel_reinforced, -/obj/item/autopsy_scanner, -/obj/item/surgical/bioregen, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/downtownwarehouse) -"gGu" = ( -/obj/structure/closet/jcloset, -/obj/item/soap/nanotrasen, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"gGz" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"gGJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/confetti, -/obj/item/grenade/confetti/party_ball, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"gGT" = ( -/obj/machinery/button/remote/blast_door{ - id = "toll2"; - name = "Toll Booth Gates"; - pixel_x = -4; - dir = 4; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/toll) -"gId" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/darkrp/ghettohouse1) -"gIj" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"gIl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"gIF" = ( -/obj/effect/floor_decal/carpet, -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/plazashop) -"gJg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"gJj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"gKn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/oldsofa/left{ - dir = 8 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"gKO" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"gLF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/smallbould, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"gLG" = ( -/obj/effect/landmark/corpse/random_civ, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"gMc" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp/green{ - pixel_y = 2 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"gMC" = ( -/obj/structure/bed/chair/sofa/left/black, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"gNh" = ( -/obj/structure/prop/rock, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"gNw" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"gNR" = ( -/obj/machinery/light{ - dir = 1 - }, -/mob/living/simple_mob/animal/giant_spider, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"gPh" = ( -/obj/item/flame/candle/everburn, -/obj/structure/flora/grass/green, -/turf/simulated/mineral/floor/ignore_mapgen/cave{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"gQq" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"gRa" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -24 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/plazahotel) -"gTd" = ( -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse1) -"gTh" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/subhouse1) -"gTD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/rack/shelf, -/obj/random/medical, -/obj/random/medical/pillbottle, -/obj/random/medical/pillbottle, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownpharmacy) -"gTK" = ( -/obj/structure/table/gamblingtable, -/obj/item/spacecasinocash{ - pixel_y = 2 - }, -/obj/item/spacecasinocash{ - pixel_y = -10 - }, -/obj/item/spacecasinocash{ - pixel_y = -7 - }, -/obj/item/spacecasinocash{ - pixel_y = -4 - }, -/obj/item/spacecasinocash{ - pixel_y = -1 - }, -/obj/item/gun/projectile/revolver, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"gUw" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"gUA" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"gUE" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/base) -"gUH" = ( -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"gUX" = ( -/mob/living/simple_mob/humanoid/russian/ranged, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"gVR" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"gVZ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"gWn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"gWE" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"gWX" = ( -/obj/structure/bed/chair/sofa/right/purp, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"gXj" = ( -/obj/machinery/gateway{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/darkrp/sewers) -"gXY" = ( -/obj/structure/table/steel_reinforced, -/obj/item/melee/classic_baton, -/obj/item/gun/energy/taser, -/obj/item/gun/energy/taser, -/obj/machinery/recharger, -/obj/item/clothing/suit/armor/swat, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"gYl" = ( -/obj/structure/table/bench/wooden, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"gYx" = ( -/obj/structure/reagent_dispensers/fueltank/barrel{ - anchored = 1 - }, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"gYW" = ( -/mob/living/simple_mob/humanoid/cultist/human/bloodjaunt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazarecroom) -"gYZ" = ( -/obj/effect/decal/cleanable/greenglow, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"gZl" = ( -/obj/effect/decal/remains/human, -/turf/simulated/floor/outdoors/dirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"hat" = ( -/obj/random/vendordrink, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"haW" = ( -/obj/structure/closet/secure_closet/freezer/fridge{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"hbo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"hbI" = ( -/mob/living/simple_mob/mechanical/hivebot/precusor/lobber, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"hcE" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"hcT" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subapartments) -"hcY" = ( -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/outside/plaza) -"hdf" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/outside/warehouses) -"hdn" = ( -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"heC" = ( -/obj/item/trash/plate, -/obj/structure/table/marble, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"heN" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/marble, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_containers/food/condiment/enzyme, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"heR" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/light{ - layer = 3 - }, -/obj/item/stack/material/marble, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"hfH" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/landmark/loot_spawn, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"hfM" = ( -/obj/structure/table/steel, -/obj/random/toolbox, -/obj/item/cell/hyper, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"hix" = ( -/obj/structure/flora/pottedplant/large, -/mob/living/simple_mob/mechanical/hivebot, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"hiE" = ( -/obj/item/stock_parts/gear, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"hjb" = ( -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"hjE" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownwarehouse) -"hkk" = ( -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"hkE" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/light/floortube{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"hkX" = ( -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/ghettobank) -"hlh" = ( -/obj/machinery/porta_turret/stationary/syndie/CIWS, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/center) -"hls" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/backline, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"hly" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"hlz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"hlG" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/effect/decal/remains, -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/plazahotel) -"hmm" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"hmw" = ( -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"hmB" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/ghettooffice) -"hmM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"hnM" = ( -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/plazashop) -"hnZ" = ( -/obj/item/mop, -/obj/structure/mopbucket, -/obj/random/soap, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"hpN" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/mob/living/simple_mob/vore/alienanimals/skeleton/alt, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"hpY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/rtg/advanced, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"hqn" = ( -/obj/effect/map_effect/portal/master/side_a{ - dir = 8; - portal_id = "Ghousething" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"hqJ" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/parkghetto1) -"hrl" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"hrq" = ( -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "metroid_gib1" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"hrB" = ( -/obj/structure/flora/pottedplant/overgrown, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"hrI" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"hrO" = ( -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/darkrp/tunnels/suburbs) -"hsr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/war/tgmc_missile/banshee, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"htu" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/ghettobank) -"hua" = ( -/obj/structure/table/rack/shelf, -/obj/random/soap, -/obj/item/towel/random, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/plazahotel) -"hve" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside/warehouses) -"hvA" = ( -/obj/machinery/autolathe{ - hacked = 1; - name = "hacked autolathe" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"hwd" = ( -/obj/structure/table/rack/shelf, -/obj/item/gun/projectile/revolver/nagant, -/obj/item/gun/projectile/revolver/nagant, -/obj/item/silencer, -/obj/item/silencer, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"hwj" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/darkrp/outside) -"hwt" = ( -/obj/structure/closet/crate/trashcart, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/obj/item/gun/projectile/silenced, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"hwS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"hxs" = ( -/obj/random/obstruction, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/tunnels/suburbs) -"hxz" = ( -/obj/random/trash, -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/firstaid/combat, -/obj/item/storage/firstaid/adv, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"hyk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"hyV" = ( -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"hzP" = ( -/obj/structure/table/hardwoodtable, -/obj/fiftyspawner/silver, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"hAn" = ( -/obj/machinery/door/window/eastright{ - name = "Cryogenics" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"hAO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"hAU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/gun/launcher/confetti_cannon/overdrive, -/obj/item/grenade/confetti/party_ball, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"hAW" = ( -/obj/structure/bed/chair/sofa/brown{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"hCh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"hCJ" = ( -/obj/structure/table/rack, -/obj/structure/curtain/open/bed, -/obj/item/material/knife/machete/deluxe, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"hDi" = ( -/obj/effect/decal/remains, -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gib1_flesh" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/darkrp/lockdown1) -"hDu" = ( -/obj/effect/floor_decal/milspec/color/red/half, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"hDU" = ( -/obj/effect/decal/cleanable/blood/tracks{ - color = "red"; - desc = "Your instincts say you shouldn't be following these."; - dir = 5; - icon = 'icons/effects/blood.dmi'; - icon_state = "tracks" - }, -/turf/simulated/floor/carpet/blue, -/area/awaymission/darkrp/plazahotel) -"hEE" = ( -/obj/structure/railing/grey{ - pixel_y = 0; - dir = 4 - }, -/obj/structure/prop/statue/pillar, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/outside/plaza) -"hFp" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/machinery/door/blast/regular{ - id = "bank" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"hFq" = ( -/obj/structure/showcase/sign{ - name = "CITY LIMITS CLOSED DUE TO PIRACY"; - desc = "This appears to be a sign warning people that the city is closed due to a takeover of various different anomalies and pirates" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"hFC" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"hGj" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "amogus" - }, -/turf/simulated/floor/reinforced, -/area/awaymission/darkrp/ghettosouthwarehouse) -"hGz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"hHf" = ( -/obj/machinery/optable, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"hIM" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"hLv" = ( -/obj/structure/fence/door, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"hLP" = ( -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/ghettooffice) -"hMj" = ( -/obj/structure/table/standard, -/obj/item/glass_jar{ - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"hMI" = ( -/obj/machinery/button/remote/blast_door{ - id = "centralbuilding1"; - name = "Shutters Button"; - pixel_x = 1; - dir = 4; - pixel_y = 24 - }, -/obj/structure/table/standard, -/obj/random/maintenance/cargo, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"hMO" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/structure/bed/roller, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"hMZ" = ( -/obj/machinery/light{ - layer = 3 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkmaint) -"hNl" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"hNp" = ( -/obj/random/crate, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"hOm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood/broken, -/area/awaymission/darkrp/brokehouse) -"hOs" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazacoffee) -"hOF" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"hPm" = ( -/obj/effect/landmark/gateway_scatter, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"hPr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"hPC" = ( -/obj/structure/bed/chair/backed_red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"hPI" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"hPP" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/item/storage/firstaid, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"hQS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/center) -"hRB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"hRE" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/outside/plaza) -"hRH" = ( -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "mfloor6" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"hRU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"hSv" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/westleft{ - name = "PD Armory"; - req_access = list(860) - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - health = 1e+006; - req_access = list(5) - }, -/obj/item/gun/projectile/shotgun/pump/combat, -/obj/item/gun/projectile/shotgun/pump/combat, -/obj/item/gun/projectile/shotgun/pump/combat, -/obj/item/gun/projectile/shotgun/pump/combat, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"hTl" = ( -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gibdown1_flesh" - }, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"hUq" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"hUK" = ( -/obj/structure/table/steel, -/obj/random/tool/powermaint, -/obj/item/tool/crowbar/cyborg, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"hVz" = ( -/obj/structure/reagent_dispensers/fueltank/barrel/two, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/warehouses) -"hWt" = ( -/obj/structure/cliff/automatic{ - dir = 8 - }, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"hWH" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"hWL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"hWT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"hXd" = ( -/obj/machinery/body_scanconsole, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"hXn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazacoffee) -"hXB" = ( -/obj/structure/girder, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"hYc" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/carbon/human/ai_controlled/replicant{ - icon_state = "rune_teleport" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/ghetto) -"hYi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"hYo" = ( -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"hZl" = ( -/obj/item/pickaxe/one_pick, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"hZt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"hZV" = ( -/obj/machinery/button/remote/blast_door{ - id = "gunshop"; - name = "Shutters Button"; - pixel_x = -26 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"ial" = ( -/obj/item/bone/skull, -/obj/effect/decal/cleanable/blood, -/turf/simulated/shuttle/floor/voidcraft, -/area/awaymission/darkrp/sewers) -"iaL" = ( -/obj/machinery/light{ - layer = 3 - }, -/obj/effect/floor_decal/rust, -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"iaN" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"ibg" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/outside) -"ibm" = ( -/obj/structure/table/standard, -/obj/item/newspaper, -/obj/item/newspaper, -/obj/item/newspaper, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"ibO" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/ghettobank) -"icH" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/blast/shutters{ - id = "bank"; - name = "Security Shutter"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"idw" = ( -/obj/structure/flora/tree/jungle, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"idU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"ieW" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"ifv" = ( -/obj/machinery/door/blast/regular{ - id = "bank" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"ifB" = ( -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"ifV" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"igh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"igC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"igP" = ( -/obj/structure/table/woodentable, -/obj/item/modular_computer/laptop/preset/custom_loadout/elite, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"igX" = ( -/obj/structure/girder, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"ihb" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1; - overlay_color = "#a12a22" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/reference) -"ihj" = ( -/obj/structure/table/steel_reinforced, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"ihq" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -24 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/plazahotel) -"ihz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/mob/living/simple_mob/humanoid/pirate/machete/armored, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/subhouse1) -"iiB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"ijg" = ( -/mob/living/simple_mob/humanoid/pirate/armored, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"ijh" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"ijk" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/darkrp/tunnels/suburbs) -"ijp" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/shuttle/floor/voidcraft, -/area/awaymission/darkrp/sewers) -"ijK" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/rack/shelf, -/obj/item/towel/random, -/obj/item/towel/random, -/obj/random/soap, -/obj/random/soap, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/centersidehouse) -"ikY" = ( -/obj/machinery/door/blast/shutters{ - id = "warehouse3"; - name = "Warehouse Garage Door"; - dir = 2 - }, -/obj/machinery/door/blast/shutters{ - id = "warehouse3"; - name = "Warehouse Garage Door"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"ilv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"ilP" = ( -/obj/structure/table/standard, -/obj/item/clothing/head/sombrero{ - pixel_y = 7 - }, -/obj/item/reagent_containers/food/snacks/taco, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/toll) -"imn" = ( -/obj/machinery/door/blast/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/darkrp/sewers) -"imv" = ( -/obj/item/clothing/suit/space/void/hev, -/obj/item/clothing/head/helmet/space/void/hev, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/outside) -"imR" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"ipr" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/fancy/cigar/cohiba, -/obj/item/storage/fancy/cigar/cohiba, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgas) -"irJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"irW" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/humanoid/merc/melee, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"isp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"isq" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/rapid, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"ist" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"itm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"iui" = ( -/turf/simulated/floor/tiled/dark, -/area/awaymission/darkrp/lockdown1) -"iuu" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"iuv" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"iuA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/remote/blast_door{ - id = "centralbuilding3"; - name = "Shutters Button"; - pixel_x = 1; - dir = 8; - pixel_y = 25 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"iuG" = ( -/obj/structure/bed/chair/wood{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/outside) -"iuW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"ivt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/door/window/brigdoor/westleft{ - req_access = list(860) - }, -/obj/machinery/door/window/brigdoor/eastright{ - req_access = list(860) - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"ixp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"ixI" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/engineering, -/obj/random/maintenance/morestuff, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"ixT" = ( -/obj/item/reagent_containers/syringe/drugs, -/turf/simulated/mineral/floor/ignore_mapgen/cave{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"iyn" = ( -/mob/living/simple_mob/humanoid/merc/melee/poi, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse1) -"iyR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/mob/living/simple_mob/humanoid/merc/ranged/rifle/poi, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"iyY" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/subhouse1) -"izd" = ( -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"izs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"izZ" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "amogus" - }, -/obj/structure/plasticflaps, -/turf/simulated/floor/reinforced, -/area/awaymission/darkrp/ghettosouthwarehouse) -"iBd" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/subhouse1) -"iBs" = ( -/obj/structure/reagent_dispensers/fueltank/high, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"iCk" = ( -/obj/machinery/light/floortube{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"iCt" = ( -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"iDv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnel/ghettos) -"iDI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"iFj" = ( -/turf/simulated/wall, -/area/awaymission/darkrp/ghettosouthwarehouse) -"iFH" = ( -/obj/structure/bed/chair/sofa/bench/marble{ - pixel_y = 0; - dir = 4 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"iFK" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/downtownresturaunt) -"iFV" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green, -/obj/structure/table/woodentable, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/subhouse1) -"iGO" = ( -/obj/structure/fence, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"iHn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"iHO" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/vending/loadout/uniform, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"iHS" = ( -/obj/item/stool/padded{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"iJm" = ( -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/darkrp/sewers) -"iJp" = ( -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"iKh" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32 - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/subhouse1) -"iKr" = ( -/turf/simulated/wall/wood, -/area/awaymission/darkrp/subcondo) -"iKW" = ( -/obj/item/clothing/suit/bio_suit/plaguedoctorsuit, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownpharmacy) -"iKX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"iMp" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 5 - }, -/obj/structure/bed/roller, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"iMB" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/cell/hyper, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"iNe" = ( -/obj/structure/closet/cabinet, -/obj/item/storage/wallet/random, -/obj/item/towel/random, -/obj/item/melee/umbrella/random, -/obj/random/ammo, -/obj/random/cigarettes, -/obj/random/contraband, -/obj/random/junk, -/obj/random/maintenance/security, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"iNF" = ( -/mob/living/carbon/human/ai_controlled/greytide{ - icon_state = "rune_teleport" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"iOn" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/survival/space, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"iPZ" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"iQo" = ( -/obj/item/stack/cable_coil, -/obj/item/stack/material/uranium{ - amount = 12 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"iQE" = ( -/obj/machinery/vending/tool, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"iQO" = ( -/obj/effect/decal/remains, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"iRp" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"iSm" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"iSs" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/lockdown1) -"iSy" = ( -/obj/machinery/light{ - dir = 2 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"iSD" = ( -/obj/structure/closet/cabinet, -/obj/item/ammo_magazine/m38/makarov, -/obj/item/ammo_magazine/m38/makarov, -/obj/item/ammo_magazine/m38/makarov, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"iSZ" = ( -/obj/item/tool/wrench/fuelrod, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazarecroom) -"iTc" = ( -/obj/effect/map_effect/perma_light, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnels/suburbs) -"iTW" = ( -/obj/structure/table/steel, -/obj/random/tool/power, -/obj/random/toolbox, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"iTX" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/westright{ - name = "PD Armory"; - req_access = list(860) - }, -/obj/structure/window/reinforced{ - health = 1e+006; - req_access = list(5) - }, -/obj/item/gun/projectile/automatic/serdy/m16a2{ - pixel_y = -1; - pixel_x = -12 - }, -/obj/item/gun/projectile/automatic/serdy/m16a2{ - pixel_y = -1; - pixel_x = -12 - }, -/obj/item/gun/projectile/automatic/serdy/m16a2{ - pixel_y = -1; - pixel_x = -12 - }, -/obj/item/gun/projectile/automatic/serdy/m16a2{ - pixel_y = -1; - pixel_x = -12 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"iUb" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/reagent_containers/chem_disp_cartridge/oxygen, -/obj/item/reagent_containers/chem_disp_cartridge/mercury, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"iUn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"iWK" = ( -/mob/living/simple_mob/humanoid/merc/ranged/poi, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"iYf" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"iYH" = ( -/obj/structure/table/steel_reinforced, -/obj/item/melee/classic_baton, -/obj/item/gun/energy/taser, -/obj/item/gun/energy/taser, -/obj/item/clothing/suit/armor/swat, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"iYS" = ( -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"jaF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"jaI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/center) -"jaQ" = ( -/obj/structure/fence, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"jbV" = ( -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/effect/decal/remains, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/sewers) -"jcn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/fiftyspawner/concrete, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"jdf" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"jdi" = ( -/obj/structure/flora/tree/jungle, -/turf/simulated/floor/outdoors/dirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"jdn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"jdB" = ( -/mob/living/simple_mob/humanoid/pirate/machete, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"jeq" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"jfz" = ( -/obj/structure/railing/grey, -/turf/simulated/floor/outdoors/lavaland/basalt, -/area/awaymission/darkrp/outside/plaza) -"jfS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"jgt" = ( -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"jil" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"jio" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"jjc" = ( -/obj/machinery/optable, -/obj/item/surgical/bone_clamp{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/downtownwarehouse) -"jjm" = ( -/obj/random/trash, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"jkc" = ( -/obj/structure/bed/chair/bay/comfy/black{ - dir = 1 - }, -/obj/effect/decal/remains, -/obj/effect/decal/cleanable/blood, -/turf/simulated/shuttle/floor/voidcraft, -/area/awaymission/darkrp/sewers) -"jkf" = ( -/obj/machinery/appliance/cooker/grill, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"jlw" = ( -/obj/structure/table/gamblingtable, -/obj/item/deck/cards, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"jlx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkghetto1) -"jlW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/stool/padded{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"jmV" = ( -/obj/structure/table/steel, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"jnm" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"jnM" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/carpet/blue, -/area/awaymission/darkrp/plazahotel) -"jnS" = ( -/turf/simulated/wall/wood, -/area/awaymission/darkrp/outside) -"joP" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"joU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/random/vendorfood{ - pixel_y = 0; - dir = 4 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"jpu" = ( -/mob/living/simple_mob/animal/giant_spider/hunter, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"jpv" = ( -/mob/living/simple_mob/humanoid/merc/ranged/smg, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"jpz" = ( -/obj/structure/flora/tree/jungle_small, -/turf/simulated/floor/outdoors/mud{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"jrs" = ( -/obj/structure/fence/door{ - dir = 4 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"jrE" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"jrL" = ( -/obj/machinery/power/rtg/advanced, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"jrV" = ( -/obj/structure/table/steel, -/obj/random/tool, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"jsj" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"jsU" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"jug" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/downtownwarehouse) -"jvY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnel/ghettos) -"jwz" = ( -/obj/item/material/shard/shrapnel, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"jwX" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_y = 1; - pixel_x = -5 - }, -/obj/item/reagent_containers/dropper, -/obj/item/storage/pill_bottle/dexalin_plus{ - pixel_y = -13; - pixel_x = -7 - }, -/obj/item/storage/pill_bottle/combat{ - pixel_y = -13 - }, -/obj/item/storage/pill_bottle/osteodaxon{ - pixel_y = -13; - pixel_x = 6 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownpharmacy) -"jxA" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"jxH" = ( -/turf/simulated/wall, -/area/awaymission/darkrp/plazahotel) -"jxR" = ( -/obj/structure/frame, -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/darkrp/lockdown1) -"jyp" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"jyZ" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/mousetraps, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"jze" = ( -/obj/structure/table/woodentable, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"jzT" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"jAc" = ( -/mob/living/simple_mob/mechanical/viscerator, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"jBg" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"jBm" = ( -/turf/simulated/floor/outdoors/mud{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"jCn" = ( -/obj/structure/salvageable/server_os, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"jCM" = ( -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/center) -"jDW" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"jEj" = ( -/obj/item/flame/candle/everburn, -/turf/simulated/mineral/floor/ignore_mapgen/cave{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"jEo" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/smokes, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"jFg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"jFk" = ( -/obj/structure/closet/medical, -/obj/item/card/id/medical{ - access = list(696); - name = "Medical Staff ID Card"; - desc = "A card issued to the downtown medical staff." - }, -/obj/item/card/id/medical{ - access = list(696); - name = "Medical Staff ID Card"; - desc = "A card issued to the downtown medical staff." - }, -/obj/item/card/id/medical{ - access = list(696); - name = "Medical Staff ID Card"; - desc = "A card issued to the downtown medical staff." - }, -/obj/item/clothing/suit/storage/toggle/labcoat, -/obj/item/clothing/suit/storage/toggle/labcoat, -/obj/item/clothing/suit/storage/toggle/labcoat, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/under/rank/medical/scrubs/navyblue, -/obj/item/clothing/under/rank/medical/scrubs/navyblue, -/obj/item/clothing/under/rank/medical/scrubs/navyblue, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"jFX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/subhouse1) -"jHv" = ( -/obj/effect/floor_decal/rust, -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/downtownempty) -"jIk" = ( -/obj/machinery/microwave{ - pixel_y = 3; - pixel_x = 2 - }, -/obj/structure/table/marble, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"jIC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/beach_ball/dodgeball, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"jJu" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"jJF" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"jKj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/random/trash, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"jKn" = ( -/obj/item/material/shard, -/turf/simulated/floor, -/area/awaymission/darkrp/brokehouse) -"jKG" = ( -/obj/item/clothing/gloves/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"jKH" = ( -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/sewers) -"jKL" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/outside) -"jLb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"jLn" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"jLo" = ( -/obj/structure/table/steel_reinforced, -/obj/item/multitool, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"jLr" = ( -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subway) -"jLT" = ( -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"jNa" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/carbon/human/ai_controlled/greytide{ - icon_state = "rune_teleport" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"jNT" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"jOf" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/darkrp/sewers) -"jOS" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"jPr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/standard, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"jPH" = ( -/obj/structure/table/standard, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"jQN" = ( -/obj/structure/prop/machine/nt_biocan, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"jQZ" = ( -/mob/living/simple_mob/humanoid/merc/ranged/rifle/poi, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/center) -"jRt" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"jRx" = ( -/obj/item/clothing/gloves/fyellow, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"jRz" = ( -/obj/structure/sign/warning/lethal_turrets{ - name = "\improper SNIPER" - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/darkrp/tunnels/suburbs) -"jSf" = ( -/obj/structure/flora/tree/bigtree, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"jSh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"jSw" = ( -/obj/structure/bed/chair/office/dark{ - dir = 2 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"jSx" = ( -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subhouse2) -"jTG" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"jTO" = ( -/obj/machinery/light{ - dir = 1; - overlay_color = "#a12a22" - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/darkrp/sewers) -"jUM" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"jWn" = ( -/obj/item/pickaxe, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"jWt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"jWy" = ( -/obj/structure/table/woodentable, -/obj/random/maintenance/foodstuff, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"jWC" = ( -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"jXd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subapartments) -"jXk" = ( -/obj/structure/table/steel, -/obj/random/maintenance/cargo, -/obj/random/tool, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"jXm" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/carpet/oracarpet, -/area/awaymission/darkrp/plazahotel) -"jXF" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkmaint) -"jYc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"jZc" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/reagent_containers/food/drinks/bottle/space_up{ - pixel_y = 0; - pixel_x = -9 - }, -/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 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgas) -"jZe" = ( -/mob/living/simple_mob/humanoid/pirate/mate/ranged/rifle, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"jZJ" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"kar" = ( -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subway) -"kaB" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/closet/secure_closet/freezer/kitchen{ - req_access = null - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/downtownresturaunt) -"kaF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/declone, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"kaG" = ( -/obj/effect/map_effect/portal/line/side_b{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"kbc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"kcd" = ( -/obj/machinery/door/blast/shutters{ - id = "centralbuilding3"; - name = "Garage Door"; - dir = 2 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/steel, -/obj/item/tape/police, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"kcj" = ( -/obj/effect/decal/cleanable/blood/tracks{ - color = "red"; - desc = "Your instincts say you shouldn't be following these."; - dir = 4; - icon = 'icons/effects/blood.dmi'; - icon_state = "tracks" - }, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"kcm" = ( -/obj/structure/sign/signnew/explosives, -/turf/simulated/wall/titanium, -/area/awaymission/darkrp/outside) -"kcJ" = ( -/obj/structure/closet/secure_closet/freezer/money, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"kdf" = ( -/obj/structure/table/steel, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/storage/box/lights/mixed, -/obj/item/lightreplacer, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"kdD" = ( -/obj/effect/decal/cleanable/greenglow, -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"kdE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse1) -"kdI" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/reference) -"kdN" = ( -/obj/structure/flora/pottedplant/bamboo, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"kdZ" = ( -/mob/living/simple_mob/vore/alienanimals/skeleton/alt, -/turf/simulated/floor/carpet/oracarpet, -/area/awaymission/darkrp/plazahotel) -"kfD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"kfF" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/toolbox, -/obj/random/toolbox, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"kgd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownpharmacy) -"kgw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/center) -"kgD" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/darkrp/tunnels/suburbs) -"kgR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/outside) -"khL" = ( -/mob/living/simple_mob/humanoid/cultist/magus, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"kij" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside/suburbs) -"kjb" = ( -/obj/structure/fence/corner{ - dir = 9 - }, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"kjj" = ( -/obj/structure/table/rack/shelf, -/obj/item/camera_film, -/obj/item/camera_film, -/obj/item/tool/wirecutters, -/obj/item/tool/wirecutters, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"kjE" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 6 - }, -/obj/structure/mopbucket, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"kjW" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"klx" = ( -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"klz" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/plazawarehouse) -"klI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"kmb" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/item/clothing/suit/armor/pcarrier/medium, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"kmr" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/ghetto) -"knm" = ( -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"kns" = ( -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/tunnels/warehouse) -"koD" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_range = 15 - }, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"kpj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"kpl" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/stack/nanopaste/advanced, -/obj/item/stack/nanopaste/advanced, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"kqq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/reagent_dispensers/fueltank/barrel/two, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkmaint) -"kqv" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"kqO" = ( -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazarecroom) -"krj" = ( -/obj/random/trash_pile, -/obj/random/trash, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"krx" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/red, -/turf/simulated/floor/carpet/blue, -/area/awaymission/darkrp/plazahotel) -"ksj" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"ksv" = ( -/obj/effect/decal/remains, -/turf/simulated/shuttle/floor/voidcraft, -/area/awaymission/darkrp/sewers) -"ksR" = ( -/obj/structure/table/steel, -/obj/random/tool, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"ksY" = ( -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"ktw" = ( -/obj/machinery/light/flicker{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"ktB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/armor/material/makeshift, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"kwF" = ( -/obj/structure/table/woodentable, -/obj/random/mainttoyloot/nofail, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"kwI" = ( -/turf/simulated/mineral/ignore_oregen, -/area/awaymission/darkrp/outside) -"kxb" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/humanoid/merc/ranged/laser, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"kxw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/random/cash, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"kxE" = ( -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 8 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"kxO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"kzl" = ( -/obj/structure/table/steel_reinforced, -/obj/item/tool/wrench, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazarecroom) -"kAk" = ( -/obj/structure/table/bench/wooden, -/obj/item/flashlight/lamp, -/obj/item/flashlight, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"kAO" = ( -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/sewers) -"kBb" = ( -/mob/living/simple_mob/humanoid/russian, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"kBo" = ( -/obj/structure/table/woodentable, -/obj/random/maintenance/clean, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"kBP" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"kCN" = ( -/obj/item/tool/wirecutters/chainsaw, -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "slab2" - }, -/area/awaymission/darkrp/outside) -"kEv" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/pillbottles, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"kEA" = ( -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"kGd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"kGf" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/mob/living/simple_mob/mechanical/hivebot, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"kGg" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/toll) -"kGW" = ( -/obj/structure/table/steel_reinforced, -/obj/item/surgical/circular_saw{ - pixel_y = 8 - }, -/obj/item/surgical/surgicaldrill, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/downtownwarehouse) -"kIH" = ( -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/downtownwarehouse) -"kII" = ( -/turf/simulated/mineral/floor/ignore_mapgen/cave{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"kIK" = ( -/obj/structure/fence, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"kKd" = ( -/obj/structure/sign/signnew/radiation, -/turf/simulated/wall/titanium, -/area/awaymission/darkrp/outside) -"kKl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/rack/shelf/steel, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/steel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"kKu" = ( -/obj/structure/bed/padded, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"kKY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"kLf" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/ghettowarehouse) -"kMa" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"kMG" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/toy/minigibber{ - name = "\improper Cutie Mulcher"; - desc = "It is a normal sized item." - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"kNZ" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/stool/baystool/padded, -/obj/machinery/light{ - dir = 4; - layer = 3 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"kOh" = ( -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"kOk" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/westleft, -/obj/item/clothing/suit/space/cult, -/obj/item/clothing/suit/space/cult, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"kOC" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"kOY" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"kPB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside) -"kPM" = ( -/obj/machinery/gateway{ - density = 0; - dir = 10 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/darkrp/sewers) -"kQc" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"kQm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnel/ghettos) -"kRn" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"kRK" = ( -/obj/machinery/smartfridge/chemistry, -/turf/simulated/wall/titanium, -/area/awaymission/darkrp/downtownwarehouse) -"kRV" = ( -/mob/living/simple_mob/vore/aggressive/rat, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"kSy" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/mineral/floor/ignore_mapgen/cave{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"kSB" = ( -/mob/living/simple_mob/humanoid/russian, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/warehouses) -"kSF" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"kTD" = ( -/mob/living/simple_mob/mechanical/hivebot/precusor/chrono, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"kTG" = ( -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"kTP" = ( -/obj/effect/landmark/gateway_scatter, -/turf/simulated/floor/outdoors/dirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"kTS" = ( -/obj/item/material/shard, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/humanoid/russian, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 1 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"kTX" = ( -/obj/structure/table/rack/shelf, -/obj/random/firstaid, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - dir = 2 - }, -/obj/random/firstaid, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownpharmacy) -"kUe" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"kVe" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/humanoid/merc/melee/sword, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"kVM" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"kWa" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside) -"kXl" = ( -/mob/living/simple_mob/mechanical/hivebot, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"kXp" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse1) -"kXv" = ( -/turf/simulated/wall, -/area/awaymission/darkrp/subgas) -"kXy" = ( -/obj/machinery/button/remote/blast_door{ - id = "jailrp"; - name = "Prison Bars"; - pixel_x = -4; - dir = 4; - pixel_y = 27; - req_one_access = list(860) - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"kXK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/warehouses) -"kYr" = ( -/obj/random/medical/lite, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"kZb" = ( -/turf/simulated/wall, -/area/awaymission/darkrp/ghettowarehouse) -"kZe" = ( -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"kZX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/obstruction, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"lad" = ( -/obj/structure/table/marble, -/obj/item/material/kitchen/rollingpin, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"laF" = ( -/obj/item/circuitboard/body_scanner{ - pixel_y = 3 - }, -/obj/item/stock_parts/scanning_module{ - pixel_y = -2; - pixel_x = 4 - }, -/obj/item/stock_parts/scanning_module{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"lbh" = ( -/obj/structure/table/rack/shelf, -/obj/item/gun/projectile/silenced, -/obj/item/gun/projectile/silenced, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"lbr" = ( -/obj/structure/table/bench/padded, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/subhouse2) -"lby" = ( -/obj/machinery/door/blast/shutters{ - id = "centralbuilding1"; - name = "Garage Door"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"lbS" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centermaint) -"lbY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"lcv" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = -4 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = 8 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = -4 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = 12 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"lcW" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"ldi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subhouse2) -"ldk" = ( -/obj/item/storage/firstaid/adv, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"ldo" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"ldt" = ( -/obj/structure/table/steel, -/obj/item/tool/screwdriver/power, -/obj/random/smes_coil, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"ldN" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/darkrp/tunnels/warehouse) -"lgl" = ( -/obj/item/tape/police, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"lgF" = ( -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"lgU" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/pill_bottle/citalopram, -/obj/item/storage/pill_bottle/benzilate, -/obj/item/storage/pill_bottle/zoom, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownpharmacy) -"lgX" = ( -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"lhn" = ( -/mob/living/simple_mob/mechanical/mecha/combat/gygax/dark/advanced, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"lis" = ( -/obj/machinery/door/airlock{ - req_one_access = list(720); - name = "Gun Store" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"liI" = ( -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/plazashop) -"liV" = ( -/obj/machinery/chemical_analyzer, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"lji" = ( -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/sewers) -"ljj" = ( -/mob/living/simple_mob/mechanical/viscerator, -/mob/living/simple_mob/mechanical/viscerator, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"ljz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"ljA" = ( -/obj/machinery/light{ - layer = 3 - }, -/obj/structure/table/marble, -/obj/item/storage/box/glasses/coffeecup{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/storage/box/glasses/square{ - pixel_x = 9; - pixel_y = 1 - }, -/obj/item/storage/box/glasses/coffeemug{ - pixel_x = -6; - pixel_y = 12 - }, -/obj/item/storage/box/buns{ - pixel_x = 9; - pixel_y = 12 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"lkr" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"llF" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkghetto2) -"llG" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"llN" = ( -/obj/structure/table/steel, -/obj/item/tool/crowbar/red, -/obj/random/tool, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"llO" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"lmb" = ( -/obj/structure/grille, -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside) -"lmi" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/obj/item/storage/box/masks, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"lmq" = ( -/obj/structure/bed/chair/sofa/left/brown{ - dir = 8; - layer = 2.9 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"lmr" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/mask/balaclava, -/obj/random/cash, -/obj/random/cash, -/obj/random/cash, -/obj/random/toy, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"lmt" = ( -/obj/effect/floor_decal/stairs, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"lni" = ( -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"lom" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = "MedbayFoyer"; - name = "EMT Bay"; - req_access = null; - req_one_access = list(696) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"lpg" = ( -/obj/random/trash, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centermaint) -"lqb" = ( -/mob/living/simple_mob/animal/giant_spider, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"lqe" = ( -/mob/living/simple_mob/humanoid/merc/ranged/ionrifle, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"lrd" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/mob/living/simple_mob/humanoid/merc/melee, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"lrU" = ( -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = 5 - }, -/obj/random/cigarettes, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"lrV" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/action_figure{ - pixel_x = 4; - pixel_y = -5 - }, -/obj/random/action_figure{ - pixel_y = 5; - pixel_x = -5 - }, -/obj/random/action_figure{ - pixel_y = -5; - pixel_x = -5 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"lrY" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/cell/hyper, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"lsA" = ( -/obj/machinery/gateway, -/obj/effect/map_effect/perma_light/gateway, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/darkrp/sewers) -"lsC" = ( -/obj/structure/table/woodentable, -/obj/random/maintenance/medical, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"ltr" = ( -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/reference) -"luN" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgas) -"lvb" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/storage/box/masks, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"lvy" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/ion, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"lvz" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/item/stool{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"lwb" = ( -/obj/structure/prop/warmrocks, -/turf/simulated/floor/outdoors/dirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"lwF" = ( -/turf/simulated/floor/lava, -/area/awaymission/darkrp/outside/plaza) -"lxb" = ( -/obj/structure/table/bench/padded, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/subhouse2) -"lxi" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"lyA" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"lyE" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkcondo) -"lzq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"lzN" = ( -/obj/machinery/light/floortube{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/darkrp/downtownwarehouse) -"lzO" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"lBm" = ( -/obj/item/flame/candle/everburn, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/mineral/floor/ignore_mapgen/cave{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"lBz" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"lBQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"lCc" = ( -/obj/effect/map_effect/portal/line/side_a{ - dir = 1 - }, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"lCs" = ( -/obj/machinery/light/floortube, -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"lCE" = ( -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"lCS" = ( -/obj/structure/railing/grey{ - pixel_y = 0; - dir = 1 - }, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/outside/plaza) -"lDC" = ( -/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 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"lDQ" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/curtain/medical, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"lEq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"lFU" = ( -/obj/structure/prop/poicanister, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"lGh" = ( -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/ghetto) -"lGp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"lGN" = ( -/obj/structure/table/woodentable, -/obj/item/material/kitchen/rollingpin, -/obj/item/material/knife/butch, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/subhouse1) -"lHv" = ( -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside) -"lHG" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/material/kitchen/utensil/fork, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"lHI" = ( -/obj/machinery/chem_master, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"lIf" = ( -/obj/structure/table/woodentable, -/obj/item/camera, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"lJQ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/item/stool/padded, -/turf/simulated/floor/carpet/retro, -/area/awaymission/darkrp/plazarecroom) -"lJU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"lKP" = ( -/obj/structure/simple_door/wood, -/obj/effect/decal/cleanable/blood/tracks{ - color = "red"; - desc = "Your instincts say you shouldn't be following these."; - dir = 4; - icon = 'icons/effects/blood.dmi'; - icon_state = "tracks" - }, -/turf/simulated/floor/carpet/blue, -/area/awaymission/darkrp/plazahotel) -"lKR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkmaint) -"lLZ" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/item/stack/medical/advanced/bruise_pack{ - pixel_y = 10; - pixel_x = 10 - }, -/obj/item/stack/medical/advanced/bruise_pack{ - pixel_y = -5; - pixel_x = 10 - }, -/obj/item/stack/medical/advanced/bruise_pack{ - pixel_y = 3; - pixel_x = 10 - }, -/obj/item/stack/medical/advanced/ointment{ - pixel_y = 10; - pixel_x = -4 - }, -/obj/item/stack/medical/advanced/ointment{ - pixel_y = -5; - pixel_x = -4 - }, -/obj/item/stack/medical/advanced/ointment{ - pixel_y = 3; - pixel_x = -4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"lMe" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/mob/living/simple_mob/humanoid/merc/ranged/sniper, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"lMv" = ( -/obj/structure/bed/chair/bay/comfy/black{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/turf/simulated/shuttle/floor/voidcraft, -/area/awaymission/darkrp/sewers) -"lNo" = ( -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"lNU" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "slab2" - }, -/area/awaymission/darkrp/outside) -"lNY" = ( -/obj/item/gun/magnetic/railgun, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/ghetto) -"lOf" = ( -/obj/machinery/vending/snack{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"lPe" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"lPj" = ( -/obj/structure/bed/chair/sofa/left/purp, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"lPw" = ( -/obj/structure/table/steel, -/obj/random/maintenance/cargo, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"lPA" = ( -/obj/structure/toilet/prison{ - pixel_y = 6; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"lPU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "MedbayFoyer"; - name = "EMT Bay"; - req_access = null; - req_one_access = null - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"lQr" = ( -/obj/item/geiger, -/turf/simulated/floor/outdoors/dirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"lQs" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"lQI" = ( -/obj/structure/table/steel_reinforced, -/obj/item/tool/screwdriver{ - pixel_x = -9 - }, -/obj/item/grenade/chem_grenade, -/obj/item/gun/projectile/deagle, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"lQK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/bed/chair/bay/comfy/black{ - dir = 1 - }, -/turf/simulated/shuttle/floor/voidcraft, -/area/awaymission/darkrp/sewers) -"lRg" = ( -/mob/living/simple_mob/humanoid/merc/voxpirate/pirate, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkcondo) -"lRM" = ( -/obj/structure/sign/warning/caution, -/turf/simulated/wall, -/area/awaymission/darkrp/ghettosouthwarehouse) -"lSQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"lTi" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazarecroom) -"lTw" = ( -/obj/structure/table/gamblingtable, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"lTL" = ( -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"lTS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/head/radiation, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/head/radiation, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 1 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"lTV" = ( -/obj/structure/bed/chair/wood{ - dir = 8; - pixel_y = 0 - }, -/mob/living/simple_mob/humanoid/pirate/machete, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"lUj" = ( -/turf/simulated/wall/durasteel, -/area/awaymission/darkrp/ghettosouthwarehouse) -"lVO" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/plazahotel) -"lWA" = ( -/obj/item/clothing/mask/gas/voice, -/obj/item/melee/baton/cattleprod, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"lWI" = ( -/obj/structure/table/woodentable, -/obj/item/material/knife, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"lXf" = ( -/obj/structure/table/standard, -/obj/random/cash/huge, -/obj/random/cash/huge, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"lXu" = ( -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/snacks/pancakes{ - pixel_y = -2; - pixel_x = 3 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"lXw" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/instrument/piano_synth, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazarecroom) -"lYf" = ( -/obj/structure/sign/greencross{ - pixel_y = -32 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"lZl" = ( -/obj/random/trash, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnels/suburbs) -"lZs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"mbw" = ( -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/parkcondo) -"mbF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"mbV" = ( -/obj/machinery/light{ - layer = 3 - }, -/obj/structure/table/rack/shelf, -/obj/item/gun/projectile/serdy_pistols/glock71, -/obj/item/gun/projectile/serdy_pistols/glock71, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"mcd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"mck" = ( -/obj/effect/map_effect/portal/master/side_b{ - portal_id = "gsewer1" - }, -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"mcY" = ( -/obj/effect/floor_decal/industrial/warning/color/red, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"mdn" = ( -/obj/random/trash, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"mdO" = ( -/obj/item/digestion_remains/skull/teshari, -/turf/simulated/floor/water/contaminated, -/area/awaymission/darkrp/outside) -"mdV" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/reagent_containers/food/snacks/bacon_and_eggs, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/subhouse2) -"mec" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"mfm" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"mhw" = ( -/obj/machinery/gateway{ - dir = 1 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/darkrp/sewers) -"mhF" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"mhT" = ( -/obj/machinery/door/blast/shutters{ - id = "smallpharmacy1"; - name = "Garage Door"; - dir = 8 - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownpharmacy) -"mja" = ( -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/centersidehouse) -"mjz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"mjA" = ( -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"mjV" = ( -/obj/random/maintenance, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"mjY" = ( -/obj/structure/coatrack, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"mki" = ( -/obj/structure/curtain/open, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazarecroom) -"mkv" = ( -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"mkI" = ( -/obj/structure/fence/end{ - dir = 8 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"mkP" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"mkY" = ( -/obj/item/assembly/mousetrap/armed, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"mlg" = ( -/obj/structure/salvageable/console_os{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"mlh" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"mlo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"mlB" = ( -/mob/living/simple_mob/vore/aggressive/rat/phoron, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"mmo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/darkrp/outside/plaza) -"mmp" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"mmI" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/reagent_containers/food/snacks/suppermattershard, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"mmM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"mmQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"mnX" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/table/rack/shelf, -/obj/random/medical, -/obj/random/medical/pillbottle, -/obj/random/medical/pillbottle, -/obj/random/medical/pillbottle, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownpharmacy) -"moz" = ( -/turf/simulated/mineral/ignore_oregen, -/area/awaymission/darkrp/tunnels/suburbs) -"moN" = ( -/obj/random/trash, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"mpd" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"mqo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gibdown1_flesh" - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside) -"mqE" = ( -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/centersidehouse) -"mrd" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"mry" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"mrD" = ( -/obj/effect/map_effect/perma_light/concentrated, -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"mrI" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"mrK" = ( -/obj/structure/bonfire/permanent, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"msd" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"mtM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkghetto1) -"mub" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"muD" = ( -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"muS" = ( -/obj/machinery/light/small, -/turf/simulated/floor/carpet/oracarpet, -/area/awaymission/darkrp/plazahotel) -"mwy" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"mxP" = ( -/obj/machinery/door/blast/puzzle{ - id = "ultrasecret2" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/darkrp/reference) -"mxX" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"myl" = ( -/obj/random/soap, -/obj/structure/table/rack/shelf, -/obj/random/soap, -/obj/item/towel/random, -/obj/item/towel/random, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/subhouse1) -"mzD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/obj/item/paper{ - desc = ""; - info = "The city has been struck with otherworldy forces, we've been building this armory for years, its time to FIGHT for the glory of the revolution!"; - name = "note" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"mzM" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"mAj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/heavy_engineer, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"mAm" = ( -/obj/machinery/power/rtg/advanced, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"mAA" = ( -/obj/effect/rune, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"mAV" = ( -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/darkrp/sewers) -"mBB" = ( -/obj/effect/decal/remains/human, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"mBR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/mob/living/simple_mob/humanoid/cultist/human/bloodjaunt, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"mCh" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subhouse2) -"mCF" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/paper{ - desc = ""; - info = "Man, once I sell this in the blockchain, I'll make millions!"; - name = "note" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"mCH" = ( -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/obj/item/stack/material/steel{ - amount = 14 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"mCZ" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/research, -/obj/random/material/refined, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"mDd" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_bullet, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"mDo" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"mDE" = ( -/obj/random/trash, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"mDW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/ghetto) -"mES" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"mEW" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"mFX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkghetto2) -"mGC" = ( -/mob/living/simple_mob/humanoid/merc/melee, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"mHc" = ( -/turf/simulated/mineral/ignore_oregen, -/area/awaymission/darkrp/outside/suburbs) -"mHC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/mob/living/simple_mob/humanoid/pirate/mate/ranged/rifle, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"mHL" = ( -/obj/effect/map_effect/portal/master/side_a{ - dir = 1; - portal_id = "deepsewers2" - }, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"mHV" = ( -/mob/living/simple_mob/vore/alienanimals/skeleton/alt, -/turf/simulated/floor/carpet/blue, -/area/awaymission/darkrp/plazahotel) -"mIs" = ( -/obj/structure/table/standard, -/obj/fiftyspawner/rods, -/obj/random/material/refined, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"mIP" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkghetto2) -"mJw" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - health = 1e+006; - req_access = list(5) - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/material/fishing_rod/modern/strong, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/downtowngunshop) -"mJx" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"mJL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/port_gen/pacman/super, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"mJR" = ( -/obj/item/weldingtool, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/outside) -"mKO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"mKW" = ( -/obj/structure/table/standard, -/obj/machinery/cash_register/civilian{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"mLX" = ( -/obj/structure/table/rack, -/obj/item/cell/device, -/obj/item/cell/device, -/obj/item/flashlight/color/red, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"mMi" = ( -/obj/machinery/portable_atmospherics/powered/reagent_distillery, -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"mMq" = ( -/obj/structure/table/rack/shelf/steel, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil/pink, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/console_screen, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"mMC" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/appliance/cooker/oven, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"mMD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/optable, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"mOp" = ( -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"mOG" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"mPt" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownpharmacy) -"mPJ" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = "MedbayFoyer"; - name = "Chemistry"; - req_access = null; - req_one_access = list(696) - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"mPW" = ( -/obj/effect/map_effect/portal/master/side_b{ - dir = 4; - portal_id = "Ghousething" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"mPZ" = ( -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/darkrp/outside) -"mQj" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"mQY" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_range = 15 - }, -/turf/simulated/floor/bluegrid, -/area/awaymission/darkrp/sewers) -"mRh" = ( -/obj/machinery/holosign/bar{ - id = "baropenrp" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/downtownbar) -"mRw" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"mSE" = ( -/mob/living/simple_mob/humanoid/merc/ranged/laser/poi, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"mTK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"mTW" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/mob/living/simple_mob/humanoid/russian/ranged, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"mUC" = ( -/obj/structure/window/plastitanium/full, -/obj/structure/window/reinforced/survival_pod, -/obj/structure/grille/rustic{ - health = 25; - name = "reinforced grille" - }, -/obj/machinery/door/blast/regular/open{ - id = "stargazer_blast"; - name = "window blast shield" - }, -/turf/simulated/shuttle/plating, -/area/awaymission/darkrp/sewers) -"mUW" = ( -/mob/living/simple_mob/animal/giant_spider/hunter, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"mVe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/rtg/advanced, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"mVk" = ( -/obj/structure/reagent_dispensers/fueltank/barrel{ - anchored = 1 - }, -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"mVR" = ( -/obj/item/storage/secure/briefcase/money, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"mXi" = ( -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"mXk" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/northright{ - req_access = null - }, -/obj/structure/window/reinforced{ - health = 1e+006; - req_access = list(5) - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/reagent_containers/food/drinks/golden_cup, -/obj/item/flame/lighter/zippo/gold, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"mXs" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/chemical_dispenser/bar_soft/full, -/obj/structure/table/marble, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"mYJ" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/sink/kitchen{ - dir = 4; - pixel_x = -13 - }, -/obj/effect/decal/cleanable/blood/tracks{ - color = "red"; - desc = "Your instincts say you shouldn't be following these."; - dir = 10; - icon = 'icons/effects/blood.dmi'; - icon_state = "tracks" - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"mZC" = ( -/obj/structure/sign/warning/high_voltage, -/turf/simulated/wall/r_concrete, -/area/awaymission/darkrp/tunnels/suburbs) -"nau" = ( -/obj/structure/salvageable/console_broken_os, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 1 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"naB" = ( -/obj/structure/fence/corner{ - dir = 10 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"naU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/plushie/possum, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"nbk" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"nbm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"nbx" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"nbV" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/centersidehouse) -"ncu" = ( -/obj/random/humanoidremains, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"ncv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"nfh" = ( -/obj/structure/flora/pottedplant, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"nfP" = ( -/obj/structure/table/standard, -/turf/simulated/floor/carpet/blue, -/area/awaymission/darkrp/plazahotel) -"nfW" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"ngN" = ( -/obj/structure/flora/pottedplant/minitree, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"nhw" = ( -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazarecroom) -"nhI" = ( -/mob/living/simple_mob/mechanical/hivebot/tank, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"nif" = ( -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"nii" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"niS" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/subgarage) -"njl" = ( -/obj/structure/fence/corner{ - dir = 10 - }, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"nku" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/woodentable, -/obj/item/taperecorder, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"nkx" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkcondo) -"nkF" = ( -/obj/random/vendorfood, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"nlk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/flicker{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"nlV" = ( -/obj/structure/table/steel, -/obj/item/flame/candle/everburn{ - pixel_y = 9 - }, -/obj/item/trash/plate{ - pixel_x = 7 - }, -/obj/item/trash/plate{ - pixel_x = -5 - }, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/darkrp/sewers) -"nmd" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazarecroom) -"nmh" = ( -/obj/structure/table/standard, -/obj/fiftyspawner/steel, -/obj/random/material/precious, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"nmz" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/parkwallbunker) -"nmN" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"nnD" = ( -/obj/structure/closet/wardrobe/chemistry_white, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"nnU" = ( -/obj/structure/bookcase, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/outside) -"nof" = ( -/obj/item/clothing/accessory/watch, -/turf/simulated/floor/outdoors/lavaland/basalt, -/area/awaymission/darkrp/outside/suburbs) -"noC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"noW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"nqj" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/random/toy, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"nqz" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/pd) -"nra" = ( -/obj/random/trash, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/tunnels/warehouse) -"nrM" = ( -/mob/living/simple_mob/vore/aggressive/rat, -/turf/simulated/shuttle/floor/voidcraft, -/area/awaymission/darkrp/sewers) -"nrV" = ( -/obj/structure/sink{ - dir = 1 - }, -/obj/structure/mirror{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/centersidehouse) -"nrZ" = ( -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"nsj" = ( -/obj/item/material/shard/shrapnel{ - icon_state = "splinterslarge" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"nsm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/mob/living/simple_mob/humanoid/merc/ranged/grenadier, -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "side-walk10" - }, -/area/awaymission/darkrp/outside/warehouses) -"nst" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/ghetto) -"nsw" = ( -/obj/machinery/button/remote/blast_door{ - id = "boss"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/color/full/red, -/turf/simulated/floor/bluegrid, -/area/awaymission/darkrp/sewers) -"nsY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"ntt" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"ntY" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/bottle/biomass, -/obj/item/reagent_containers/glass/bottle/biomass{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/bottle/biomass{ - pixel_y = 0; - pixel_x = 5 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"nuk" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"nul" = ( -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"nuo" = ( -/obj/random/trash, -/obj/structure/prop/war/tgmc_missile, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"nuI" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/ghettooffice) -"nvH" = ( -/obj/structure/flora/tree/jungle_small, -/turf/simulated/floor/outdoors/dirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"nvX" = ( -/obj/item/material/shard/shrapnel{ - icon_state = "splinterslarge" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"nxs" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"nxv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"nxx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centermaint) -"nxC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"nxG" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gib2_flesh" - }, -/obj/random/meat, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"nxS" = ( -/obj/item/toy/plushie/susred, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - external_pressure_bound = 140; - external_pressure_bound_default = 140; - icon_state = "map_vent_out"; - use_power = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"nyd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/mob/living/simple_mob/humanoid/pirate/machete, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"nyt" = ( -/obj/structure/table/marble, -/obj/item/material/knife, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"nyu" = ( -/mob/living/simple_mob/humanoid/cultist/castertesh, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"nyX" = ( -/obj/structure/sign/warning/high_voltage, -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/subpower) -"nzb" = ( -/mob/living/simple_mob/humanoid/merc/ranged/poi, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"nzV" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/gun/projectile/automatic/sts35, -/obj/item/gun/projectile/automatic/sts35, -/obj/item/gun/projectile/automatic/sts35, -/obj/item/gun/projectile/automatic/sts35, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"nAB" = ( -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"nAX" = ( -/obj/effect/floor_decal/stairs, -/obj/effect/map_effect/perma_light/concentrated, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"nBa" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"nBF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/chemdiamond{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/reagent_dispensers/fueltank/barrel/two, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"nCk" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"nCy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/northleft{ - req_access = null - }, -/obj/structure/window/reinforced{ - health = 1e+006; - req_access = list(5) - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/ears/earring/dangle/diamond, -/obj/item/clothing/ears/earring/dangle/diamond, -/obj/item/gun/projectile/deagle/gold, -/obj/item/material/twohanded/baseballbat/gold, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"nCD" = ( -/turf/simulated/wall/wood, -/area/awaymission/darkrp/parkcondo) -"nCL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"nCP" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"nDv" = ( -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"nDK" = ( -/obj/structure/table/standard, -/obj/machinery/cash_register/civilian{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/toll) -"nDN" = ( -/obj/item/weldingtool/lasercannon, -/obj/effect/rune, -/turf/simulated/mineral/floor/ignore_mapgen/cave{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"nDV" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/closet/secure_closet/freezer/kitchen{ - req_access = null - }, -/obj/item/reagent_containers/food/condiment/yeast, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"nEs" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centermaint) -"nEC" = ( -/obj/item/flame/lighter, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"nFn" = ( -/obj/structure/window/reinforced{ - health = 1e+006; - req_access = list(5) - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/subhouse2) -"nFC" = ( -/obj/machinery/floor_light{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"nIa" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkcondo) -"nIO" = ( -/obj/structure/table/steel_reinforced, -/obj/item/surgical/bonesetter, -/obj/item/surgical/bonegel, -/obj/item/surgical/FixOVein, -/obj/item/surgical/cautery, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/downtownwarehouse) -"nIP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"nIS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/war/tgmc_missile, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"nIV" = ( -/obj/effect/landmark/corpse/doctor, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownpharmacy) -"nJg" = ( -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/plazashop) -"nJQ" = ( -/obj/structure/salvageable/data_os, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"nLp" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"nLs" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"nLW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"nMl" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/firstaid/combat, -/obj/item/storage/firstaid/adv, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"nMs" = ( -/obj/item/digestion_remains/ribcage, -/turf/simulated/shuttle/floor/voidcraft, -/area/awaymission/darkrp/sewers) -"nMz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/center) -"nNj" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "spawnwarehouse" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"nNC" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"nOf" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/downtownbar) -"nOA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnels/park) -"nPD" = ( -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside/warehouses) -"nPN" = ( -/mob/living/simple_mob/vore/aggressive/rat, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"nPX" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"nQj" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"nQw" = ( -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"nQB" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/donut, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"nQI" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"nQP" = ( -/obj/structure/table/steel_reinforced, -/obj/item/tool/screwdriver/power, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"nQZ" = ( -/turf/simulated/floor/water/pool{ - temperature = 293.15; - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"nRZ" = ( -/turf/simulated/wall/wood, -/area/awaymission/darkrp/ghettoapartments) -"nSp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"nSX" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/ghettobank) -"nTb" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"nTd" = ( -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/random/trash, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"nTm" = ( -/obj/random/trash, -/obj/machinery/button/remote/noemag{ - req_one_access = list(887); - desc = "A heavy and old button that appears to be access locked by a special ID found elsewhere."; - id = "ultrasecret2"; - name = "Slab Button II" - }, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/tunnels/suburbs) -"nTD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnels/suburbs) -"nTN" = ( -/obj/random/meat, -/obj/effect/decal/remains/human, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"nUj" = ( -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/obj/item/clothing/gloves/fyellow, -/obj/item/clothing/head/helmet/material/makeshift, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"nUx" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave{ - pixel_y = 6; - pixel_x = 2 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"nUC" = ( -/obj/random/trash, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"nUD" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/humanoid/cultist/hunter/surt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"nUK" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"nUU" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/darkrp/sewers) -"nVd" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/outside) -"nVo" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/appliance/cooker/fryer, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"nVH" = ( -/obj/machinery/appliance/cooker/grill, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/subhouse2) -"nVT" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/ghettobank) -"nVV" = ( -/obj/item/broken_sm, -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"nXL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside/plaza) -"nXT" = ( -/obj/structure/sign/poster{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"nZk" = ( -/obj/structure/bonfire, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"nZq" = ( -/obj/structure/cliff/automatic{ - dir = 4 - }, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"nZv" = ( -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/warehouses) -"nZD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"nZI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/humanoidremains, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"nZM" = ( -/obj/item/storage/toolbox/mechanical, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"obk" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"obu" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/reagent_containers/food/drinks/bottle/cola{ - pixel_y = 0; - pixel_x = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/cola{ - pixel_y = 0; - pixel_x = -9 - }, -/obj/item/reagent_containers/food/drinks/bottle/cola{ - pixel_y = 0; - pixel_x = -2 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgas) -"obP" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/subpower) -"ocS" = ( -/obj/structure/fence, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"odC" = ( -/obj/structure/cliff/automatic/corner{ - dir = 6 - }, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"oel" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"oeH" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/subhouse2) -"oeI" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/parkmaint) -"ofj" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/remote/noemag{ - req_one_access = list(887); - desc = "A heavy and old button that appears to be access locked by a special ID found elsewhere."; - id = "ultrasecret2"; - name = "Slab Button II"; - pixel_y = 26; - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/darkrp/reference) -"ofz" = ( -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"ofP" = ( -/obj/structure/table/woodentable, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"ogb" = ( -/obj/structure/table/hardwoodtable, -/obj/item/camera, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"ogN" = ( -/mob/living/simple_mob/humanoid/russian, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"ogU" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/plazashop) -"ohe" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"ohy" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/item/material/knife/butch, -/obj/effect/decal/cleanable/blood/tracks{ - color = "red"; - desc = "Your instincts say you shouldn't be following these."; - dir = 5; - icon = 'icons/effects/blood.dmi'; - icon_state = "tracks" - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"ohP" = ( -/obj/structure/bed/chair/wood, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkcondo) -"oig" = ( -/obj/machinery/light{ - dir = 2 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/reference) -"oio" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"ojt" = ( -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownpharmacy) -"oju" = ( -/obj/vehicle/bike/built, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"ojV" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/darkrp/outside/park) -"okd" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/blast/shutters{ - id = "gunshop"; - dir = 2 - }, -/obj/machinery/door/window/northright, -/obj/machinery/door/window/southleft, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"okF" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/stairs, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"okL" = ( -/obj/structure/table/standard, -/obj/machinery/button/remote/blast_door{ - id = "lockdown1"; - name = "Lockdown Button"; - pixel_x = 6; - dir = 8; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_y = 3; - pixel_x = -5 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/darkrp/lockdown1) -"olG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"omt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/table/bench/steel, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"onu" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subhouse2) -"onQ" = ( -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/reference) -"opj" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_y = 6; - pixel_x = 5 - }, -/obj/item/reagent_containers/food/snacks/soydope, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"opw" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"opX" = ( -/obj/machinery/vending/cigarette, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"oqa" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"oqO" = ( -/obj/structure/table/rack/shelf, -/obj/item/reagent_containers/food/condiment/ketchup{ - pixel_y = 0; - pixel_x = -7 - }, -/obj/item/reagent_containers/food/condiment/mustard{ - pixel_x = -2 - }, -/obj/item/reagent_containers/food/condiment/hotsauce{ - pixel_x = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazacoffee) -"orr" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"orw" = ( -/obj/structure/cliff/automatic{ - dir = 9 - }, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"orD" = ( -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"orX" = ( -/obj/structure/table/bench/steel, -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/darkrp/outside/plaza) -"ouL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/darkrp/outside) -"ovb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/shutters{ - id = "ghettoware1"; - name = "Garage Door"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"ovC" = ( -/obj/structure/closet/jcloset, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"ovN" = ( -/obj/structure/bed/chair/bay/comfy/black{ - dir = 1 - }, -/turf/simulated/shuttle/floor/voidcraft, -/area/awaymission/darkrp/sewers) -"owi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/ghetto) -"owP" = ( -/mob/living/simple_mob/vore/aggressive/rat, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"owT" = ( -/obj/effect/map_helper/no_tele/area, -/turf/simulated/shuttle/wall/voidcraft, -/area/awaymission/darkrp/reference) -"oxJ" = ( -/obj/item/pickaxe, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"oxT" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -24 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/ghettobank) -"oyk" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/darkrp/outside/plaza) -"ozh" = ( -/obj/machinery/door/blast/shutters{ - id = "ghettoware1"; - name = "Garage Door"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"oAf" = ( -/obj/structure/closet/crate, -/obj/item/clothing/suit/armor/pcarrier/laserproof/full, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"oBq" = ( -/obj/structure/bed/double/padded, -/obj/machinery/light/small/flicker{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"oBI" = ( -/obj/item/stool/baystool/padded{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"oDv" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/wallmed1{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"oDA" = ( -/turf/simulated/mineral/ignore_oregen, -/area/awaymission/darkrp/outside/park) -"oDF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"oDJ" = ( -/mob/living/simple_mob/vore/alienanimals/skeleton/alt, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"oDL" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"oDQ" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/carbon/human/ai_controlled/replicant{ - icon_state = "rune_teleport" - }, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"oEg" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"oFk" = ( -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/subhouse1) -"oFp" = ( -/obj/structure/table/marble, -/obj/item/gun/projectile/automatic/serdy/ak74, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"oGx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"oHt" = ( -/obj/structure/salvageable/autolathe, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"oHy" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/stack/nanopaste, -/obj/item/circuitboard/autolathe, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"oHQ" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"oHS" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/item/stool/baystool/padded, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"oHW" = ( -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subcondo) -"oHY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"oIb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/simple_door/wood, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"oIF" = ( -/obj/effect/floor_decal/industrial/hatch, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/toll) -"oIN" = ( -/obj/structure/table/woodentable, -/obj/item/ammo_magazine/ammo_box/b12g/beanbag, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"oIR" = ( -/turf/simulated/floor/outdoors/lavaland/basalt, -/area/awaymission/darkrp/outside/plaza) -"oJn" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"oJI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnels/park) -"oJZ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"oKo" = ( -/obj/effect/floor_decal/milspec/color/orange/corner{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/orange/corner{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/orange/corner, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"oKw" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 9 - }, -/obj/structure/table/standard, -/obj/item/storage/box/gloves, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"oLg" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"oMc" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/toll) -"oMm" = ( -/obj/random/trash, -/obj/random/trash, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"oML" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medbay"; - req_access = null; - req_one_access = list(696) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"oMS" = ( -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnels/suburbs) -"oNf" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centermaint) -"oOt" = ( -/obj/item/tool/crowbar, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/outside) -"oOE" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"oPt" = ( -/obj/structure/table/woodentable, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"oPC" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"oPR" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"oPV" = ( -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside/suburbs) -"oQB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"oQC" = ( -/obj/machinery/appliance/cooker/oven, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"oQP" = ( -/obj/structure/prop/statue/angel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/reference) -"oRj" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"oRr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/easel, -/obj/item/canvas/twentythree_nineteen, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"oRE" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medbay"; - req_access = null; - req_one_access = null - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/downtownwarehouse) -"oSb" = ( -/obj/item/beach_ball, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"oSd" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse1) -"oSs" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/humanoid/merc/ranged/rifle/mag, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"oSE" = ( -/mob/living/simple_mob/mechanical/hivebot/precusor/laser, -/turf/simulated/floor/outdoors/lavaland/basalt, -/area/awaymission/darkrp/outside/plaza) -"oTb" = ( -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"oTk" = ( -/obj/structure/table/marble, -/obj/item/storage/firstaid/combat, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"oTF" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse1) -"oTI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "side-walk1" - }, -/area/awaymission/darkrp/outside/warehouses) -"oUf" = ( -/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"oUi" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/item/material/shard{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside) -"oUN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"oUU" = ( -/mob/living/simple_mob/humanoid/pirate/mate/ranged/rifle, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"oVr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"oVX" = ( -/obj/item/weldingtool/brass, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"oWV" = ( -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/warehouses) -"oWX" = ( -/obj/random/cash, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"oXi" = ( -/obj/machinery/chemical_dispenser/bar_alc/full, -/obj/structure/table/marble, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"oYc" = ( -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/center) -"oYF" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank/barrel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"oYJ" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/carbon/human/ai_controlled/greytide{ - icon_state = "rune_teleport" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"oZv" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"oZF" = ( -/obj/machinery/light/small, -/turf/simulated/floor/carpet/blue, -/area/awaymission/darkrp/plazahotel) -"oZV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"pan" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"paR" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/table/marble, -/obj/item/storage/box/glasses/square{ - pixel_x = 9; - pixel_y = 1 - }, -/obj/item/storage/box/glasses/rocks{ - pixel_y = 1; - pixel_x = -6 - }, -/obj/item/storage/box/glasses/pint{ - pixel_y = 11; - pixel_x = -6 - }, -/obj/item/storage/box/glasses/meta/metapint{ - pixel_y = 11; - pixel_x = 9 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"paX" = ( -/obj/item/bedsheet/greendouble, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"pba" = ( -/obj/structure/table/standard, -/obj/item/paper{ - info = "TRANSMISSION RECIEVED: The city is falling to a cataclysm, earthquakes, utility failiures, civil unrest, lock the city down and call for a curfew ASAP, best of luck. If the lockdown button ever loses power.. welp hope you have a generator handy."; - name = "Stained sheet of paper" - }, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/dark, -/area/awaymission/darkrp/lockdown1) -"pbF" = ( -/obj/effect/decal/remains, -/obj/effect/decal/cleanable/dirt, -/obj/item/gun/projectile/automatic/serdy/m4a1, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"pcm" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/oldsofa{ - dir = 8 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"pcE" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"pdE" = ( -/obj/structure/sign/department/conference_room, -/turf/simulated/wall/r_concrete, -/area/awaymission/darkrp/sewers) -"pdJ" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/downtownresturaunt) -"pdX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"pej" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/meat, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside) -"per" = ( -/obj/effect/floor_decal/stairs/wood_stairs{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"peA" = ( -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/toll) -"peG" = ( -/obj/machinery/recharger, -/obj/item/tool/screwdriver, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"peL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"peV" = ( -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subway) -"pfi" = ( -/obj/random/meat, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"pfv" = ( -/obj/structure/bed/double/padded, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"pfV" = ( -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"pgl" = ( -/obj/structure/table/steel_reinforced, -/obj/item/ammo_casing/a145{ - pixel_y = 5; - pixel_x = 5 - }, -/obj/item/ammo_casing/a145{ - pixel_y = -4; - pixel_x = -4; - dir = 1 - }, -/obj/item/ammo_casing/a145{ - pixel_y = 4; - pixel_x = -4; - dir = 2 - }, -/obj/item/ammo_casing/a145{ - pixel_y = 3; - pixel_x = 4; - dir = 8 - }, -/obj/item/ammo_casing/a145{ - pixel_y = -1; - pixel_x = 5; - dir = 2 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/darkrp/reference) -"pgz" = ( -/obj/structure/simple_door/wood, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"pgM" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"pgQ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/remote/noemag{ - desc = "A heavy and old button that appears to be access locked by a special ID found elsewhere."; - id = "ultrasecret1"; - name = "Slab Button I"; - req_one_access = list(886); - pixel_y = 24; - dir = 4 - }, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/reference) -"pgR" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/pocky, -/obj/item/storage/box/pocky, -/obj/item/storage/box/pocky, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"phx" = ( -/obj/structure/salvageable/console_os{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"phy" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"phZ" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/obj/structure/reagent_dispensers/fueltank/barrel/two, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkmaint) -"pip" = ( -/obj/structure/table/woodentable, -/obj/item/paper_bin, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"pjh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/barricade/planks, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnels/suburbs) -"pjI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/fence{ - dir = 4 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/ghetto) -"plb" = ( -/obj/structure/barricade/planks, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/ghettoapartments) -"plJ" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/box/syringegun, -/obj/item/gun/launcher/syringe/rapid, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"plT" = ( -/obj/machinery/drone_fabricator{ - fabricator_tag = "Unknown" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"pmc" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"pmE" = ( -/obj/structure/closet/secure_closet/bar, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"pnr" = ( -/obj/effect/floor_decal/carpet, -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/centersidehouse) -"pnJ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant/large, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"pnP" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/subpower) -"poj" = ( -/obj/item/hand_labeler, -/obj/item/mass_spectrometer/adv, -/obj/item/mass_spectrometer/adv, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"poy" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/woodentable, -/obj/item/storage/firstaid/adv, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"poN" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/backed_red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"poQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"ppl" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/plazarecroom) -"ppL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"ppV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"pqM" = ( -/obj/item/tool/wrench/brass, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"pre" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/effect/landmark/loot_spawn, -/obj/item/clothing/suit/armor/pcarrier/medium, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse1) -"prv" = ( -/obj/structure/table/woodentable, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"prL" = ( -/mob/living/simple_mob/vore/aggressive/rat/event, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"prN" = ( -/turf/simulated/floor/bluegrid, -/area/awaymission/darkrp/sewers) -"prT" = ( -/obj/item/material/shard, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"prU" = ( -/obj/random/obstruction, -/obj/item/tape/police, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/tunnels/suburbs) -"psi" = ( -/obj/item/reagent_containers/food/drinks/soymilk, -/obj/item/reagent_containers/food/drinks/soymilk, -/obj/item/reagent_containers/food/drinks/bottle/milk, -/obj/item/reagent_containers/food/drinks/bottle/milk, -/obj/item/reagent_containers/food/drinks/smallchocmilk, -/obj/item/reagent_containers/food/drinks/smallchocmilk, -/obj/item/reagent_containers/food/drinks/smallchocmilk, -/obj/item/reagent_containers/food/drinks/smallchocmilk, -/obj/item/reagent_containers/food/drinks/smallmilk, -/obj/item/reagent_containers/food/drinks/smallmilk, -/obj/item/reagent_containers/food/drinks/smallmilk, -/obj/item/reagent_containers/food/drinks/smallmilk, -/obj/structure/closet/secure_closet/freezer/fridge{ - pixel_x = -6; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazacoffee) -"psw" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/table/wooden_reinforced, -/obj/structure/curtain/open, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazarecroom) -"psK" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/structure/bed/chair/sofa/right/black, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"psZ" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/material/kitchen/utensil/fork, -/obj/item/reagent_containers/pill/happy{ - pixel_y = 6; - pixel_x = 7 - }, -/obj/item/reagent_containers/pill/diet{ - pixel_y = 2; - pixel_x = 4 - }, -/obj/item/reagent_containers/food/condiment/soysauce, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"ptd" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"ptL" = ( -/obj/structure/fence/door{ - dir = 4 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"ptQ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/subhouse1) -"puf" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"puj" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/soap, -/obj/item/soap, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"pum" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkcondo) -"pun" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"put" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"puG" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"puN" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"pvg" = ( -/obj/machinery/light/floortube{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"pvH" = ( -/obj/random/toy, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"pwa" = ( -/obj/effect/map_effect/portal/master/side_a{ - dir = 4; - portal_id = "Gsewerenter1" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subway) -"pwd" = ( -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gibdown1_flesh" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"pwh" = ( -/obj/machinery/light, -/obj/item/tape/police, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/toll) -"pwl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"pwv" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/head/helmet/bulletproof, -/obj/item/clothing/head/helmet/bulletproof, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"pwZ" = ( -/obj/effect/map_effect/radiation_emitter/strong, -/obj/structure/reagent_dispensers/fueltank/barrel{ - anchored = 1 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"pxb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"pxm" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"pyk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/darkrp/outside/plaza) -"pyr" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/item/reagent_containers/glass/bottle/robustharvest, -/obj/item/reagent_containers/glass/bottle/robustharvest, -/obj/item/shovel/spade, -/obj/item/shovel/spade, -/obj/item/shovel/spade, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"pyw" = ( -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/center) -"pyx" = ( -/obj/random/trash, -/mob/living/simple_mob/humanoid/cultist/human/bloodjaunt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"pyH" = ( -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"pzE" = ( -/obj/structure/cliff/automatic{ - dir = 8 - }, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"pAc" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkcondo) -"pAR" = ( -/obj/item/modular_computer/console/preset/civilian{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"pBj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centermaint) -"pBW" = ( -/obj/structure/bed/double/padded, -/obj/item/disk/tech_disk{ - pixel_y = 2; - pixel_x = 10; - icon_state = "nucleardisk"; - name = "toy nuclear authentucation disk"; - desc = "A perfect replica of the station's most protected asset, ages 7 and up. Does not function." - }, -/obj/item/bedsheet/greendouble, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"pBZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/chemical_dispenser/full, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"pCL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/lockdown1) -"pDe" = ( -/obj/structure/table/standard, -/obj/random/maintenance/cargo, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"pDH" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/table/marble, -/obj/machinery/reagentgrinder, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"pEs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subcondo) -"pEG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"pFg" = ( -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/darkrp/outside/suburbs) -"pGb" = ( -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"pGy" = ( -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "boss" - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/darkrp/sewers) -"pGR" = ( -/obj/structure/table/rack/shelf, -/obj/item/camera, -/obj/item/camera, -/obj/item/camera, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"pHk" = ( -/obj/structure/table/woodentable, -/obj/item/gun/projectile/shotgun/doublebarrel, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"pHx" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/fancy/cigar/havana, -/obj/item/storage/fancy/cigar/havana, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgas) -"pHZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse1) -"pII" = ( -/obj/item/tool/screwdriver/diamonddrill, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside/suburbs) -"pIV" = ( -/obj/machinery/computer/operating{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/downtownwarehouse) -"pIY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"pKF" = ( -/obj/structure/coatrack, -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/subhouse1) -"pLF" = ( -/obj/effect/map_effect/radiation_emitter, -/obj/structure/reagent_dispensers/fueltank/barrel{ - anchored = 1 - }, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"pLJ" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"pLW" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"pMm" = ( -/obj/item/weldingtool/mini, -/turf/simulated/mineral/floor/ignore_mapgen/cave{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"pMs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/lockdown1) -"pNi" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/toll) -"pNo" = ( -/turf/simulated/wall/wood, -/area/awaymission/darkrp/ghettohouse2) -"pNF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/fyellow, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"pOZ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"pQu" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/darkrp/subway) -"pRc" = ( -/turf/unsimulated/wall/seperator, -/area/awaymission/darkrp/tunnel/ghettos) -"pRk" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/darkrp/reference) -"pRy" = ( -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"pRz" = ( -/obj/structure/plushie/ian, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"pRI" = ( -/obj/machinery/light{ - layer = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"pSl" = ( -/mob/living/simple_mob/humanoid/merc/ranged/technician, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/center) -"pSm" = ( -/obj/structure/fence/corner, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"pSw" = ( -/obj/structure/table/steel_reinforced, -/obj/item/surgical/retractor, -/obj/item/surgical/hemostat, -/obj/item/surgical/scalpel, -/obj/item/stack/medical/advanced/bruise_pack, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/downtownwarehouse) -"pSF" = ( -/turf/simulated/wall/titanium, -/area/awaymission/darkrp/downtownwarehouse) -"pTk" = ( -/obj/structure/table/woodentable, -/obj/random/maintenance/clean, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"pTw" = ( -/obj/structure/flora/tree/jungle, -/turf/simulated/floor/outdoors/mud{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"pTR" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"pTT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/confetti, -/obj/effect/decal/remains/human, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"pUb" = ( -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"pUj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/morestuff, -/obj/random/maintenance/morestuff, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse1) -"pUz" = ( -/mob/living/simple_mob/humanoid/merc/ranged/laser, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/warehouses) -"pUW" = ( -/obj/item/weldingtool/electric, -/turf/simulated/mineral/floor/ignore_mapgen/cave{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"pVo" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"pVt" = ( -/obj/machinery/button/remote/blast_door{ - id = "centralbuilding3"; - name = "Shutters Button"; - pixel_x = 1; - dir = 4; - pixel_y = -25 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"pVv" = ( -/obj/structure/closet/secure_closet/medical_wall{ - name = "O- Blood Locker"; - pixel_x = 32; - req_access = null - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"pVB" = ( -/obj/item/material/shard, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"pXq" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"pYi" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/machinery/door/firedoor/multi_tile/glass, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownwarehouse) -"pYt" = ( -/obj/structure/railing/grey, -/obj/structure/railing/grey{ - pixel_y = 0; - dir = 4 - }, -/obj/structure/prop/statue/pillar, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/outside/plaza) -"pYC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/simple_door/wood, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazacoffee) -"pYN" = ( -/obj/structure/filingcabinet, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"pYY" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkghetto2) -"pZx" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"pZR" = ( -/obj/random/outcrop, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"pZZ" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"qaa" = ( -/obj/effect/decal/remains, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"qaE" = ( -/turf/simulated/floor/outdoors/lavaland/basalt, -/area/awaymission/darkrp/outside/suburbs) -"qbv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"qcC" = ( -/obj/structure/table/woodentable, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"qcK" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 9; - pixel_x = 4 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"qcX" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/base) -"qdb" = ( -/obj/effect/landmark/corpse/random_civ, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"qdI" = ( -/turf/simulated/wall/wood, -/area/awaymission/darkrp/subhouse1) -"qeD" = ( -/obj/structure/table/marble, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"qeN" = ( -/turf/simulated/wall/skipjack, -/area/awaymission/darkrp/sewers) -"qeU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"qfW" = ( -/obj/structure/grille, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"qfX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"qgf" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/grenade/box, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"qgF" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"qgH" = ( -/obj/item/material/sword/katana, -/obj/structure/barricade/cutout/wizard, -/obj/item/clothing/head/collectable/wizard, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"qhu" = ( -/turf/simulated/floor/tiled/steel_ridged, -/area/awaymission/darkrp/downtownempty) -"qii" = ( -/obj/effect/decal/remains, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/tunnels/suburbs) -"qiv" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/purple, -/turf/simulated/floor/carpet/oracarpet, -/area/awaymission/darkrp/plazahotel) -"qiL" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"qiU" = ( -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/outside) -"qiY" = ( -/obj/structure/flora/tree/bigtree, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"qjf" = ( -/turf/simulated/wall/dungeon, -/area/awaymission/darkrp/reference) -"qjh" = ( -/obj/structure/janitorialcart{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"qkB" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/syndie_kit/chameleon, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"qkL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"qlD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/northleft{ - req_access = null - }, -/obj/structure/window/reinforced{ - health = 1e+006; - req_access = list(5) - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/ears/earring/stud/gold, -/obj/item/clothing/gloves/ring/material/glass, -/obj/item/toy/plushie/carp/gold, -/obj/item/stack/material/diamond{ - amount = 15 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"qmE" = ( -/obj/item/material/shard/shrapnel{ - icon_state = "splinterslarge" - }, -/mob/living/simple_mob/mechanical/hivebot, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"qmL" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"qnc" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazacoffee) -"qnf" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/material/sword/katana, -/obj/item/clothing/head/fedora, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"qng" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/woodentable, -/obj/item/trash/bowl, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"qnp" = ( -/obj/machinery/atmospherics/unary/freezer{ - icon_state = "freezer" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/darkrp/downtownwarehouse) -"qnH" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/carpet/blue, -/area/awaymission/darkrp/plazahotel) -"qog" = ( -/obj/structure/table/woodentable, -/obj/item/paint_palette{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/paint_palette{ - pixel_x = 6; - pixel_y = 0 - }, -/obj/item/paint_palette{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/paint_brush{ - pixel_x = -4; - pixel_y = -5 - }, -/obj/item/paint_brush{ - pixel_x = -6; - pixel_y = -1 - }, -/obj/item/paint_brush{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"qoj" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/table/steel_reinforced, -/obj/random/multiple/gun/projectile/handgun, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"qok" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"qos" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"qpj" = ( -/turf/simulated/wall/wood, -/area/awaymission/darkrp/brokehouse) -"qpD" = ( -/obj/machinery/light{ - layer = 3 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"qpN" = ( -/obj/structure/bonfire/permanent, -/obj/item/stack/rods, -/turf/simulated/floor/outdoors/dirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"qpW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"qqI" = ( -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centermaint) -"qrc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/mecha_part_fabricator{ - req_access = null - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"qrv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"qrS" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "slab2" - }, -/area/awaymission/darkrp/outside/warehouses) -"qsh" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"qsn" = ( -/obj/structure/railing/grey, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"qtc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"qtr" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/trash/plate, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"qtw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"qtW" = ( -/obj/structure/fence/end{ - dir = 4 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/ghetto) -"qtZ" = ( -/obj/structure/closet/cabinet, -/obj/item/storage/wallet/random, -/obj/item/towel/random, -/obj/item/melee/umbrella/random, -/obj/random/carp_plushie, -/obj/random/curseditem, -/obj/random/junk, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"quw" = ( -/turf/simulated/wall/wood, -/area/awaymission/darkrp/subhouse2) -"qvb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"qvh" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/light{ - layer = 3 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"qvi" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse1) -"qvx" = ( -/obj/effect/floor_decal/stairs, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"qvF" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/carbon/human/ai_controlled/replicant{ - icon_state = "rune_teleport" - }, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"qvT" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"qwf" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/barricade/planks, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazacoffee) -"qwQ" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subhouse2) -"qyO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"qBB" = ( -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"qCk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"qCD" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"qCI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"qCO" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazarecroom) -"qEu" = ( -/obj/structure/plushie/ian{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"qEO" = ( -/obj/item/reagent_containers/food/drinks/soymilk, -/obj/item/reagent_containers/food/drinks/soymilk, -/obj/item/reagent_containers/food/drinks/bottle/milk, -/obj/item/reagent_containers/food/drinks/bottle/milk, -/obj/item/reagent_containers/food/drinks/smallchocmilk, -/obj/item/reagent_containers/food/drinks/smallchocmilk, -/obj/item/reagent_containers/food/drinks/smallchocmilk, -/obj/item/reagent_containers/food/drinks/smallchocmilk, -/obj/item/reagent_containers/food/drinks/smallmilk, -/obj/item/reagent_containers/food/drinks/smallmilk, -/obj/item/reagent_containers/food/drinks/smallmilk, -/obj/item/reagent_containers/food/drinks/smallmilk, -/obj/structure/closet/secure_closet/freezer/fridge{ - pixel_x = 6; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"qER" = ( -/obj/structure/table/standard, -/obj/random/tool, -/obj/item/smes_coil, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"qFZ" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "amogus" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"qGK" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/gun/projectile/revolvershotgun, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"qHz" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/mob/living/carbon/human/ai_controlled/greytide{ - icon_state = "rune_teleport" - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"qIz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/simple_door/wood, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"qIQ" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/subhouse1) -"qJd" = ( -/mob/living/simple_mob/humanoid/merc/melee/sword, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"qJv" = ( -/obj/machinery/button/remote/blast_door{ - id = "sewers1"; - pixel_x = -22; - pixel_y = -7; - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"qJw" = ( -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"qJW" = ( -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = -4 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = 8 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = -4 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/item/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/structure/table/marble, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"qKE" = ( -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"qKT" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"qMh" = ( -/obj/structure/ship_munition/disperser_charge/explosive, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"qMp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"qMD" = ( -/turf/simulated/wall/skipjack, -/area/awaymission/darkrp/centerwarehouse) -"qMR" = ( -/obj/item/modular_computer/console/preset/civilian{ - pixel_y = 0; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"qNo" = ( -/obj/effect/decal/cleanable/filth, -/turf/simulated/mineral/floor/ignore_mapgen/cave{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"qOr" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"qOt" = ( -/obj/structure/barricade, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"qOG" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/smes/buildable{ - inputting = 1; - outputting = 1; - input_attempt = 1 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"qPn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/mob/living/simple_mob/mechanical/hivebot/precusor/machinegun, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"qPH" = ( -/obj/machinery/button/remote/blast_door{ - id = "centralbuilding2"; - name = "Warehouse Shutters Button"; - pixel_x = -4; - dir = 4; - pixel_y = 27 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"qQi" = ( -/obj/effect/map_effect/portal/master/side_b{ - dir = 8; - portal_id = "Gsewerenter1" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"qQr" = ( -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subhouse1) -"qQR" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/quickdraw/syringe_case, -/obj/item/storage/quickdraw/syringe_case, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"qQY" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"qRg" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"qRo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/item/rig/merc, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkmaint) -"qSf" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/downtownwarehouse) -"qSQ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"qTI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"qUE" = ( -/obj/structure/table/marble, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"qUW" = ( -/turf/simulated/floor/lava, -/area/awaymission/darkrp/outside) -"qVb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"qVe" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkghetto2) -"qVk" = ( -/obj/structure/table/steel, -/obj/item/tool/wirecutters, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"qVI" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/material/cloth{ - amount = 25 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/outside) -"qWg" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"qXi" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gib2_flesh" - }, -/turf/simulated/floor/carpet/blue, -/area/awaymission/darkrp/plazahotel) -"qXx" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/barricade/planks, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/parkcondo) -"qXY" = ( -/obj/effect/decal/remains, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"qYQ" = ( -/obj/machinery/power/port_gen/pacman/super, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"qZr" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/pen, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"qZA" = ( -/obj/structure/table/standard, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"qZB" = ( -/obj/structure/flora/tree/jungle_small, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"qZN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"raw" = ( -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"rba" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"rbz" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/suit/armor/material/makeshift/durasteel, -/obj/item/clothing/head/helmet/material/makeshift/durasteel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"rco" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"rcR" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/parkghetto2) -"rdU" = ( -/obj/structure/table/woodentable, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"rez" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkghetto1) -"reB" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"rfo" = ( -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"rfN" = ( -/obj/effect/map_effect/radiation_emitter/strong, -/obj/structure/prop/poicanister, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"rgB" = ( -/obj/structure/flora/pottedplant/largebush, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"rhr" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/curtain/medical, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"rht" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"rju" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/reagent_dispensers/beerkeg/fakenuke, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"rkL" = ( -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"rkN" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"rlc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/center) -"rle" = ( -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subway) -"rli" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subcondo) -"rlw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"rlO" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"rmH" = ( -/obj/machinery/light{ - dir = 1; - overlay_color = "#a12a22" - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazacoffee) -"rmQ" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/syndie_kit/demolitions_super_heavy, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"rnb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"rnB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/button/holosign{ - id = "baropenrp"; - name = "Open Sign"; - pixel_x = 25; - pixel_y = 6 - }, -/obj/machinery/light_switch{ - name = "light switch "; - pixel_x = 32; - pixel_y = 6 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"roq" = ( -/obj/item/material/shard/shrapnel{ - icon_state = "splinterslarge" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"roU" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/mob/living/simple_mob/humanoid/merc/ranged/deagle, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"roX" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/barricade/planks, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"rpu" = ( -/obj/effect/floor_decal/corner/yellow/border/shifted, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"rpW" = ( -/obj/structure/prop/rock/flat, -/turf/simulated/floor/outdoors/dirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"rrE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/material/refined, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"rsd" = ( -/turf/simulated/wall, -/area/awaymission/darkrp/outside) -"rss" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/effect/decal/remains, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/darkrp/sewers) -"rtk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"rtM" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/item/ammo_magazine/m10mm/pistol, -/obj/item/ammo_magazine/m10mm/pistol, -/obj/item/ammo_magazine/m10mm/pistol, -/obj/item/ammo_magazine/m10mm/pistol, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"ruh" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/woodentable, -/obj/item/material/kitchen/rollingpin, -/obj/item/material/knife/butch, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/downtownresturaunt) -"ruD" = ( -/mob/living/simple_mob/humanoid/merc/melee, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"ruJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/mob/living/simple_mob/humanoid/russian, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"ruV" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"rvk" = ( -/obj/item/stool{ - dir = 1 - }, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/tunnels/suburbs) -"rvB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"rwd" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/water/indoors, -/area/awaymission/darkrp/sewers) -"rwh" = ( -/obj/structure/cliff/automatic{ - dir = 6 - }, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"rwx" = ( -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"rxh" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"rxQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"rzG" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/item/clothing/suit/armor/pcarrier/medium, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse1) -"rzS" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"rAC" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/vehicle/train/trolley{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"rAN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"rAV" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"rBk" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/rack/shelf, -/obj/item/storage/pill_bottle/happy, -/obj/item/storage/pill_bottle/imidazoline, -/obj/item/storage/pill_bottle/vermicetol, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownpharmacy) -"rBC" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/folder/white, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"rBQ" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"rCB" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/downtownempty) -"rDg" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/darkrp/tunnel/ghettos) -"rDL" = ( -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/item/bedsheet, -/obj/structure/bed/padded, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/sewers) -"rDN" = ( -/obj/item/flame/candle/everburn, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"rDO" = ( -/mob/living/simple_mob/animal/space/bats/cult/strong, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"rDR" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"rEg" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"rEL" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"rGd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/toll) -"rGi" = ( -/obj/machinery/conveyor_switch{ - id = "amogus" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"rGF" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"rHS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"rIe" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"rIM" = ( -/obj/machinery/oxygen_pump/mobile/anesthetic, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/downtownwarehouse) -"rJj" = ( -/obj/random/trash_pile, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"rKT" = ( -/obj/structure/table/rack/shelf, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - dir = 2 - }, -/obj/item/storage/firstaid/clotting, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownpharmacy) -"rLT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"rMA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"rNq" = ( -/obj/structure/table/steel, -/obj/item/tool/screwdriver, -/obj/random/toolbox, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"rNu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"rNK" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/under/soviet, -/obj/item/clothing/head/ushanka/soviet, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"rOH" = ( -/obj/effect/floor_decal/borderfloor/shifted, -/turf/simulated/floor/bmarble, -/area/awaymission/darkrp/reference) -"rOO" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"rPl" = ( -/obj/structure/closet/crate, -/obj/item/clothing/suit/armor/pcarrier/explorer/deluxe, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"rPs" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"rPH" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/item/reagent_containers/food/condiment/small/packet/mayo, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"rRi" = ( -/obj/structure/salvageable/console_broken_os{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"rRk" = ( -/obj/structure/bed/chair/wood, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"rRI" = ( -/obj/machinery/light/bigfloorlamp/flicker, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"rSx" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/subcondo) -"rTi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"rUh" = ( -/mob/living/simple_mob/humanoid/merc/ranged/ionrifle, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"rUA" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"rVs" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/blood, -/turf/simulated/shuttle/floor/voidcraft, -/area/awaymission/darkrp/sewers) -"rVS" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"rWs" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/card/id{ - access = list(886); - name = "slab ID I" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"rWQ" = ( -/obj/structure/closet/toolcloset, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"rXr" = ( -/obj/effect/map_effect/portal/master/side_a{ - dir = 1; - portal_id = "gsewer1" - }, -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"rXF" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"rYy" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"rYQ" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/item/grenade/chem_grenade/antiweed, -/obj/item/grenade/chem_grenade/antiweed, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"rZd" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"rZv" = ( -/obj/structure/bed/chair/sofa/bench/marble{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"rZH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"rZI" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"saB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/comfy/black{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/subhouse1) -"scA" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/vending/wallmed1{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"sdj" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/toll) -"seG" = ( -/obj/structure/sign/chemistry{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"seN" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/masks, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/downtownwarehouse) -"sfr" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"sfC" = ( -/obj/structure/table/woodentable, -/obj/random/maintenance/foodstuff, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"sfE" = ( -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/structure/closet/wardrobe/medic_white, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/sewers) -"sgb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"sgC" = ( -/obj/structure/bed/chair/comfy/black{ - pixel_y = 0; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subhouse2) -"sgS" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/center) -"sgV" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/outside) -"shx" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/subpowermaint) -"shS" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"siK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"siR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"sjm" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazashop) -"sjR" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"sjW" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/table/bench/steel, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"sks" = ( -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/subhouse2) -"skA" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "amogus" - }, -/obj/item/reagent_containers/food/snacks/pastatomato, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"skV" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkghetto1) -"slC" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/subcondo) -"smr" = ( -/obj/machinery/light{ - layer = 3 - }, -/obj/machinery/chem_master, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"snP" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"snZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/darkrp/lockdown1) -"sot" = ( -/obj/structure/fence/corner{ - dir = 8 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"soD" = ( -/obj/machinery/light/floortube{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"soP" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"spp" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24; - start_charge = 0 - }, -/obj/effect/map_effect/perma_light{ - light_range = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/lockdown1) -"spN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"spW" = ( -/obj/structure/table/rack/shelf, -/obj/item/ammo_magazine/m45, -/obj/item/ammo_magazine/m45, -/obj/item/ammo_magazine/m45, -/obj/item/ammo_magazine/m45, -/obj/item/ammo_magazine/m45, -/obj/item/ammo_magazine/m45, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"sqz" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"sqN" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/item/stack/material/glass/reinforced{ - amount = 2 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"src" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"srI" = ( -/obj/item/flashlight/lantern, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"ssa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/dominator/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"ssD" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/downtownpharmacy) -"ssL" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"stY" = ( -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 1 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"sui" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"svx" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"svT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "slab2" - }, -/area/awaymission/darkrp/outside/warehouses) -"swc" = ( -/obj/effect/decal/remains, -/obj/structure/prop/machine/nt_biocan, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"swS" = ( -/obj/random/trash, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"sxt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"sxE" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/downtowncenter) -"sxK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/base) -"sxW" = ( -/obj/structure/barricade/cutout/cultist, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"syc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"szS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subhouse1) -"sAd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"sAW" = ( -/obj/structure/table/marble, -/obj/structure/sink/countertop{ - dir = 2; - pixel_y = 7 - }, -/obj/item/trash/plate{ - pixel_y = -2 - }, -/obj/item/trash/plate, -/obj/item/trash/plate{ - pixel_y = 2 - }, -/obj/item/trash/plate{ - pixel_y = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"sEq" = ( -/turf/simulated/shuttle/floor/voidcraft, -/area/awaymission/darkrp/sewers) -"sEP" = ( -/obj/structure/flora/pottedplant/drooping, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"sFg" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/darkrp/sewers) -"sFh" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"sFM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"sFW" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"sGy" = ( -/obj/effect/floor_decal/industrial/warning/color/red, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"sGL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"sGS" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/carpet/oracarpet, -/area/awaymission/darkrp/plazarecroom) -"sHe" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access = null - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"sHF" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastleft, -/obj/item/clothing/suit/cultrobes/alt, -/obj/item/clothing/suit/cultrobes/alt, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"sHQ" = ( -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/obj/structure/table/standard, -/obj/item/surgical/scalpel/laser3, -/obj/item/surgical/cautery, -/obj/item/surgical/circular_saw/manager{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"sHR" = ( -/mob/living/simple_mob/humanoid/cultist/tesh, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"sIA" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"sJG" = ( -/obj/machinery/light/floortube{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"sJN" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"sKj" = ( -/obj/structure/table/marble, -/obj/item/card/id/medical{ - access = list(696); - name = "Medical Staff ID Card"; - desc = "A card issued to the downtown medical staff." - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"sKS" = ( -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkghetto1) -"sMi" = ( -/obj/structure/table/woodentable, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/microwave{ - pixel_y = 3; - pixel_x = 2 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subcondo) -"sMF" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"sMT" = ( -/obj/structure/bed/chair/backed_red{ - dir = 1 - }, -/obj/effect/floor_decal/carpet, -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/plazashop) -"sNc" = ( -/obj/item/stack/material/leather{ - amount = 12 - }, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"sNd" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"sNA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/downtownshop) -"sNF" = ( -/obj/item/assembly/mousetrap/armed, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"sOk" = ( -/mob/living/carbon/human/ai_controlled/replicant{ - icon_state = "rune_teleport" - }, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"sOz" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/darkrp/downtownwarehouse) -"sOC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"sOG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/mob/living/simple_mob/vore/aggressive/rat/phoron, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"sOT" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/darkrp/outside/ghetto) -"sPu" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/vore/aggressive/rat, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"sPy" = ( -/obj/structure/closet/crate/trashcart, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"sPV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"sPZ" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"sQN" = ( -/turf/simulated/shuttle/wall/voidcraft, -/area/awaymission/darkrp/reference) -"sRl" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"sRD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse1) -"sRJ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"sSg" = ( -/mob/living/simple_mob/vore/aggressive/rat, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"sTj" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/obj/structure/sink{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"sTm" = ( -/obj/structure/table/standard, -/obj/item/tool/screwdriver{ - pixel_y = 0; - pixel_x = -7 - }, -/obj/item/slime_irradiator{ - pixel_y = 3 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"sTw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"sTQ" = ( -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"sUo" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/structure/bed/chair/bay/comfy/black{ - dir = 1 - }, -/turf/simulated/shuttle/floor/voidcraft, -/area/awaymission/darkrp/sewers) -"sVl" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/effect/decal/remains, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/darkrp/sewers) -"sVs" = ( -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subcondo) -"sVM" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/warehouse2) -"sVV" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"sWZ" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/power/rtg/advanced, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"sXy" = ( -/obj/effect/decal/remains/mouse, -/turf/simulated/floor/water/contaminated, -/area/awaymission/darkrp/outside) -"sYg" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"sYO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkmaint) -"sZz" = ( -/obj/structure/table/woodentable, -/obj/item/clothing/under/rank/mailman, -/obj/item/clothing/head/mailman, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"tag" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"tai" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"taD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"taF" = ( -/turf/simulated/mineral/ignore_oregen, -/area/awaymission/darkrp/sewers) -"taU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"tbd" = ( -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"tcE" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_y = -1; - pixel_x = 9 - }, -/obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_y = -1; - pixel_x = -6 - }, -/obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_y = -1; - pixel_x = -1 - }, -/obj/item/reagent_containers/food/drinks/cans/waterbottle{ - pixel_y = -1; - pixel_x = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgas) -"tcK" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"tdv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"teS" = ( -/obj/effect/fake_sun/warm, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/sewers) -"tfX" = ( -/turf/simulated/mineral/ignore_oregen, -/area/awaymission/darkrp/outside/ghetto) -"tgf" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/marble, -/obj/item/material/kitchen/rollingpin, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"tgi" = ( -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"tgo" = ( -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazacoffee) -"the" = ( -/obj/structure/table/woodentable, -/obj/random/action_figure, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"thY" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/gamblingtable, -/obj/random/cigarettes, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"tif" = ( -/obj/effect/map_effect/portal/master/side_b{ - portal_id = "deepsewers2" - }, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"tjm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"tkm" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/ghettobank) -"tkF" = ( -/turf/simulated/wall/dungeon, -/area/awaymission/darkrp/outside/plaza) -"tkH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"tkN" = ( -/obj/structure/fence, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"tkP" = ( -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/reference) -"tkV" = ( -/obj/structure/boulder, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"tlc" = ( -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"tll" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/quickdraw/syringe_case, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"tmn" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/cable_coil/pink, -/obj/item/clothing/suit/armor/pcarrier/light, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"tmD" = ( -/obj/random/trash, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"tmE" = ( -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"tmI" = ( -/obj/item/assembly/mousetrap/armed, -/obj/item/reagent_containers/food/snacks/cheesewedge, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"tmU" = ( -/obj/structure/railing/grey{ - pixel_y = 0; - dir = 8 - }, -/obj/structure/railing/grey, -/turf/simulated/floor/outdoors/lavaland/basalt, -/area/awaymission/darkrp/outside/plaza) -"tmV" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"tnk" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"tnl" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"toe" = ( -/obj/machinery/gateway{ - dir = 8 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/darkrp/sewers) -"toK" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"tpi" = ( -/mob/living/simple_mob/humanoid/merc/ranged/smg, -/turf/simulated/floor/outdoors/dirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"tqd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating{ - icon_state = "dmg4" - }, -/area/awaymission/darkrp/outside) -"tqw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"tqF" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/toll) -"trZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"tsh" = ( -/mob/living/simple_mob/vore/aggressive/rat, -/turf/simulated/floor/water/indoors, -/area/awaymission/darkrp/sewers) -"ttp" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/humanoid/russian, -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"ttC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/trash/material/device, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"tuh" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside) -"tuT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/maintenance/medical, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"tvM" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/subgas) -"twm" = ( -/obj/machinery/vending/cola, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"twG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/random/vendordrink{ - dir = 4 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"txq" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/parkcondo) -"txs" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "amogus" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"txE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood/broken, -/area/awaymission/darkrp/outside) -"tzb" = ( -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gib2_flesh" - }, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"tzd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"tzO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"tzT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"tAo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/fence/door, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/subpower) -"tAK" = ( -/obj/effect/landmark/loot_spawn, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"tBv" = ( -/obj/structure/closet/crate{ - name = "Prototype Medical Equipment" - }, -/obj/item/gun/projectile/cell_loaded/medical/cmo, -/obj/item/ammo_magazine/cell_mag/medical/advanced, -/obj/item/ammo_casing/microbattery/medical/brute3, -/obj/item/ammo_casing/microbattery/medical/brute3, -/obj/item/ammo_casing/microbattery/medical/burn3, -/obj/item/ammo_casing/microbattery/medical/burn3, -/obj/item/ammo_casing/microbattery/medical/omni3, -/obj/item/ammo_casing/microbattery/medical/corpse_mend, -/obj/machinery/door/window/westleft{ - dir = 2 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownpharmacy) -"tCe" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"tCw" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"tDe" = ( -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/tunnels/suburbs) -"tDf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"tEo" = ( -/obj/item/weldingtool/largetank, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkmaint) -"tFn" = ( -/obj/random/junk, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"tFu" = ( -/obj/machinery/door/blast/puzzle{ - id = "ultrasecret1" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/darkrp/reference) -"tFS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/bay/chair/padded/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"tGl" = ( -/obj/item/tape/police, -/turf/simulated/floor/outdoors/dirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"tGH" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/morestuff, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse1) -"tGU" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/subhouse2) -"tHg" = ( -/obj/machinery/light{ - layer = 3 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"tHP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gib1_flesh" - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside) -"tHV" = ( -/obj/structure/salvageable/data_os, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"tIh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"tIu" = ( -/obj/structure/reagent_dispensers/fueltank/barrel/two, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkmaint) -"tIK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"tIQ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"tJD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/tunnels/plaza) -"tJK" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/outside/park) -"tJO" = ( -/obj/structure/table/woodentable, -/obj/random/toy, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"tKg" = ( -/obj/structure/closet, -/obj/item/clothing/suit/storage/apron/white, -/obj/item/clothing/suit/storage/apron/white, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazacoffee) -"tKv" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/sink/countertop{ - dir = 2; - pixel_y = 7 - }, -/obj/structure/table/marble, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"tKE" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/mob/living/simple_mob/vore/alienanimals/skeleton/alt, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/plazahotel) -"tKK" = ( -/obj/machinery/appliance/cooker/oven, -/obj/item/reagent_containers/food/snacks/macncheese, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"tLs" = ( -/obj/structure/table/marble, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/subhouse2) -"tLP" = ( -/obj/structure/flora/tree/jungle_small, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"tMw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"tME" = ( -/turf/simulated/floor/water/indoors, -/area/awaymission/darkrp/sewers) -"tMF" = ( -/obj/structure/table/marble, -/obj/structure/sink/countertop{ - dir = 2; - pixel_y = 7 - }, -/obj/item/trash/plate{ - pixel_y = -2 - }, -/obj/item/trash/plate, -/obj/item/trash/plate{ - pixel_y = 2 - }, -/obj/item/trash/plate{ - pixel_y = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"tMJ" = ( -/obj/structure/bed/chair/oldsofa/right{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"tNw" = ( -/obj/structure/cliff/automatic{ - dir = 5 - }, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"tOd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/random/trash, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centermaint) -"tPq" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazacoffee) -"tPs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"tPu" = ( -/obj/structure/sink/kitchen{ - pixel_y = 17 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazacoffee) -"tPW" = ( -/obj/machinery/door/airlock/alien, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"tQg" = ( -/obj/structure/bed/chair/wood{ - dir = 1; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"tQr" = ( -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"tQK" = ( -/obj/machinery/door/blast/gate{ - id = "toll2" - }, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/toll) -"tRi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"tRJ" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"tRU" = ( -/obj/machinery/button/remote/blast_door{ - id = "centralbuilding22"; - name = "Warehouse Shutters Button"; - pixel_x = -4; - dir = 4; - pixel_y = 27 - }, -/obj/structure/table/reinforced, -/obj/machinery/chemical_dispenser/full, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"tRW" = ( -/obj/machinery/power/rtg/advanced, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"tSb" = ( -/obj/structure/table/rack, -/obj/item/flashlight, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"tTP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/base) -"tUF" = ( -/obj/item/frame, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"tVq" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/darkrp/tunnels/plaza) -"tVr" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"tVU" = ( -/obj/structure/table/rack/shelf, -/obj/item/ammo_magazine/m9mm, -/obj/item/ammo_magazine/m9mm, -/obj/item/ammo_magazine/m9mm, -/obj/item/ammo_magazine/m9mm, -/obj/item/ammo_magazine/m9mm, -/obj/item/ammo_magazine/m9mm, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"tVZ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"tWz" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/parkcondo) -"tXl" = ( -/obj/item/stool/padded{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"tYN" = ( -/obj/item/material/ashtray/glass, -/obj/item/radio/phone, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"tZc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/salvageable/console_os{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"tZo" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"tZL" = ( -/obj/item/tool/wirecutters, -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "slab2" - }, -/area/awaymission/darkrp/outside) -"tZP" = ( -/turf/simulated/floor/wood/broken, -/area/awaymission/darkrp/outside) -"tZV" = ( -/obj/structure/fence/corner, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"uae" = ( -/obj/effect/decal/remains/human, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"uaB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"uaX" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/machinery/gibber{ - emagged = 1; - name = "\improper Cutie Mulcher"; - desc = "It is a huge-sized item." - }, -/obj/random/meat, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"ubK" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subcondo) -"uco" = ( -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/snacks/dip/guac, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"ucy" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkghetto1) -"ucO" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"ucQ" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"udm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/oldsofa{ - dir = 8 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"udv" = ( -/obj/structure/girder, -/turf/simulated/floor, -/area/awaymission/darkrp/brokehouse) -"uek" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/centersidehouse) -"ueF" = ( -/obj/machinery/power/terminal, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"ueY" = ( -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"ufy" = ( -/obj/structure/salvageable/implant_container_os, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"ugc" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"uhk" = ( -/obj/structure/cliff/automatic/corner{ - dir = 10 - }, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"uhn" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"uhC" = ( -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"uhO" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"uhZ" = ( -/obj/machinery/computer/arcade, -/turf/simulated/floor/carpet/retro, -/area/awaymission/darkrp/plazarecroom) -"uiW" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"ujd" = ( -/obj/structure/closet/secure_closet/medical2{ - req_access = null - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"ujr" = ( -/obj/machinery/door/blast/multi_tile/four_tile_hor_sec{ - id = "lockdown1" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/reference) -"ukE" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"ukL" = ( -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/snacks/bacon_and_eggs, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"ulY" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"umY" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medbay"; - req_access = null; - req_one_access = list(696) - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"umZ" = ( -/obj/structure/table/standard, -/obj/machinery/reagentgrinder, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownpharmacy) -"unK" = ( -/obj/effect/floor_decal/borderfloorwhite, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"unN" = ( -/obj/machinery/reagentgrinder, -/obj/item/tool/screwdriver, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"unS" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "spawnwarehouse" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"uoz" = ( -/obj/item/tape/police, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/toll) -"uoD" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazarecroom) -"upp" = ( -/obj/item/stack/cable_coil/green, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"uqp" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"uqr" = ( -/mob/living/simple_mob/humanoid/merc/melee, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"uqG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"urX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkcondo) -"usk" = ( -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/clothing/accessory/stethoscope, -/obj/item/folder/white, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/sewers) -"usR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"uuu" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"uuE" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/outside/downtown) -"uuF" = ( -/obj/machinery/light/small/flicker{ - dir = 8 - }, -/obj/random/trash, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"uvF" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/downtownempty) -"uwy" = ( -/obj/item/weldingtool, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkmaint) -"uxy" = ( -/obj/structure/window/reinforced/survival_pod{ - dir = 8 - }, -/obj/machinery/door/blast/regular/open{ - id = "stargazer_blast"; - name = "window blast shield" - }, -/obj/item/material/shard/plastitaniumglass, -/turf/simulated/shuttle/plating, -/area/awaymission/darkrp/sewers) -"uym" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/darkrp/sewers) -"uyn" = ( -/obj/machinery/door/blast/gate{ - id = "toll1" - }, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/toll) -"uyw" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"uyJ" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/suit/armor/pcarrier/merc, -/obj/item/clothing/suit/armor/pcarrier/merc, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"uAa" = ( -/obj/item/flame/candle/everburn, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/outside) -"uAB" = ( -/obj/random/trash, -/turf/simulated/floor/wood/broken, -/area/awaymission/darkrp/outside) -"uBs" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/woodentable, -/obj/machinery/reagentgrinder, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_containers/food/condiment/enzyme, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/downtownresturaunt) -"uCp" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/browndouble, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"uCT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/sandbag{ - icon_state = "sandbags" - }, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnels/suburbs) -"uDi" = ( -/obj/machinery/door/airlock/glass_security{ - req_one_access = list(860) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/lockdown1) -"uDv" = ( -/mob/living/simple_mob/humanoid/merc/voxpirate/ranged/suppressor, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/ghetto) -"uDy" = ( -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnel/ghettos) -"uDC" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"uEM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkmaint) -"uFg" = ( -/obj/structure/railing/grey{ - pixel_y = 0; - dir = 8 - }, -/obj/item/material/barbedwire{ - anchored = 1; - icon_state = "barbedwire-out" - }, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"uFq" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subapartments) -"uGH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"uGP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"uGS" = ( -/obj/structure/bed/double/padded, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/outside) -"uGU" = ( -/obj/structure/table/steel, -/obj/random/toolbox, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"uGV" = ( -/obj/structure/salvageable/computer_os, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"uGW" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/subcondo) -"uHE" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser, -/turf/simulated/floor/tiled/dark, -/area/awaymission/darkrp/lockdown1) -"uHF" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazawarehouse) -"uHS" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/warehouse1) -"uIj" = ( -/turf/simulated/wall/concrete, -/area/awaymission/darkrp/tunnels/suburbs) -"uIu" = ( -/obj/structure/table/woodentable, -/obj/item/flame/lighter{ - pixel_x = -6 - }, -/obj/random/cigarettes{ - pixel_y = 0; - pixel_x = 5 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"uJa" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"uJt" = ( -/obj/machinery/button/remote/blast_door{ - id = "smallpharmacy1"; - name = "Shutters Button"; - pixel_x = -25; - pixel_y = -6; - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownpharmacy) -"uJL" = ( -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/subcondo) -"uJQ" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"uKI" = ( -/obj/structure/cliff/automatic, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"uMl" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"uMF" = ( -/obj/structure/flora/tree/jungle, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"uMH" = ( -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gib2_flesh" - }, -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gibup1_flesh" - }, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"uNY" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"uOi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"uOk" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/trash/waffles, -/obj/item/trash/plate, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"uOu" = ( -/obj/structure/safe, -/obj/item/bluespace_harpoon, -/obj/item/cell/device/weapon/recharge/alien, -/obj/item/aliencoin/phoron, -/obj/item/aliencoin/silver, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"uPz" = ( -/obj/structure/reagent_dispensers/fueltank/barrel/two, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"uPI" = ( -/obj/item/tool/crowbar/heavysniper, -/turf/simulated/mineral/floor/ignore_mapgen/cave{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"uQe" = ( -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"uQX" = ( -/obj/structure/bed/chair/bay/comfy/black{ - dir = 1 - }, -/mob/living/simple_mob/vore/aggressive/rat, -/turf/simulated/shuttle/floor/voidcraft, -/area/awaymission/darkrp/sewers) -"uRM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"uRT" = ( -/obj/structure/table/steel, -/obj/random/tool/powermaint, -/obj/item/gun/energy/mininglaser, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"uTf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/simple_door/wood, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"uTv" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/basic, -/turf/simulated/floor/outdoors/lavaland/basalt, -/area/awaymission/darkrp/outside/plaza) -"uUo" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse1) -"uUs" = ( -/obj/random/grenade/lethal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"uUL" = ( -/obj/structure/table/steel, -/obj/item/tool/wirecutters, -/obj/item/weldingtool/electric, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"uWF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"uWG" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/healthanalyzer/phasic, -/obj/item/healthanalyzer/phasic, -/obj/item/healthanalyzer/phasic, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"uWN" = ( -/obj/machinery/mecha_part_fabricator/pros{ - req_access = null - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"uWP" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/head/helmet/bulletproof, -/obj/item/clothing/head/helmet/bulletproof, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"uWQ" = ( -/obj/structure/bed/chair/wood{ - dir = 2; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"uXi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/mecha_wreckage/gunpod{ - anchored = 1 - }, -/turf/simulated/floor/lava/harmless, -/area/awaymission/darkrp/outside/ghetto) -"uXj" = ( -/obj/effect/decal/remains, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/reference) -"uXN" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/clean, -/obj/random/maintenance/morestuff, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"uYt" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"uYH" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/contraband/nofail, -/obj/random/contraband/nofail, -/obj/random/maintenance/morestuff, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"uYS" = ( -/obj/machinery/appliance/cooker/oven, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"uZa" = ( -/obj/machinery/door/blast/shutters{ - id = "warehouse1"; - name = "Warehouse Garage Door"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse1) -"uZp" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/base) -"uZZ" = ( -/obj/structure/boulder, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"vat" = ( -/obj/structure/simple_door/wood{ - name = "Guns R Us" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"vaE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating{ - icon_state = "dmg4" - }, -/area/awaymission/darkrp/outside/plaza) -"vaU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"vaY" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "amogus" - }, -/obj/item/reagent_containers/food/snacks/pastatomato, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"vdg" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/random/toolbox, -/obj/item/inducer/unloaded, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"vdF" = ( -/turf/simulated/floor/outdoors/mud{ - outdoors = -1; - temperature = 293.15 - }, -/area/awaymission/darkrp/sewers) -"vdH" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"veo" = ( -/obj/random/trash, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/tunnels/suburbs) -"veJ" = ( -/obj/structure/bed/chair/sofa/right/lime, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"veQ" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"vfQ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/flora/pottedplant/fern, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"vgg" = ( -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/snacks/dip/salsa, -/obj/item/reagent_containers/food/snacks/chipplate{ - pixel_y = -11 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"vgl" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"vgS" = ( -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/obj/structure/ship_munition/disperser_charge/explosive, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"vjf" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"vjY" = ( -/obj/effect/map_effect/radiation_emitter/strong, -/obj/structure/reagent_dispensers/fueltank/barrel{ - anchored = 1 - }, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"vkJ" = ( -/obj/random/junk, -/turf/simulated/floor/outdoors/lavaland/basalt, -/area/awaymission/darkrp/outside/suburbs) -"vlA" = ( -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"vlQ" = ( -/turf/simulated/wall, -/area/awaymission/darkrp/ghettobank) -"vmS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/center) -"vnr" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/subhouse2) -"vnC" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/firstaid/o2{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/o2, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"vnV" = ( -/obj/structure/table/bench/wooden, -/obj/item/clothing/mask/gas/swat, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"vnX" = ( -/turf/simulated/floor/outdoors/dirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"vor" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/subhouse1) -"voN" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/regular, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"voQ" = ( -/mob/living/simple_mob/mechanical/hivebot/swarm, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"vpg" = ( -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"vpi" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"vpp" = ( -/turf/simulated/floor/bmarble, -/area/awaymission/darkrp/reference) -"vpM" = ( -/obj/structure/flora/pottedplant/bamboo, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"vpS" = ( -/obj/random/trash, -/obj/random/junk, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"vrb" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"vrJ" = ( -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"vrT" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"vsk" = ( -/obj/machinery/power/rtg/advanced, -/obj/structure/cable/green, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"vsq" = ( -/obj/random/trash, -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"vtc" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"vtf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"vtl" = ( -/obj/effect/map_effect/perma_light/concentrated, -/obj/effect/map_effect/portal/master/side_b{ - portal_id = "Gsewer3"; - dir = 1 - }, -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"vty" = ( -/obj/structure/bed/chair/office/dark{ - pixel_y = 0; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"vtz" = ( -/obj/machinery/door/blast/shutters{ - id = "centralbuilding3"; - name = "Garage Door"; - dir = 2 - }, -/obj/structure/table/steel, -/obj/item/tape/police, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"vtT" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "amogus" - }, -/obj/random/contraband, -/obj/item/reagent_containers/food/snacks/pastatomato, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"vtV" = ( -/obj/structure/janitorialcart, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"vuU" = ( -/mob/living/simple_mob/humanoid/pirate/machete/armored, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/subhouse1) -"vwo" = ( -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"vwJ" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"vxh" = ( -/obj/machinery/door/airlock/glass_security{ - req_one_access = list(860) - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"vxl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownpharmacy) -"vxn" = ( -/obj/structure/plushie/ian{ - dir = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"vxL" = ( -/obj/structure/table/marble, -/obj/item/gun/projectile/automatic/serdy/m41ab, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/m41, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"vyv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"vyU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/simple_door/wood, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"vAg" = ( -/obj/effect/landmark/corpse/doctor, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"vAO" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"vBr" = ( -/obj/item/stack/material/steel{ - amount = 23 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"vBy" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/material/knife/machete/deluxe, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"vCH" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"vCL" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"vCW" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/downtownresturaunt) -"vDk" = ( -/obj/structure/fence, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"vDp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"vDN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/base) -"vDY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"vEj" = ( -/obj/item/stack/cable_coil/green{ - amount = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/outside/warehouses) -"vEw" = ( -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/subhouse1) -"vFu" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/reagent_containers/food/drinks/soymilk, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"vFR" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/research, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"vGC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/tunnels/warehouse) -"vHj" = ( -/obj/structure/fence, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"vIz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"vIT" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/table/bench/steel, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"vKn" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/bed/chair/wood, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"vKE" = ( -/obj/random/junk, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/center) -"vLA" = ( -/obj/structure/table/steel, -/obj/item/stack/material/leather{ - amount = 21 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"vMa" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"vMr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/toll) -"vMt" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/plazacoffee) -"vMQ" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/appliance/cooker/grill, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/downtownresturaunt) -"vNl" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/item/reagent_containers/food/snacks/canned/beans, -/obj/item/reagent_containers/food/snacks/canned/beans, -/obj/item/reagent_containers/food/snacks/canned/beans, -/obj/item/reagent_containers/food/snacks/canned/beans, -/obj/item/reagent_containers/food/snacks/canned/beans, -/obj/item/reagent_containers/food/snacks/canned/beans, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"vNr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"vNT" = ( -/obj/machinery/door/blast/shutters{ - id = "centralbuilding2"; - name = "Garage Door"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownwarehouse) -"vNX" = ( -/obj/structure/table/woodentable, -/obj/random/toy, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"vQq" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/salvageable/implant_container_os, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"vQZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/tape/police, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/toll) -"vRN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"vRT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/milspec/color/red/half, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"vSf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"vSV" = ( -/turf/simulated/floor/tiled/steel_ridged, -/area/awaymission/darkrp/plazawarehouse) -"vSY" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/downtownresturaunt) -"vTh" = ( -/obj/effect/decal/remains, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/outside) -"vTm" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/warehouse3) -"vTt" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/clockwork, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"vUa" = ( -/obj/structure/fence/end{ - dir = 8 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/ghetto) -"vUj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/under/pants/camo, -/obj/item/clothing/under/pants/camo, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"vUp" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/outside/center) -"vUA" = ( -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/effect/decal/remains/robot, -/obj/item/toy/plushie/borgplushie/medihound, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/sewers) -"vUD" = ( -/obj/effect/decal/cleanable/greenglow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 1 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"vUE" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/outdoors/lavaland/basalt, -/area/awaymission/darkrp/outside/plaza) -"vUK" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/plushie/ian{ - dir = 8 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"vWa" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownresturaunt) -"vWY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"vXj" = ( -/mob/living/simple_mob/humanoid/merc/voxpirate/ranged/captain, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"vXT" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/warehouseshack) -"vYh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/tunnels/park) -"vYj" = ( -/obj/structure/fence/end{ - dir = 4 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"vYy" = ( -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"vYO" = ( -/obj/structure/bed/chair/bay/comfy/black{ - dir = 1 - }, -/obj/item/bone/skull, -/turf/simulated/shuttle/floor/voidcraft, -/area/awaymission/darkrp/sewers) -"vYQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"vYX" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/scattershot, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkcondo) -"vYZ" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"vZr" = ( -/obj/structure/table/standard, -/obj/random/tool, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtownempty) -"vZz" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/easel, -/obj/item/canvas/nineteen_nineteen{ - pixel_y = 10 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"wan" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"waN" = ( -/obj/structure/table/woodentable, -/obj/item/deck/cah{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/deck/cah/black{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"waY" = ( -/obj/structure/fence, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"wbp" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/humanoid/russian, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/warehouses) -"wbA" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gibdown1_flesh" - }, -/obj/random/meat, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/ghettoeats) -"wbB" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"wcp" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"wcv" = ( -/obj/effect/decal/cleanable/blood/tracks{ - color = "red"; - desc = "Your instincts say you shouldn't be following these."; - dir = 9; - icon = 'icons/effects/blood.dmi'; - icon_state = "tracks" - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"wcB" = ( -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/sewers) -"wcN" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "slab9" - }, -/area/awaymission/darkrp/outside/warehouses) -"wcP" = ( -/obj/item/tool/crowbar, -/turf/simulated/mineral/floor/ignore_mapgen/cave{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"wcR" = ( -/obj/structure/sign/warning/secure_area/armory, -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/downtowngunshop) -"wdc" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"wdh" = ( -/obj/structure/bed/chair/comfy/brown, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"wdk" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/head/radiation, -/obj/item/clothing/suit/radiation, -/obj/effect/floor_decal/milspec/color/red/corner, -/obj/effect/floor_decal/milspec/color/red/corner{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/red/corner{ - dir = 1 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"wdo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"wdu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"wdQ" = ( -/obj/structure/flora/pottedplant/dead, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"wdS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkghetto2) -"wdZ" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/suit/armor/pcarrier/bulletproof/full, -/obj/item/clothing/suit/armor/pcarrier/bulletproof/full, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"wfS" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"whs" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "amogus" - }, -/obj/random/contraband, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"whI" = ( -/obj/machinery/light{ - layer = 3 - }, -/obj/machinery/computer/med_data{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"whL" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"wib" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"wiP" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"wja" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/barricade/planks, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"wkT" = ( -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/pd) -"wlA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"wlD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"wni" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/material/shard/shrapnel{ - icon_state = "splinterslarge" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"wot" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"wpz" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"wqd" = ( -/obj/random/trash, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"wqi" = ( -/obj/item/stool/padded{ - dir = 4 - }, -/obj/effect/decal/remains/human, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"wqu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"wqy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/darkrp/sewers) -"wrX" = ( -/obj/effect/decal/remains/ribcage, -/turf/simulated/mineral/floor/ignore_mapgen/cave{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"wsa" = ( -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"wsF" = ( -/obj/machinery/button/remote/blast_door{ - id = "toll1"; - name = "Toll Booth Gates"; - pixel_x = -4; - dir = 4; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/toll) -"wsT" = ( -/obj/random/junk, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"wtd" = ( -/obj/structure/bed/chair/backed_red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"wuh" = ( -/obj/structure/table/woodentable, -/obj/item/paperplane{ - dir = 4; - pixel_y = 0; - pixel_x = -6 - }, -/obj/item/reagent_containers/food/snacks/pancakes{ - pixel_y = -6; - pixel_x = 12 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"wuR" = ( -/obj/machinery/button/remote/blast_door{ - id = "ghettoware1"; - name = "Shutters Button"; - pixel_x = 1; - dir = 4; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"wuW" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"wvz" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/bottle/stoxin{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/bottle/antitoxin{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/bottle/inaprovaline{ - pixel_x = 1 - }, -/obj/random/medical, -/obj/random/medical, -/obj/item/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/masks, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"wvD" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettowarehouse) -"wwk" = ( -/obj/structure/bed/double/padded, -/obj/item/stock_parts/gear{ - pixel_x = -6; - pixel_y = -5 - }, -/obj/item/stock_parts/gear{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/bedsheet/orangedouble, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"wwA" = ( -/obj/structure/fence, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"wwL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/standard, -/obj/random/toy, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"wxu" = ( -/obj/structure/table/woodentable, -/obj/item/pizzabox/old, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"wye" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"wyO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"wzF" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/subhouse1) -"wzU" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/plaza) -"wAD" = ( -/obj/effect/rune, -/obj/effect/landmark/corpse/random_civ, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"wAR" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"wAY" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"wCZ" = ( -/mob/living/simple_mob/humanoid/cultist/human/bloodjaunt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"wDM" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/tunnels/suburbs) -"wFh" = ( -/obj/structure/table/wooden_reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"wFL" = ( -/obj/structure/barricade/cutout/fluke, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"wFV" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"wGu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"wGW" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"wHk" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"wHr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"wHZ" = ( -/obj/random/trash, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/tunnels/plaza) -"wIp" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"wIZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"wJg" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/basic, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"wKa" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"wKx" = ( -/obj/item/weldingtool, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/outside) -"wKE" = ( -/obj/machinery/door/blast/shutters{ - id = "warehouse1"; - name = "Warehouse Garage Door"; - dir = 2 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse1) -"wLk" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/power/rtg/advanced, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subpower) -"wLO" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"wMn" = ( -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/item/pizzabox/old, -/obj/item/clothing/head/soft/red, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/sewers) -"wMx" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"wNB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"wOz" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkmaint) -"wOC" = ( -/obj/structure/cliff/automatic/ramp, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"wPs" = ( -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"wPu" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/turf/simulated/floor, -/area/awaymission/darkrp/brokehouse) -"wPJ" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"wQN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"wQQ" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/suit/storage/toggle/denim_jacket, -/obj/item/clothing/shoes/slippers, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgas) -"wRx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"wRG" = ( -/obj/structure/frame{ - anchored = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"wRW" = ( -/obj/structure/table/steel, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"wSe" = ( -/obj/structure/table/marble, -/obj/item/ammo_magazine/m545saw, -/obj/item/ammo_magazine/m545saw, -/obj/item/ammo_magazine/m545saw, -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"wTa" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/downtown) -"wTv" = ( -/turf/simulated/wall, -/area/awaymission/darkrp/plazarecroom) -"wTG" = ( -/obj/structure/table/standard, -/obj/item/surgical/bonegel, -/obj/item/surgical/FixOVein, -/obj/item/surgical/bone_clamp, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"wWu" = ( -/obj/structure/bed/chair/comfy/black{ - pixel_y = 0; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"wXd" = ( -/obj/machinery/door/blast/shutters{ - id = "garhouse"; - name = "Garage Door"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"wXX" = ( -/obj/random/cash/big, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"wZt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"xcX" = ( -/mob/living/simple_mob/mechanical/mecha/combat/phazon/advanced, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"xdg" = ( -/obj/item/weldingtool/mini, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/outside) -"xdp" = ( -/mob/living/simple_mob/humanoid/merc/ranged/laser, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"xdQ" = ( -/turf/simulated/wall/concrete, -/area/awaymission/darkrp/outside) -"xeA" = ( -/obj/structure/bed/chair/wood, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"xft" = ( -/obj/structure/table/rack, -/obj/structure/curtain/open/bed, -/obj/item/material/knife/tacknife/boot, -/obj/item/clothing/head/that, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/brokehouse) -"xfZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"xgw" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/tape/police, -/obj/structure/barricade, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkmaint) -"xhk" = ( -/obj/structure/table/steel_reinforced, -/obj/item/ammo_casing/a145{ - pixel_y = 5; - pixel_x = 5 - }, -/obj/item/ammo_casing/a145{ - pixel_y = -4; - pixel_x = -4; - dir = 1 - }, -/obj/item/ammo_casing/a145{ - pixel_y = 4; - pixel_x = -4; - dir = 2 - }, -/obj/item/ammo_casing/a145{ - pixel_y = 3; - pixel_x = 4; - dir = 8 - }, -/obj/item/ammo_casing/a145{ - pixel_y = -1; - pixel_x = 5; - dir = 2 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/reference) -"xib" = ( -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"xiI" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"xjZ" = ( -/obj/random/energy/highend, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"xkm" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subpowermaint) -"xkv" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/concrete, -/area/awaymission/darkrp/sewers) -"xkY" = ( -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/park) -"xlq" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/suburbs) -"xlH" = ( -/obj/machinery/light/floortube, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"xmg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/subhouse1) -"xmk" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"xmy" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/toll) -"xmB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/bay/chair/padded/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"xmH" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"xmI" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/downtownshop) -"xmY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowncenter) -"xnN" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/wirecutters/power, -/obj/item/stack/material/steel{ - amount = 14 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"xox" = ( -/obj/random/trash, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/warehouses) -"xoy" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/humanoid/merc/ranged/ionrifle, -/turf/simulated/floor/concrete{ - outdoors = 0 - }, -/area/awaymission/darkrp/tunnels/suburbs) -"xpO" = ( -/obj/structure/salvageable/console_broken_os{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"xpT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"xqL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"xrt" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/snappops, -/obj/item/storage/box/snappops, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"xsY" = ( -/mob/living/simple_mob/humanoid/cultist/elite, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/darkrp/plazarecroom) -"xtq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/tunnels/suburbs) -"xtX" = ( -/turf/simulated/wall, -/area/awaymission/darkrp/downtownbar) -"xui" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/contraband/nofail, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"xuA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"xuN" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"xvg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/subpower) -"xvC" = ( -/turf/simulated/floor/water/contaminated, -/area/awaymission/darkrp/outside) -"xvD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/warehouses) -"xvN" = ( -/obj/effect/decal/remains, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/darkrp/sewers) -"xws" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/outside) -"xwx" = ( -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/structure/flora/pottedplant/orientaltree, -/turf/simulated/floor/tiled/white, -/area/awaymission/darkrp/sewers) -"xwE" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/mechanical/hivebot/swarm, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"xxq" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/item/reagent_containers/food/snacks/pastatomato, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"xxy" = ( -/obj/machinery/light/small, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/subcondo) -"xyJ" = ( -/obj/item/material/twohanded/spear, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"xzs" = ( -/obj/structure/cliff/automatic{ - dir = 4 - }, -/turf/simulated/mineral/ignore_oregen, -/area/awaymission/darkrp/outside) -"xzv" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/centersidehouse) -"xzN" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"xzZ" = ( -/obj/structure/cliff/automatic{ - dir = 10 - }, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"xAT" = ( -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"xBf" = ( -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subway) -"xBg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside/suburbs) -"xBk" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"xBw" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/subcondo) -"xBB" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"xDQ" = ( -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/darkrp/outside) -"xEy" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazashop) -"xFc" = ( -/obj/effect/decal/remains, -/obj/item/card/id{ - access = list(887); - name = "slab ID II" - }, -/obj/effect/floor_decal/milspec/box, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 2 - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"xFw" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/center) -"xGi" = ( -/mob/living/simple_mob/animal/giant_spider/tunneler, -/turf/simulated/floor/water/indoors, -/area/awaymission/darkrp/sewers) -"xGl" = ( -/obj/item/storage/mre/random, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"xGz" = ( -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"xGI" = ( -/obj/effect/floor_decal/rust, -/mob/living/simple_mob/vore/aggressive/rat/event, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"xGJ" = ( -/obj/item/gun/projectile/revolvershotgun, -/obj/structure/table/gamblingtable, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/parkwallbunker) -"xHn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/plaza) -"xHs" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/lavaland/basalt, -/area/awaymission/darkrp/outside/plaza) -"xIm" = ( -/obj/item/clothing/suit/radiation, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"xIQ" = ( -/obj/machinery/button/remote/blast_door{ - id = "garhouse"; - name = "Shutters Button"; - pixel_x = -4; - dir = 4; - pixel_y = 27 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"xJm" = ( -/obj/structure/table/woodentable, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/clean, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/subapartments) -"xJo" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse3) -"xJr" = ( -/obj/structure/table/woodentable, -/obj/random/ammo, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"xKb" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/instrument/guitar, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazarecroom) -"xKh" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/material/refined, -/obj/item/clothing/suit/armor/pcarrier/medium, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"xKu" = ( -/mob/living/simple_mob/vore/aggressive/rat, -/obj/item/bone/arm, -/turf/simulated/shuttle/floor/voidcraft, -/area/awaymission/darkrp/sewers) -"xKV" = ( -/obj/structure/table/woodentable, -/obj/item/clothing/suit/armor/pcarrier/merc, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/darkrp/warehouseshack) -"xLc" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/downtownwarehouse) -"xLI" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"xLM" = ( -/obj/item/material/shard, -/turf/simulated/floor/outdoors/dirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"xMz" = ( -/obj/structure/grille/rustic{ - health = 25; - name = "reinforced grille" - }, -/obj/structure/window/reinforced/survival_pod{ - dir = 8 - }, -/obj/structure/window/reinforced/survival_pod{ - dir = 4 - }, -/obj/structure/window/reinforced/survival_pod, -/obj/structure/window/reinforced/survival_pod{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"xMQ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/plazawarehouse) -"xMX" = ( -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownbar) -"xNu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgarage) -"xOw" = ( -/obj/structure/safe/floor, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/random/cash/huge, -/obj/random/cash/huge, -/obj/item/storage/bag/cash, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettobank) -"xOC" = ( -/obj/structure/fence/corner, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"xPo" = ( -/obj/machinery/holosign/bar{ - id = "poiopen" - }, -/turf/simulated/wall, -/area/awaymission/darkrp/ghettoeats) -"xPO" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/lino, -/area/awaymission/darkrp/ghettoapartments) -"xPS" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/darkrp/downtowncenter) -"xQd" = ( -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"xQV" = ( -/obj/item/weldingtool/electric, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/outside) -"xRk" = ( -/obj/structure/table/woodentable, -/obj/item/stack/cable_coil{ - pixel_y = -1 - }, -/obj/item/stack/cable_coil{ - pixel_y = 2 - }, -/obj/item/stack/cable_coil{ - pixel_y = 5 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazashop) -"xRE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/sidewalk/side{ - icon_state = "sidewalk"; - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"xRV" = ( -/obj/structure/table/woodentable, -/obj/item/computer_hardware/hard_drive, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettooffice) -"xSs" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/park) -"xSx" = ( -/obj/item/stack/material/wood{ - amount = 5 - }, -/obj/item/stool{ - dir = 8 - }, -/turf/simulated/mineral/floor/ignore_mapgen/cave, -/area/awaymission/darkrp/tunnels/suburbs) -"xSG" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"xSN" = ( -/obj/structure/curtain/open/shower, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/machinery/shower{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/parkcondo) -"xTr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/plazabunker) -"xTA" = ( -/obj/structure/table/standard, -/obj/item/surgical/surgicaldrill, -/obj/item/surgical/scalpel/manager, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"xTI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wmarble, -/area/awaymission/darkrp/plazahotel) -"xUn" = ( -/obj/structure/table/standard, -/turf/simulated/floor/carpet/oracarpet, -/area/awaymission/darkrp/plazahotel) -"xVT" = ( -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/tunnels/park) -"xXq" = ( -/obj/structure/closet/secure_closet/medical_wall{ - name = "O- Blood Locker"; - pixel_y = -32; - req_access = null - }, -/obj/structure/closet/secure_closet/medical_wall{ - name = "O- Blood Locker"; - pixel_x = 32; - req_access = null - }, -/obj/structure/closet/secure_closet/medical_wall{ - name = "O- Blood Locker"; - pixel_x = 32; - req_access = null - }, -/obj/structure/closet/secure_closet/medical_wall{ - name = "O- Blood Locker"; - pixel_x = 32; - req_access = null - }, -/obj/structure/closet/secure_closet/medical_wall{ - name = "O- Blood Locker"; - pixel_x = 32; - req_access = null - }, -/obj/structure/closet/secure_closet/medical_wall{ - name = "O- Blood Locker"; - pixel_x = 32; - req_access = null - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/downtownwarehouse) -"xXB" = ( -/obj/structure/flora/pottedplant/bamboo, -/turf/simulated/floor/carpet, -/area/awaymission/darkrp/subhouse1) -"xXD" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/downtownshop) -"xXF" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"xXG" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/darkrp/ghettohouse1) -"xXM" = ( -/obj/structure/bed/chair/wood{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/plazacoffee) -"xYg" = ( -/obj/effect/map_effect/perma_light/concentrated, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"xYp" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/ghettohouse1) -"xYR" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/storage/box/scattershot, -/obj/item/storage/box/scattershot, -/turf/simulated/floor/wood, -/area/awaymission/darkrp/parkcondo) -"xYX" = ( -/obj/structure/cliff/automatic/corner{ - dir = 5 - }, -/turf/simulated/floor/outdoors/rocks{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"yaq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/war/tgmc_missile/double, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/centerwarehouse) -"yaz" = ( -/obj/effect/decal/remains/human, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettohouse2) -"yaQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/ghetto) -"ybl" = ( -/obj/effect/map_effect/radiation_emitter, -/obj/structure/prop/poicanister, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"yca" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/darkrp/outside/downtown) -"ycK" = ( -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/roller{ - pixel_y = 16 - }, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"ydd" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/wormcan, -/obj/item/storage/box/wormcan{ - pixel_y = 0; - pixel_x = 5 - }, -/obj/item/storage/box/wormcan/deluxe{ - pixel_y = -1; - pixel_x = -6 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/downtowngunshop) -"ydg" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/ghettosouthwarehouse) -"yen" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/newdirt{ - temperature = 293.15 - }, -/area/awaymission/darkrp/outside) -"yev" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/darkrp/sewers) -"ygn" = ( -/obj/random/contraband, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/darkrp/outside) -"yhx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/subgas) -"yhG" = ( -/obj/effect/map_effect/perma_light, -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/darkrp/tunnels/suburbs) -"yig" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/sewers) -"yiA" = ( -/obj/machinery/door/blast/shutters{ - id = "warehouse2"; - name = "Warehouse Garage Door"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/awaymission/darkrp/warehouse2) -"yiP" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/darkrp/downtownwarehouse) -"yjI" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/darkrp/subhouse1) -"yjO" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/machinery/button/remote/blast_door{ - id = "sewers1"; - pixel_x = 23; - pixel_y = -6 - }, -/turf/simulated/floor/plating, -/area/awaymission/darkrp/sewers) -"yjT" = ( -/obj/structure/table/standard, -/obj/item/surgical/retractor, -/obj/item/surgical/hemostat, -/turf/simulated/floor/tiled/milspec/sterile, -/area/awaymission/darkrp/sewers) -"yls" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/orange, -/turf/simulated/floor/carpet/blue, -/area/awaymission/darkrp/plazahotel) -"ymi" = ( -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/darkrp/sewers) - -(1,1,1) = {" -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -"} -(2,1,1) = {" -cSO -teS -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -nUU -nUU -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -hwj -fOb -fOb -fOb -fOb -fOb -hwj -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(3,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -qeN -qeN -qeN -qeN -qeN -qeN -qeN -hyV -hyV -hyV -hyV -qeN -qeN -qeN -qeN -qeN -nUU -nUU -nUU -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -hwj -kwI -kwI -kwI -kwI -kwI -hwj -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(4,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -qeN -qeN -qeN -qeN -hyV -hyV -hyV -hyV -pfV -hyV -hyV -hyV -hyV -qeN -qeN -qeN -qeN -nUU -nUU -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -hwj -kwI -kwI -kwI -kwI -kwI -hwj -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(5,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -qeN -qeN -qeN -hyV -hyV -hyV -prN -prN -prN -pfV -hyV -hyV -hyV -hyV -qeN -qeN -qeN -nUU -nUU -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -kwI -kwI -kwI -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -hwj -kwI -kwI -uZZ -uZZ -kwI -hwj -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(6,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -qeN -qeN -hyV -hyV -hyV -qeN -prN -prN -mQY -prN -pfV -hyV -hyV -hyV -hyV -qeN -qeN -nUU -nUU -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -vjY -dwh -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -hwj -kwI -uZZ -hZl -mBB -kwI -hwj -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(7,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -qeN -qeN -lhn -hyV -hyV -qeN -qeN -qeN -prN -prN -prN -hyV -hyV -hyV -hyV -qeN -qeN -nUU -nUU -fOb -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -tmE -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -hwj -kwI -tmE -tmE -tmE -uZZ -hwj -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(8,1,1) = {" -cSO -jKH -jKH -jKH -jKH -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -qeN -qeN -hyV -hyV -hyV -pfV -pfV -pfV -pfV -prN -prN -hyV -hyV -hyV -hyV -prN -qeN -nUU -nUU -fOb -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -tmE -tmE -dwh -bCf -uhO -dwh -dwh -oVr -dwh -dwh -kWa -kWa -vjY -dwh -dwh -hXB -hXB -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vYy -vYy -kwI -kwI -vYy -vYy -hwj -tkV -tmE -tmE -tmE -kOh -hwj -kwI -dwh -kwI -kwI -kwI -kwI -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(9,1,1) = {" -cSO -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -qeN -prN -hyV -hyV -hyV -hyV -hyV -hyV -pfV -prN -prN -hyV -hyV -hyV -hyV -prN -eln -eln -eln -eln -eln -eln -fOb -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -ouL -kPB -ouL -hYi -dwh -uhO -uhO -dwh -dwh -oVr -oVr -tmE -kxE -kxE -wdk -dwh -dwh -jnS -dwh -dwh -tmE -jBm -igX -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -sNc -dwh -dwh -dwh -oVr -oVr -oVr -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -vjY -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -kwI -kwI -kwI -kwI -vYy -kwI -kwI -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -kOh -tmE -tmE -kOh -kOh -vYy -vYy -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(10,1,1) = {" -cSO -nUU -nUU -nUU -nUU -nUU -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -prN -hyV -hyV -hyV -hyV -hyV -hyV -hyV -hyV -hyV -hyV -hyV -hyV -hyV -prN -eln -hyV -hyV -hyV -hyV -eln -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kPB -kPB -hYi -tmE -tmE -tmE -dwh -uhO -uhO -uhO -dwh -oVr -hYi -wlA -wlA -kOh -hDu -dwh -dwh -jnS -dwh -fYW -xvC -tmE -igX -dwh -dwh -dwh -vnX -vnX -dwh -dwh -dwh -xIm -ncu -dwh -bTK -dwh -dwh -oVr -oVr -oVr -oVr -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vYy -vYy -kwI -kwI -vYy -vYy -vYy -vYy -vYy -vYy -uMF -vYy -vYy -vYy -vYy -jBm -jBm -vYy -vYy -kOh -kOh -kOh -kOh -kOh -vYy -vYy -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(11,1,1) = {" -cSO -nUU -nUU -qeN -qeN -qeN -qeN -ssa -tZc -nsw -wSe -oTk -vxL -bGY -mcY -bDL -prN -hyV -hyV -jAc -jAc -jAc -jAc -hyV -hyV -hyV -qeN -hyV -hyV -hyV -prN -eln -hyV -hyV -hyV -hyV -eln -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -tmE -kPB -orw -pzE -hWt -xzZ -tmE -tmE -bzf -uhO -uhO -dwh -kOh -tmE -kOh -iQO -tmD -bcN -dwh -dwh -jnS -tmE -xvC -xvC -tmE -tmE -dwh -dwh -vnX -vnX -vnX -vjY -dwh -dwh -dwh -ePh -dwh -dwh -dwh -dwh -oVr -oVr -oVr -oVr -oVr -dwh -dwh -dwh -dwh -uae -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -hPm -vYy -vYy -qZB -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -jBm -jBm -dub -jBm -vYy -vYy -kOh -kOh -kOh -kOh -kOh -vYy -vYy -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(12,1,1) = {" -cSO -nUU -nUU -qeN -ymi -ymi -toK -toK -wqy -wqy -idU -idU -idU -idU -sGy -bDL -prN -hyV -hyV -ljj -ljj -ljj -ljj -hyV -hyV -pfV -qeN -hyV -hyV -hyV -prN -tPW -hyV -sFg -toe -kPM -eln -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kWa -orw -hWt -cKP -tmE -tmE -bDR -tmE -hYi -tmE -uhO -uhO -dwh -tmE -kWa -kOh -sTm -kOh -bcN -dwh -jWn -dwh -tmE -xvC -xvC -xvC -jBm -dwh -vnX -vnX -vnX -vnX -dwh -dwh -dwh -dwh -dwh -vYy -vYy -vYy -dwh -dwh -oVr -oVr -oVr -oVr -oVr -dwh -dwh -rsd -tHP -mrK -dwh -uae -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vnX -vYy -vYy -uMF -vYy -vYy -vYy -vnX -vnX -vYy -vYy -jBm -dwh -dub -dub -jBm -jBm -dwh -kOh -kOh -kOh -kOh -kOh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(13,1,1) = {" -cSO -nUU -nUU -qeN -jTO -ymi -ymi -ymi -ymi -wqy -wqy -hyV -wqy -idU -sGy -bDL -prN -koD -hyV -hyV -qeN -qeN -qeN -koD -xcX -qeN -qeN -qeN -hyV -koD -prN -tPW -hyV -mhw -diK -lsA -eln -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -tmE -uKI -tmE -tmE -tmE -tmE -bDR -tmE -hYi -kPB -kPB -gdt -tmE -tmE -kWa -kOh -kOh -kOh -hDu -dwh -dwh -dwh -tmE -tmE -tmE -lFU -dwh -vnX -rLT -vnX -dwh -dwh -dwh -bTK -dwh -dwh -dwh -dwh -vYy -vYy -dwh -dwh -dwh -oVr -oVr -oVr -oVr -dwh -dwh -rsd -eiD -pej -tHP -dwh -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -uMF -vYy -vYy -vYy -vnX -vnX -vnX -vYy -vYy -vnX -vnX -vnX -vnX -vnX -vYy -vYy -dwh -dub -dub -dub -dub -dub -jBm -dwh -kOh -kOh -rpu -kOh -kOh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(14,1,1) = {" -cSO -nUU -nUU -qeN -ymi -ymi -toK -toK -ymi -ymi -hyV -hyV -hyV -hyV -sGy -bDL -prN -hyV -hyV -jAc -jAc -jAc -jAc -hyV -hyV -pfV -qeN -hyV -hyV -hyV -prN -tPW -hyV -drq -gXj -chy -eln -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -tmE -dwh -kWa -uKI -tmE -qUW -bzf -bzf -uhk -xzZ -hYi -kPB -xDQ -mPZ -kBb -kWa -kOh -kOh -kOh -kOh -asB -kWa -dwh -tmE -tmE -dwh -dwh -dwh -dwh -vnX -rLT -oVr -oVr -oVr -dwh -bTK -dwh -dwh -dwh -dwh -vYy -vYy -dwh -dwh -dwh -dwh -vjY -dwh -dwh -dwh -dwh -rsd -lHv -fJy -mqo -dwh -dwh -hXB -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vYy -vYy -vYy -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -kTP -vnX -vnX -vYy -jpz -dub -dub -dub -dub -dub -dub -jBm -vnX -kOh -kOh -kOh -kOh -kOh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(15,1,1) = {" -cSO -nUU -nUU -qeN -ymi -ymi -qeN -toK -kKl -ffj -agR -fyF -dLB -bGY -mcY -bDL -prN -hyV -hyV -jAc -jAc -jAc -jAc -hyV -hyV -hyV -qeN -hyV -hyV -hyV -prN -eln -bpf -hyV -hyV -hyV -eln -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -wOC -nZq -uKI -oxJ -euV -nVV -bzf -tmE -bDR -bzf -oUi -nau -kOh -xFc -kWa -lkr -wlA -fkO -wlA -vRT -igX -dwh -tmE -tmE -igX -hXB -dwh -dwh -vnX -oVr -oVr -oVr -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kWa -kWa -lHv -uae -dwh -hXB -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -hPm -vYy -vYy -vYy -vnX -vnX -vnX -kTP -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vYy -jBm -dub -dub -dub -dub -dub -dub -pTw -vnX -kOh -kOh -kOh -kOh -kOh -dwh -vYy -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(16,1,1) = {" -cSO -nUU -nUU -qeN -ymi -ymi -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -prN -hyV -hyV -hyV -hyV -hyV -hyV -hyV -hyV -hyV -hyV -hyV -hyV -hyV -prN -eln -hyV -hyV -hyV -hyV -eln -fOb -dwh -dwh -dwh -dwh -tmE -dwh -dwh -dwh -tmE -uZZ -uZZ -tmE -bzf -bzf -bzf -odC -rwh -tmE -lmb -nau -lkr -gdG -dLu -lkr -wlA -wlA -kOh -vRT -tuh -dwh -dwh -vjY -dwh -dwh -dwh -dwh -oVr -oVr -oVr -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -tzb -pfi -hTl -nTN -tzb -dwh -pLF -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vnX -qZB -vYy -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vYy -pTw -dub -dub -dub -dub -dub -dub -jBm -vnX -kOh -kOh -kOh -kOh -kOh -dwh -vYy -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(17,1,1) = {" -cSO -nUU -nUU -qeN -ymi -ymi -ymi -ymi -iJm -ymi -ymi -ymi -qeN -qeN -qeN -qeN -prN -hyV -hyV -hyV -hyV -hyV -hyV -hyV -hyV -prN -hyV -hyV -hyV -hyV -prN -eln -eln -eln -eln -eln -eln -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -tmE -aPB -pzE -uKI -tmE -tmE -qUW -qUW -bDR -tmE -dVV -kPB -kTS -lkr -gdG -xdQ -kOh -gbs -kOh -kOh -vRT -tuh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -hXB -dwh -qfW -dwh -qpj -qpj -qpj -qpj -udv -qpj -qpj -bTK -dwh -dwh -bTK -dwh -dwh -dwh -dwh -uae -dwh -kcj -tzb -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vnX -vYy -vYy -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -jBm -jBm -jpz -dwh -dwh -dub -jBm -vnX -vnX -kOh -kOh -kOh -kOh -kOh -dwh -vYy -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(18,1,1) = {" -cSO -nUU -nUU -qeN -ymi -ymi -ymi -ymi -wqy -wqy -ymi -ymi -qeN -qeN -qeN -qeN -qeN -hyV -hyV -hyV -pfV -pfV -pfV -hyV -prN -prN -hyV -hyV -hyV -hyV -prN -qeN -nUU -nUU -fOb -fOb -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kWa -tNw -xYX -tmE -tmE -tmE -bDR -tmE -tmE -xdQ -lTS -gYZ -gdG -xdQ -kOh -kOh -kWa -tmD -vRT -tuh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -oVr -oVr -dwh -dwh -oVr -oVr -oVr -oVr -dwh -qpj -qtZ -iNe -eZa -dyj -hCJ -qpj -pVB -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -hXB -kcj -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vYy -vnX -uMF -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vYy -vYy -vYy -vYy -dwh -dub -jBm -vnX -vnX -kOh -kOh -kOh -kOh -kOh -dwh -vnX -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(19,1,1) = {" -cSO -nUU -nUU -qeN -ymi -ymi -ymi -ymi -ymi -wqy -wqy -ymi -qeN -qeN -qeN -qeN -qeN -lhn -hyV -hyV -qeN -qeN -qeN -prN -prN -prN -hyV -hyV -hyV -hyV -qeN -qeN -nUU -nUU -fOb -fOb -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kWa -tmE -tNw -xzs -xzs -nZq -rwh -hYi -kPB -kPB -vUD -gYZ -cHm -dLu -pwZ -kOh -kWa -wlA -dUJ -igX -dwh -dwh -dwh -dwh -dwh -dwh -dwh -oVr -oVr -dwh -hXB -hYi -txE -tmE -tmE -dwh -qpj -dyj -hWT -hWT -dyj -xft -wPu -raw -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kcj -dwh -ybl -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vYy -vYy -vYy -vYy -vnX -vnX -vnX -vnX -vnX -vnX -vnX -kTP -vnX -vnX -vnX -tmE -vnX -vnX -vnX -vnX -vnX -vYy -vYy -jBm -vnX -vnX -vnX -kOh -kOh -kOh -kOh -kOh -dwh -vnX -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(20,1,1) = {" -cSO -nUU -nUU -qeN -qeN -qeN -qeN -qeN -qeN -qeN -wqy -wqy -qeN -qeN -qeN -qeN -qeN -hyV -hyV -hyV -qeN -prN -prN -mQY -prN -pfV -hyV -hyV -hyV -hyV -qeN -qeN -nUU -nUU -fOb -fOb -kwI -kwI -kwI -dwh -dwh -dwh -jBm -jBm -jBm -dwh -dwh -kWa -tmE -tmE -tmE -tmE -tmE -kPB -mPZ -hYi -tmE -dBw -wlA -cHm -xdQ -lkr -kOh -kWa -wlA -vRT -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -oVr -oVr -dwh -hXB -kgR -jKL -tZP -dwh -dwh -udv -ahN -eVd -hWT -hWT -dyj -bEG -pVB -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kcj -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vYy -vYy -vYy -vnX -kTP -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -dwh -vnX -tmE -tmE -vnX -dwh -tmE -vnX -vnX -vnX -vnX -vnX -kOh -kOh -rpu -kOh -kOh -dwh -vnX -vnX -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(21,1,1) = {" -cSO -nUU -nUU -nUU -nUU -nUU -qeN -xui -lGp -kYr -lGp -lGp -yjT -sHQ -xTA -qeN -qeN -qeN -hyV -hyV -hyV -prN -prN -prN -pfV -hyV -hyV -hyV -hyV -qeN -qeN -qeN -nUU -nUU -fOb -fOb -kwI -kwI -kwI -dwh -dwh -dwh -jBm -jBm -jBm -jBm -dwh -dwh -dwh -kOh -kWa -kWa -tqd -tqd -tmE -tmE -tmE -dBw -fkO -cHm -xdQ -kOh -gbs -xdQ -kOh -vRT -kBb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -oVr -dwh -dwh -tmE -gml -uGS -uAB -dwh -dwh -qpj -dyj -oBq -hWT -naU -dyj -qpj -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kcj -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vYy -vYy -vYy -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -tmE -vnX -vnX -vnX -vnX -vnX -vnX -vnX -vnX -tmE -tmE -kOh -kOh -kOh -kOh -kOh -dwh -vnX -vnX -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(22,1,1) = {" -cSO -nUU -nUU -nUU -nUU -nUU -qeN -wIp -qgF -lGp -ldk -lGp -lGp -xib -wTG -qeN -qeN -qeN -qeN -hyV -hyV -hyV -hyV -pfV -hyV -hyV -hyV -hyV -qeN -qeN -qeN -qeN -nUU -nUU -fOb -fOb -kwI -kwI -kwI -dwh -dwh -dwh -dwh -jBm -jBm -jBm -jBm -dwh -dwh -kOh -dwh -dwh -dwh -dwh -dwh -dwh -tmE -stY -kOh -cHm -xdQ -kOh -kOh -xdQ -kOh -hDu -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -oVr -dwh -tmE -tZP -tmE -tmE -tmE -dwh -qpj -qpj -qpj -qpj -qpj -qpj -uDC -qpj -vnX -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kcj -dwh -dwh -dwh -gYx -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vnX -vYy -uMF -vYy -dZL -vYy -vnX -vnX -vnX -vnX -vnX -vnX -vnX -qpN -vnX -vnX -vnX -vnX -vnX -vnX -tmE -vnX -tmE -vnX -tmE -vnX -vnX -tmE -kOh -kOh -kOh -kOh -kOh -vYy -vnX -vnX -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(23,1,1) = {" -cSO -jKH -jKH -jKH -nUU -nUU -qeN -cyp -lGp -lGp -lGp -cmN -xib -xjZ -qaa -qeN -qeN -qeN -qeN -qeN -qeN -qeN -hyV -hyV -hyV -hyV -qeN -qeN -qeN -qeN -qeN -nUU -nUU -nUU -fOb -fOb -fOb -kwI -kwI -kwI -dwh -dwh -dwh -jBm -jBm -jBm -jBm -jBm -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -tmE -oKo -dwh -kOh -dwh -igX -kOh -hDu -dwh -dwh -dwh -dwh -dwh -dwh -dwh -oVr -oVr -dwh -dwh -dwh -dwh -dwh -dwh -dwh -qpj -nUD -hWT -nlk -hOm -hOm -jjm -qpj -vnX -vnX -dwh -dwh -dwh -dwh -dwh -bTK -dwh -dwh -kcj -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vnX -vYy -vYy -vYy -vYy -vYy -vnX -vnX -vnX -vnX -vnX -vnX -dwh -vnX -dwh -vnX -dwh -dwh -dwh -tmE -tmE -vnX -vnX -tmE -tmE -vnX -vnX -vnX -kOh -kOh -kOh -kOh -kOh -vYy -dwh -vnX -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(24,1,1) = {" -cSO -jKH -jKH -jKH -nUU -nUU -qeN -bwM -lGp -lGp -tuT -lGp -jpu -xib -hHf -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -qeN -nUU -nUU -nUU -nUU -fOb -fOb -fOb -kwI -kwI -kwI -dwh -dwh -dwh -dwh -jBm -jBm -jBm -jBm -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -xdQ -xdQ -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -qpj -dyj -dyj -dyj -dyj -gnx -hWT -uDC -vnX -vnX -vnX -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kcj -dwh -uhO -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -hPm -vYy -vYy -vnX -vnX -vnX -dwh -jnS -ibg -jnS -jnS -jnS -vnX -vnX -dwh -vnX -tmE -tmE -dwh -dwh -vnX -vnX -vnX -vnX -vnX -kOh -kOh -kOh -kOh -kOh -vYy -dwh -vnX -dwh -dwh -dwh -kwI -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(25,1,1) = {" -cSO -jKH -jKH -jKH -nUU -nUU -qeN -aqB -hPP -xib -lGp -lGp -xib -xib -vYZ -qeN -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -dwh -fOb -fOb -kwI -kwI -kwI -dwh -dwh -dwh -dwh -jBm -jBm -jBm -jBm -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -qpj -dyj -dyj -dyj -dyj -qpj -udv -udv -qpj -qpj -vnX -dwh -dwh -dwh -rfN -dwh -dwh -dwh -uMH -dwh -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vYy -vYy -vYy -vYy -vnX -vnX -vnX -jnS -gml -tZP -nnU -jnS -dwh -vnX -vnX -vnX -vnX -vnX -dwh -dwh -dwh -dwh -dwh -vnX -dwh -kOh -kOh -kOh -kOh -kOh -vYy -dwh -dwh -dwh -dwh -kwI -kwI -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(26,1,1) = {" -cSO -jKH -jKH -jKH -nUU -nUU -qeN -qeN -qeN -qeN -pGy -pGy -imn -qeN -qeN -qeN -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -dwh -fOb -fOb -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -jBm -jBm -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -uhO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -qpj -uDC -qpj -qpj -dyj -uuF -dyj -dyj -fpu -qpj -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vYy -vYy -vYy -uMF -vYy -vnX -jnS -gml -gml -tZP -jnS -vnX -vnX -vnX -vnX -dwh -dwh -vnX -vnX -dwh -dwh -vnX -dwh -vnX -kOh -kOh -kOh -kOh -kOh -vYy -vYy -dwh -dwh -dwh -kwI -kwI -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(27,1,1) = {" -cSO -jKH -jKH -jKH -nUU -nUU -qeN -jQN -swc -jQN -toK -toK -toK -adj -adj -qeN -nUU -nUU -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -dwh -fOb -fOb -fOb -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -vjY -uhO -dwh -dwh -hXB -oVr -oVr -dwh -oVr -oVr -oVr -oVr -oVr -qpj -dyj -hnZ -udv -dyj -dyj -dyj -gpj -dyj -cpn -vnX -vnX -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -fEV -uhO -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vYy -vYy -vYy -vYy -vnX -jnS -flL -iuG -iuG -tuh -dwh -vnX -vnX -vnX -dwh -dwh -vnX -vnX -dwh -vnX -vnX -dwh -dwh -kOh -kOh -rpu -kOh -kOh -dwh -vYy -dwh -dwh -dwh -kwI -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(28,1,1) = {" -cSO -jKH -jKH -jKH -nUU -nUU -qeN -eug -hyV -hyV -hyV -hyV -hyV -xvN -nrZ -qeN -nUU -nUU -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -dwh -fOb -fOb -fOb -fOb -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -oVr -oVr -dwh -dwh -oVr -oVr -oVr -dwh -qpj -qpj -qpj -qpj -dyj -dyj -dyj -dyj -dyj -jKn -xLM -vnX -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vYy -vYy -vYy -vYy -jnS -gml -dyP -qVI -tuh -dwh -dwh -vnX -dwh -dwh -vnX -dwz -dwh -dwh -vnX -dwh -vnX -dwh -kOh -kOh -kOh -kOh -kOh -dwh -vYy -vYy -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(29,1,1) = {" -cSO -jKH -jKH -jKH -nUU -nUU -qeN -toK -hyV -pfV -pfV -lqb -hyV -hyV -toK -qeN -nUU -nUU -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -dwh -dwh -fOb -fOb -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jnS -hXB -hXB -jnS -dwh -dwh -oVr -oVr -dwh -qpj -kBP -ceD -qpj -veJ -jjm -pyx -dyj -dyj -gqf -vnX -xLM -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -uhO -uhO -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -qZB -vYy -vYy -jnS -jnS -jnS -jnS -jnS -vnX -vnX -vnX -vnX -vnX -dwh -dwh -vnX -dwh -vnX -dwh -vnX -dwh -kOh -kOh -kOh -kOh -kOh -dwh -vYy -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(30,1,1) = {" -cSO -jKH -jKH -jKH -nUU -nUU -qeN -toK -idU -idU -hyV -idU -hyV -mUW -toK -qeN -nUU -nUU -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -dwh -dwh -dwh -dwh -fOb -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -qpj -hWT -rDO -qpj -fOO -cws -wAD -gFz -dyj -gqf -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -uhO -wNB -wNB -kdD -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vYy -vYy -vnX -vnX -vnX -dwh -vnX -vnX -vnX -vnX -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kOh -kOh -kOh -kOh -kOh -dwh -vYy -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(31,1,1) = {" -cSO -jKH -jKH -jKH -nUU -nUU -qeN -toK -hyV -uUs -idU -idU -idU -hyV -toK -qeN -nUU -nUU -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -qpj -nTd -rDO -uDC -dyj -dyj -wCZ -dyj -dyj -qpj -dwh -kwI -kwI -dwh -dwh -dwh -dwh -dwh -xIm -wNB -wNB -wNB -wNB -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vYy -vnX -vnX -dwh -dwh -vnX -vnX -vnX -lwb -dwh -dwh -dwh -dwh -dwh -vnX -dwh -vnX -kOh -kOh -kOh -kOh -kOh -dwh -vYy -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(32,1,1) = {" -cSO -nUU -nUU -nUU -nUU -nUU -qeN -gNR -hyV -cxx -pbF -idU -idU -hyV -nrZ -qeN -nUU -nUU -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -hXB -hXB -dwh -dwh -qpj -qpj -qpj -qpj -qpj -qpj -qpj -qpj -qpj -qpj -dwh -dwh -dwh -kwI -dwh -dwh -dwh -ePh -dwh -wNB -dGv -wNB -oVr -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -tmE -tmE -vYy -idw -vnX -vnX -dwh -dwh -vnX -lwb -rpW -lwb -vnX -vnX -dwh -dwh -dwh -dwh -dwh -kOh -kOh -kOh -kOh -kOh -dwh -vYy -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(33,1,1) = {" -cSO -nUU -nUU -nUU -nUU -nUU -qeN -toK -toK -eow -nif -nif -bGY -toK -toK -qeN -nUU -nUU -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -fOb -kwI -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -dwh -dwh -uhO -wNB -wNB -wNB -rLT -vnX -dwh -dwh -kKd -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vYy -dwh -vnX -dwh -dwh -vnX -vnX -lwb -vnX -dwh -dwh -dwh -vnX -vnX -dwh -dwh -kOh -kOh -kOh -kOh -kOh -vnX -vYy -dwh -dwh -dwh -dwh -kwI -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(34,1,1) = {" -cSO -nUU -nUU -uym -uym -uym -qeN -qeN -qeN -qeN -deE -deE -deE -qeN -qeN -qeN -nUU -nUU -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -fOb -kwI -nRZ -rwx -ctK -obk -fFx -nRZ -paX -cGk -obk -qgH -nRZ -lWA -rwx -obk -rwx -nRZ -hiE -hiE -obk -rwx -nRZ -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -mVk -uhO -dwh -dwh -oVr -vnX -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vYy -vYy -vnX -nvH -dwh -dwh -dwh -dwh -vnX -vnX -dwh -dwh -dwh -vnX -dwh -dwh -kOh -kOh -rpu -kOh -kOh -vnX -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(35,1,1) = {" -cSO -nUU -nUU -uym -abV -tif -hRU -jnm -abV -abV -abV -abV -abV -xkv -uym -nUU -nUU -nUU -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -fOb -kwI -nRZ -rwx -aSy -rwx -ctK -nRZ -rwx -srI -nZk -rwx -nRZ -rwx -rwx -ddl -rwx -nRZ -pqM -grL -vTt -hiE -nRZ -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -kwI -kwI -kwI -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -fEV -dwh -vnX -dwh -dwh -vnX -vnX -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vYy -gNh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -vnX -dwh -kOh -kOh -kOh -kOh -kOh -vnX -vnX -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(36,1,1) = {" -cSO -nUU -nUU -uym -abV -fHt -abV -hRU -hRU -hRU -abV -abV -hRU -abV -uym -nUU -nUU -nUU -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -fOb -kwI -nRZ -ddl -rwx -bYD -rwx -nRZ -ctK -eUj -nEC -xyJ -nRZ -rwx -rwx -rwx -rwx -nRZ -rht -rht -rht -rwx -nRZ -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -vnX -vnX -kKd -dwh -vnX -dwh -uae -vnX -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vYy -vYy -vYy -vYy -vnX -vnX -dwh -dwh -dwh -dwh -dwh -dwh -vnX -dwh -vnX -dwh -kOh -kOh -kOh -kOh -kOh -vnX -vnX -dwh -dwh -dwh -dwh -kwI -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(37,1,1) = {" -cSO -nUU -nUU -uym -abV -fHt -abV -abV -hRU -bTn -hRU -hRU -abV -abV -uym -nUU -nUU -nUU -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -fOb -kwI -nRZ -dCy -kAk -rwx -ctK -nRZ -pfv -gYl -rwx -rwx -nRZ -pBW -vnV -rwx -mGC -nRZ -wwk -eoX -bAY -glj -nRZ -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -vnX -dwh -dwh -dwh -dwh -dwh -vnX -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -vnX -vnX -vnX -dwh -dwh -dwh -dwh -vnX -dwh -dwh -dwh -kOh -kOh -kOh -kOh -kOh -vnX -vnX -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(38,1,1) = {" -cSO -nUU -nUU -uym -abV -fHt -abV -wan -abV -qKE -abV -abV -abV -wan -uym -nUU -nUU -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -fOb -kwI -nRZ -nRZ -nRZ -xPO -nRZ -nRZ -nRZ -nRZ -xPO -nRZ -nRZ -nRZ -ftl -xPO -nRZ -ftl -ftl -plb -xPO -nRZ -nRZ -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -vnX -gYx -dwh -dwh -kKd -eAY -eAY -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -vnX -vnX -vnX -dwh -dwh -vnX -dwh -kOh -kOh -kOh -kOh -kOh -vnX -vnX -dwh -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -cSO -"} -(39,1,1) = {" -cSO -nUU -nUU -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -nUU -nUU -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -fOb -kwI -nRZ -rwx -rwx -rwx -rwx -rwx -rwx -rwx -rwx -rwx -rwx -jTG -rht -rht -rht -rht -rht -gkk -oVX -rht -nRZ -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -vnX -vnX -vnX -dwh -vnX -dwh -dwh -vnX -dwh -dwh -kcm -dwh -dwh -tLP -dwh -dwh -dwh -kwI -kwI -vnX -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -vnX -dwh -kOh -kOh -kOh -kOh -kOh -vnX -vnX -dwh -dwh -dwh -dwh -dwh -kwI -kwI -fOb -fOb -fOb -fOb -cSO -"} -(40,1,1) = {" -cSO -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -fOb -kwI -nRZ -uMl -cWu -cWu -cWu -cWu -cWu -fgO -wPJ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -rwx -nRZ -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -gZl -vnX -dwh -dwh -dwh -dwh -dwh -dwh -vnX -vnX -dwh -dwh -dwh -dwh -vnX -dwh -idw -lgl -vnX -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -vnX -vnX -vnX -dwh -kOh -kOh -kOh -kOh -kOh -vnX -vnX -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(41,1,1) = {" -cSO -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -fOb -kwI -nRZ -vyU -nRZ -nRZ -nRZ -nRZ -rwx -bNl -agd -nRZ -ldo -xGl -hPC -hPC -hPC -hPC -hPC -hPC -rht -rht -nRZ -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -vnX -dwh -dwh -dwh -dwh -dwh -dwh -jdi -vnX -vnX -dwh -dwh -dwh -dwh -dwh -tLP -lgl -dwh -dwh -vnX -dwh -dwh -vnX -vnX -vnX -dwh -dwh -dwh -dwh -vnX -kOh -kOh -rpu -kOh -kOh -dwh -dwh -vYy -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(42,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -kwI -nRZ -nZD -kdf -dnh -qjh -nRZ -oRj -rMA -rht -nRZ -wFh -erS -nsj -lHG -mmI -ect -qtr -uOk -rht -rht -nRZ -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -uae -dwh -dwh -dwh -dwh -dwh -dwh -tLP -ePh -dwh -kKd -vnX -vnX -lgl -dwh -kcm -dwh -dwh -dwh -dwh -dwh -dwh -vnX -dwh -dwh -dwh -dwh -dwh -kOh -kOh -kOh -kOh -kOh -dwh -vYy -vYy -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(43,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -kwI -nRZ -nZD -rwx -rwx -rwx -nRZ -rht -rMA -rht -nRZ -fyi -rht -qtr -fYf -qtr -ees -nsj -nsj -rht -rht -nRZ -kwI -kwI -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -kwI -kwI -kwI -dwh -kcm -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -aSZ -lQr -vnX -tGl -dwh -dwh -dwh -vnX -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -vYy -kOh -kOh -kOh -kOh -kOh -vYy -vYy -vYy -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(44,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -nRZ -cGm -gGu -nUK -djV -nRZ -rht -rMA -rht -nRZ -uYS -rht -poN -wtd -wtd -wtd -wtd -wtd -nsj -rht -nRZ -kwI -kwI -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -dqI -dqI -dqI -dqI -dqI -dqI -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -kwI -kwI -dwh -vnX -vnX -dwh -dwh -vnX -dwh -vnX -gYx -dwh -dwh -dwh -egT -lgl -dwh -gnI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -vnX -vYy -kOh -kOh -kOh -kOh -kOh -vYy -vYy -vYy -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(45,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -uhn -nRZ -nRZ -nRZ -nRZ -nRZ -oqa -oqa -nRZ -nRZ -nRZ -nRZ -nRZ -nRZ -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dqI -vjf -vjf -vjf -vjf -dqI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -dwh -dwh -dwh -vnX -vnX -dwh -vnX -vnX -dwh -dwh -idw -dwh -lgl -dwh -dwh -vnX -dwh -dwh -vnX -dwh -dwh -vnX -dwh -dwh -dwh -dwh -dwh -vYy -kOh -kOh -kOh -kOh -kOh -vYy -vYy -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(46,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -xws -xws -xws -xws -xws -xws -xws -xws -xws -xws -xws -xws -xws -xws -xws -xws -xws -xws -xws -xws -xws -xws -xws -vjf -vjf -vjf -aXT -vjf -vjf -vjf -vjf -vjf -vjf -vjf -vjf -xws -xws -xws -xws -xws -xws -xws -kwI -kwI -kwI -kwI -xws -dqI -dqI -dqI -dqI -dqI -dqI -dqI -dqI -dqI -dqI -dqI -dqI -dqI -waY -waY -jrs -waY -dqI -dqI -dqI -dqI -dqI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -dwh -gYx -kKd -vnX -dwh -dwh -dwh -dwh -dwh -dwh -lgl -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -vnX -dwh -dwh -dwh -vYy -kOh -kOh -kOh -kOh -kOh -vYy -vYy -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(47,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -rDg -rDg -rDg -rDg -rDg -rDg -rDg -nQw -nQw -nQw -nQw -nQw -nQw -nQw -nLs -nQw -nQw -nQw -nQw -nQw -nQw -nQw -nLs -nQw -nQw -nQw -gAS -nQw -nQw -nQw -nQw -nQw -nQw -nQw -nQw -nLs -nQw -nQw -nQw -nQw -nQw -rDg -rDg -rDg -rDg -rDg -rDg -nQw -nQw -nQw -nQw -nQw -nQw -nQw -nQw -nQw -nQw -nQw -nQw -nQw -nQw -nQw -nQw -nQw -nQw -nQw -nQw -vjf -dqI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -idw -dwh -lgl -dwh -dwh -kKd -dwh -dwh -dwh -dwh -dwh -vnX -dwh -dwh -dwh -dwh -dwh -dwh -dwh -vYy -kOh -kOh -kOh -kOh -kOh -vYy -vYy -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(48,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -pRc -uDy -uDy -uDy -uDy -uDy -uDy -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -bbN -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -owi -kQm -kQm -uDy -uDy -uDy -uDy -lGh -lGh -lGh -owi -lGh -lGh -owi -owi -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -owi -owi -mjA -dqI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -lgl -dwh -dwh -tLP -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -vYy -kOh -kOh -rpu -kOh -kOh -vYy -vYy -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(49,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -pRc -uDy -uDy -uDy -uDy -uDy -uDy -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -owi -owi -atF -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -owi -owi -owi -uDy -uDy -kQm -kQm -kQm -kQm -owi -owi -owi -owi -owi -owi -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -owi -owi -owi -mjA -dqI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -dwh -idw -dwh -dwh -lgl -lgl -dwh -dwh -vnX -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kOh -kOh -kOh -kOh -kOh -vYy -vYy -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(50,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -pRc -uDy -uDy -uDy -uDy -uDy -uDy -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -owi -owi -atF -owi -owi -owi -owi -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -uDy -uDy -uDy -uDy -uDy -uDy -lGh -owi -owi -owi -owi -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -owi -owi -mjA -dqI -dqI -dqI -dqI -dqI -dqI -dqI -dqI -iFj -iFj -iFj -iFj -iFj -iFj -iFj -iFj -iFj -iFj -iFj -iFj -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -lgl -dwh -dwh -dwh -jdi -vnX -vnX -dwh -dwh -dwh -dwh -dwh -vnX -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kOh -kOh -kOh -kOh -kOh -vYy -vYy -dwh -dwh -dwh -dwh -kwI -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(51,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -pRc -uDy -uDy -uDy -uDy -uDy -uDy -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -owi -atF -owi -owi -owi -owi -owi -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -uDy -uDy -uDy -uDy -uDy -uDy -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -mjA -pjI -lGh -lGh -lGh -lGh -lGh -lGh -lGh -iFj -gfC -pvg -ydg -pyr -xxq -dmz -wMx -pvg -gfC -gfC -iFj -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -dwh -kwI -dwh -dwh -dwh -dwh -vnX -vnX -vnX -dwh -dwh -dwh -dwh -dwh -vnX -vnX -vnX -vYy -dwh -dwh -dwh -dwh -dwh -dwh -kOh -kOh -kOh -qdb -kOh -vYy -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(52,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -pRc -uDy -uDy -uDy -uDy -uDy -uDy -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -bbN -lGh -owi -owi -owi -owi -lGh -lGh -lGh -lGh -lGh -lGh -lGh -nQw -nQw -rDg -rDg -rDg -rDg -rDg -rDg -nQw -nQw -nQw -nQw -nQw -nQw -nQw -nLs -nQw -nQw -nQw -nQw -nQw -nQw -nQw -vjf -lGh -lGh -lGh -lGh -mjA -pjI -lGh -lGh -lGh -lGh -lGh -lGh -lGh -iFj -gfC -gfC -aUP -vNl -rYQ -rtM -pZZ -gfC -lvy -gfC -iFj -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -kcm -dwh -vnX -vnX -dwh -dwh -dwh -dwh -dwh -dwh -vnX -jdi -vnX -vYy -dwh -dwh -dwh -dwh -dwh -dwh -kOh -kOh -kOh -kOh -kOh -dwh -vnX -vnX -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(53,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -rDg -rDg -rDg -rDg -rDg -rDg -rDg -mjA -lGh -owi -lGh -lGh -vjf -nQw -nQw -nQw -nQw -nQw -nLs -nQw -nQw -nQw -nQw -nQw -nQw -nQw -dRn -tzT -fTb -tzT -tzT -tzT -tzT -tzT -oHY -lGh -lGh -lGh -lGh -emz -emz -emz -eWw -nxG -fht -aDw -vlQ -vlQ -vlQ -vlQ -vlQ -vlQ -vlQ -vlQ -vlQ -ruV -vlQ -vlQ -vlQ -vlQ -vlQ -vlQ -mjA -lGh -lGh -lGh -lGh -mjA -kmr -lGh -lGh -lGh -lGh -lGh -lGh -lGh -ozh -gfC -gfC -gfC -gfC -gfC -lvy -gfC -gfC -gfC -gfC -iFj -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -vnX -dwh -dwh -dwh -dwh -dwh -dwh -dwh -vnX -vnX -vYy -dwh -dwh -dwh -dwh -dwh -dwh -kOh -kOh -rZI -kOh -kOh -dwh -vnX -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(54,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dqI -mrd -owi -owi -owi -owi -mjA -aCO -aCO -aCO -aCO -aCO -aCO -aCO -aCO -aCO -aCO -aCO -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -edO -lGh -lGh -lGh -lGh -emz -anQ -emz -nxG -wbA -cwN -uaX -vlQ -bdj -bdj -bdj -cGo -lXf -eyi -vlQ -rUA -rUA -rUA -xfZ -nzb -rUA -iuv -vlQ -mjA -lGh -owi -owi -owi -mrd -kmr -lGh -lGh -lGh -lGh -lGh -lGh -lGh -ozh -isq -gfC -gfC -gfC -gfC -gfC -gfC -gfC -gfC -gfC -iFj -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -tLP -vnX -dwh -dwh -dwh -dwh -dwh -dwh -tLP -vnX -vYy -vYy -dwh -dwh -dwh -dwh -dwh -dwh -kOh -kOh -kOh -kOh -kOh -dwh -vnX -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(55,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dqI -mjA -owi -owi -owi -owi -mjA -aCO -hNp -xBB -iYS -aCO -dvc -sui -qMR -dbd -kBo -aCO -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -edO -lGh -owi -owi -lGh -jDW -jZJ -emz -emz -aQz -emz -emz -vlQ -rUA -rUA -rUA -rUA -rUA -rUA -icH -rUA -fxW -rUA -rUA -rUA -rUA -iuv -vlQ -mjA -lGh -owi -owi -owi -mjA -vUa -lGh -lGh -lGh -owi -owi -lGh -lGh -lRM -gfC -bMO -dxt -skA -whs -qFZ -vtT -dxt -skA -qFZ -iFj -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -vYy -vYy -dwh -dwh -dwh -dwh -gLG -gfM -kOh -kOh -rpu -kOh -kOh -dwh -vnX -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(56,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dqI -mjA -lGh -owi -owi -owi -mjA -bgg -hNp -cJa -iYS -aCO -nSp -nSp -aaJ -nSp -def -aCO -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -edO -lGh -owi -lGh -lGh -emz -jZJ -jZJ -gAn -ohy -mYJ -nDV -vlQ -rUA -rUA -rUA -gou -rRi -phx -vlQ -rUA -rUA -rUA -eBf -eBf -eBf -dfJ -vlQ -mjA -lGh -owi -owi -owi -mjA -lGh -lGh -lGh -lGh -owi -owi -lGh -lGh -ozh -gfC -gfC -ezg -opw -whL -opw -whL -rGi -aTF -vaY -iFj -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -vnX -dwh -dwh -dwh -vYy -vYy -dwh -dwh -dwh -dwh -dwh -gfM -rZI -qcK -rZI -kOh -kOh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(57,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kLf -kLf -kLf -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dqI -mjA -lGh -owi -lGh -owi -wdo -aCO -wdh -peL -eov -tnl -nSp -nSp -nSp -nSp -pRI -aCO -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -edO -owi -owi -lGh -lGh -jDW -jZJ -jZJ -emz -nVo -atN -scA -vlQ -ruV -vlQ -vlQ -vlQ -vlQ -vlQ -vlQ -vlQ -ruV -vlQ -vlQ -vlQ -vlQ -vlQ -vlQ -mjA -lGh -owi -owi -owi -das -fHX -fHX -fHX -mDW -mDW -fHX -mDW -mDW -ovb -qPn -hAO -rtk -hAO -wwL -tai -whL -gfC -gfC -txs -iFj -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -vnX -jdi -vnX -dwh -vYy -vYy -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kOh -rZI -kOh -kOh -kOh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(58,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kLf -nxS -kLf -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dqI -mjA -lGh -owi -lGh -owi -mjA -aCO -def -peL -iYS -aCO -wdc -nSp -nSp -nSp -azk -bgg -lGh -owi -owi -owi -lGh -lGh -lGh -lGh -lGh -lGh -edO -lGh -owi -owi -lGh -emz -jZJ -heR -emz -ccq -atN -qvh -vlQ -rUA -rUA -rUA -rUA -rUA -rUA -rUA -rUA -rUA -ruV -rUA -rUA -xfZ -hWH -vlQ -mjA -lGh -lGh -owi -owi -edO -qtW -lGh -lGh -lGh -owi -owi -lGh -lGh -iFj -wuR -gfC -gfC -gfC -gfC -iHn -gfC -gfC -hls -vaY -iFj -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -dwh -vnX -dwh -dwh -dwh -dwh -dwh -vnX -vnX -dwh -dwh -dwh -dwh -vnX -dwh -dwh -dwh -vYy -dwh -dwh -dwh -dwh -dwh -dwh -jpv -kOh -hFq -kOh -kOh -kOh -tpi -dwh -dwh -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(59,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kLf -kLf -kZb -kLf -kLf -kLf -kLf -kLf -kLf -dqI -dqI -dqI -dqI -mjA -owi -owi -lGh -owi -mjA -bgg -wdh -peL -muD -aCO -aCO -aCO -aCO -aCO -aCO -aCO -lGh -owi -owi -owi -owi -bwt -bwt -lGh -lGh -lGh -tIh -owi -owi -lGh -lGh -ciE -jZJ -oHS -msd -qHz -atN -oHQ -vlQ -rUA -rUA -rUA -rUA -rUA -mSE -rUA -rUA -rUA -vlQ -rUA -rUA -rUA -rUA -vlQ -mjA -lGh -owi -owi -lGh -edO -kmr -lGh -lGh -lGh -owi -owi -lGh -lGh -iFj -gfC -lvy -gfC -gfC -gfC -iHn -gfC -gfC -gfC -txs -iFj -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -dwh -dwh -jdi -vnX -dwh -dwh -dwh -dwh -jdi -vnX -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -vYy -dwh -dwh -dwh -brM -brM -brM -brM -vQZ -uoz -uoz -uoz -pwh -brM -brM -brM -brM -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(60,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kLf -bdJ -pmc -bdJ -pmc -kLf -lOf -pmc -kLf -lGh -lGh -lGh -lGh -mjA -lGh -lGh -lGh -lGh -mjA -aCO -hrI -peL -iYS -aCO -pTk -pip -eIZ -vNX -rdU -aCO -lGh -lGh -hYc -owi -jSh -bwt -bwt -bwt -lGh -lGh -edO -owi -owi -owi -lGh -xPo -ijh -oHS -rPH -jZJ -jZJ -mMC -vlQ -ruV -vlQ -htu -htu -htu -htu -htu -htu -rUA -vlQ -veQ -mpd -rUA -rUA -vlQ -mjA -lGh -owi -owi -lGh -edO -kmr -lGh -lGh -lGh -owi -owi -lGh -lGh -iFj -gfC -sJG -gfC -nCP -gfC -soP -gfC -sJG -xpO -vaY -iFj -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -dwh -dwh -dwh -dwh -nvH -dwh -dwh -dwh -dwh -vnX -vnX -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -brM -nDK -fQr -tqF -peA -peA -peA -peA -peA -tqF -ams -nDK -brM -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(61,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kLf -bdJ -pmc -bdJ -pmc -dUh -pmc -pmc -kLf -lGh -lGh -lGh -lGh -mjA -lGh -lGh -lGh -lGh -mjA -aCO -pYN -peL -iYS -aCO -def -nSp -nSp -xmk -fMI -aCO -lGh -lGh -owi -jSh -jSh -uXi -bwt -sOk -lGh -lGh -edO -owi -owi -owi -lGh -sYg -qng -oHS -uqp -jZJ -jZJ -heN -vlQ -rUA -rUA -ifv -xfZ -xOw -rUA -xOw -htu -rUA -vlQ -eig -eig -qZr -aYN -vlQ -mjA -lGh -lGh -lGh -lGh -edO -kmr -lGh -lGh -lGh -lGh -lGh -lGh -lGh -iFj -iFj -sqz -sqz -iFj -snP -iFj -gfC -lUj -lUj -izZ -iFj -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -dwh -dwh -dwh -vnX -vnX -dwh -dwh -dwh -dwh -vnX -dwh -dwh -vnX -vnX -vnX -dwh -dwh -dwh -dwh -dwh -dwh -dwh -brM -oMc -wsF -tqF -oIF -oIF -peA -oIF -oIF -tqF -gGT -oMc -brM -dwh -dwh -kwI -kwI -fOb -fOb -fOb -fOb -fOb -cSO -"} -(62,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kLf -bdJ -cZz -bdJ -pmc -dUh -pmc -pmc -kLf -lGh -lGh -lGh -lGh -mjA -lGh -lGh -lGh -lGh -das -mxX -fsR -lbY -iYS -tnl -nSp -nSp -nSp -nSp -pRI -aCO -lGh -lGh -bng -owi -jSh -eZS -sOk -lNY -lGh -lGh -edO -owi -owi -owi -lGh -emz -imR -kNZ -kMG -tgf -fek -pDH -vlQ -rUA -rUA -hFp -rUA -rUA -rUA -nCy -htu -vrb -vlQ -vlQ -vlQ -vlQ -vlQ -vlQ -sfr -fHX -fHX -fHX -fHX -nbm -kmr -lGh -lGh -lGh -lGh -lGh -lGh -lGh -snP -gfC -gfC -gfC -gfC -gfC -sqz -gfC -lUj -gwc -hGj -iFj -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -dwh -dwh -dwh -dwh -vnX -vnX -dwh -dwh -dwh -dwh -nvH -vnX -dwh -vnX -vnX -vnX -idw -dwh -dwh -vnX -dwh -dwh -dwh -brM -pNi -oMc -ilP -oIF -oIF -peA -oIF -oIF -aQm -oMc -sdj -brM -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(63,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kLf -pmc -pmc -pmc -klx -kLf -pmc -klx -kLf -uDv -lGh -lGh -lGh -mrd -lGh -lGh -lGh -lGh -edO -aCO -iYS -iYS -eov -aCO -mry -nSp -nSp -nSp -sEP -bgg -lGh -lGh -rkL -jSh -qvF -jSh -bwt -lGh -dRd -lGh -pdX -owi -lGh -lGh -lGh -emz -hIM -emz -emz -emz -emz -emz -vlQ -rUA -rUA -ifv -rUA -dRy -rUA -eUo -htu -rUA -vlQ -nVT -oxT -oxT -oxT -vlQ -edO -lGh -lGh -lGh -lGh -dqI -dqI -dqI -dqI -dKQ -dKQ -dKQ -dqI -dqI -iFj -gfC -gfC -nCP -gfC -gfC -sqz -gfC -lUj -cPd -hGj -iFj -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -dwh -dwh -dwh -dwh -dwh -vnX -vnX -idw -dwh -dwh -dwh -vnX -vnX -dwh -dwh -vnX -vnX -dwh -dwh -dwh -jdi -vnX -dwh -dwh -brM -brM -kGg -brM -rGd -vMr -peA -vMr -xmy -brM -kGg -brM -brM -dwh -kwI -kwI -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(64,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kLf -pmc -pmc -pmc -pmc -kLf -eYq -pmc -kLf -lGh -lGh -lGh -lGh -mjA -lGh -lGh -lGh -lGh -edO -aCO -iYS -iYS -azk -aCO -aCO -aCO -aCO -aCO -aCO -aCO -lGh -lGh -rkL -bng -oDQ -bwt -owi -lGh -lGh -lGh -pdX -owi -lGh -lGh -lGh -das -nbm -lGh -lGh -lGh -lGh -lGh -vlQ -eqa -rUA -ifv -rUA -hzP -rUA -qlD -htu -rUA -ruV -hkX -hkX -tkm -hkX -vlQ -edO -lGh -lGh -lGh -lGh -dqI -kwI -kwI -kwI -vTh -qiU -qiU -kwI -kwI -iFj -iFj -iFj -iFj -iFj -iFj -iFj -iFj -iFj -iFj -iFj -iFj -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -vnX -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -vnX -vnX -dwh -dwh -dwh -aHH -aMR -brM -uyn -uyn -brM -tQK -tQK -brM -qsn -aHH -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(65,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kLf -pmc -pmc -pmc -pmc -dUh -hPI -dof -qkL -fHX -fHX -fHX -fHX -cEz -lGh -lGh -lGh -lGh -edO -bgg -iYS -iYS -wxu -fxx -xRV -aCO -nuI -aCO -hmB -aCO -lGh -lGh -lGh -jSh -eZS -auD -bwt -owi -owi -lGh -bni -owi -lGh -lGh -lGh -edO -lGh -lGh -lGh -lGh -lGh -lGh -vlQ -rUA -rUA -hFp -rUA -rUA -rUA -mXk -htu -rUA -vlQ -vlQ -nSX -vlQ -nSX -vlQ -edO -lGh -lGh -lGh -lGh -dqI -kwI -xvC -xvC -xvC -kII -qiU -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -aHH -aMR -kOh -kOh -kOh -kOh -kOh -kOh -kOh -qsn -aHH -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(66,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kLf -aMH -pmc -vXj -pmc -dUh -taD -pmc -wvD -lGh -lGh -lGh -lGh -edO -lGh -lGh -lGh -lGh -edO -aCO -iYS -nSp -vRN -pYN -iYS -aCO -ffo -aCO -ffo -aCO -lGh -rkL -bwt -bwt -bwt -bwt -jSh -owi -lGh -lGh -edO -lGh -lGh -lGh -lGh -edO -lGh -lGh -lGh -lGh -lGh -lGh -vlQ -rUA -tVr -ifv -rUA -xOw -rUA -xOw -htu -rUA -vlQ -emO -hkX -vlQ -emO -vlQ -edO -lGh -lGh -lGh -lGh -dqI -xvC -xvC -xvC -xvC -wrX -qiU -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -kwI -dwh -dwh -kwI -kwI -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -kwI -kwI -dwh -dwh -dwh -aHH -uFg -uFg -aMR -kOh -kOh -kOh -kOh -qsn -uFg -aHH -dwh -dwh -kwI -kwI -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(67,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kLf -bQn -pmc -pmc -pmc -kLf -taD -pmc -kLf -lGh -lGh -lGh -lGh -edO -lGh -lGh -lGh -lGh -edO -aCO -iYS -nSp -eyC -nSp -iYS -ffo -hLP -fzC -hLP -aCO -rkL -rkL -bwt -bwt -bwt -bwt -owi -owi -owi -lGh -edO -lGh -lGh -lGh -lGh -ttC -lGh -lGh -lGh -lGh -lGh -lGh -vlQ -vlQ -vlQ -htu -htu -htu -htu -htu -htu -ruV -vlQ -vlQ -vlQ -vlQ -vlQ -vlQ -edO -lGh -lGh -lGh -lGh -dqI -xvC -xvC -mdO -sXy -qNo -kII -kII -qiU -qiU -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dwh -dwh -dwh -kwI -kwI -kwI -kwI -kwI -kwI -aHH -aHH -aHH -aMR -kOh -kOh -kOh -kOh -qsn -aHH -dwh -dwh -dwh -kwI -kwI -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(68,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kLf -puG -pmc -pmc -pmc -kLf -ksj -kLf -kLf -uDv -lGh -lGh -lGh -edO -lGh -lGh -lGh -lGh -edO -bgg -iYS -nSp -nSp -nSp -nSp -aCO -dnm -hLP -caf -kZX -rkL -bwt -bwt -bwt -bwt -dRd -lGh -lGh -owi -owi -edO -lGh -lGh -lGh -lGh -edO -xXG -xXG -xXG -xXG -xXG -lGh -lGh -vlQ -ibO -ibO -vlQ -vjf -vjf -vjf -vjf -vjf -vjf -vjf -vjf -vjf -vjf -vjf -edO -lGh -lGh -lGh -lGh -dqI -kwI -xvC -ixT -kII -wcP -jEj -asn -lBm -oOt -qiU -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -aHH -aHH -hwj -kOh -kOh -kOh -kOh -hwj -aHH -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(69,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kLf -oDv -pmc -pmc -pmc -pmc -taD -pmc -kLf -lGh -lGh -lGh -lGh -edO -lGh -lGh -lGh -lGh -edO -aCO -pYN -iYS -rPs -iYS -iYS -aCO -ehz -fAl -bng -bng -rkL -bwt -rkL -rkL -rkL -lGh -lGh -lGh -lGh -owi -edO -lGh -lGh -lGh -lGh -edO -xXG -lTL -azJ -lTL -xXG -lGh -lGh -vlQ -ibO -ibO -vlQ -vjf -cvG -vWY -vWY -vWY -vWY -vWY -vWY -vWY -vWY -vWY -dha -nst -lGh -lGh -lGh -dqI -kwI -kwI -imv -qiU -gPh -kII -kII -kII -jEj -qiU -qiU -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -aHH -hwj -lCE -lCE -kOh -kOh -hwj -aHH -dwh -dwh -dwh -dwh -kwI -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(70,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kLf -pmc -pmc -pmc -pmc -pmc -taD -pmc -kLf -lGh -lGh -lGh -lGh -edO -owi -owi -lGh -lGh -edO -aCO -aCO -aCO -aCO -bgg -bgg -aCO -aCO -wdQ -bng -rkL -rkL -lGh -rkL -rkL -lGh -lGh -lGh -lGh -lGh -owi -edO -lGh -lGh -lGh -lGh -edO -ntt -joP -joP -lTL -xXG -lGh -lGh -vlQ -dsr -cAV -fVa -vWY -cTI -vjf -vjf -vjf -vjf -vjf -vjf -vjf -vjf -vjf -rDg -jvY -uDy -uDy -uDy -rDg -kwI -kwI -qiU -fTh -asn -kII -uPI -kII -asn -kII -qiU -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -hwj -kOh -kOh -kOh -kOh -hwj -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(71,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kLf -pmc -qVk -rNq -pmc -pmc -taD -klx -kLf -lGh -lGh -lGh -lGh -edO -lGh -owi -lGh -lGh -edO -lgF -wbB -lgF -wbB -pRy -vwJ -lgF -rkL -rkL -rkL -lgF -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -owi -pdX -lGh -lGh -lGh -lGh -edO -xXG -nku -xYp -lTL -ntt -lGh -lGh -vlQ -ibO -ibO -xtX -nOf -nOf -nOf -nOf -nOf -nOf -nOf -nOf -nOf -nOf -nOf -rDg -jvY -uDy -uDy -uDy -rDg -kwI -kwI -qiU -qiU -gPh -kII -kII -kII -jEj -kSy -qiU -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -hwj -kOh -kOh -lCE -lCE -hwj -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(72,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kLf -pmc -pmc -llN -pmc -cZz -tVZ -jsU -kLf -lGh -lGh -lGh -lGh -edO -lGh -owi -owi -lGh -nPX -tzT -tzT -tzT -tzT -tzT -tzT -hZt -hZt -hZt -tzT -tzT -tzT -fHX -fHX -tzT -fTb -tzT -tzT -fHX -fHX -xRE -yaQ -fHX -fHX -fHX -fHX -ejF -ntt -ieW -ieW -lTL -xXG -xXG -uJQ -xXG -xXG -xXG -nOf -lPe -xMX -thY -wqi -xMX -xMX -xMX -gxv -nFC -nFC -nOf -rDg -iDv -kQm -uDy -uDy -rDg -kwI -kwI -kwI -qiU -oOt -jEj -asn -uAa -wcP -qiU -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -hwj -kOh -kOh -kOh -kOh -hwj -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -cSO -"} -(73,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kLf -pmc -pmc -jXk -pmc -pmc -pmc -pmc -kLf -lGh -lGh -lGh -lGh -tIh -lGh -lGh -owi -owi -owi -lGh -lGh -lGh -lGh -lGh -rkL -rkL -rkL -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -edO -xXG -lTL -iWK -lTL -lTL -lTL -lTL -haW -lTL -tJO -nOf -wAR -xMX -lTw -gTK -fUH -jlw -xMX -nFC -nFC -nFC -nOf -rDg -iDv -kQm -kQm -uDy -rDg -kwI -kwI -kwI -kwI -kwI -kwI -kwI -qiU -qiU -qiU -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -hwj -lCE -lCE -kOh -kOh -hwj -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -cSO -"} -(74,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kLf -iQE -pmc -lPw -pmc -oYF -fee -fee -kLf -lGh -lGh -lGh -lGh -edO -lGh -lGh -lGh -owi -owi -owi -owi -owi -owi -lGh -rkL -rkL -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -tIh -xXG -xXG -xXG -lTL -lTL -lTL -lTL -lTL -lTL -xYp -nOf -opX -xMX -xMX -dmM -eaa -eaa -xMX -nFC -nFC -nFC -nOf -rDg -iDv -kQm -kQm -uDy -rDg -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -xws -xws -xws -xws -xws -xws -vXT -vXT -vXT -vXT -vXT -vXT -vXT -vXT -vXT -hwj -kOh -kOh -kOh -kOh -hwj -xws -xws -xws -xws -xws -xws -xws -xws -kwI -kwI -fOb -fOb -cSO -"} -(75,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kLf -kLf -kLf -kLf -kLf -kLf -kLf -kLf -kLf -dqI -dqI -dqI -dqI -edO -lGh -lGh -lGh -lGh -owi -owi -owi -lGh -owi -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -edO -mjA -mjA -xXG -lTL -lTL -lTL -xYp -xYp -hNl -lWI -nOf -twm -xMX -xMX -xMX -xMX -xMX -xMX -nFC -nFC -nFC -nOf -rDg -iDv -kQm -kQm -uDy -rDg -pSF -pSF -pSF -pSF -pSF -pSF -pSF -pSF -pSF -pSF -pSF -pSF -pSF -pSF -pSF -pSF -pSF -uuE -uuE -uuE -uuE -uuE -uuE -uuE -uuE -uuE -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -xws -kOh -kOh -kOh -kOh -kOh -vXT -kdN -igP -dmO -xKV -poy -mfm -uOu -vXT -gWE -bgI -bgI -bgI -bgI -wHr -uHS -uHS -uHS -uHS -uHS -uHS -uHS -uHS -kwI -kwI -fOb -fOb -cSO -"} -(76,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dqI -edO -lGh -lGh -lGh -lGh -lGh -owi -owi -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -lGh -edO -mjA -das -kRn -cdK -lTL -lTL -lTL -bBT -lTL -lTL -nOf -iHS -iHS -iHS -iHS -iHS -iHS -iHS -xMX -xMX -xMX -nOf -rDg -iDv -kQm -kQm -uDy -rDg -pSF -phy -nQj -rBC -cKR -tll -pSF -qnp -tRi -yiP -agw -pSF -kGW -jjc -pIV -aKS -pSF -gUH -ggg -gUH -gUH -gUH -vpS -gUH -cFw -uuE -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -xws -kOh -tZL -tZL -tZL -kOh -vXT -kTG -kTG -kTG -swS -kTG -kTG -kTG -vXT -noW -oWV -oWV -oWV -oWV -byn -uHS -uUo -iyn -pHZ -gTd -uUo -uUo -uHS -kwI -kwI -fOb -fOb -cSO -"} -(77,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dqI -jJF -tzT -tzT -tzT -tzT -tzT -tzT -tzT -tzT -uyw -tzT -tzT -tzT -tzT -tzT -tzT -tzT -tzT -tzT -tzT -tzT -tzT -tzT -tzT -tzT -tzT -tzT -vWY -fHX -fHX -fHX -fkq -dha -xqL -nbm -xXG -nCL -lTL -lTL -xXG -xXG -xXG -uJQ -nOf -oPt -eql -uco -cBP -waN -vgg -uIu -tXl -xMX -iSy -nOf -rDg -jvY -kQm -kQm -uDy -rDg -pSF -evw -qBB -qBB -qBB -puj -pSF -cVW -gJg -lNo -ntY -pSF -nIO -kIH -kIH -xXq -pSF -gUH -ggg -qsh -ggg -hat -gUH -aLF -aLF -uuE -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -xws -mkY -lNU -kCN -lNU -mkY -vXT -kTG -buR -buR -vDY -vDY -buR -kTG -vXT -byn -nZv -nZv -oWV -oWV -aKH -uHS -uUo -uUo -uUo -uUo -uUo -uUo -uHS -kwI -kwI -fOb -fOb -cSO -"} -(78,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dqI -dqI -dqI -dqI -lGh -lGh -lGh -lGh -lGh -pNo -wiP -pNo -pNo -pNo -pNo -nbk -nbk -pNo -pNo -nbk -nbk -dqI -dqI -dqI -dqI -dqI -dqI -dqI -sOT -uDy -uDy -uDy -jvY -gId -xXG -xXG -xXG -hyk -lTL -lTL -xXG -lTL -lTL -lTL -nOf -xMX -xMX -xMX -xMX -xMX -xMX -wuh -tXl -xMX -xMX -nOf -rDg -jvY -kQm -kQm -uDy -rDg -pSF -evw -tPs -tPs -qBB -pVo -pSF -lzN -uGH -qBB -clS -pSF -gGe -kIH -kIH -gqu -pSF -aLF -xmI -xmI -rAV -xmI -xmI -xmI -xmI -xmI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -xws -kOh -tZL -tZL -tZL -kOh -vXT -kTG -kTG -jSw -kTG -swS -vDY -kTG -vXT -byn -oWV -oWV -oWV -oWV -byn -uHS -uUo -rzG -tGH -kXp -kXp -tGH -uHS -kwI -kwI -fOb -fOb -cSO -"} -(79,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dqI -lGh -lGh -lGh -lGh -lGh -pNo -kUe -qrv -qrv -jNT -daY -ifV -ifV -ceA -wcp -ifV -bot -dqI -tfX -tfX -tfX -tfX -tfX -tfX -sOT -uDy -uDy -uDy -jvY -gId -xXG -jeq -rlw -qtw -tSb -mLX -xXG -uCp -czF -lmr -nOf -xMX -xMX -tMF -qUE -qeD -xMX -lXu -tXl -xMX -xMX -nOf -rDg -jvY -kQm -kQm -uDy -rDg -pSF -aVY -tPs -tPs -pan -whI -pSF -cVW -gJg -qBB -cFU -pSF -seN -pSw -kIH -kIH -pSF -gUH -xmI -jLT -jLT -xSG -jLT -jLT -jLT -xmI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -xws -kOh -sNF -vYy -vYy -kOh -vXT -uuu -oPR -wZt -wZt -wZt -cHR -dzm -vXT -byn -oWV -oWV -oWV -oWV -byn -uZa -uUo -uUo -gTd -uUo -uUo -uUo -uHS -kwI -kwI -fOb -fOb -cSO -"} -(80,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dqI -lGh -lGh -lGh -lGh -lGh -pNo -kUe -qrv -qrv -qrv -jNT -jNT -jNT -qrv -qrv -qrv -jNT -tJK -tJK -tJK -tJK -tJK -tJK -tJK -ojV -uDy -uDy -uDy -jvY -gId -xXG -xXG -xXG -xXG -nmz -nmz -nmz -nmz -nmz -nmz -nOf -tCe -nOf -nOf -nOf -qJW -xMX -eql -tXl -xMX -xMX -nOf -rDg -jvY -kQm -kQm -uDy -rDg -pSF -evw -qBB -tPs -tPs -vCH -pSF -sOz -agB -qBB -sTj -pSF -rIM -xLc -kIH -kIH -pSF -gUH -xmI -jLT -jLT -jLT -jLT -jLT -jLT -xmI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -xws -kOh -vYy -vYy -vYy -kOh -vXT -vXT -vXT -vXT -vXT -vXT -vXT -vMa -vXT -gxH -nZv -oWV -xox -oWV -byn -uZa -uUo -kXp -kXp -tGH -kXp -tGH -uHS -kwI -kwI -fOb -fOb -cSO -"} -(81,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dqI -lGh -lGh -lGh -lGh -lGh -pNo -nxs -cud -cud -rOO -dAp -dAp -kKY -qrv -klI -klI -xAT -tJK -wPs -wPs -wPs -wPs -wPs -wPs -hYo -xkY -xkY -xkY -tZo -usR -xkY -xkY -xkY -xkY -nmz -cLj -cLj -afH -jyZ -xrt -nOf -xMX -sRJ -pmE -nOf -oXi -xMX -ftc -tXl -xMX -xMX -mRh -qSQ -ncv -qMp -gUH -gUH -ciy -pSF -evw -jRt -qBB -qBB -peG -pSF -sTw -hOF -hAn -kjE -pSF -jug -jug -jug -oRE -pSF -gUH -xmI -psK -ogb -cdJ -jLT -jLT -jLT -xmI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -xws -kOh -vYy -vYy -sNF -kOh -kOh -kOh -kOh -kOh -kOh -kOh -vXT -gmH -vXT -byn -oWV -oWV -oWV -oWV -byn -uZa -iyn -uUo -uUo -uUo -uUo -uUo -uHS -kwI -kwI -fOb -fOb -cSO -"} -(82,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dqI -lGh -lGh -lGh -lGh -lGh -pNo -pNo -pNo -pNo -pNo -pNo -pNo -aqI -tMJ -ezY -dtJ -jNT -tJK -wPs -wPs -wPs -wPs -wPs -wPs -hYo -xkY -xkY -qpW -xkY -nxv -xkY -xkY -xkY -xkY -nmz -cLj -cLj -pgR -qkB -iOn -nOf -gdn -xMX -pHk -nOf -mXs -xMX -ukL -tXl -xMX -xMX -tCe -jFg -gUH -qMp -gUH -gUH -lYf -pSF -evw -eUB -tYN -bun -lmi -pSF -oKw -lvb -qBB -sqN -sFh -bCd -bCd -yiP -nCk -pSF -ggg -xmI -gMC -eQm -jLT -jLT -jLT -jLT -xmI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -xws -tmI -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -kOh -vXT -gmH -vXT -byn -oWV -oWV -oWV -oWV -oPC -wKE -sRD -pUj -kXp -pre -tGH -kXp -uHS -kwI -kwI -fOb -fOb -cSO -"} -(83,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dqI -lGh -lGh -lGh -lGh -lGh -pNo -hmm -tKK -bWn -ctD -jNT -pNo -aqI -jNT -qrv -jNT -jNT -tJK -wPs -wPs -qiY -wPs -wPs -wPs -hYo -xkY -xkY -qpW -qpW -nxv -xkY -qpW -qpW -xkY -nmz -cLj -cLj -kEv -afH -eyg -nOf -rDR -rju -oIN -nOf -paR -rnB -bXx -jlW -dHH -dHH -oIb -hly -gUH -qMp -qMp -gUH -ciy -pYi -evw -qBB -qBB -qBB -unK -oML -pOZ -voQ -qBB -hkE -laF -boG -tPs -tPs -ezr -pSF -gUH -xmI -nXT -jLT -eGZ -jLT -jLT -jLT -xmI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -xws -ygn -kOh -kOh -kOh -kOh -kOh -kOh -kOh -kOh -kOh -kOh -vXT -clC -lQs -nsm -oWV -oWV -oWV -oWV -byn -uHS -egt -kdE -uUo -uUo -gTd -uUo -uHS -kwI -kwI -fOb -fOb -cSO -"} -(84,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -dqI -dqI -dqI -dqI -dqI -dqI -pNo -qrv -qXY -jNT -qrv -qrv -pNo -eyk -jNT -mec -jNT -jNT -tJK -wPs -wPs -wPs -wPs -wPs -wPs -hYo -xkY -xkY -qpW -qpW -fyu -qpW -qpW -qpW -xkY -nmz -cLj -cLj -jEo -afH -rmQ -nOf -nOf -nOf -nOf -nOf -nOf -nOf -nOf -nOf -nOf -nOf -nOf -jFg -gUH -gUH -qMp -gUH -ciy -hjE -evw -tPs -tPs -tPs -dix -jug -ktw -xwE -tPs -tUF -aFM -tPs -tPs -tPs -lDQ -pSF -gUH -xmI -xmI -xmI -xmI -xmI -rAV -xmI -xmI -kwI -kwI -kwI -kwI -kwI -kwI -pQu -pQu -pQu -pQu -kwI -kwI -kwI -kwI -kwI -vTm -vTm -vTm -bRX -bRX -vTm -vTm -vTm -vTm -vTm -vTm -vTm -vTm -vTm -vTm -gxH -nZv -oWV -oWV -oWV -byn -uHS -gTd -oTF -oSd -uUo -uUo -uUo -uHS -kwI -kwI -fOb -fOb -cSO -"} -(85,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -pNo -rXF -nyt -jkf -lad -jNT -jNT -jNT -pNo -pNo -pNo -ohe -tJK -wPs -wPs -wPs -wPs -wPs -wPs -shS -xkY -xkY -xkY -qpW -fyu -qpW -qpW -xkY -xkY -nmz -cLj -cLj -cLj -cLj -cLj -nOf -nOf -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -jFg -gUH -gUH -qMp -gUH -ciy -pSF -pZx -tPs -mDd -tPs -unK -oML -pOZ -eKo -tPs -hXd -nZM -tPs -qBB -xlH -lDQ -pSF -aLF -xmI -pyH -pyH -jLT -jLT -pyH -fGO -xmI -xmI -xmI -xmI -xmI -xmI -xmI -pQu -pwa -asj -pQu -kwI -kwI -kwI -kwI -kwI -vTm -kOC -jLo -xnN -nQP -tmn -djH -djH -mJL -vTm -sjR -hfH -jfS -sjR -vTm -noW -pUz -oWV -nZv -nZv -byn -uHS -uHS -uHS -uHS -uHS -qvi -uHS -uHS -kwI -kwI -fOb -fOb -cSO -"} -(86,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -pNo -jNT -jNT -qrv -qrv -qrv -yaz -jNT -pNo -xJr -prv -jNT -tJK -akp -akp -akp -akp -akp -akp -dca -xkY -xkY -xkY -qpW -fyu -qpW -qpW -qpW -kQc -lyA -pxb -pxb -pxb -pxb -wuW -eCo -eCo -lis -wcR -eCo -eCo -eCo -eCo -eCo -eCo -eCo -eCo -jFg -gUH -gUH -qMp -gUH -ciy -pSF -evw -tPs -tPs -tPs -wLO -pSF -lLZ -qBB -tPs -tPs -tPs -tPs -tPs -tPs -fOU -pSF -gUH -xmI -pyH -pyH -wGW -jLT -fGO -pyH -xmI -xmI -uXN -xXD -eSH -boc -xmI -pQu -kar -kar -pQu -kwI -kwI -kwI -kwI -kwI -vTm -xJo -djH -djH -djH -djH -djH -djH -djH -vTm -llO -gyh -djH -sjR -ikY -byn -oWV -oWV -oWV -oWV -byn -uPz -kOh -kOh -kOh -kOh -kOh -kOh -xws -kwI -kwI -fOb -fOb -cSO -"} -(87,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -pNo -jNT -xeA -the -rYy -jNT -qrv -qrv -pNo -jNT -jNT -jNT -tJK -xkY -xkY -iFH -iFH -xkY -fai -jBg -xkY -xkY -xkY -xkY -oQB -qpW -qpW -qpW -kbc -nmz -cLj -cLj -cLj -cLj -cLj -eCo -czr -czr -czr -czr -hZV -okd -czr -czr -czr -ydd -eCo -jFg -gUH -gUH -qMp -qMp -ciy -pSF -evw -qBB -tPs -tPs -qpD -pSF -aue -mjz -mjz -mjz -mjz -bTN -mjz -igh -rhr -pSF -gUH -xmI -xmI -xmI -xmI -xmI -xmI -xmI -xmI -xmI -wIZ -jLT -jLT -jLT -xmI -pQu -rle -kar -pQu -kwI -kwI -kwI -kwI -kwI -vTm -mMD -djH -djH -djH -djH -djH -nmN -sjR -vTm -ogN -nQB -djH -aSS -ikY -byn -oWV -oWV -oWV -oWV -byn -kOh -kOh -kOh -kOh -kOh -kOh -kOh -xws -kwI -kwI -fOb -fOb -cSO -"} -(88,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -pNo -qrv -xeA -lSQ -rYy -jNT -pNo -iSD -pNo -bPr -xBk -rNK -tJK -xkY -xkY -xkY -kXl -xkY -wye -jBg -xkY -xkY -xkY -xkY -nxv -xkY -qpW -qpW -kbc -nmz -nmz -nmz -nmz -doy -nmz -eCo -src -czr -czr -czr -aQA -eCo -gyJ -czr -czr -fdO -eCo -jFg -gUH -qMp -gUH -gUH -ciy -pSF -iMp -hMO -hMO -nLp -pxm -pSF -qiL -nLp -wfS -iHO -pVv -nLp -nLp -qtc -aZx -pSF -ugc -xmI -tbd -jLT -jLT -jLT -jLT -jLT -jLT -sNA -jLT -uYH -ixI -alH -xmI -pQu -kar -kar -pQu -kwI -kwI -kwI -kwI -kwI -vTm -ttp -sjR -djH -gzs -djH -kpj -wRG -dsG -vTm -sjR -wqd -djH -sjR -ikY -byn -oWV -cHK -pUz -oWV -byn -kOh -kOh -kOh -kOh -kOh -kOh -kOh -xws -kwI -kwI -fOb -fOb -cSO -"} -(89,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -fOb -pNo -pNo -pNo -pNo -pNo -pNo -pNo -pNo -pNo -pNo -pNo -pNo -tJK -xkY -xkY -xkY -xkY -xkY -mlh -jBg -xkY -xkY -xkY -xkY -nxv -xkY -xkY -xkY -kbc -nmz -wFL -fxF -mVR -cLj -wFL -eCo -czr -czr -ucO -dJj -dJj -xiI -vUj -czr -czr -czr -eCo -jFg -gUH -qMp -gUH -gUH -ciy -pSF -pSF -bMP -pSF -bMP -pSF -pSF -pSF -umY -pSF -pSF -pSF -jug -jug -lPU -pSF -pSF -gUH -xmI -tbd -tIQ -hmM -hmM -hmM -hmM -hmM -tRJ -mlo -jLT -jLT -jLT -xmI -pQu -kar -kar -pQu -kwI -kwI -kwI -kwI -kwI -vTm -dLx -kpl -oHy -mMq -djH -djH -sjR -sjR -vTm -sjR -djH -sjR -dNE -vTm -byn -oWV -oWV -oWV -oWV -byn -kOh -kOh -kOh -kOh -kOh -kOh -kOh -xws -kwI -kwI -fOb -fOb -cSO -"} -(90,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -tJK -dHk -xkY -xkY -xkY -xkY -xkY -mkI -xkY -xkY -qpW -qpW -fyu -xkY -xkY -xkY -kbc -nmz -wFL -cLj -cLj -cLj -wFL -eCo -czr -wcR -eCo -eCo -eCo -eCo -oOE -dJj -dJj -dJj -vat -ljz -gUH -qMp -qMp -gUH -ciy -pSF -tRU -dtY -pUb -dtY -qBB -pBZ -pSF -qBB -sHe -pSF -wvz -aWu -plJ -tzO -oel -pSF -gUH -xmI -eQm -rco -dks -gld -bJd -jLT -jLT -xmI -bfJ -qgf -eSH -eSH -xmI -pQu -kar -kar -pQu -kwI -kwI -kwI -kwI -kwI -vTm -sjR -ogN -djH -djH -djH -djH -djH -sjR -vTm -sjR -djH -djH -gGz -pLJ -wdu -oWV -oWV -oWV -oWV -byn -sVM -sVM -oio -sVM -sVM -sVM -sVM -sVM -kwI -kwI -fOb -fOb -cSO -"} -(91,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -tJK -xkY -xkY -xkY -xkY -xkY -wJg -xkY -wJg -xkY -qpW -qpW -fyu -qpW -qpW -xkY -kbc -nmz -wFL -cLj -xGJ -cLj -dkL -eCo -czr -czr -uWP -fJv -pwv -eCo -mJw -czr -czr -ckm -eCo -jFg -gUH -gUH -qMp -gUH -ciy -pSF -mDo -qBB -liV -qBB -qBB -mDo -pSF -qBB -ujd -pSF -qBB -qBB -qBB -tzO -vnC -pSF -gUH -xmI -wIZ -bWA -jLT -jLT -jLT -jLT -gmD -xmI -xmI -xmI -xmI -xmI -xmI -pQu -rle -kar -pQu -kwI -kwI -kwI -xws -xws -vTm -sjR -sjR -pTR -sjR -mTW -kfD -egB -egB -pLJ -kfD -tFS -xmB -awj -vTm -hve -oWV -oWV -oWV -oWV -byn -sVM -uiW -gjd -bkA -kmb -xKh -qvT -sVM -kwI -kwI -fOb -fOb -cSO -"} -(92,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -tJK -xkY -kXl -xkY -xkY -xkY -xkY -vYj -xkY -xkY -qpW -xkY -fyu -qpW -xkY -xkY -kbc -nmz -wFL -cLj -ftA -cLj -wFL -eCo -czr -czr -czr -czr -mbV -eCo -dzB -czr -czr -vBy -eCo -jFg -gUH -gUH -qMp -gUH -ciy -pSF -lHI -qBB -qBB -qBB -qBB -smr -pSF -dVl -qBB -pSF -jFk -jFk -voN -tzO -bkg -pSF -gUH -xmI -jLT -bWA -jLT -jLT -jLT -jLT -jLT -xmI -pQu -pQu -pQu -pQu -pQu -pQu -kar -kar -pQu -kwI -kwI -kwI -xws -vYy -vTm -vTm -vTm -vTm -vTm -vTm -vTm -vTm -vTm -vTm -vTm -vTm -vTm -vTm -vTm -vEj -oWV -oWV -oWV -oWV -byn -sVM -uiW -ceR -gjd -gjd -uiW -uiW -sVM -kwI -kwI -fOb -fOb -cSO -"} -(93,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -tJK -xkY -xkY -xkY -xkY -kXl -fai -jBg -xkY -xkY -qpW -xkY -fyu -qpW -qpW -xkY -kbc -nmz -wFL -cLj -cLj -cLj -wFL -eCo -czr -czr -czr -czr -tVU -eCo -dxw -czr -czr -cKH -eCo -jFg -gUH -gUH -gUH -gUH -ciy -pSF -nnD -qBB -qBB -qBB -qBB -qBB -kRK -qBB -qBB -pSF -ucQ -qQR -fES -tzO -lCs -pSF -gUH -xmI -jLT -bWA -jLT -jLT -jLT -jLT -jLT -xmI -pQu -jLr -jLr -jLr -jLr -jLr -xBf -xBf -pQu -kwI -kwI -kwI -xws -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -eEr -nPD -oWV -oWV -oWV -oWV -byn -sVM -enX -bpu -cBG -cBG -vFR -mCZ -sVM -kwI -kwI -fOb -fOb -cSO -"} -(94,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -tJK -xkY -xkY -xkY -xkY -xkY -wye -jBg -xkY -xkY -xkY -xkY -nQI -dgz -dgz -pEG -vYQ -nmz -wFL -kcJ -cLj -fxF -wFL -eCo -hwd -cmx -lbh -spW -czr -eCo -czr -czr -asY -gMc -eCo -jFg -gUH -gUH -gUH -gUH -ciy -pSF -qOr -pUb -unN -poj -qBB -qBB -mPJ -seG -qBB -pSF -qPH -qBB -qBB -tzO -ycK -pSF -gUH -xmI -jLT -bWA -jLT -rgB -ngN -hrB -bJd -xmI -pQu -jLr -jLr -jLr -peV -jLr -xBf -xBf -pQu -kwI -kwI -kwI -xws -vYy -vYy -vYy -vYy -lNU -lNU -lNU -lNU -lNU -lNU -lNU -lNU -lNU -lNU -vYy -eEr -ecc -oWV -oWV -xox -oWV -hve -sVM -uiW -rAC -fAY -gjd -uiW -bmP -sVM -kwI -kwI -kwI -kwI -cSO -"} -(95,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -tJK -xkY -xkY -rZv -rZv -xkY -mlh -jBg -xkY -xkY -xkY -xkY -nxv -tJK -tJK -tJK -tJK -nmz -nmz -nmz -nmz -nmz -nmz -eCo -eCo -eCo -eCo -eCo -eCo -eCo -eCo -eCo -eCo -eCo -eCo -jFg -gUH -gUH -gUH -gUH -ciy -pSF -pSF -jug -pSF -pSF -jug -pSF -pSF -pSF -pSF -pSF -vNT -vNT -qSf -lom -pSF -pSF -gUH -xmI -xmI -vpi -xmI -roX -roX -roX -xmI -xmI -pQu -xBf -xBf -pQu -pQu -pQu -pQu -pQu -pQu -xws -xws -xws -xws -vYy -vYy -vYy -vYy -lNU -lNU -lNU -lNU -lNU -lNU -lNU -lNU -lNU -lNU -vYy -eEr -byn -oWV -oWV -oWV -oWV -hve -sVM -uiW -rAC -gjd -gjd -mdn -tAK -sVM -kwI -kwI -kwI -kwI -cSO -"} -(96,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -tJK -akp -akp -akp -akp -akp -akp -xOC -xkY -xkY -xkY -xkY -kGd -mXi -mXi -mXi -mXi -mXi -mXi -mXi -dUx -dUx -dUx -dUx -dJR -dJR -dJR -dJR -dJR -dJR -dJR -dJR -dJR -dJR -dJR -eEV -wTa -wTa -wTa -wTa -taU -iKX -iKX -iKX -iKX -iKX -iKX -iKX -iKX -iKX -iKX -iKX -iKX -iKX -bDA -ksY -iKX -iKX -iKX -iKX -iKX -vdH -iKX -iKX -iKX -iKX -iiB -iKX -iKX -iKX -iKX -mbF -sxE -sxE -sxE -sxE -sxE -sxE -sxE -sxE -sxE -sxE -sxE -sxE -vYy -lNU -lNU -lNU -lNU -lNU -lNU -lNU -lNU -lNU -lNU -vYy -eEr -byn -oWV -oWV -oWV -oWV -byn -yiA -uiW -rAC -vNr -vNr -rrE -iSm -sVM -sVM -sVM -sVM -sVM -cSO -"} -(97,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -tJK -wPs -wPs -wPs -wPs -wPs -wPs -hYo -xkY -xkY -xkY -xkY -kbc -xkY -xkY -xkY -xkY -xkY -xkY -xkY -xVT -xVT -xVT -xVT -qMp -qMp -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -oUf -gUH -gUH -gUH -gUH -gUH -gUH -nuk -gUH -gUH -iuW -gUH -gUH -gUH -gUH -jFg -sxE -axK -axK -axK -axK -axK -axK -axK -axK -axK -rVS -sxE -vYy -lNU -lNU -lNU -lNU -lNU -lNU -lNU -lNU -lNU -lNU -vYy -eEr -byn -oWV -oWV -oWV -oWV -bvI -yiA -uiW -gjd -gjd -mdn -gjd -eQP -sVM -oQC -gjd -fiP -sVM -cSO -"} -(98,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -uym -nNC -nNC -qmL -bxD -egI -egI -egI -nNC -uym -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -tJK -wPs -wPs -wPs -wPs -wPs -wPs -hYo -xkY -xkY -xkY -xkY -kbc -xkY -xkY -xkY -xkY -xkY -xkY -xkY -xVT -xVT -xVT -vYh -qMp -qMp -qMp -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -qMp -qMp -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -qMp -qMp -gUH -gUH -gUH -qMp -qvb -mhF -gUH -gUH -gUH -jFg -lby -axK -axK -iCk -axK -axK -axK -axK -iCk -axK -rVS -sxE -vYy -lNU -lNU -lNU -lNU -lNU -lNU -lNU -lNU -lNU -lNU -vYy -eEr -byn -oWV -oWV -oWV -oWV -byn -yiA -cKj -gjd -gjd -gjd -uiW -uiW -sVM -uiW -gjd -iUb -sVM -cSO -"} -(99,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -uym -nNC -nNC -uym -uym -uym -uym -uym -fNq -uym -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -tJK -wPs -wPs -wPs -wPs -wPs -wPs -hYo -xkY -xkY -xkY -xkY -kbc -xkY -xkY -xkY -xkY -xkY -xkY -xkY -xVT -xVT -xVT -xVT -qMp -qMp -qMp -qMp -qMp -qMp -qMp -qMp -gUH -gUH -gUH -gUH -qMp -qMp -qMp -gUH -qMp -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -nhI -gUH -gUH -gUH -gUH -gUH -cGH -gUH -qMp -qMp -qMp -gUH -qMp -qvb -qMp -gUH -gUH -gUH -jFg -lby -axK -axK -axK -axK -axK -axK -axK -axK -eEv -rVS -sxE -vYy -vYy -vYy -vYy -lNU -lNU -lNU -lNU -lNU -lNU -lNU -vYy -eEr -gxH -nZv -oWV -oWV -oWV -wHk -git -fIM -tjm -uiW -gjd -uiW -uiW -oio -bJB -gjd -bbG -sVM -cSO -"} -(100,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -uym -nNC -nNC -uym -uym -uym -uym -uym -fNq -uym -uym -uym -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -tJK -wPs -wPs -wPs -wPs -wPs -wPs -hYo -xkY -xkY -xkY -xkY -kbc -xkY -xkY -xkY -xkY -xkY -xkY -kQc -bse -bse -bse -bse -bDX -qMp -qMp -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -qMp -qMp -qMp -qMp -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -gUH -oUf -gUH -gUH -gUH -gUH -gUH -gUH -qMp -qMp -qMp -qvb -qMp -qMp -gUH -gUH -jFg -lby -axK -axK -axK -axK -axK -axK -axK -axK -azY -axK -sxE -eEr -eEr -eEr -vYy -lNU -lNU -lNU -lNU -lNU -lNU -lNU -vYy -eEr -gxH -nZv -oWV -oWV -oWV -vpg -sVM -axQ -qyO -uiW -uiW -uiW -uiW -sVM -mMi -qCk -gjd -sVM -cSO -"} -(101,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -uym -aLN -nNC -uym -uym -uym -uym -uym -xXF -mrD -rXr -uym -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -tJK -wPs -wPs -wPs -qiY -wPs -wPs -shS -xkY -xkY -qpW -xkY -oZv -bcn -tzd -bcn -bcn -bcn -bcn -uaB -dUx -dUx -dUx -dUx -qQY -iKX -ahv -iKX -iKX -iKX -iKX -iKX -iKX -iiB -iKX -iKX -ahv -ahv -ahv -ahv -iKX -iKX -iKX -iKX -iKX -iKX -ilv -iKX -iKX -iKX -iiB -iKX -iKX -iKX -iKX -ilv -iKX -iKX -iKX -iKX -kaF -iKX -iKX -iKX -iKX -iKX -rxQ -gUH -qMp -gUH -gUH -jFg -sxE -hMI -pDe -qZA -axK -axK -axK -axK -axK -azY -axK -sxE -sJN -sJN -eEr -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -eEr -oTI -oWV -oWV -oWV -oWV -vpg -sVM -uiW -tCw -lxi -ePk -uiW -ruD -sVM -gva -gva -cpy -sVM -cSO -"} -(102,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -uym -nNC -nNC -uym -uym -uym -uym -uym -uym -uym -uym -uym -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -tJK -wPs -wPs -wPs -wPs -wPs -wPs -hYo -xkY -xkY -qpW -xkY -nxv -nCD -nkx -nCD -nCD -nIa -nCD -nIa -nCD -nCD -fTi -uuE -uuE -uuE -ssD -ssD -ssD -mhT -mhT -ssD -ssD -mPt -ssD -vHj -vHj -vDk -vDk -gUH -gUH -uvF -uvF -uvF -uvF -uvF -uvF -uvF -jHv -jHv -bCA -uvF -gUH -gUH -gUH -gUH -gUH -gUH -iFK -iFK -dfD -dfD -iFK -iFK -bGL -jdf -jFg -gUH -qMp -gUH -gUH -jFg -sxE -axK -axK -axK -axK -axK -axK -axK -axK -azY -jil -sxE -ptL -wwA -eEr -eEr -eEr -eEr -eEr -eEr -eEr -eEr -eEr -eEr -eEr -byn -oWV -oWV -oWV -oWV -vpg -sVM -sVM -sVM -sVM -oio -sVM -sVM -sVM -sVM -sVM -sVM -sVM -cSO -"} -(103,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -uym -uym -uym -uym -nNC -nNC -ebr -nNC -nNC -uym -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -tJK -wPs -wPs -wPs -wPs -wPs -wPs -hYo -xkY -xkY -qpW -xkY -nxv -nCD -urX -arC -arC -xYR -giZ -vYX -arC -nCD -fTi -fTi -fTi -fTi -ssD -kTX -uJt -evH -iKW -jwX -umZ -vxl -ssD -gUH -gUH -gUH -qMp -gUH -gUH -uvF -ghQ -oEg -oLg -hrq -oLg -oEg -rCB -rCB -vaU -uvF -gUH -gUH -gUH -gUH -gUH -gUH -iFK -vKn -jPr -oDF -oDF -svx -nsY -nsY -yca -gUH -qMp -gUH -gUH -tdv -xPS -xmY -xmY -soD -xmY -noC -axK -axK -gwZ -axK -jil -sxE -wcN -xvD -xvD -ruJ -xvD -nLW -cWZ -xvD -xvD -xvD -xvD -xvD -xvD -svT -oWV -ged -oWV -oWV -vpg -hdf -kwI -kwI -sVM -gjd -uiW -uiW -uiW -sVM -kwI -kwI -kwI -cSO -"} -(104,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -aLN -nNC -nNC -qmL -jsj -prL -olG -dUl -nNC -uym -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -tJK -wPs -wPs -wPs -wPs -wPs -wPs -hYo -xkY -xkY -qpW -xkY -nxv -nCD -urX -arC -arC -arC -aqS -aqS -arC -nCD -fTi -fTi -fTi -fTi -ssD -kTX -ojt -nIV -ojt -ojt -ojt -vxl -ssD -gUH -gUH -gUH -qMp -gUH -gUH -uvF -vZr -oLg -plT -oLg -plT -rCB -oLg -pwd -vaU -uvF -gUH -qMp -eht -qMp -gUH -hwt -iFK -vWa -hMj -vyv -tgi -iFK -iFK -iFK -ciy -gUH -qMp -gUH -gUH -jFg -sxE -axK -axK -axK -axK -goo -oAf -rPl -nBa -ihj -ihj -sxE -byn -oWV -oWV -oWV -oWV -oWV -nZv -oWV -oWV -oWV -oWV -oWV -oWV -oWV -xox -ged -oWV -oWV -vpg -hdf -kwI -kwI -sVM -gjd -gjd -gjd -uiW -sVM -kwI -kwI -kwI -cSO -"} -(105,1,1) = {" -cSO -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -taF -taF -uym -nNC -nNC -nNC -uym -jsj -jsj -olG -olG -nNC -uym -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -tJK -wPs -wPs -wPs -wPs -wPs -wPs -hYo -xkY -qpW -xkY -xkY -nxv -nCD -urX -lRg -arC -arC -arC -arC -arC -nCD -fTi -fTi -fTi -fTi -ssD -rKT -ojt -ojt -ojt -ojt -ojt -vxl -ssD -gUH -gUH -gUH -gUH -gUH -gUH -uvF -qER -oLg -oLg -oLg -oLg -pwd -oLg -eCG -vaU -uvF -nkF -qMp -qMp -qMp -gUH -sPy -iFK -vWa -mKW -vyv -mkv -mkv -hix -dfD -ciy -gUH -qMp -gUH -gUH -jFg -sxE -sxE -sxE -sxE -sxE -sxE -sxE -sxE -sxE -sxE -sxE -sxE -byn -oWV -kSB -oWV -oWV -ged -ged -oWV -oWV -oWV -oWV -ged -ged -ged -ged -ged -oWV -oWV -vpg -hdf -kwI -kwI -sVM -uiW -uiW -iRp -uiW -sVM -kwI -kwI -kwI -cSO -"} -(106,1,1) = {" -cSO -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -taF -taF -uym -jsj -tlc -nNC -uym -jsj -jsj -olG -olG -nNC -uym -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -tJK -wPs -wPs -wPs -wPs -wPs -wPs -hYo -xkY -xkY -xkY -kQc -nxC -nCD -pAc -arC -arC -arC -arC -arC -arC -nCD -fTi -fTi -fTi -fTi -ssD -tBv -ojt -lgU -rBk -mnX -gTD -kgd -ssD -uvF -uvF -uvF -uvF -uvF -gnQ -uvF -oLg -oLg -efK -kTD -oLg -hbI -oLg -oLg -vaU -uvF -hat -gUH -gUH -qMp -aLF -nDv -iFK -siR -ibm -vyv -mkv -fug -fug -iFK -ciy -gUH -qMp -gUH -gUH -jFg -nqz -qoj -bsQ -gse -nqz -gNw -vxh -gNw -gXY -iYH -gNw -nqz -byn -oWV -oWV -ged -wbp -oWV -oWV -oWV -oWV -ged -ged -ged -ged -ged -ged -ged -oWV -oWV -vpg -hdf -kwI -kwI -sVM -sVM -sVM -sVM -sVM -sVM -kwI -kwI -kwI -cSO -"} -(107,1,1) = {" -cSO -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -jsj -xGI -iaL -uym -nNC -nNC -nNC -nNC -olG -uym -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -tJK -tJK -tJK -tJK -tJK -tJK -tJK -dUx -gtW -nOA -gtW -oJI -dUx -nCD -arC -pum -arC -arC -arC -pum -arC -nCD -fTi -fTi -fTi -fTi -ssD -ssD -ssD -ssD -ssD -ssD -ssD -ssD -ssD -oLg -oLg -oLg -oEg -oLg -oLg -uvF -oLg -oLg -plT -oLg -plT -eCG -oLg -oLg -vaU -uvF -krj -ggg -gUH -aLF -vsq -hmw -iFK -nbx -jPH -vyv -vyv -jWy -qmE -dfD -ciy -gUH -gUH -gUH -gUH -jFg -nqz -oJZ -poQ -vlA -nqz -gNw -nqz -jZe -gNw -gNw -gNw -nqz -wHk -kXK -ged -wbp -oWV -oWV -oWV -oWV -hVz -nZv -nZv -oWV -ged -ged -ged -ged -ged -oWV -vpg -hdf -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -cSO -"} -(108,1,1) = {" -cSO -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -jsj -jsj -jsj -uym -olG -nNC -aLN -nNC -trZ -uym -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -kwI -dUx -gtW -nOA -gtW -oJI -dUx -nCD -nCD -nCD -nCD -nCD -bhS -nCD -nCD -nCD -nCD -nCD -fTi -fTi -fTi -fTi -fTi -uvF -oLg -oLg -oLg -oLg -gnQ -oLg -oLg -oLg -oLg -oLg -oLg -uvF -oLg -oLg -oLg -oLg -oLg -oLg -oLg -hRH -vaU -uvF -iFK -iFK -iFK -iFK -iFK -iFK -iFK -cPH -vyv -vyv -vyv -fOY -gDM -iFK -ciy -gUH -gUH -gUH -gUH -jFg -foA -gNw -qCI -gNw -vxh -jdB -nqz -eVu -gNw -jZe -gNw -nqz -ldN -vGC -dQZ -dQZ -kns -ldN -dvG -vpg -gUX -kEA -kEA -vpg -vpg -vpg -wGu -vpg -vpg -vpg -qrS -hdf -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -cSO -"} -(109,1,1) = {" -cSO -nUU -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -qmL -uym -uym -uym -uym -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -dUx -gtW -nOA -gtW -oJI -dUx -nCD -arC -arC -dsh -arC -arC -arC -nCD -cUh -txq -nCD -fTi -ptd -gUH -ptd -fTi -uvF -jCn -ufy -uGV -oLg -uvF -jLn -jLn -jLn -oLg -oLg -puf -uvF -eXh -lEq -qrc -cqn -ewc -fxL -lEq -lEq -lJU -uvF -ebV -vCW -uBs -kaB -iFK -eiB -mkv -nvX -vyv -vyv -jze -fug -kGf -dfD -ciy -gUH -gUH -qMp -gUH -jFg -foA -gNw -qCI -wkT -nqz -gNw -nqz -iTX -hSv -fYS -eNs -nqz -ldN -vGC -dQZ -dQZ -kns -ldN -hdf -hdf -hdf -hdf -hdf -hdf -hdf -hdf -hdf -hdf -hdf -hdf -hdf -hdf -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -cSO -"} -(110,1,1) = {" -cSO -nUU -uym -tME -tME -tME -tME -tME -tME -tME -tME -tME -tME -tME -tsh -tME -tME -jJu -jJu -eFx -eFx -eFx -eFx -uym -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -dUx -gtW -nOA -gtW -oJI -dUx -nCD -ohP -aDq -aDq -cQS -arC -lRg -nCD -fdX -mbw -nCD -fTi -pZR -gUH -pZR -fTi -uvF -qhu -qhu -qhu -oLg -uvF -kVM -oLg -jLn -oLg -oLg -jLn -uvF -oLg -oLg -oLg -oLg -oLg -oLg -oLg -oLg -oLg -uvF -ruh -vCW -vCW -vCW -eLy -mkv -mkv -mkv -vyv -vyv -vyv -mkv -ofP -iFK -ciy -gUH -qMp -qMp -gUH -jFg -nqz -gNw -mHC -gNw -nqz -wkT -nqz -nqz -nqz -nqz -nqz -nqz -ldN -vGC -dQZ -dQZ -kns -ldN -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -cSO -"} -(111,1,1) = {" -cSO -nUU -uym -tME -tME -tME -tME -anm -tME -tME -tME -tME -tME -tME -tME -tME -tME -tME -tME -anm -tME -tME -tME -uym -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -dUx -gtW -nOA -gtW -oJI -dUx -nCD -bUk -aDq -aDq -cQS -arC -gvC -nCD -mbw -xSN -nCD -fTi -gUH -gUH -gUH -fTi -uvF -tHV -vQq -ufy -oLg -uvF -oLg -oLg -oLg -oLg -oLg -puf -uvF -oLg -nfW -uWN -jyp -oLg -nfW -eIW -nmh -mIs -uvF -vSY -vCW -vCW -vCW -iFK -acA -aQF -mkv -rRk -ofP -kOY -gDM -gDM -iFK -ciy -gUH -qMp -qMp -qMp -jFg -nqz -nqz -ivt -nqz -nqz -kZe -nqz -gNw -gNw -pvH -gNw -lPA -ldN -vGC -kns -dQZ -kns -ldN -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -cSO -"} -(112,1,1) = {" -cSO -nUU -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -rwd -tME -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -dUx -gtW -gtW -gtW -oJI -dUx -nCD -ohP -aDq -aDq -cQS -arC -arC -nCD -tWz -nCD -nCD -fTi -gUH -gUH -gUH -fTi -uvF -uvF -uvF -uvF -uvF -uvF -oLg -oLg -oLg -pnJ -gVR -jLn -uvF -uvF -uvF -uvF -uvF -uvF -uvF -uvF -uvF -uvF -uvF -pdJ -vCW -vMQ -bsT -iFK -iFK -iFK -dfD -iFK -dfD -iFK -iFK -iFK -iFK -dKX -gUH -qMp -qMp -qMp -jFg -nqz -giX -qCI -gNw -vxh -gNw -nqz -gNw -gNw -vAg -nAB -gNw -ldN -vGC -kns -kns -kns -ldN -kwI -kwI -kwI -kwI -kwI -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(113,1,1) = {" -cSO -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -tME -tME -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -dUx -gtW -gtW -gtW -oJI -dUx -nCD -arC -arC -arC -arC -arC -arC -dsh -arC -arC -nCD -fTi -gUH -gUH -gUH -fTi -fTi -fTi -fTi -fTi -vUp -vUp -vUp -vUp -vUp -vUp -vUp -vUp -vUp -csD -oNf -nEs -oNf -csD -oNf -bWB -dHX -csD -iFK -iFK -iFK -iFK -iFK -iFK -orD -orD -rZd -fTi -rZd -fTi -fTi -fTi -uuE -ciy -gUH -qMp -qMp -gUH -jFg -nqz -mub -nyd -gNw -nqz -gNw -nqz -gqa -bKb -bKb -bKb -bKb -ldN -vGC -kns -kns -kns -ldN -kwI -kwI -kwI -kwI -kwI -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -cSO -"} -(114,1,1) = {" -cSO -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -taF -taF -uym -tsh -tME -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -dUx -gtW -gtW -gtW -oJI -dUx -nCD -lyE -arC -lRg -arC -gcI -ePr -bsp -arC -arC -qXx -fTi -gUH -gUH -gUH -gUH -gUH -gUH -gUH -fTi -vUp -vKE -oYc -fbP -jCM -jCM -jCM -jCM -jCM -csD -dHX -qqI -oNf -csD -oNf -dHX -dHX -csD -iCt -iCt -iCt -iCt -iCt -iCt -iCt -iCt -iCt -iCt -iCt -iCt -iCt -iCt -uuE -ddM -gUH -qMp -qMp -gUH -jFg -nqz -gNw -qCI -gNw -nqz -jdB -nqz -kXy -gNw -gNw -gNw -gNw -ldN -vGC -kns -kns -kns -ldN -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(115,1,1) = {" -cSO -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -dUx -gtW -gtW -gtW -oJI -dUx -nCD -arC -arC -arC -arC -eOy -ePr -doL -arC -arC -qXx -fTi -gUH -gUH -gUH -gUH -gUH -gUH -gUH -fTi -vUp -vKE -jCM -jCM -jCM -jCM -jCM -jCM -jCM -csD -pBj -oNf -oNf -csD -oNf -aXO -oNf -csD -iCt -iCt -iCt -iCt -iCt -klz -klz -klz -klz -klz -klz -klz -klz -klz -klz -jFg -gUH -qMp -qMp -gUH -fyy -rEg -qeU -ffB -mjV -nqz -gNw -vxh -gNw -gNw -nqj -tnk -gae -ldN -vGC -kns -dQZ -kns -ldN -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(116,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -jdn -sSg -hRU -mlB -fWI -jnm -hRU -abV -abV -rba -fHJ -hRU -bUw -abV -abV -mHL -uym -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -dUx -gtW -gtW -gtW -oJI -dUx -nCD -nCD -nCD -nCD -nCD -nCD -nCD -nCD -nCD -nCD -nCD -fTi -gUH -gUH -gUH -gUH -gUH -gUH -gUH -fTi -vUp -jCM -jCM -jCM -jCM -jCM -jCM -jCM -sgS -dcp -nxx -oNf -oNf -aTg -oNf -pBj -dHX -csD -iCt -iCt -iCt -iCt -iCt -klz -iuu -iuu -xMQ -jKG -mKO -mKO -rEL -iuu -klz -jFg -gUH -gUH -gUH -gUH -jFg -nqz -nqz -nqz -nqz -nqz -nqz -nqz -nqz -nqz -nqz -nqz -nqz -ldN -vGC -kns -dQZ -kns -ldN -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(117,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -syc -hRU -hRU -hRU -fWI -hRU -fWI -bUw -abV -hRU -fWI -hRU -hRU -abV -abV -lCc -uym -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -dUx -gtW -nOA -gtW -oJI -dUx -tJK -fTi -fTi -fTi -fTi -fTi -fTi -fTi -fTi -fTi -fTi -fTi -pZR -gUH -gUH -gUH -gUH -gUH -pZR -fTi -vUp -jCM -jCM -jCM -jCM -jCM -jCM -jCM -kgw -csD -tOd -oNf -oNf -csD -oNf -lpg -pBj -csD -iCt -iCt -iCt -iCt -iCt -klz -iuu -jRx -iuu -iuu -oYJ -mKO -mKO -jRx -klz -wib -ffI -ffI -ffI -ffI -wib -vMt -xXM -uWQ -xzN -tQg -vMt -tKg -tKg -dyc -psi -psi -psi -ldN -vGC -kns -dQZ -nra -ldN -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(118,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -sOG -hRU -hRU -nZI -hRU -hRU -fWI -hRU -abV -hRU -hRU -hRU -hRU -abV -abV -lCc -uym -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -dUx -gtW -gtW -gtW -oJI -dUx -tJK -fTi -fTi -fTi -fTi -fTi -fTi -fTi -fTi -fTi -fTi -fTi -ptd -pZR -gUH -gUH -gUH -pZR -ptd -fTi -vUp -jCM -jCM -jCM -jCM -rlc -jCM -jCM -kgw -csD -lbS -pBj -oNf -csD -oNf -pBj -pBj -csD -iCt -iCt -iCt -iCt -iCt -klz -jrV -uUL -vLA -hvA -fqB -iuu -mKO -vBr -baP -wib -ffI -ffI -ffI -ffI -wib -qwf -lrU -roq -dDr -dDr -vMt -tgo -tgo -bJP -tgo -tgo -tgo -ldN -vGC -dQZ -dQZ -kns -ldN -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(119,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -rwd -tME -sAd -hRU -sSg -hRU -hRU -tcK -fWI -nZI -hRU -hRU -tcK -hRU -hRU -hRU -abV -lCc -uym -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -kwI -oDA -hYo -xkY -qpW -xkY -tZo -iDI -tJK -tJK -tJK -tJK -tJK -tJK -tJK -tJK -fTi -fTi -fTi -fTi -fTi -fTi -fTi -fTi -fTi -fTi -fTi -fTi -vUp -jCM -jCM -jCM -jCM -jCM -rlc -jCM -kgw -csD -csD -csD -csD -csD -csD -csD -csD -csD -klz -klz -klz -klz -klz -klz -iuu -iuu -iuu -iuu -prT -prT -iNF -iuu -klz -wib -ffI -ffI -ffI -ffI -wib -vMt -lTV -dDr -jwz -dDr -hOs -bJP -bJP -bJP -bED -aZy -oqO -ldN -vGC -dQZ -dQZ -kns -ldN -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(120,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -kwI -oDA -hYo -xkY -xkY -xkY -xkY -vDp -mXi -mXi -mXi -mXi -mXi -mXi -mXi -dUx -dUx -dUx -dUx -dUx -dUx -dUx -dUx -dUx -dUx -dUx -dUx -dUx -dUx -uhC -uhC -uhC -uhC -uhC -uqG -uhC -izs -uhC -uhC -uhC -uhC -uhC -uhC -uhC -bVH -uhC -klz -iuu -rbz -hcE -kfF -klz -iuu -eVR -vSV -nUj -eAP -tQr -iuu -iuu -klz -gzQ -ffI -ffI -ffI -ffI -wib -sPZ -dDr -dDr -dDr -ijg -vMt -tPu -bJP -vMt -vMt -vMt -vMt -ldN -vGC -dQZ -dQZ -kns -ldN -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(121,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -xkY -xkY -kbc -xkY -xkY -xkY -xkY -xkY -xkY -xkY -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -jCM -jCM -jCM -jCM -jCM -jCM -rlc -kgw -jCM -jCM -jCM -jCM -jCM -jCM -jCM -bVH -uhC -klz -iuu -iuu -iuu -iuu -klz -iuu -iTW -vSV -mCH -caz -gog -iuu -iuu -klz -wib -ffI -ffI -ffI -ffI -wib -sPZ -gku -dtT -wpz -dDr -vMt -tPu -bJP -vMt -ffI -ffI -ghq -ldN -vGC -dQZ -dQZ -kns -ldN -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(122,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -taF -taF -taF -taF -taF -taF -uym -uym -uym -uym -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -xkY -xkY -kbc -xkY -xkY -xkY -xkY -xkY -xkY -xkY -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -jCM -jCM -jCM -jCM -jCM -rlc -rlc -nMz -jCM -jCM -jCM -jCM -jCM -jCM -jCM -bVH -uhC -klz -iuu -iNF -iuu -iuu -klz -qok -rTi -rTi -mAj -rTi -rTi -brY -pVt -klz -iuA -ffI -ffI -ffI -ffI -wib -fRx -sKj -oFp -dDr -sAW -vMt -rmH -tgo -vMt -ffI -ffI -ghq -ldN -vGC -dQZ -dQZ -kns -ldN -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(123,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -uym -uym -uym -uym -uym -uym -vdF -tME -vdF -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -qpW -xkY -kbc -xkY -xkY -xkY -xkY -xkY -xkY -xkY -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -gtW -jCM -jCM -jCM -jCM -rlc -rlc -rlc -nMz -rlc -jCM -jCM -jCM -jCM -jCM -jCM -bVH -uhC -klz -iuu -iuu -iuu -iuu -baP -iNF -fTB -mKO -ktB -oYJ -eUT -oYJ -iaN -kcd -gWn -ffI -ffI -ffI -ffI -wib -qwf -oUU -bpJ -goO -ljA -vMt -tPq -tgo -vMt -ffI -ffI -ghq -ldN -vGC -kns -kns -kns -ldN -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(124,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -hFC -hFC -hFC -kxO -olG -trZ -olG -dUl -eVV -tME -vdF -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -qpW -xkY -sOC -dgz -dgz -dgz -dgz -dgz -dgz -dgz -bse -bse -bse -bse -bse -bse -bse -bse -bse -bse -bse -bse -bse -bse -hQS -hQS -hQS -hQS -vmS -vmS -hQS -jaI -rlc -rlc -jCM -jCM -jCM -jCM -jCM -bVH -uhC -klz -iuu -iuu -iuu -iuu -uHF -iuu -iuu -fTB -pNF -mKO -mKO -mKO -iuu -vtz -wib -ffI -uOi -uOi -ffI -wib -vMt -dDr -dDr -hkk -lcv -vMt -hXn -tgo -vMt -ffI -ffI -ghq -ldN -vGC -kns -kns -kns -ldN -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(125,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -olG -olG -cZx -mkP -olG -olG -hFC -hFC -vdF -tME -vdF -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -qpW -xkY -nxv -mXi -mXi -mXi -mXi -mXi -mXi -mXi -dUx -dUx -dUx -dUx -dUx -dUx -dUx -dUx -dUx -dUx -dUx -dUx -dUx -dUx -uhC -uhC -lBz -uhC -uhC -uqG -uqG -aXN -cNt -uRM -hCh -jCM -jCM -jCM -jCM -sTQ -vUp -klz -iuu -iuu -jrE -iNF -uHF -iuu -iuu -jrE -iuu -oju -mKO -jrE -iuu -klz -wib -ffI -uOi -uOi -ffI -wib -qnc -dDr -dDr -dDr -cPB -vMt -hXn -tgo -vMt -ffI -ffI -ghq -ldN -vGC -nra -kns -kns -ldN -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(126,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -uym -uym -uym -uym -uym -uym -vdF -tME -vdF -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -qpW -xkY -nxv -hqJ -hqJ -hqJ -hqJ -hqJ -hqJ -xkY -xkY -oDA -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vUp -hlh -jCM -jCM -jCM -jCM -jCM -jCM -jCM -rlc -rlc -cyG -rlc -rlc -jCM -jCM -sTQ -lVO -lVO -lVO -lVO -lVO -lVO -lVO -lVO -lVO -lVO -lVO -lVO -lVO -lVO -lVO -lVO -qWg -bGu -bGu -bGu -rvB -tMw -vMt -akW -qEO -dVN -eRj -vMt -pYC -vMt -vMt -ffI -ffI -ghq -ldN -vGC -kns -kns -kns -ldN -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(127,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -uym -uym -uym -uym -uym -uym -vdF -tME -vdF -uym -taF -taF -taF -uym -uym -uym -uym -uym -uym -uym -uym -uym -taF -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -qpW -xkY -nxv -hqJ -sKS -aLY -sKS -sKS -hqJ -xkY -xkY -oDA -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vUp -jCM -jCM -pyw -pyw -pyw -pyw -jCM -jCM -jCM -rlc -cyG -jCM -jCM -jCM -jCM -sTQ -lVO -nfP -nfP -jnM -lVO -xUn -xUn -jXm -lVO -xQd -jio -xQd -xQd -xQd -xQd -lVO -itm -uOi -uOi -uOi -ffI -wib -vMt -vMt -vMt -vMt -vMt -vMt -kSF -twG -joU -rvB -rvB -pyk -pyk -fLS -oyk -ffI -ffI -hRE -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(128,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -rwd -tME -uym -uym -eRP -jbV -gxk -uym -uym -uym -vdF -tME -vdF -uym -taF -taF -taF -uym -awX -nAX -egI -egI -qvx -egI -nNC -uym -taF -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -oSs -xkY -nxv -hqJ -rez -mtM -mtM -ucy -hqJ -xkY -xkY -oDA -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vUp -jCM -jCM -pyw -jCM -jCM -pyw -jCM -jCM -jCM -jCM -xpT -jCM -jCM -jCM -jCM -sTQ -lVO -bQp -bQp -oZF -lVO -dWQ -dWQ -muS -lVO -gWX -xQd -xQd -xQd -xQd -xQd -wja -wib -uOi -uOi -uOi -ffI -dAR -hbo -qbv -qbv -qbv -qbv -qbv -siK -ffI -ffI -oyk -oyk -oyk -oyk -oyk -oyk -ffI -ffI -hRE -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(129,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -lji -wMn -kAO -uym -uym -uym -auB -tME -vdF -uym -taF -taF -taF -uym -uym -uym -uym -uym -uym -uym -fNq -uym -taF -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -qpW -qpW -nxv -hqJ -jlx -sKS -sKS -sKS -hqJ -xkY -xkY -oDA -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -vUp -jCM -jCM -jCM -jCM -jQZ -pyw -jCM -jCM -jCM -jCM -xpT -jCM -jCM -jCM -jCM -sTQ -lVO -bQp -mHV -krx -lVO -dWQ -kdZ -qiv -lVO -lPj -xQd -mRw -xQd -xQd -xQd -wja -wib -ffI -uOi -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -oyk -oyk -oyk -oyk -oIR -oIR -oIR -ffI -ffI -hRE -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(130,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -rDL -kAO -xwx -uym -uym -uym -vdF -tME -vdF -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -fNq -uym -uym -uym -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -qpW -qpW -nxv -hqJ -jlx -sKS -sKS -sKS -hqJ -xkY -xkY -oDA -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -qMD -qMD -qMD -qMD -jUM -qMD -qMD -qMD -qMD -qMD -qMD -xpT -jCM -jCM -jCM -jCM -sTQ -lVO -qnH -lVO -lVO -lVO -fjR -lVO -lVO -lVO -xQd -xQd -mRw -mRw -mRw -mRw -lVO -wib -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -uOi -oyk -oyk -lwF -lwF -lwF -oIR -oIR -ffI -ffI -hRE -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(131,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -usk -vUA -sfE -uym -uym -uym -vdF -xGi -vdF -uym -uym -uym -taF -taF -taF -taF -taF -taF -taF -uym -fNq -uym -uym -nUU -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -qpW -qpW -nxv -hqJ -jlx -sKS -sKS -sKS -hqJ -xkY -xkY -oDA -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -qMD -eWp -eeD -oJn -oJn -uWG -qMD -qMh -vgS -qMh -qMD -xpT -jCM -jCM -jCM -jCM -sTQ -lVO -xQd -xQd -xQd -aoL -xQd -xQd -xQd -aoL -xQd -sIA -xTI -xTI -xTI -xTI -qIz -ppV -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -uOi -uOi -oyk -oyk -oIR -lwF -lwF -oIR -oIR -pGb -hRE -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(132,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -cdn -brz -wcB -uym -uym -uym -vdF -tME -vdF -vdF -vdF -uym -uym -taF -taF -taF -taF -taF -taF -uym -fNq -uym -uym -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -xkY -qpW -qpW -rHS -skV -bhW -sKS -sKS -sKS -hqJ -xkY -xkY -oDA -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -qMD -eWp -mcd -bwI -mcd -wsa -mOG -oJn -mcd -mcd -qMD -xpT -jCM -jCM -jCM -jCM -sTQ -lVO -xQd -xQd -xQd -xQd -wcv -bZr -bZr -bZr -xQd -lBQ -xQd -xQd -xQd -xQd -tag -wib -ffI -ffI -ffI -ffI -vgl -gUA -gUA -eEf -eEf -eEf -eEf -eEf -pwl -pwl -oyk -cNx -vUE -oSE -lwF -oIR -oIR -pGb -hRE -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(133,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -uym -uym -uym -uym -uym -uym -vdF -tME -tME -vdF -fSN -vdF -uym -taF -taF -taF -taF -taF -taF -uym -nNC -ofz -nNC -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -xkY -xkY -xkY -oQB -hqJ -hqJ -hqJ -hqJ -hqJ -hqJ -xkY -xkY -oDA -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -qMD -nMl -mcd -mcd -mcd -oJn -mOG -oJn -mcd -sGL -qMD -cqg -jCM -jCM -jCM -jCM -qRg -lVO -fjR -lVO -lVO -lVO -lKP -lVO -lVO -lVO -hjb -gVZ -xQd -xQd -xQd -xQd -lVO -wib -ffI -ffI -ffI -ffI -eZU -jSf -lgX -rGF -ffI -ffI -ffI -ffI -uOi -uOi -rAN -fpz -alR -uTv -oyk -oIR -cJi -pGb -hRE -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(134,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -taF -taF -taF -taF -uym -uym -eVV -tME -tME -tME -vdF -gBn -uym -taF -taF -taF -taF -taF -taF -uym -uym -uym -nNC -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -hwS -xkY -xkY -nxv -xkY -xkY -xkY -xkY -xkY -xkY -xkY -xkY -oDA -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -qMD -hxz -mcd -qZN -oJn -oJn -jUM -oJn -bwI -oJn -qMD -iyR -jCM -pSl -jCM -jCM -sTQ -lVO -dWQ -xUn -jXm -lVO -hDU -daA -jnM -lVO -vCL -gVZ -xQd -xQd -xQd -xQd -wja -wib -ffI -ffI -ffI -ffI -eZU -lgX -gLF -rGF -ffI -ffI -ffI -ffI -uOi -uOi -rAN -csa -faO -aFt -oyk -oyk -csa -pGb -hRE -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(135,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tsh -uym -uym -taF -taF -taF -taF -uym -uym -vdF -tME -tME -vdF -vdF -vdF -uym -taF -taF -taF -taF -taF -taF -taF -taF -uym -trZ -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -llG -hwS -llG -llG -nxv -oeI -oeI -oeI -oeI -oeI -oeI -xkY -xkY -oDA -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -qMD -qMD -qMD -mOG -mOG -mOG -qMD -dlU -oJn -oJn -qMD -xpT -jCM -jCM -jCM -jCM -sTQ -lVO -dWQ -kdZ -muS -lVO -nfP -aVp -qXi -lVO -xQd -gVZ -xQd -xQd -vrT -xQd -wja -wib -ffI -ffI -ffI -ffI -eEf -sjW -omt -ffI -ffI -ffI -ffI -ffI -ffI -uOi -ffI -orr -rIe -oyk -oyk -oyk -uOi -ffI -hRE -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(136,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -taF -taF -taF -taF -uym -uym -vdF -tME -vdF -vdF -vdF -uym -uym -taF -taF -taF -taF -taF -taF -taF -taF -uym -xLI -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -llG -lrd -llG -llG -wlD -xgw -bjJ -wOz -wOz -bVh -oeI -xkY -xkY -oDA -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -qMD -hsr -hsr -bCU -aSd -fJV -aVq -oJn -aVL -oJn -nNj -iyR -jCM -jCM -jCM -jCM -sTQ -lVO -dWQ -dWQ -gzl -lVO -nfP -mHV -yls -lVO -xQd -gVZ -lVO -lVO -lVO -lVO -lVO -wib -ffI -ffI -ffI -ffI -eEf -uOi -uOi -jxA -ffI -hcY -bSX -bSX -hcY -ffI -jxA -ffI -uOi -wni -oyk -oyk -cJi -ffI -hRE -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(137,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -rwd -tME -uym -uym -taF -taF -taF -taF -uym -uym -vdF -tME -vdF -uym -uym -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -olG -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -llG -llG -llG -nBF -oeI -uEM -wOz -uwy -tIu -oeI -xkY -xkY -oDA -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -qMD -oJn -mcd -oJn -oJn -oJn -oJn -mcd -bwI -oJn -nNj -xpT -jCM -jCM -jCM -jCM -sTQ -lVO -lVO -lVO -lVO -lVO -lVO -lVO -lVO -lVO -xQd -gVZ -bgp -aLq -gRa -ihq -lVO -wib -ffI -ffI -ffI -ffI -eEf -uOi -uOi -uOi -ffI -pYt -nQZ -nQZ -hEE -ffI -ffI -ffI -ffI -orX -oyk -lwF -cJi -ffI -hRE -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(138,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -taF -taF -taF -taF -uym -uym -vdF -tME -vdF -bGs -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -nNC -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -uqr -qpW -llG -llG -nxv -oeI -lKR -tIu -arQ -hMZ -oeI -xkY -xkY -oDA -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -qMD -gul -mcd -oJn -oJn -mcd -mcd -oJn -oJn -roU -unS -duD -pyw -jCM -jCM -jCM -sTQ -lVO -xQd -xQd -xQd -xQd -xQd -xQd -xQd -xQd -xQd -gVZ -lVO -aLq -hua -aLq -lVO -wib -ffI -ffI -ffI -ffI -eEf -ffI -ffI -oIR -jfz -nQZ -nQZ -nQZ -nQZ -lCS -ffI -ffI -oSE -mmo -lwF -lwF -cJi -ffI -hRE -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(139,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -taF -taF -taF -taF -uym -uym -vdF -tME -vdF -bGs -uym -bGs -bGs -bEe -adL -iUn -adL -bGs -bGs -bGs -bGs -uym -nNC -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -xkY -xkY -nxv -oeI -kqq -eJA -dSp -tIu -oeI -xkY -xkY -oDA -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -qMD -mzD -mcd -vwo -oJn -sGL -bwI -vwo -aVL -gmZ -qMD -gpP -pyw -jCM -jCM -jCM -sTQ -lVO -xQd -xQd -xQd -xQd -xQd -xQd -xQd -xQd -xQd -tHg -lVO -bgp -jxH -bgp -lVO -wib -ffI -ffI -ffI -ffI -eEf -ffI -ffI -oIR -jfz -nQZ -nQZ -nQZ -nQZ -lCS -ffI -oIR -uTv -nXL -lwF -oIR -uOi -ffI -hRE -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(140,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -taF -taF -taF -taF -uym -uym -vdF -tME -vdF -bGs -bGs -bGs -aBN -bGs -bGs -bGs -bGs -bGs -cxD -bEe -bGs -dCN -jsj -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -xkY -xkY -nxv -oeI -jXF -sYO -qRo -phZ -oeI -xkY -xkY -cBQ -qiU -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -qMD -nuo -nIS -yaq -ddF -oJn -oJn -oJn -oJn -gIl -qMD -lMe -pyw -jCM -jCM -jCM -sTQ -lVO -xQd -xQd -xQd -xQd -vrT -xQd -xQd -xQd -xQd -gKO -lVO -hlG -jxH -tKE -lVO -wib -ffI -ffI -ffI -ffI -eEf -ffI -ffI -ffI -oIR -tmU -nQZ -nQZ -aLd -hcY -oIR -uTv -lwF -lwF -lwF -oIR -ffI -ffI -hRE -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(141,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -taF -taF -taF -taF -uym -uym -auB -eQH -vdF -bGs -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -jsj -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -xkY -xkY -xkY -nxv -oeI -tIu -bVh -tIu -tEo -oeI -xkY -xkY -cBQ -qiU -qiU -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -qMD -oJn -oJn -gUw -oJn -flB -qGK -nzV -wdZ -uyJ -qMD -cqg -jCM -jCM -jCM -jCM -sTQ -lVO -lVO -lVO -tag -lVO -lVO -dxN -dxN -dxN -dxN -dxN -dxN -dxN -dxN -dxN -dxN -wib -ffI -ffI -ffI -ffI -eEf -ffI -ffI -jxA -ffI -oIR -dMa -eIb -ffI -oIR -xHs -lwF -lwF -vaE -oIR -ffI -ffI -ffI -hRE -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(142,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tsh -tME -uym -uym -taF -taF -taF -taF -uym -uym -vdF -tME -vdF -uym -uym -taF -taF -taF -taF -taF -taF -uym -eyX -ppL -trZ -qmL -jsj -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -xkY -xkY -nxv -oeI -oeI -oeI -oeI -oeI -oeI -xkY -xkY -cBQ -qiU -qiU -kwI -kwI -kwI -qiU -kwI -kwI -kwI -kwI -kwI -qMD -qMD -qMD -qMD -qMD -qMD -qMD -qMD -qMD -qMD -qMD -xpT -rlc -jCM -jCM -rlc -lni -lni -bVH -lVO -oDJ -rzS -vtV -dxN -pGR -qKT -uQe -uQe -lIf -hnM -brT -sMT -dxN -wib -ffI -ffI -ffI -ffI -eEf -vIT -vIT -ffI -uOi -uOi -uOi -ffI -ffI -oIR -lwF -lwF -lwF -vaE -oIR -ffI -ffI -ghe -iSs -iSs -iSs -iSs -iSs -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(143,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -taF -taF -taF -taF -uym -uym -vdF -tME -vdF -uym -taF -taF -taF -taF -taF -taF -taF -uym -olG -pTT -eyX -pdE -nNC -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -qpW -xkY -nxv -xkY -xkY -xkY -xkY -xkY -xkY -xkY -xkY -cBQ -qiU -kwI -kwI -qiU -qiU -qiU -qiU -qiU -qiU -kwI -kwI -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -xws -xpT -rlc -jCM -rlc -rlc -jaF -jWt -bVH -lVO -hpN -kMa -ovC -dxN -kjj -uQe -uQe -uQe -qog -liI -fRa -sMT -dxN -wib -ffI -ffI -ffI -ffI -eZU -lgX -lgX -rGF -uOi -uOi -uOi -ffI -ffI -oSE -lwF -oIR -oIR -xmH -ffI -ffI -ffI -ghe -pba -uHE -eqV -hDi -iSs -kwI -fOb -fOb -dwh -dwh -oVr -oVr -oVr -oVr -oVr -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(144,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -taF -taF -taF -taF -uym -uym -vdF -tME -vdF -uym -taF -taF -taF -taF -taF -taF -taF -uym -erz -olG -olG -uym -olG -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -qpW -xkY -oQB -rcR -rcR -rcR -rcR -rcR -rcR -xkY -xkY -cBQ -qiU -qiU -kwI -qiU -qiU -kII -sgV -qiU -qiU -qiU -kwI -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -xws -xpT -jCM -rlc -rlc -rlc -jWt -jWt -jWt -lVO -lVO -lVO -lVO -dxN -apP -uQe -oZV -jNa -cGy -liI -fRa -sMT -sjm -wib -ffI -ffI -ffI -ffI -eZU -jSf -lgX -rGF -uOi -ffI -ffI -ffI -ffI -oIR -tkF -tkF -lgX -xmH -ffI -ffI -ffI -ghe -okL -cYM -cYM -iui -iSs -kwI -fOb -fOb -dwh -dwh -oVr -dwh -oVr -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(145,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -rwd -tME -uym -uym -taF -taF -taF -taF -uym -uym -vdF -tME -vdF -uym -taF -taF -taF -taF -taF -taF -taF -uym -pTT -eyX -hAU -uym -xLI -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -qpW -xkY -ulY -aSE -qVe -mIP -cpL -cpL -rcR -xkY -xkY -cBQ -qiU -kwI -kwI -qiU -mJR -bbK -pMm -eDq -wKx -qiU -kwI -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -xws -xpT -jCM -jCM -jCM -jCM -jWt -xFw -mmQ -sxK -sxK -tTP -qcX -dxN -vZz -oZV -oZV -oZV -qcC -liI -fRa -gIF -sjm -wib -ffI -ffI -ffI -ffI -vgl -vtc -vtc -eEf -eEf -eEf -eEf -eEf -oIR -fcX -qjf -qjf -ihb -rRI -ffI -ffI -ffI -ghe -iSs -cYM -pCL -jxR -iSs -kwI -fOb -fOb -dwh -dwh -oVr -oVr -oVr -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(146,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tsh -tME -uym -uym -uym -uym -uym -uym -uym -uym -vdF -tME -vdF -uym -taF -taF -taF -taF -taF -taF -taF -uym -eyX -aXL -gGJ -uym -olG -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -qpW -xkY -hYo -rcR -wdS -cpL -cpL -cpL -rcR -xkY -xkY -oDA -kwI -kwI -kwI -sgV -bbK -dNd -kII -kII -bbK -qiU -kwI -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -xws -mEW -dhM -hQS -hQS -eVY -mmQ -vrJ -bVH -uek -uek -vDN -qcX -dxN -cjK -oZV -oZV -oZV -xRk -liI -nJg -fgS -dxN -wib -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -uOi -uOi -uOi -gxO -ujr -ujr -fgV -ffI -uOi -uOi -ffI -pLW -uDi -snZ -pMs -spp -iSs -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(147,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -uym -uym -uym -uym -uym -uym -vdF -tME -vdF -uym -taF -taF -taF -uym -uym -uym -uym -uym -uym -uym -uym -uym -aLN -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -irW -qpW -xkY -hYo -rcR -wdS -cpL -cpL -cpL -rcR -xkY -xkY -oDA -kwI -kwI -kwI -qiU -pUW -kII -nDN -gvG -xQV -qiU -kwI -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -wDM -kgD -oMS -oMS -oMS -eLL -kgD -ist -uek -uek -uek -vDN -qcX -dxN -oRr -oZV -oZV -uQe -dxN -dxN -ogU -dxN -dxN -wib -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -uOi -uOi -uOi -ghe -ltr -ltr -fgV -uOi -uOi -uOi -uOi -nTb -iSs -iSs -iSs -iSs -iSs -kwI -fOb -fOb -dwh -dwh -oVr -oVr -oVr -oVr -oVr -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(148,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -rBQ -rBQ -rBQ -rBQ -cBZ -rBQ -rBQ -rBQ -vdF -tME -vdF -uym -taF -taF -taF -uym -nNC -egI -egI -wFV -egI -egI -egI -qmL -nNC -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -qpW -xkY -hYo -rcR -wdS -cpL -cpL -cpL -rcR -xkY -xkY -oDA -kwI -kwI -kwI -qiU -bbK -kII -qiU -qiU -eDq -qiU -kwI -moz -moz -moz -moz -tDe -tDe -tDe -moz -moz -moz -moz -kgD -oMS -oMS -oMS -eLL -kgD -gJj -fIP -gIj -uek -bfZ -qcX -dxN -vfQ -uYt -fYO -fYO -fYO -fYO -rZH -nIP -xEy -ppV -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -uOi -uOi -uOi -uOi -rnb -ltr -ltr -fgV -uOi -ffI -uOi -ffI -vtf -wzU -iBs -hRE -kwI -kwI -kwI -fOb -fOb -dwh -dwh -oVr -dwh -oVr -dwh -oVr -dwh -dwh -dwh -dwh -oVr -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(149,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -uym -uym -uym -uym -uym -uym -uym -rBQ -rBQ -rBQ -uym -taF -taF -taF -uym -nNC -uym -uym -uym -uym -uym -uym -uym -nNC -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -xkY -xkY -xkY -hYo -rcR -pYY -mFX -mFX -llF -rcR -xkY -xkY -oDA -kwI -kwI -kwI -nVd -mJR -eDq -xdg -eDq -mJR -qiU -kwI -moz -moz -moz -moz -tDe -veo -tDe -tDe -moz -moz -moz -kgD -oMS -oMS -oMS -eLL -kgD -gJj -fIP -fIP -uek -vDN -qcX -dxN -dxN -dxN -dxN -dxN -dxN -dxN -dxN -dxN -dxN -wib -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -ffI -uOi -uOi -ffI -ghe -ltr -ltr -fgV -uOi -ffI -uOi -uOi -vtf -wzU -ffI -hRE -kwI -kwI -kwI -fOb -fOb -dwh -dwh -oVr -dwh -oVr -dwh -oVr -dwh -dwh -oVr -dwh -dwh -oVr -dwh -dwh -dwh -dwh -dwh -cSO -"} -(150,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -taF -taF -taF -taF -taF -taF -uym -uym -pgz -uym -uym -taF -taF -taF -uym -olG -uym -taF -taF -taF -taF -taF -uym -nNC -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -xkY -qpW -xkY -xkY -hYo -rcR -cpL -cpL -cpL -cpL -rcR -xkY -xkY -oDA -kwI -kwI -kwI -kwI -qiU -qiU -qiU -qiU -nVd -kwI -kwI -moz -moz -tDe -tDe -tDe -moz -tDe -tDe -tDe -moz -moz -kgD -oMS -oMS -oMS -eLL -kgD -qCD -fIP -eSb -uek -vDN -qcX -qcX -gUE -xGz -xGz -xGz -xGz -xGz -xGz -xGz -xGz -pun -jzT -jzT -jzT -jzT -jzT -jzT -jzT -jzT -jzT -jzT -jzT -jzT -jzT -oig -qjf -qjf -bFm -eEf -eEf -eEf -eEf -wib -hLv -bbI -hRE -kwI -kwI -kwI -fOb -fOb -dwh -dwh -oVr -dwh -dwh -dwh -oVr -dwh -dwh -dwh -dwh -dwh -dwh -oVr -dwh -dwh -dwh -dwh -cSO -"} -(151,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -tME -tME -uym -taF -taF -taF -taF -taF -taF -uym -rBQ -rBQ -dYl -uym -taF -taF -taF -uym -xLI -uym -taF -taF -taF -taF -taF -uym -nNC -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -hYo -mXi -mXi -mXi -mXi -hYo -rcR -rcR -rcR -rcR -rcR -rcR -xkY -xkY -oDA -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -moz -moz -tDe -tDe -moz -moz -tDe -tDe -tDe -moz -moz -kgD -oMS -nTD -oMS -eLL -kgD -gJj -fIP -fIP -uek -uZp -sxK -sxK -sxK -wyO -wyO -wyO -wyO -wyO -wyO -wyO -wyO -xHn -hbo -hbo -hbo -uWF -hbo -hbo -hbo -hbo -hbo -hbo -hbo -mmM -mmM -isp -tkF -tkF -ghq -tVq -eSN -eSN -eSN -tJD -tVq -hRE -hRE -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -oVr -dwh -dwh -dwh -dwh -cSO -"} -(152,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -uym -uym -uym -uym -taF -taF -taF -taF -taF -taF -uym -bsx -rBQ -rBQ -uym -taF -taF -taF -uym -nNC -uym -taF -taF -taF -taF -taF -uym -uym -tME -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -tJK -eKw -kIK -kIK -tJK -xSs -xkY -xkY -xkY -xkY -xkY -xkY -xkY -xkY -oDA -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -moz -moz -moz -veo -tDe -moz -moz -moz -tDe -tDe -moz -moz -kgD -bXp -uCT -nTD -dsj -kgD -gJj -fIP -fIP -uek -uek -uek -uek -uek -uek -uek -xws -xws -xws -xws -xws -xws -ppl -ppl -ppl -pgM -uTf -ppl -ppl -ppl -ppl -ppl -ppl -ppl -jzT -jzT -pun -tkF -tkF -ghq -tVq -eSN -eSN -eSN -tJD -tVq -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -oVr -oVr -oVr -oVr -oVr -dwh -dwh -dwh -dwh -dwh -dwh -oVr -dwh -dwh -dwh -dwh -cSO -"} -(153,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -rBQ -rBQ -rBQ -uym -taF -taF -taF -uym -nNC -uym -taF -taF -taF -taF -taF -taF -uym -nUU -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -tJK -xSs -xSs -xSs -tJK -xkY -xkY -xkY -xkY -xkY -xkY -xkY -xkY -xkY -oDA -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -tDe -tDe -tDe -moz -moz -moz -tDe -tDe -veo -moz -jRz -oMS -nTD -oMS -eLL -cUE -gJj -fIP -fIP -rkN -fIP -fIP -bMU -mCF -vFu -uek -vYy -vYy -vYy -vYy -vYy -vYy -ppl -aQK -lJQ -lzO -vIz -lzO -eHl -lzO -lzO -lzO -cQh -ppl -jzT -jzT -pun -spN -tkF -ghq -tVq -eSN -eSN -fEs -tJD -tVq -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -oVr -dwh -dwh -dwh -dwh -dwh -oVr -dwh -dwh -oVr -dwh -dwh -dwh -dwh -dwh -cSO -"} -(154,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -uym -uym -uym -uym -taF -taF -taF -uym -xYg -uym -taF -taF -taF -taF -taF -taF -uym -uym -uym -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -oDA -tJK -tJK -tJK -tJK -tJK -oDA -oDA -oDA -oDA -oDA -oDA -oDA -oDA -oDA -oDA -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -tDe -tDe -moz -moz -moz -moz -moz -tDe -tDe -moz -kgD -nTD -nTD -nTD -dsj -kgD -gJj -fIP -fIP -uek -fIP -fIP -fIP -vty -opj -uek -vYy -vYy -vYy -vYy -vYy -vYy -ppl -uhZ -bbJ -lzO -vIz -lzO -lzO -lzO -lzO -lzO -cQh -ppl -jzT -jzT -tkH -spN -tkF -ghq -tVq -eSN -eSN -eSN -tJD -tVq -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -oVr -oVr -dwh -dwh -dwh -dwh -dwh -oVr -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(155,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -hqn -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -tDe -tDe -moz -moz -moz -moz -moz -hxs -hxs -moz -kgD -nTD -nTD -nTD -eLL -kgD -tKv -fDb -puN -uek -mqE -pnr -esi -pAR -psZ -uek -vYy -vYy -vYy -vYy -vYy -vYy -ppl -uhZ -bbJ -lzO -vIz -lzO -lzO -lzO -lzO -lzO -lzO -ppl -jzT -jzT -tkH -vSf -tkF -ghq -tVq -eSN -eSN -eSN -tJD -tVq -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -oVr -oVr -oVr -oVr -oVr -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(156,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -uym -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -moz -moz -moz -moz -moz -ijk -ijk -ijk -ijk -ijk -ijk -ijk -ijk -ijk -moz -moz -moz -moz -veo -tDe -moz -moz -moz -moz -moz -tDe -tDe -tDe -prU -nTD -nTD -nTD -eLL -kgD -heC -eSb -mOp -uek -mqE -pnr -mlg -gaJ -nJQ -uek -vYy -vYy -vYy -vYy -vYy -vYy -ppl -uhZ -bbJ -lzO -vIz -lzO -lzO -nyu -sHR -lzO -lzO -sGS -jzT -jzT -pun -spN -tkF -ghq -tVq -fEs -eSN -eSN -tJD -tVq -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(157,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -moz -moz -moz -moz -moz -ijk -owT -sQN -sQN -sQN -sQN -sQN -sQN -ijk -ijk -ijk -ijk -tDe -tDe -tDe -moz -moz -moz -moz -moz -tDe -tDe -tDe -uIj -nTD -nTD -nTD -eLL -kgD -jIk -fIP -fIP -uek -mqE -pnr -fIP -fIP -fIP -uek -vYy -vYy -vYy -vYy -vYy -vYy -ppl -uhZ -bbJ -fcQ -vIz -bdP -bdP -bdP -bdP -lzO -lzO -sGS -jzT -jzT -tkH -spN -tkF -ghq -tVq -eSN -eSN -eSN -tJD -tVq -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(158,1,1) = {" -cSO -jKH -jKH -jKH -jKH -jKH -jKH -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -moz -moz -moz -moz -moz -ijk -sQN -sQN -bTR -cVE -fec -pgl -sQN -sQN -sQN -sQN -kdI -tDe -qii -rvk -moz -moz -moz -moz -moz -moz -tDe -tDe -uIj -nTD -nTD -nTD -eLL -kgD -cCa -fIP -fIP -uek -lrV -fIP -fIP -fIP -fIP -uek -vYy -vYy -vYy -vYy -vYy -vYy -ppl -uhZ -bbJ -eqI -qos -bmi -pcm -udm -gKn -grz -fAK -ppl -jzT -spN -tkH -spN -tkF -ghq -tVq -fEs -eSN -eSN -tJD -tVq -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -oVr -dwh -oVr -oVr -oVr -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(159,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -moz -moz -moz -moz -moz -ijk -sQN -oQP -onQ -rOH -vpp -vpp -sQN -pRk -vpp -tFu -tkP -qii -avT -moz -moz -moz -moz -moz -moz -moz -moz -moz -kgD -nTD -nTD -nTD -eLL -kgD -fIP -fIP -fIP -uek -egP -fIP -cvU -qnf -dyI -uek -vYy -vYy -vYy -vYy -vYy -vYy -ppl -ppl -ppl -ppl -ppl -ppl -ppl -ppl -ppl -ppl -sNd -ppl -bMX -bMX -etv -bMX -hRE -ghq -tVq -eSN -eSN -eSN -tJD -tVq -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(160,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -moz -moz -moz -moz -moz -ijk -sQN -bfN -onQ -onQ -vpp -vpp -mxP -vpp -vpp -tFu -tkP -nTm -xSx -moz -moz -moz -moz -moz -moz -moz -moz -moz -kgD -nTD -nTD -nTD -eLL -kgD -fIP -fIP -fIP -uek -uek -uek -uek -uek -uek -uek -vYy -vYy -vYy -vYy -vYy -vYy -ppl -lzO -lzO -lzO -lzO -fxa -fxa -lvz -fxa -fxa -vIz -ppl -bMX -uGP -fVV -bMX -hRE -ghq -tVq -eSN -eSN -fEs -tJD -tVq -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -yen -oVr -yen -dwh -oVr -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(161,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -moz -moz -moz -moz -moz -ijk -sQN -oQP -onQ -rOH -vpp -vpp -sQN -ofj -vpp -tFu -uXj -tDe -tDe -moz -moz -moz -moz -moz -moz -moz -moz -moz -kgD -nTD -nTD -nTD -eLL -kgD -fIP -fIP -fIP -xzv -xzv -hrl -uek -mja -ijK -uek -vYy -vYy -vYy -vYy -vYy -vYy -ppl -lzO -lzO -uNY -dtD -dtD -dtD -mBR -dtD -dtD -igC -ppl -bMX -ukE -fVV -bMX -hRE -ghq -tVq -eSN -eSN -eSN -tJD -tVq -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -oVr -dwh -oVr -dwh -oVr -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(162,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -moz -moz -moz -moz -moz -ijk -sQN -sQN -bTR -xhk -fec -fav -sQN -sQN -sQN -sQN -pgQ -veo -tDe -moz -moz -moz -moz -moz -moz -moz -moz -moz -kgD -nTD -nTD -nTD -eLL -kgD -fIP -fIP -fIP -fIP -fIP -fIP -rkN -dRL -dRL -uek -vYy -vYy -vYy -vYy -vYy -vYy -ppl -ppl -ciz -ppl -ppl -per -per -eqI -lzO -per -per -ppl -bMX -cwH -fVV -bMX -hRE -ghq -tVq -fEs -eSN -eSN -tJD -tVq -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -oVr -dwh -yen -oVr -yen -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(163,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -moz -moz -moz -moz -moz -ijk -sQN -sQN -sQN -sQN -sQN -sQN -sQN -ijk -ijk -ijk -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -kgD -nTD -nTD -nTD -eLL -kgD -fIP -fIP -fIP -fIP -fIP -fIP -uek -cKu -dRL -uek -vYy -vYy -vYy -vYy -vYy -vYy -ppl -lzO -lzO -lzO -ppl -mki -mki -psw -psw -mki -mki -ppl -bMX -bMX -etv -bMX -bMX -bMX -tVq -eSN -eSN -eSN -tJD -tVq -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(164,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -moz -moz -moz -moz -moz -ijk -ijk -ijk -ijk -ijk -ijk -ijk -ijk -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -kgD -nTD -nTD -nTD -eLL -kgD -gIj -gIj -fIP -fIP -fIP -fIP -uek -dRL -nrV -uek -vYy -vYy -vYy -vYy -vYy -vYy -ppl -lzO -lzO -lzO -ppl -kqO -gYW -kqO -csy -kqO -kqO -ppl -iJp -hdn -gki -kqv -cxO -hdn -tVq -eSN -eSN -eSN -tJD -tVq -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(165,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -kwI -kwI -fOb -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -kgD -nTD -nTD -nTD -eLL -kgD -fbv -hAW -lmq -fIP -fIP -fIP -uek -nbV -dRL -uek -vYy -vYy -vYy -vYy -vYy -vYy -ppl -lzO -xsY -lzO -ppl -xKb -lXw -nmd -kqO -cfu -qCO -ppl -cxF -uGP -kxw -hdn -uGP -oHt -tVq -fEs -eSN -fEs -tJD -tVq -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(166,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -taF -taF -nUU -nUU -nUU -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -kgD -nTD -nTD -nTD -eLL -kgD -uek -uek -uek -uek -uek -uek -uek -uek -uek -uek -vYy -vYy -vYy -vYy -vYy -vYy -ppl -lzO -khL -lzO -ppl -ppl -ppl -ppl -ppl -ppl -ppl -ppl -cPN -eJw -jKj -cog -wXX -cog -tVq -wHZ -eSN -eSN -tJD -tVq -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(167,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -taF -taF -taF -taF -nUU -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -kgD -nTD -nTD -nTD -eLL -kgD -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -ppl -rDN -qEu -rDN -lzO -sHF -ppl -kzl -uoD -uoD -nhw -ppl -lQI -bzh -gki -cog -uGP -cog -tVq -eSN -eSN -eSN -tJD -tVq -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(168,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -kgD -nTD -nTD -nTD -eLL -kgD -aeh -aeh -aeh -aeh -aeh -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -ppl -pRz -mAA -vxn -lzO -sxW -ppl -iSZ -nhw -nhw -nhw -wTv -hdn -cAB -fIz -cog -hdn -cog -tVq -eSN -eSN -fEs -tJD -tVq -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(169,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -nUU -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -moz -kgD -oMS -oMS -oMS -eLL -kgD -aeh -oMm -oMm -oMm -aeh -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -vYy -ppl -rDN -vUK -rDN -lzO -kOk -ppl -kzl -lTi -nhw -nhw -ppl -wKa -jLb -xTr -hdn -oWX -hdn -tVq -eSN -eSN -eSN -tJD -tVq -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(170,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -nUU -nUU -taF -taF -taF -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -taF -taF -taF -taF -taF -taF -taF -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -xws -xws -xws -xws -xws -aeh -cUE -oMS -oMS -oMS -eLL -jRz -aeh -bmB -tkN -tkN -aeh -aeh -aeh -aeh -aeh -aeh -aeh -aeh -aeh -aeh -aeh -aeh -ppl -ppl -ppl -ppl -ppl -ppl -ppl -ppl -ppl -ppl -ppl -ppl -bMX -bMX -bMX -bMX -bMX -bMX -tVq -eSN -eSN -eSN -tJD -tVq -aeh -aeh -aeh -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(171,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -nUU -nUU -taF -taF -taF -taF -jOf -yev -toK -toK -toK -toK -toK -toK -toK -lcW -toK -toK -toK -toK -toK -toK -toK -lcW -toK -toK -toK -toK -toK -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -nUU -nUU -nUU -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jgt -izd -rfo -rfo -xuN -lZs -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -jWC -rfo -rfo -rfo -xuN -lZs -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(172,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -nUU -nUU -taF -taF -taF -taF -yev -jOf -yev -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -owP -toK -uym -nNC -nNC -nNC -nNC -nNC -olG -uym -uym -uym -uym -uym -uym -uym -uym -uym -nUU -nUU -nUU -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -rfo -rfo -rfo -hRB -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -gcJ -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -qaE -qaE -qaE -qaE -rfo -rfo -rfo -jWC -rfo -rfo -rfo -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(173,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -nUU -nUU -taF -taF -taF -toK -mAV -yev -mAV -yev -toK -toK -toK -toK -toK -toK -toK -toK -toK -yev -toK -toK -toK -toK -toK -toK -toK -toK -toK -uym -nNC -nNC -nNC -nNC -nNC -olG -uym -uym -uym -uym -mck -mrD -nNC -uym -uym -nUU -nUU -nUU -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -rfo -rfo -rfo -hRB -gcJ -rfo -rfo -gcJ -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -qaE -qaE -qaE -fZQ -qaE -vkJ -qaE -rfo -rfo -jWC -rfo -tFn -rfo -rfo -ckO -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(174,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -nUU -nUU -taF -taF -taF -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -bGs -rBQ -rBQ -bGs -uym -uym -uym -uym -nNC -nNC -nNC -trZ -olG -olG -olG -nNC -nNC -olG -uym -uym -uym -uym -uym -uym -fNq -uym -uym -nUU -nUU -nUU -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -rfo -rfo -rfo -hRB -eNv -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -njl -rfo -qaE -qaE -fZQ -fZQ -fZQ -fZQ -fZQ -qaE -rfo -rfo -jWC -rfo -rfo -rfo -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(175,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -bGs -bGs -rBQ -rBQ -dYl -uym -taF -taF -uym -nNC -nNC -olG -olG -olG -nNC -nNC -nNC -nNC -olG -uym -uym -uym -uym -uym -uym -fNq -uym -uym -taF -nUU -nUU -mHc -mHc -mHc -mHc -mHc -rfo -rfo -rfo -rfo -rfo -rfo -mHc -mHc -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -oGx -oGx -rfo -mQj -qfX -qfX -qfX -qfX -qfX -qfX -qfX -qfX -qfX -qfX -qfX -qfX -qfX -qfX -qfX -qfX -qfX -qfX -eRt -qJw -qJw -qJw -eyh -rfo -qaE -fZQ -fZQ -fZQ -qaE -fZQ -fZQ -qaE -rfo -rfo -jWC -rfo -rfo -rfo -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(176,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -bGs -rBQ -yjO -rBQ -rBQ -uym -taF -taF -uym -nNC -nNC -olG -olG -olG -olG -olG -nNC -nNC -nNC -mwy -egI -egI -egI -egI -egI -xXF -uym -uym -taF -nUU -nUU -mHc -mHc -mHc -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -mHc -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -oGx -fbF -rfo -hRB -kjb -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -njl -qJw -qJw -qJw -xuA -qJw -qJw -qJw -eyh -rfo -qaE -qaE -fZQ -qaE -nof -fZQ -fZQ -qaE -rfo -rfo -jWC -rfo -rfo -rfo -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(177,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -nUU -nUU -nUU -nUU -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -gth -dCN -gth -dkt -dkt -uym -taF -taF -uym -nNC -olG -jOS -olG -olG -olG -olG -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -taF -nUU -nUU -mHc -mHc -rfo -rfo -rfo -rfo -oPV -cwd -oPV -rfo -rfo -rfo -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -oGx -oGx -oGx -hRB -eyh -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -eyh -qJw -qJw -qJw -xuA -qJw -qJw -qJw -eyh -rfo -rfo -qaE -fZQ -fZQ -fZQ -fZQ -fZQ -qaE -rfo -rfo -jWC -rfo -rfo -rfo -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(178,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -nUU -nUU -nUU -nUU -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -bGs -bGs -qJv -rBQ -rBQ -uym -taF -taF -uym -uym -uym -uym -uym -uym -nNC -tlc -lmt -lmt -okF -lmt -lmt -lmt -lmt -nNC -nNC -nNC -uym -uym -taF -nUU -nUU -mHc -mHc -rfo -rfo -rfo -rfo -oPV -pII -oPV -rfo -rfo -rfo -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -oGx -oGx -oGx -hRB -eyh -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -eyh -qJw -qJw -qJw -xuA -qJw -qJw -qJw -eyh -rfo -rfo -qaE -qaE -fZQ -fZQ -fZQ -qaE -qaE -rfo -rfo -pcE -rfo -rfo -rfo -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(179,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -nUU -nUU -nUU -nUU -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -bGs -bGs -bGs -rBQ -bGs -uym -taF -taF -taF -taF -taF -taF -uym -uym -nNC -nNC -egI -egI -egI -egI -egI -egI -egI -nNC -nNC -tlc -uym -taF -taF -nUU -nUU -mHc -mHc -rfo -rfo -rfo -rfo -oPV -cwd -oPV -rfo -rfo -rfo -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -oGx -oGx -oGx -hRB -eyh -qJw -qJw -qJw -qJw -qJw -mDE -qJw -qJw -qJw -qJw -mDE -qJw -qJw -eyh -qJw -qJw -aYL -fPS -aYL -aYL -qJw -eyh -rJj -rJj -rfo -qaE -qaE -qaE -qaE -qaE -rfo -rfo -tFn -jWC -rfo -rfo -rfo -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(180,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -nUU -nUU -nUU -nUU -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -bGs -kRV -bGs -bGs -kjW -uym -taF -taF -taF -taF -taF -taF -uym -uym -yig -nNC -uym -uym -uym -uym -uym -uym -uym -nNC -nNC -nNC -uym -taF -taF -nUU -nUU -mHc -mHc -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -oGx -oGx -oGx -hRB -eyh -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -eyh -qJw -qJw -aYL -jXd -flj -aYL -qJw -dva -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -cUZ -njl -qJw -jWC -rfo -rfo -rfo -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(181,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -nUU -nUU -nUU -nUU -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -bGs -bGs -bGs -bGs -bGs -uym -taF -taF -taF -taF -taF -taF -uym -uym -nNC -nNC -uym -taF -taF -taF -taF -taF -uym -yig -nNC -nNC -uym -taF -taF -nUU -nUU -mHc -mHc -rfo -rfo -rfo -rfo -rfo -rfo -oGx -rfo -rfo -rfo -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -oGx -oGx -rfo -hRB -eyh -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -eyh -qJw -qJw -aYL -hcT -uFq -aYL -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -eyh -qJw -jWC -rfo -rfo -rfo -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(182,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -nUU -nUU -nUU -nUU -nUU -nUU -taF -taF -uym -uym -uym -uym -uym -uym -uym -uym -uym -bGs -bGs -bGs -kRV -adL -uym -taF -taF -taF -taF -taF -taF -uym -uym -xYg -xYg -uym -taF -taF -taF -taF -taF -uym -nNC -nNC -nNC -uym -taF -taF -nUU -nUU -mHc -mHc -rfo -rfo -rfo -rfo -rfo -oGx -oGx -rfo -rfo -rfo -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -oGx -oGx -rfo -hRB -eyh -qJw -quw -quw -quw -vnr -quw -quw -eKN -quw -eKN -quw -quw -qJw -eyh -qJw -qJw -aYL -aYL -aYL -aYL -aYL -aYL -aYL -aYL -aYL -aYL -aYL -aYL -aYL -aYL -aYL -aYL -qJw -jWC -rfo -rfo -rfo -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(183,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -nUU -nUU -nUU -nUU -nUU -nUU -taF -taF -uym -bGs -bGs -bGs -bGs -bGs -bGs -bGs -bGs -bGs -bGs -adL -bGs -adL -uym -taF -taF -taF -taF -taF -taF -uym -uym -qQi -kaG -uym -taF -taF -taF -taF -taF -uym -nNC -olG -olG -uym -taF -taF -nUU -nUU -mHc -mHc -rfo -rfo -rfo -rfo -rfo -oGx -oGx -rfo -rfo -rfo -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -oGx -rfo -rfo -hRB -eyh -qJw -quw -lbr -lbr -sks -tGU -tLs -eZM -gAv -nVH -oeH -quw -qJw -eyh -qJw -qJw -aYL -dCp -knm -knm -vpM -aYL -dCp -knm -knm -mjY -aYL -dCp -knm -knm -mjY -aYL -qJw -jWC -rfo -rfo -rfo -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(184,1,1) = {" -cSO -dwh -dwh -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -taF -taF -uym -bGs -bGs -bGs -bGs -bGs -bGs -bGs -bGs -bGs -bGs -mmp -adL -adL -uym -taF -taF -taF -taF -taF -taF -uym -uym -nNC -nNC -uym -taF -taF -taF -taF -taF -uym -nNC -olG -trZ -uym -taF -taF -nUU -nUU -mHc -mHc -rfo -sot -ocS -jaQ -jaQ -jaQ -jaQ -jaQ -ocS -naB -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -oGx -rfo -rfo -hRB -eyh -qJw -quw -lbr -mdV -sks -sks -sks -sks -sks -sks -sks -quw -qJw -eyh -qJw -qJw -aYL -ejz -knm -knm -knm -aYL -ejz -knm -knm -knm -aYL -ejz -knm -knm -knm -aYL -qJw -jWC -rfo -tFn -rfo -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(185,1,1) = {" -cSO -dwh -dwh -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -taF -taF -uym -bGs -bGs -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -taF -taF -taF -taF -taF -taF -uym -uym -uym -uym -uym -taF -taF -taF -taF -taF -uym -nNC -olG -olG -uym -taF -taF -nUU -nUU -mHc -mHc -rfo -dml -hPr -ixp -hPr -ixp -hPr -ifB -iPZ -dml -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -oGx -rfo -rfo -hRB -eyh -qJw -quw -lxb -fDD -sks -sks -sks -sks -sks -sks -sks -quw -qJw -eyh -qJw -qJw -aYL -knm -knm -cny -kKu -aYL -knm -knm -sZz -kKu -aYL -knm -knm -cny -kKu -aYL -qJw -jWC -rfo -tFn -gcJ -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(186,1,1) = {" -cSO -dwh -dwh -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -bGs -mmp -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -uym -uym -uym -uym -taF -taF -taF -taF -taF -uym -nNC -olG -olG -uym -taF -taF -nUU -nUU -mHc -mHc -rfo -dml -hpY -ifB -hpY -ifB -gAq -oUN -vsk -dml -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -oGx -rfo -rfo -hRB -eyh -qJw -quw -cBW -fqC -sks -dzV -sks -sks -dzV -nFn -dOh -quw -qJw -eyh -qJw -qJw -aYL -aYL -mzM -aYL -aYL -aYL -aYL -mzM -aYL -aYL -aYL -aYL -mzM -aYL -aYL -aYL -qJw -jWC -rfo -rfo -rfo -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(187,1,1) = {" -cSO -dwh -dwh -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -bGs -uym -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -yig -olG -olG -uym -taF -taF -nUU -nUU -mHc -mHc -rfo -dml -wot -ixp -wot -ixp -hPr -nii -iPZ -dml -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -oGx -rfo -rfo -hRB -eyh -qJw -quw -quw -quw -vnr -quw -eKN -eKN -quw -quw -quw -quw -qJw -eyh -qJw -qJw -aYL -ghX -knm -wWu -wWu -aYL -ghX -knm -bpX -wWu -aYL -ghX -knm -wWu -wWu -aYL -qJw -jWC -rfo -rfo -rfo -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(188,1,1) = {" -cSO -dwh -dwh -nUU -nUU -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -bGs -bGs -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -uym -uym -nNC -olG -olG -uym -uym -uym -nUU -nUU -mHc -mHc -rfo -dml -hpY -ixp -hpY -ixp -tRW -iYf -vsk -dml -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -oGx -rfo -rfo -hRB -eyh -qJw -quw -aZg -jSx -jSx -mCh -sgC -sgC -mCh -jSx -jSx -quw -qJw -eyh -qJw -qJw -aYL -gDe -gDe -knm -knm -aYL -gDe -gDe -gDe -knm -aYL -knm -knm -knm -knm -aYL -qJw -jWC -rfo -rfo -rfo -rfo -tmV -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(189,1,1) = {" -cSO -dwh -dwh -nUU -nUU -taF -taF -taF -mAV -yev -yev -toK -toK -yev -yev -aqO -yev -yev -cyD -toK -toK -toK -toK -toK -toK -lcW -yev -yev -toK -toK -toK -fFH -fFH -fFH -xMz -fFH -fFH -xMz -fFH -fFH -xMz -fFH -toK -toK -toK -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -toK -toK -nNC -trZ -olG -toK -toK -uym -nUU -nUU -mHc -mHc -rfo -dml -wot -ixp -wot -sMF -hWL -alT -iPZ -dml -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -oGx -oGx -rfo -gcJ -hRB -eyh -qJw -quw -jSx -jSx -jSx -jSx -qwQ -qwQ -jSx -jSx -jSx -quw -qJw -eyh -qJw -qJw -aYL -rlO -bmq -kwF -dkc -aYL -ejz -gDe -asp -xJm -aYL -ejz -knm -lsC -dkc -aYL -qJw -jWC -rfo -rfo -rfo -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(190,1,1) = {" -cSO -dwh -dwh -nUU -nUU -taF -taF -taF -yev -mAV -mAV -mAV -toK -mAV -yev -toK -toK -toK -toK -toK -toK -toK -nUC -toK -toK -toK -toK -toK -toK -nrZ -fFH -fFH -sEq -ovN -ial -lQK -ksv -ovN -ijp -ovN -ksv -fFH -toK -toK -toK -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -toK -toK -nNC -olG -kVe -cTX -toK -uym -nUU -nUU -mHc -mHc -rfo -dml -wLk -eij -sWZ -sgb -gAq -iYf -vsk -dml -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -oGx -oGx -rfo -rfo -hRB -eyh -qJw -quw -jSx -jSx -jSx -jSx -jSx -jSx -jSx -jSx -jSx -quw -qJw -eyh -qJw -qJw -aYL -dkc -gDe -gDe -knm -aYL -sfC -gDe -knm -knm -aYL -dkc -knm -knm -knm -aYL -qJw -jWC -rfo -rfo -rfo -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(191,1,1) = {" -cSO -dwh -dwh -nUU -nUU -taF -taF -taF -yev -mAV -yev -yev -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -nUC -toK -toK -dux -uxy -aZf -ksv -uQX -sEq -ovN -xKu -ovN -ksv -ovN -sEq -fFH -toK -toK -toK -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -toK -cTX -olG -aXL -nNC -toK -toK -uym -nUU -nUU -mHc -mHc -rfo -dml -wot -ifB -wot -wAY -hWL -xvg -iPZ -dml -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -rfo -rfo -rfo -hRB -eyh -qJw -quw -onu -aPs -fnK -fnK -fnK -fnK -aPs -fnK -ldi -quw -qJw -eyh -qJw -aQe -aYL -nUx -knm -knm -nfh -aYL -nUx -knm -knm -nfh -aYL -nUx -knm -qJd -nfh -aYL -aQe -jWC -rfo -rfo -rfo -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(192,1,1) = {" -cSO -dwh -dwh -nUU -nUU -taF -taF -taF -yev -yev -yev -toK -mAV -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -mUC -ial -aZf -ial -nrM -sEq -sEq -aZf -ksv -nrM -sEq -fFH -toK -toK -toK -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -toK -toK -uym -dHL -uym -toK -toK -uym -nUU -nUU -mHc -mHc -rfo -dml -mVe -ifB -mVe -ixp -gAq -pIY -vsk -dml -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -rfo -rfo -rfo -hRB -dva -cUZ -quw -quw -quw -quw -quw -quw -quw -quw -quw -fhV -quw -cUZ -edm -qJw -qJw -aYL -aYL -aYL -mzM -aYL -aYL -aYL -aYL -mzM -aYL -aYL -aYL -aYL -mzM -aYL -aYL -qJw -jWC -rfo -rfo -rfo -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(193,1,1) = {" -cSO -dwh -dwh -nUU -nUU -taF -taF -taF -yev -yev -yev -yev -toK -mAV -toK -toK -toK -yev -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -toK -fmr -sEq -sEq -ovN -ksv -ovN -gBo -lMv -nMs -lMv -sEq -fFH -toK -toK -toK -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -toK -toK -uym -taF -uym -toK -toK -uym -nUU -nUU -mHc -mHc -rfo -dml -mAm -ifB -mAm -ifB -iPZ -nii -upp -dml -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -jWC -rfo -rfo -rfo -rfo -hRB -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -lzq -qJw -qJw -qJw -qJw -qJw -qJw -tDf -qJw -mES -qJw -qJw -qJw -qJw -mES -qJw -qJw -qJw -qJw -mES -qJw -qJw -qJw -jWC -rfo -oGx -oGx -gcJ -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(194,1,1) = {" -cSO -dwh -dwh -nUU -nUU -taF -taF -taF -mAV -yev -mAV -mAV -toK -toK -toK -toK -toK -toK -toK -nUC -toK -toK -toK -toK -toK -toK -toK -toK -toK -nrZ -fFH -fFH -sEq -ovN -sEq -sUo -nrM -vYO -rVs -jkc -aZf -fFH -toK -toK -toK -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -toK -toK -uym -taF -uym -toK -toK -uym -nUU -nUU -mHc -mHc -rfo -dml -rxh -hGz -tqw -hGz -hGz -ueF -qOG -dml -rUh -kgD -kgD -kgD -kgD -kgD -kgD -kgD -kgD -mZC -xlq -qfX -qfX -qfX -qfX -uJa -cpP -cpP -wqu -cpP -cpP -cpP -cpP -btw -cpP -cpP -cpP -sPV -ueY -ueY -ueY -sVV -ueY -jYc -ueY -jYc -jYc -ueY -ueY -sVV -ueY -ueY -ueY -ueY -ueY -jYc -jYc -jYc -wsT -ueY -pXq -oGx -oGx -oGx -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(195,1,1) = {" -cSO -dwh -dwh -nUU -nUU -taF -taF -taF -yev -yev -toK -toK -toK -toK -toK -toK -toK -toK -hUq -yev -toK -toK -toK -yev -aqO -yev -yev -toK -toK -toK -toK -fFH -fFH -fFH -xMz -fFH -fFH -xMz -fFH -fFH -xMz -fFH -toK -toK -toK -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -toK -toK -uym -taF -uym -toK -toK -uym -nUU -nUU -mHc -mHc -rfo -dml -jrL -ifB -jrL -ifB -sRl -eij -obP -tAo -kij -yhG -hrO -xtq -dxM -dxM -dxM -dxM -dxM -pjh -xBg -rfo -rfo -rfo -rfo -rfo -rfo -rfo -xuA -rfo -rfo -rfo -gcJ -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -oGx -oGx -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -oGx -rfo -rfo -oGx -oGx -oGx -oGx -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(196,1,1) = {" -cSO -dwh -dwh -nUU -nUU -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -bGs -bGs -bGs -bGs -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -toK -toK -uym -taF -uym -toK -toK -uym -nUU -nUU -mHc -mHc -rfo -elS -ocS -ocS -ocS -nyX -pnP -ocS -jaQ -tZV -pFg -fdo -bXp -oMS -oMS -oMS -oMS -oMS -oMS -cOP -izd -rfo -rfo -rfo -rfo -rfo -rfo -rfo -xuA -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -tFn -rfo -rfo -rfo -rfo -rfo -gcJ -rfo -rfo -rfo -oGx -oGx -oGx -oGx -rfo -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(197,1,1) = {" -cSO -dwh -dwh -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -bGs -bGs -bGs -bGs -bGs -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -toK -dXW -uym -taF -uym -dIS -toK -uym -nUU -nUU -mHc -mHc -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -oGx -oGx -cKQ -xoy -uCT -oMS -oMS -oMS -lZl -oMS -oMS -cOP -izd -rfo -rfo -rfo -rfo -rfo -rfo -rfo -xuA -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -gcJ -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -oGx -oGx -oGx -oGx -hRB -qJw -qJw -mHc -mHc -kwI -fOb -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(198,1,1) = {" -cSO -dwh -dwh -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -sFW -bGs -bGs -bGs -bGs -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -toK -toK -uym -taF -uym -toK -toK -uym -nUU -nUU -mHc -mHc -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -oGx -oGx -cKQ -iTc -oMS -oMS -oMS -oMS -oMS -oMS -oMS -cOP -izd -rfo -rfo -rfo -rfo -rfo -rfo -bDw -rli -pEs -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -oGx -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -oGx -oGx -oGx -oGx -hRB -qJw -qJw -mHc -mHc -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(199,1,1) = {" -cSO -dwh -dwh -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -taF -taF -uym -bGs -bGs -bGs -bGs -bGs -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -toK -nUC -uym -taF -uym -toK -toK -uym -nUU -nUU -mHc -mHc -rfo -rfo -rfo -rfo -rfo -rfo -rfo -oGx -oGx -oGx -dKR -kgD -kgD -kgD -kgD -kgD -kgD -kgD -kgD -mZC -izd -rfo -mES -mES -mES -mES -mES -oHW -iKr -xBw -blf -blf -blf -blf -blf -qTI -qfX -cpP -cpP -cpP -cpP -wRx -qfX -qTI -qTI -qTI -qfX -cpP -cpP -cpP -cpP -cpP -cpP -wRx -jIC -cpP -cpP -cpP -cpP -cpP -cpP -hlz -sxt -sxt -sxt -sFM -qJw -qJw -mHc -mHc -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(200,1,1) = {" -cSO -dwh -dwh -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -taF -taF -uym -uym -uym -bGs -bGs -uym -uym -uym -uym -uym -uym -uym -uym -uym -taF -taF -uym -uym -uym -uym -uym -uym -uym -uym -uym -taF -taF -taF -taF -taF -taF -uym -qOt -qOt -uym -taF -uym -qOt -qOt -uym -nUU -nUU -mHc -mHc -rfo -rfo -rfo -rfo -rfo -rfo -oGx -oGx -oGx -oGx -xuA -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -eyh -eAf -rfo -mES -mES -mES -mES -mES -bYW -iKr -bYW -mES -mES -mES -mES -mES -oGx -oGx -bCF -rfo -rfo -gcJ -xuA -rfo -oGx -oGx -oGx -rfo -rfo -rfo -kjb -cUZ -niS -wXd -gBz -wXd -niS -niS -niS -niS -cGM -niS -qVb -qdI -qdI -qdI -qdI -qdI -qdI -qdI -qdI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(201,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -uym -bGs -bGs -uym -nul -ebr -rWs -nNC -nul -ebr -nul -uym -taF -taF -uym -nNC -nNC -nNC -nNC -ofz -nNC -uym -uym -taF -taF -taF -taF -taF -taF -uym -toK -toK -uym -taF -uym -toK -toK -uym -nUU -nUU -mHc -mHc -rfo -rfo -reB -qfX -qfX -qfX -qfX -qfX -jcn -jcn -xBg -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -eyh -rfo -rfo -iKr -iKr -uGW -uGW -iKr -dxI -iKr -dxI -iKr -uGW -uGW -iKr -iKr -oGx -oGx -ssL -rfo -rfo -rfo -dKR -oGx -oGx -oGx -oGx -oGx -oGx -rfo -eyh -qJw -niS -xIQ -fHH -dKC -dKC -dKC -dKC -dKC -dKC -niS -qVb -avs -vor -qIQ -qdI -myl -gTh -aYV -qdI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(202,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -uym -bGs -bGs -uym -nul -nPN -nul -nPN -nul -nPN -nul -uym -taF -taF -uym -bGs -bGs -bGs -bGs -uym -fNq -uym -uym -uym -uym -taF -taF -taF -taF -uym -lDC -dXW -uym -taF -uym -dIS -lDC -uym -nUU -nUU -mHc -mHc -rfo -shx -tIK -shx -shx -oDL -oDL -oDL -shx -shx -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -eyh -rfo -rfo -iKr -dfr -sVs -sVs -sVs -sVs -iKr -sVs -sVs -sVs -sVs -gAK -iKr -oGx -oGx -bzr -rfo -rfo -oGx -dKR -oGx -oGx -oGx -oGx -oGx -oGx -rfo -eyh -qJw -niS -ctx -duf -csd -dKC -dKC -dKC -dKC -dKC -niS -qVb -avs -gcl -eim -qdI -oFk -esL -oFk -qdI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(203,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -uym -bGs -bGs -uym -nul -nNC -nul -nNC -nul -nNC -nul -uym -taF -taF -uym -bGs -bGs -bGs -bGs -uym -mrI -uym -uym -uym -uym -taF -taF -taF -taF -uym -toK -toK -uym -taF -uym -toK -toK -uym -nUU -nUU -mHc -mHc -rfo -shx -wQN -qYQ -ldt -hUK -uRT -hfM -vdg -shx -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -eyh -rfo -rfo -iKr -sVs -ubK -dzj -ebw -sVs -iKr -sVs -dzj -ebw -ubK -sVs -iKr -rfo -oGx -bzr -oGx -rfo -kXv -azS -kXv -tvM -tvM -kXv -kXv -rfo -rfo -eyh -qJw -niS -dKC -fHH -dKC -dKC -dKC -dKC -dKC -dKC -niS -qQr -avs -lGN -dDN -qdI -yjI -qdI -bvs -qdI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(204,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -uym -bGs -bGs -uym -nNC -nNC -nNC -nNC -nNC -nNC -nNC -uym -taF -taF -uym -sFW -bGs -bGs -bGs -uym -nNC -egI -vtl -egI -uym -taF -taF -taF -taF -uym -bXN -bXN -uym -taF -uym -qOt -qOt -uym -nUU -nUU -mHc -mHc -rfo -shx -wQN -xkm -xkm -eKV -oBI -xkm -xkm -shx -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -eyh -rfo -rfo -iKr -dxI -iKr -iKr -sMi -sVs -iKr -sVs -fAx -iKr -iKr -dxI -iKr -rfo -oGx -bzr -oGx -oGx -kXv -yhx -ePY -tcE -jZc -obu -kXv -rfo -rfo -eyh -qJw -niS -mJx -fHH -dKC -dKC -dKC -csd -dKC -feQ -niS -szS -qdI -iBd -eim -eim -eim -qdI -qdI -qdI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(205,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -uym -sFW -bGs -uym -nNC -nNC -nNC -nNC -nNC -nNC -nNC -uym -taF -taF -uym -bGs -adL -bGs -bGs -uym -uym -uym -uym -uym -uym -taF -taF -taF -taF -uym -bGY -toK -uym -taF -uym -toK -toK -uym -nUU -nUU -mHc -mHc -rfo -shx -wQN -xkm -iQo -xkm -xkm -xkm -xkm -shx -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -eyh -rfo -rfo -dMe -sVs -sVs -iKr -iKr -dxI -iKr -dxI -iKr -iKr -sVs -sVs -asK -rfo -oGx -bzr -rfo -irJ -kXv -yhx -luN -luN -luN -luN -kXv -rfo -rfo -eyh -qJw -niS -dKC -put -xNu -xNu -rNu -dKC -dKC -uGU -niS -bcy -qdI -ftb -eim -qdI -wzF -qdI -qdI -qdI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(206,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -uym -adL -bGs -uym -nNC -nNC -nNC -nNC -nNC -nNC -nNC -uym -taF -taF -uym -bGs -adL -moN -bGs -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -bGY -toK -uym -taF -uym -toK -toK -uym -nUU -nUU -mHc -mHc -rfo -shx -wQN -eKV -xkm -eKV -eKV -xkm -xkm -shx -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -dva -cUZ -cUZ -iKr -dfr -sVs -iKr -rSx -uJL -iKr -uJL -xxy -iKr -sVs -gAK -iKr -cUZ -iGO -pSm -rfo -rfo -kXv -flh -gfX -cEg -wQQ -dXz -kXv -rfo -rfo -eyh -qJw -niS -dKC -dSn -oTb -lrY -iMB -ksR -dVw -dVw -niS -ihz -iKh -eim -vuU -qdI -vEw -xXB -pKF -qdI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(207,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -uym -adL -bGs -uym -uym -uym -uym -uym -uym -uym -qmL -uym -uym -uym -uym -adL -sPu -adL -bGs -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -bGY -dXW -uym -taF -uym -dIS -toK -uym -nUU -nUU -mHc -mHc -rfo -shx -vAO -gQq -rWQ -rWQ -wRW -jmV -dhF -shx -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -qJw -qJw -iKr -bda -sVs -iKr -ahV -slC -iKr -ahV -slC -iKr -sVs -bda -iKr -qJw -tDf -mES -rfo -rfo -kXv -yhx -luN -bjW -luN -luN -kXv -rfo -rfo -eyh -qJw -niS -cGM -niS -niS -niS -niS -niS -niS -niS -niS -jFX -eim -eim -eim -qdI -ptQ -vEw -vEw -qdI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(208,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -uym -adL -adL -adL -adL -adL -adL -adL -adL -adL -adL -bGs -bGs -bGs -bGs -adL -adL -adL -adL -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -bGY -toK -uym -taF -uym -toK -toK -uym -nUU -nUU -mHc -mHc -rfo -shx -shx -shx -shx -shx -shx -shx -shx -shx -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -qJw -qJw -iKr -iKr -iKr -iKr -iKr -iKr -iKr -iKr -iKr -iKr -iKr -iKr -iKr -qJw -tDf -mES -rfo -rfo -kXv -bYm -elB -evh -pHx -ipr -kXv -rfo -rfo -eyh -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -bMS -xmg -eim -eim -eim -qdI -vEw -vEw -vEw -qdI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(209,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -uym -adL -adL -adL -adL -adL -adL -adL -adL -iUn -adL -bGs -bGs -kRV -bGs -adL -adL -adL -adL -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -kxb -toK -uym -taF -uym -toK -toK -uym -nUU -nUU -mHc -mHc -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -rfo -mHc -fOb -fOb -kwI -kwI -kwI -kwI -kwI -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -qJw -mES -rfo -rfo -kXv -kXv -kXv -kXv -kXv -kXv -kXv -rfo -rfo -eyh -qJw -qJw -qJw -qJw -qJw -oSb -qJw -qJw -qJw -qJw -bMS -iyY -saB -saB -iFV -qdI -ebi -bjk -bUB -qdI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(210,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -uym -adL -adL -adL -adL -sPu -adL -adL -adL -adL -adL -bGs -bGs -bGs -aBN -bGs -bGs -adL -adL -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -bGY -toK -uym -taF -uym -xdp -toK -uym -nUU -nUU -mHc -mHc -mHc -mHc -rfo -rfo -rfo -rfo -mHc -mHc -mHc -mHc -mHc -aAn -fOb -fOb -kwI -kwI -kwI -kwI -kwI -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -bMS -qdI -qdI -qdI -qdI -qdI -qdI -qdI -qdI -qdI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(211,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -uym -adL -adL -adL -adL -adL -adL -adL -adL -adL -adL -uym -uym -uym -uym -uym -uym -uym -uym -uym -taF -taF -taF -taF -taF -uym -uym -uym -taF -uym -toK -toK -uym -taF -uym -nUC -toK -uym -nUU -nUU -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -aAn -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(212,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -uym -adL -adL -adL -adL -cxD -adL -adL -adL -cxD -adL -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -nNC -uym -taF -uym -toK -toK -uym -taF -uym -toK -toK -uym -nUU -nUU -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -mHc -aAn -fOb -fOb -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -kwI -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(213,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -uym -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -mPW -uym -taF -uym -toK -toK -uym -taF -uym -toK -toK -uym -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(214,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -xYg -uym -taF -uym -toK -toK -uym -uym -uym -toK -toK -uym -nUU -nUU -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -fOb -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(215,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -mAV -mAV -mAV -taF -taF -taF -taF -taF -taF -uym -nNC -uym -taF -uym -toK -toK -nNC -mTK -nNC -toK -toK -uym -nUU -nUU -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(216,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -mAV -mAV -mAV -mAV -mAV -taF -taF -taF -taF -taF -taF -uym -xLI -uym -taF -uym -toK -toK -nNC -nNC -nNC -toK -toK -uym -nUU -nUU -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(217,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -mAV -mAV -mAV -rss -mAV -mAV -mAV -taF -taF -taF -taF -uym -olG -uym -taF -uym -toK -toK -nNC -lqe -nNC -toK -toK -uym -nUU -nUU -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(218,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -mAV -mAV -mAV -nlV -mAV -mAV -mAV -taF -taF -taF -taF -uym -olG -uym -taF -uym -toK -toK -nNC -nNC -tlc -toK -toK -uym -nUU -nUU -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(219,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -mAV -mAV -mAV -sVl -mAV -mAV -mAV -taF -taF -taF -taF -uym -nNC -uym -uym -uym -toK -toK -nNC -mAV -nNC -toK -toK -uym -nUU -nUU -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(220,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -mAV -mAV -mAV -mAV -mAV -mAV -mAV -taF -taF -taF -taF -uym -cci -egI -egI -qmL -toK -toK -nNC -nNC -nNC -toK -toK -uym -nUU -nUU -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(221,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -mAV -mAV -mAV -taF -taF -taF -taF -taF -taF -uym -uym -uym -uym -uym -toK -nUC -mAV -nNC -bps -mAV -toK -uym -nUU -nUU -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(222,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -uym -mAV -mAV -mAV -mAV -mAV -toK -mAV -uym -nUU -nUU -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(223,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -nUU -nUU -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(224,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -taF -nUU -nUU -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(225,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(226,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -jKH -jKH -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -nUU -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(227,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(228,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(229,1,1) = {" -cSO -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -dwh -cSO -"} -(230,1,1) = {" -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -cSO -"} diff --git a/maps/southern_sun/submaps/gateway/diescraper.dm b/maps/southern_sun/submaps/gateway/diescraper.dm deleted file mode 100644 index 53f8e0cd87..0000000000 --- a/maps/southern_sun/submaps/gateway/diescraper.dm +++ /dev/null @@ -1,160 +0,0 @@ - -/obj/machinery/power/rtg/fake_z_wires //A 'reactor' disguised as a multi Z wire coming from godknowswhereium - name = "Multi-Floor Wire" - desc = "A thick industrial cable connecting power between all of the floors of the building." - power_gen = 150000 - icon = 'modular_chomp/icons/obj/power.dmi' - icon_state = "rtgfakez" - -//The fake shuttle -/* The code fucking breaks when the gateway ISNT lateloaded because all shuttles must be mapped in. No way around it. -/area/shuttle/diescraper - name = "Skyscraper Elevator" - icon_state = "shuttle2" - base_turf = /turf/simulated/floor/reinforced - -/obj/machinery/computer/shuttle_control/diescraper - name = "Elevator Control Panel" - shuttle_tag = "Diescraper" - -/datum/shuttle/autodock/ferry/diescraper - name = "Diescraper" - warmup_time = 0 - location = FERRY_LOCATION_STATION - shuttle_area = /area/shuttle/diescraper - landmark_offsite = "die_sling_outpost" - landmark_station = "die_sling_station" - docking_controller_tag = "die_sling" - -/obj/effect/shuttle_landmark/diescraper/sling_station - name = "Floor 51" - landmark_tag = "die_sling_station" - docking_controller = "die_sling_station" - base_area = /area/awaymission/diescraper/indoors/floor2 - base_turf = /turf/simulated/floor/reinforced - -/obj/effect/shuttle_landmark/diescraper/sling_outpost - name = "Ground Floor" - landmark_tag = "die_sling_outpost" - docking_controller = "die_sling_outpost" -*/ - -//Areas - -/area/awaymission/diescraper - icon_state = "blank" - -/area/awaymission/diescraper/indoors - icon_state = "green" - base_turf = /turf/simulated/floor/plating - -/area/awaymission/diescraper/indoors/floor1 - icon_state = "green" - base_turf = /turf/simulated/floor/plating - name = "Away Mission - Skyscraper Ground Floor" - base_turf = /turf/simulated/floor/outdoors/rocks - -/area/awaymission/diescraper/indoors/floor2 - icon_state = "green" - base_turf = /turf/simulated/floor/plating - name = "Away Mission - Skyscraper Floor 52" - forced_ambience = list('sound/ambience/fluorescentlight.ogg') - -/area/awaymission/diescraper/indoors/floor3 - icon_state = "green" - base_turf = /turf/simulated/floor/plating - name = "Away Mission - Skyscraper Floor 53" - forced_ambience = list('sound/ambience/fluorescentlight.ogg') - -/area/awaymission/diescraper/indoors/floor4 - icon_state = "green" - base_turf = /turf/simulated/floor/plating - name = "Away Mission - Skyscraper Floor 54" - -/area/awaymission/diescraper/indoors/floor4second - icon_state = "green" - base_turf = /turf/simulated/floor/plating - name = "Away Mission - Skyscraper Floor 54 Second" - requires_power = FALSE - -/area/awaymission/diescraper/indoors/floor5 - icon_state = "green" - base_turf = /turf/simulated/floor/plating - name = "Away Mission - Skyscraper Floor 55" - -/area/awaymission/diescraper/indoors/floor6 - icon_state = "green" - base_turf = /turf/simulated/floor/plating - name = "Away Mission - Skyscraper Floor 56" - -/area/awaymission/diescraper/indoors/floor7 - icon_state = "green" - base_turf = /turf/simulated/floor/plating - name = "Away Mission - Skyscraper Floor 57" - -/area/awaymission/diescraper/indoors/floor8 - icon_state = "green" - base_turf = /turf/simulated/floor/plating - name = "Away Mission - Skyscraper Floor 58" - -/area/awaymission/diescraper/indoors/floor9 - icon_state = "green" - base_turf = /turf/simulated/floor/plating - name = "Away Mission - Skyscraper Floor 59" - -/area/awaymission/diescraper/indoors/floor10 - icon_state = "green" - base_turf = /turf/simulated/floor/plating - name = "Away Mission - Skyscraper Floor 60" - -/area/awaymission/diescraper/indoors/floor11 - icon_state = "green" - base_turf = /turf/simulated/floor/plating - name = "Away Mission - Skyscraper Roof Maintinence" - requires_power = 0 - flags = PHASE_SHIELDED - -/area/awaymission/diescraper/indoors/floor112 - icon_state = "green" - base_turf = /turf/simulated/floor/plating - name = "Away Mission - Skyscraper Second Tower Roofing" - -/area/awaymission/diescraper/roof - icon_state = "green" - base_turf = /turf/simulated/floor/plating - outdoors = OUTDOORS_YES - name = "Away Mission - City Roof" - forced_ambience = list('sound/effects/weather/wind/wind_loop1.ogg') - - -/area/awaymission/diescraper/sky - icon_state = "yellow" - base_turf = /turf/simulated/sky/south - always_unpowered = TRUE - outdoors = OUTDOORS_YES - forced_ambience = list('sound/effects/weather/wind/wind_loop1.ogg') - -/area/awaymission/diescraper/outside - icon_state = "green" - dynamic_lighting = 1 - requires_power = 0 - power_equip = 0 - power_environ = 1 - power_light = 1 - outdoors = OUTDOORS_YES - ambience = AMBIENCE_SIF - base_turf = /turf/simulated/floor/outdoors/rocks - -/area/awaymission/diescraper/outside/roof - icon_state = "green" - base_turf = /turf/simulated/floor/plating - name = "Away Mission - City Roof" - -/obj/item/card/id/diescrapergun - name = "Gunstore ID" - access = list(886) - -/obj/structure/sign/warning/secure_area/slabs - name = "Mysterious Slab" - icon = 'modular_chomp/icons/obj/stationobjs.dmi' - icon_state = "slab1-off" diff --git a/maps/southern_sun/submaps/gateway/diescraper.dmm b/maps/southern_sun/submaps/gateway/diescraper.dmm deleted file mode 100644 index e74488610d..0000000000 --- a/maps/southern_sun/submaps/gateway/diescraper.dmm +++ /dev/null @@ -1,84122 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/structure/table/rack/shelf/wood, -/obj/random/maintenance/medical, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"ab" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 193; - teleport_y = 200; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"ac" = ( -/obj/effect/floor_decal/industrial/warning/color/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor10) -"ad" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"ae" = ( -/mob/living/simple_mob/slime/feral, -/turf/simulated/floor/carpet, -/area/awaymission/diescraper/indoors/floor9) -"af" = ( -/obj/machinery/gateway{ - density = 0; - dir = 6 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor2) -"ag" = ( -/obj/effect/floor_decal/stairs/dark_stairs, -/obj/machinery/light{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"ah" = ( -/obj/machinery/light{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor2) -"ai" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/mob/living/simple_mob/animal/space/goose{ - faction = "metroids" - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"aj" = ( -/obj/structure/table/hardwoodtable, -/obj/item/modular_computer/laptop/preset/custom_loadout/elite, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"ak" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stolenpackage, -/obj/machinery/light/small/flicker{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"al" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"am" = ( -/obj/structure/table/woodentable, -/obj/item/grenade/explosive, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"an" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_y = -6; - pixel_x = -13 - }, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_y = -7; - pixel_x = -8 - }, -/obj/item/reagent_containers/food/condiment/small/peppergrinder{ - pixel_y = 7; - pixel_x = -9 - }, -/obj/item/reagent_containers/food/condiment/small/peppergrinder{ - pixel_y = 4; - pixel_x = -12 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"ao" = ( -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"ap" = ( -/obj/random/trash, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/diescraper/outside) -"aq" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/railing/grey, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"ar" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/random/medical, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"as" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"at" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/undies_wardrobe, -/obj/item/mindbinder, -/turf/simulated/floor/carpet/purple, -/area/awaymission/diescraper/indoors/floor9) -"au" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/pill_bottle/carbon, -/obj/item/storage/pill_bottle/carthatoline, -/obj/item/storage/pill_bottle/citalopram, -/obj/item/storage/pill_bottle/dexalin_plus, -/obj/item/storage/pill_bottle/dexalin_plus, -/obj/item/storage/pill_bottle/iron, -/obj/item/storage/pill_bottle/iron, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"av" = ( -/obj/item/bodybag, -/obj/random/junk, -/obj/item/stack/material/steel{ - amount = 15 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"aw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor4) -"ax" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/mask/gas/clear, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"ay" = ( -/obj/item/bananapeel, -/turf/simulated/floor/carpet/happy, -/area/awaymission/diescraper/indoors/floor7) -"az" = ( -/obj/structure/table/bench/padded, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"aA" = ( -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"aB" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor7) -"aC" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"aD" = ( -/obj/structure/table/standard, -/obj/random/soap, -/obj/random/soap, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"aE" = ( -/obj/structure/table/marble, -/obj/structure/reagent_dispensers/water_cooler/full, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"aF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"aG" = ( -/obj/effect/floor_decal/stairs/dark_stairs, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"aH" = ( -/obj/structure/table/reinforced, -/obj/item/storage/secure/briefcase/nerd_pack_med, -/obj/item/defib_kit/loaded, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"aI" = ( -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"aJ" = ( -/obj/machinery/light{ - dir = 2; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor3) -"aK" = ( -/obj/structure/table/steel, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/stamp/clown, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"aM" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"aN" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 2 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"aO" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/machinery/light/floortube, -/mob/living/simple_mob/animal/giant_spider/webslinger, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"aP" = ( -/obj/structure/table/gamblingtable, -/obj/item/book/bundle/custom_library/nonfiction/skrelliancastesystem, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor6) -"aQ" = ( -/obj/machinery/light{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"aR" = ( -/obj/structure/table/steel, -/obj/item/storage/box/bodybags, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor8) -"aS" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/girder/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"aT" = ( -/obj/machinery/light{ - dir = 2 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"aV" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"aW" = ( -/obj/structure/table/hardwoodtable, -/obj/random/thermalponcho, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"aX" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"aY" = ( -/obj/structure/table/woodentable, -/obj/random/paicard, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"aZ" = ( -/obj/structure/table/reinforced, -/obj/random/medical, -/obj/random/medical/pillbottle, -/obj/effect/decal/cleanable/mucus/mapped, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"ba" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/shuttle/floor/black, -/area/awaymission/diescraper/indoors/floor2) -"bb" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"bc" = ( -/obj/structure/table/standard, -/obj/machinery/photocopier/faxmachine, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"bd" = ( -/obj/item/toy/plushie/susred, -/turf/simulated/floor/concrete, -/area/awaymission/diescraper/outside) -"be" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor10) -"bg" = ( -/obj/structure/bed/chair/oldsofa/right, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"bh" = ( -/obj/structure/bed/chair/oldsofa/right{ - dir = 4 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"bi" = ( -/obj/machinery/door/airlock/freezer{ - name = "Restrooms" - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"bj" = ( -/obj/machinery/light{ - dir = 2; - layer = 3 - }, -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/unsimulated/floor/tiled/milspec, -/area/awaymission/diescraper/indoors/floor6) -"bk" = ( -/obj/effect/floor_decal/corner/white/border/shifted, -/obj/effect/floor_decal/corner/white/border, -/obj/random/trash, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/diescraper/outside) -"bl" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/light{ - dir = 2 - }, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"bm" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"bn" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/pill_bottle/assorted, -/obj/item/storage/pill_bottle/assorted, -/obj/item/storage/pill_bottle/benzilate, -/obj/item/storage/pill_bottle/benzilate, -/obj/item/storage/pill_bottle/neotane, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"bp" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/gloves/yellow, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"bq" = ( -/turf/simulated/floor/carpet/happy, -/area/awaymission/diescraper/indoors/floor7) -"br" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/item/modular_computer/laptop/preset, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"bs" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_containers/food/snacks/spagetti, -/obj/item/reagent_containers/food/snacks/spagetti, -/obj/item/reagent_containers/food/snacks/spagetti, -/obj/item/reagent_containers/food/snacks/spagetti, -/obj/item/reagent_containers/food/snacks/spagetti, -/obj/item/reagent_containers/food/snacks/spagetti, -/obj/fruitspawner/soybean, -/obj/fruitspawner/soybean, -/obj/fruitspawner/soybean, -/obj/fruitspawner/soybean, -/obj/fruitspawner/soybean, -/obj/fruitspawner/soybean, -/obj/fruitspawner/soybean, -/obj/fruitspawner/soybean, -/obj/item/reagent_containers/food/condiment/soysauce, -/obj/item/reagent_containers/food/condiment/soysauce, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"bt" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/reinforced, -/area/awaymission/diescraper/indoors/floor112) -"bu" = ( -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/drinks/coffee, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_y = 2; - pixel_x = 5 - }, -/obj/item/spacecasinocash, -/obj/item/card/id/diescrapergun, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"bv" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 214; - teleport_y = 162 - }, -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"bw" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/gun/energy/hooklauncher, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"bx" = ( -/obj/effect/floor_decal/stairs/dark_stairs, -/obj/machinery/light/poi{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"by" = ( -/obj/structure/table/woodentable, -/obj/item/pen/fountain, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"bz" = ( -/obj/item/reagent_containers/food/drinks/bottle/specialwhiskey{ - pixel_y = 8; - pixel_x = 10 - }, -/obj/structure/table/marble, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_y = 13 - }, -/obj/item/reagent_containers/food/drinks/bottle/wine{ - pixel_y = 2; - pixel_x = 4 - }, -/obj/item/reagent_containers/food/drinks/bottle/sake{ - pixel_y = 1; - pixel_x = -6 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_y = 3; - pixel_x = 12 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"bA" = ( -/obj/item/material/shard/shrapnel, -/mob/living/simple_mob/humanoid/merc/ranged/space/shotgun/auto, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"bB" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"bC" = ( -/obj/structure/table/reinforced, -/obj/item/virusdish/random, -/obj/item/defib_kit/loaded, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"bD" = ( -/mob/living/simple_mob/slime/feral, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/diescraper/indoors/floor9) -"bE" = ( -/obj/structure/salvageable/bliss, -/obj/item/paper{ - name = "ATM Flyer"; - info = "Invest in Teshcoin!" - }, -/turf/unsimulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor6) -"bF" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/cash_register{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"bG" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"bH" = ( -/obj/structure/window/basic, -/obj/structure/table/rack/wood, -/obj/machinery/light/floortube{ - overlay_color = "#e060e0"; - brightness_color_ns = "#9C439C"; - light_color = "#e060e0"; - brightness_color = "#e060e0"; - name = "tinted light fixture" - }, -/obj/item/clothing/suit/whitedress, -/obj/item/clothing/suit/whitedress{ - pixel_y = 8 - }, -/obj/item/clothing/suit/whitedress{ - pixel_y = 4 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack, -/area/awaymission/diescraper/indoors/floor7) -"bI" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"bJ" = ( -/mob/living/simple_mob/humanoid/merc/ranged/rifle/mag/drone, -/turf/simulated/floor/wood/alt/parquet/turfpack, -/area/awaymission/diescraper/indoors/floor7) -"bK" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor3) -"bL" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 214; - teleport_y = 100 - }, -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"bM" = ( -/obj/structure/sign/warning/secure_area/slabs{ - icon_state = "slab3-off" - }, -/turf/unsimulated/wall/cult, -/area/awaymission/diescraper/indoors/floor11) -"bN" = ( -/obj/structure/sign/directions/stairs_up{ - dir = 4 - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor5) -"bO" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/plushie, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor9) -"bP" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/diescraper/outside) -"bQ" = ( -/obj/structure/table/woodentable, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"bR" = ( -/obj/structure/table/rack/shelf/steel, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/reagent_containers/food/drinks/bottle/vermouth, -/obj/item/reagent_containers/food/drinks/bottle/vermouth, -/obj/item/reagent_containers/food/drinks/bottle/vermouth, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = -5 - }, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = -5 - }, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = -5 - }, -/obj/item/reagent_containers/food/drinks/bottle/sake{ - pixel_x = 6 - }, -/obj/item/reagent_containers/food/drinks/bottle/sake{ - pixel_x = 6 - }, -/obj/item/reagent_containers/food/drinks/bottle/sake{ - pixel_x = 6 - }, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor7) -"bS" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"bT" = ( -/obj/structure/medical_stand/anesthetic, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"bU" = ( -/obj/structure/girder, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"bV" = ( -/obj/item/radio/uplink, -/obj/item/clothing/under/suit_jacket/charcoal, -/obj/item/clothing/accessory/jacket/charcoal, -/obj/structure/table/standard, -/obj/item/ammo_magazine/ammo_box/b145/highvel, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"bW" = ( -/obj/effect/landmark/corpse/random_civ, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"bX" = ( -/turf/unsimulated/wall/cult, -/area/awaymission/diescraper/indoors/floor11) -"bY" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"bZ" = ( -/obj/effect/decal/cleanable/mucus/mapped, -/obj/random/organ, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"cb" = ( -/obj/item/material/shard/shrapnel, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/overlay/snow/floor, -/obj/effect/mobblocker{ - dir = 2 - }, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"cc" = ( -/obj/structure/table/rack/shelf, -/obj/item/radio{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/radio{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/radio{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/radio{ - pixel_x = 4; - pixel_y = 5 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"cd" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/reagent_containers/food/snacks/cb01{ - pixel_y = 6; - pixel_x = 6 - }, -/obj/item/reagent_containers/food/snacks/cb01{ - pixel_y = 6; - pixel_x = -8 - }, -/obj/item/reagent_containers/food/snacks/cb01{ - pixel_y = 6; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/snacks/cb01{ - pixel_y = 6; - pixel_x = 2 - }, -/obj/item/reagent_containers/food/snacks/cb08{ - pixel_x = 4 - }, -/obj/item/reagent_containers/food/snacks/cb08{ - pixel_x = -5 - }, -/obj/item/reagent_containers/food/snacks/cb08{ - pixel_x = -1 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"ce" = ( -/obj/structure/bed/chair/sofa/left/brown{ - dir = 2 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor2) -"cf" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"ch" = ( -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/drinks/coffee, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"ci" = ( -/turf/simulated/sky/south{ - temperature = 295.15 - }, -/area/awaymission/diescraper/sky) -"cj" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 14; - teleport_y = 104 - }, -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"ck" = ( -/mob/living/simple_mob/mechanical/cyber_horror/vox, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor8) -"cl" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor1) -"cm" = ( -/obj/structure/simple_door/wood, -/obj/structure/barricade/planks, -/turf/simulated/floor, -/area/awaymission/diescraper/indoors/floor3) -"cn" = ( -/mob/living/simple_mob/humanoid/pirate/armored, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"co" = ( -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"cp" = ( -/turf/unsimulated/floor/tiled/freezer, -/area/awaymission/diescraper/indoors/floor8) -"cq" = ( -/obj/structure/table/woodentable, -/obj/item/paper_bin, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"cr" = ( -/obj/machinery/door/airlock/sandstone, -/turf/unsimulated/floor/tiled/milspec, -/area/awaymission/diescraper/indoors/floor6) -"cs" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/l3closet/general, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"ct" = ( -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor4) -"cu" = ( -/obj/structure/table/rack/shelf, -/obj/random/medical/pillbottle, -/obj/random/medical/pillbottle, -/obj/random/medical/pillbottle, -/obj/random/medical/pillbottle, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"cv" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"cw" = ( -/obj/item/tape/police, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"cx" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"cy" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor9) -"cz" = ( -/obj/structure/table/steel, -/obj/item/fluff/fidgetspinner/yellow, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"cA" = ( -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor10) -"cC" = ( -/obj/machinery/gateway{ - density = 0; - dir = 10 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor4second) -"cD" = ( -/obj/random/material/precious, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"cE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"cF" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, -/turf/simulated/floor/plating{ - temperature = 277 - }, -/area/awaymission/diescraper/indoors/floor7) -"cG" = ( -/obj/machinery/gateway{ - dir = 8 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor1) -"cI" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"cJ" = ( -/obj/random/junk, -/obj/item/material/shard/shrapnel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"cK" = ( -/obj/item/paper{ - name = "Maintinence Paper"; - info = "What do you mean the elevator is out of service? This teleporting lookin ass thing doesnt fit with the asthetic? I want the old elevator back this instant."; - pixel_y = 26 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor2) -"cL" = ( -/obj/machinery/appliance/cooker/grill, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"cM" = ( -/obj/structure/table/steel_reinforced, -/obj/item/disk/integrated_circuit/upgrade/illegal, -/obj/item/disk/integrated_circuit/upgrade/advanced, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"cO" = ( -/obj/machinery/door/blast/puzzle{ - id = "give" - }, -/turf/unsimulated/floor/cult, -/area/awaymission/diescraper/indoors/floor11) -"cP" = ( -/obj/structure/bed/double/padded, -/obj/structure/bed/double/padded{ - pixel_y = -24 - }, -/obj/item/bedsheet/piratedouble, -/obj/item/bedsheet/piratedouble{ - pixel_y = -25 - }, -/turf/simulated/floor/carpet/retro, -/area/awaymission/diescraper/indoors/floor9) -"cQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"cR" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"cS" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/toolbox/lunchbox/survival/zaddat, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"cU" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Pharmacy" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"cV" = ( -/obj/machinery/power/rtg/fake_z_wires, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"cW" = ( -/obj/structure/table/borosilicate, -/obj/item/gun/energy/lasertag/red, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"cX" = ( -/obj/structure/table/woodentable, -/obj/machinery/cash_register{ - dir = 8 - }, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor7) -"cY" = ( -/obj/machinery/appliance/cooker/grill, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"cZ" = ( -/obj/structure/table/marble, -/obj/machinery/microwave{ - pixel_y = 15 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"dd" = ( -/obj/item/gun/magic/firestaff/vrwizard/frost, -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor5) -"de" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"df" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"dg" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"dh" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"di" = ( -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"dj" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"dk" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor3) -"dl" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/door/airlock, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"dm" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"dn" = ( -/obj/machinery/gateway/centeraway{ - calibrated = 0 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor1) -"do" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 194; - teleport_y = 200; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"dp" = ( -/turf/simulated/floor/plating{ - temperature = 277; - icon_state = "dmg4" - }, -/area/awaymission/diescraper/indoors/floor7) -"dq" = ( -/obj/structure/table/rack/shelf/wood, -/obj/random/multiple/gun/projectile/rifle, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"dr" = ( -/obj/effect/floor_decal/rust, -/obj/structure/table/rack/shelf/steel, -/obj/random/tool, -/obj/random/tool/powermaint, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"ds" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/toolbox/electrical, -/obj/structure/sign/warning/cold{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor10) -"dt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/padded, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"dv" = ( -/mob/living/simple_mob/animal/passive/mouse/rat, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"dw" = ( -/obj/random/pacman, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor1) -"dx" = ( -/turf/simulated/wall/wood, -/area/awaymission/diescraper/indoors/floor9) -"dy" = ( -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"dz" = ( -/obj/structure/table/woodentable, -/obj/item/storage/box/glasses/square{ - pixel_x = 9; - pixel_y = 1 - }, -/obj/item/storage/box/glasses/rocks{ - pixel_y = 1; - pixel_x = -6 - }, -/obj/item/storage/box/glasses/pint{ - pixel_y = 11; - pixel_x = -6 - }, -/obj/item/storage/box/glasses/meta/metapint{ - pixel_y = 11; - pixel_x = 9 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"dA" = ( -/obj/structure/table/hardwoodtable, -/obj/item/pizzavoucher, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"dB" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor1) -"dC" = ( -/obj/structure/sign/directions/stairs_up{ - dir = 10; - pixel_y = 0 - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor8) -"dD" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/random/awayloot/nofail, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"dE" = ( -/obj/structure/table/reinforced, -/obj/random/medical, -/obj/random/medical/pillbottle, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"dF" = ( -/mob/living/simple_mob/metroid/juvenile/omega, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"dG" = ( -/obj/effect/simple_portal/coords{ - icon = 'icons/obj/machines/gateway.dmi'; - icon_state = "on"; - dir = 4 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor2) -"dH" = ( -/obj/structure/salvageable/console{ - dir = 4 - }, -/turf/unsimulated/floor/tiled/eris/dark/techfloor{ - temperature = 277; - nitrogen = 93.7835; - oxygen = 20.7263 - }, -/area/awaymission/diescraper/indoors/floor7) -"dI" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"dJ" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"dK" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"dL" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"dM" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"dN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"dO" = ( -/obj/structure/table/bench/sifwooden/padded, -/obj/item/reagent_containers/food/drinks/cans/cola, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"dP" = ( -/obj/effect/floor_decal/rust, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"dQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/modular_computer/console/preset/civilian{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"dR" = ( -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor10) -"dS" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_range = 10; - light_color = "#b3deff" - }, -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"dT" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/unsimulated/floor/tiled/freezer, -/area/awaymission/diescraper/indoors/floor8) -"dU" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"dV" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/cash_register{ - dir = 1 - }, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor1) -"dW" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"dX" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor3) -"dY" = ( -/obj/item/storage/secure/briefcase/rifle, -/obj/structure/table/standard, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"dZ" = ( -/obj/machinery/syndicate_beacon/virgo, -/turf/unsimulated/floor/cult, -/area/awaymission/diescraper/indoors/floor11) -"ea" = ( -/obj/structure/table/gamblingtable, -/obj/item/coin/iron, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"eb" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"ec" = ( -/obj/random/instrument, -/obj/structure/undies_wardrobe, -/turf/simulated/floor/carpet, -/area/awaymission/diescraper/indoors/floor9) -"ed" = ( -/obj/structure/closet/crate/secure/large, -/obj/random/material/precious, -/obj/random/material/precious, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"ee" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/laundry_basket, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor9) -"ef" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/mask/gas, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"eg" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/item/reagent_containers/food/snacks/tossedsalad, -/obj/item/reagent_containers/food/snacks/tossedsalad{ - pixel_y = 14 - }, -/obj/item/reagent_containers/food/snacks/tossedsalad{ - pixel_y = 5 - }, -/obj/item/reagent_containers/food/snacks/tossedsalad{ - pixel_y = 10 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"ei" = ( -/obj/structure/sign/directions/stairs_up{ - dir = 5 - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor3) -"ej" = ( -/obj/structure/table/hardwoodtable, -/obj/item/paper_bin, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"ek" = ( -/obj/effect/decal/remains/mummy2, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"el" = ( -/obj/structure/prop/machine/solifier/starts_on, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"em" = ( -/obj/item/clothing/under/suit_jacket/charcoal, -/obj/item/gun/projectile/automatic/serdy/awp, -/obj/item/ammo_magazine/awp, -/obj/item/ammo_magazine/awp, -/obj/item/clothing/shoes/dress, -/obj/structure/closet, -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor10) -"en" = ( -/obj/structure/table/steel_reinforced, -/obj/item/cell/mech/super, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"eo" = ( -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"ep" = ( -/obj/effect/decal/remains, -/turf/simulated/floor/outdoors/dirt/turfpack/station, -/area/awaymission/diescraper/outside) -"er" = ( -/obj/machinery/light/poi{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"es" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"et" = ( -/obj/machinery/door/window/northleft, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"eu" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/stack/cable_coil/green, -/obj/random/tool/power, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"ev" = ( -/obj/structure/closet/crate/secure/large, -/obj/item/storage/mre/random, -/obj/item/storage/mre/random, -/obj/item/storage/mre/random, -/obj/item/storage/mre/random, -/obj/item/storage/mre/random, -/obj/item/storage/mre/random, -/obj/item/storage/mre/random, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"ew" = ( -/obj/structure/table/marble, -/obj/machinery/microwave, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor1) -"ex" = ( -/obj/effect/decal/remains, -/obj/effect/decal/remains/xeno, -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor1) -"ez" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"eA" = ( -/mob/living/simple_mob/vore/aggressive/rat, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"eB" = ( -/obj/item/taperoll/police, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"eC" = ( -/obj/item/storage/mrebag/pill, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"eD" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/machinery/cash_register{ - req_access = null; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"eE" = ( -/obj/structure/table/glass, -/turf/simulated/floor/carpet/geo, -/area/awaymission/diescraper/indoors/floor6) -"eF" = ( -/mob/living/simple_mob/mechanical/cyber_horror/grey, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"eG" = ( -/obj/machinery/button/remote/blast_door/single_use/slab/slab3{ - pixel_y = 28; - id = "give" - }, -/obj/effect/map_effect/perma_light/brighter{ - light_color = "#f58d42" - }, -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor5) -"eH" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"eI" = ( -/turf/simulated/shuttle/floor/black, -/area/awaymission/diescraper/indoors/floor2) -"eJ" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 207; - teleport_y = 225 - }, -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor11) -"eK" = ( -/mob/living/simple_mob/humanoid/merc/ranged/space/heavy, -/turf/unsimulated/floor/tiled/eris/dark/monofloor{ - temperature = 277 - }, -/area/awaymission/diescraper/indoors/floor7) -"eL" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"eM" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 232; - teleport_y = 37 - }, -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor11) -"eN" = ( -/obj/machinery/button/remote/blast_door/single_use/slab/slab2{ - pixel_x = 29; - id = "gonna" - }, -/obj/effect/map_effect/perma_light/brighter{ - light_color = "#f58d42" - }, -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor2) -"eO" = ( -/obj/item/clothing/head/hardhat, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"eQ" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/pill_bottle/arithrazine, -/obj/item/storage/pill_bottle/arithrazine, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"eR" = ( -/obj/structure/closet/wardrobe/black, -/turf/simulated/floor/carpet, -/area/awaymission/diescraper/indoors/floor9) -"eS" = ( -/obj/structure/girder/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"eT" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 195; - teleport_y = 226; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/indoors/floor11) -"eU" = ( -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/diescraper/indoors/floor2) -"eV" = ( -/obj/structure/table/marble{ - color = "grey" - }, -/obj/machinery/recharger, -/obj/item/inducer/syndicate, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"eX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/diescraper/indoors/floor3) -"eY" = ( -/obj/random/junk, -/obj/random/junk, -/obj/item/material/shard/shrapnel, -/obj/item/material/shard/shrapnel, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"eZ" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"fa" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 214; - teleport_y = 158 - }, -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"fb" = ( -/obj/item/material/shard{ - icon_state = "splinterslarge" - }, -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"fc" = ( -/obj/machinery/vending/dinnerware{ - dir = 8; - pixel_x = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"fd" = ( -/obj/effect/catwalk_plated/dark, -/turf/simulated/sky/south{ - temperature = 295.15 - }, -/area/awaymission/diescraper/sky) -"fe" = ( -/obj/structure/bed/chair/oldsofa/right{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/awaymission/diescraper/indoors/floor9) -"ff" = ( -/obj/structure/table/standard, -/obj/item/storage/box/donkpockets, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor3) -"fg" = ( -/obj/structure/table/standard, -/obj/random/awayloot/looseloot, -/obj/random/bluespace, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"fh" = ( -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor5) -"fi" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor5) -"fj" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/mob/living/simple_mob/humanoid/pirate, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"fk" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor4) -"fl" = ( -/obj/structure/sign/signnew/danger, -/turf/simulated/wall/r_wall, -/area/awaymission/diescraper/indoors/floor4second) -"fm" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/light{ - dir = 2 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"fn" = ( -/mob/living/simple_mob/vore/alienanimals/teppi, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"fo" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/item/reagent_containers/food/snacks/sliceable/pizza/margherita, -/obj/item/reagent_containers/food/snacks/sliceable/pizza/crunch{ - pixel_y = 6 - }, -/obj/item/reagent_containers/food/snacks/sliceable/pizza/pineapple{ - pixel_y = 10 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"fp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"fq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"fr" = ( -/obj/structure/table/rack/shelf/wood, -/obj/random/multiple/gun/projectile/handgun, -/obj/random/multiple/gun/projectile/handgun, -/obj/random/multiple/gun/projectile/handgun, -/obj/random/multiple/gun/projectile/handgun, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"ft" = ( -/obj/structure/bed/chair/wood{ - dir = 4; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"fu" = ( -/obj/machinery/light{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"fv" = ( -/obj/item/ammo_magazine/awp, -/obj/item/gun/projectile/automatic/serdy/awp, -/turf/simulated/floor/reinforced{ - temperature = 277; - outdoors = 1 - }, -/area/awaymission/diescraper/roof) -"fw" = ( -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor3) -"fx" = ( -/obj/machinery/autolathe/armory, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"fy" = ( -/obj/structure/barricade/cutout/viva, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"fz" = ( -/obj/random/plushielarge, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor1) -"fA" = ( -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"fB" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor5) -"fC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"fD" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/random/meat, -/obj/random/meat, -/obj/random/meat, -/obj/random/meat, -/obj/random/meat, -/obj/item/storage/fancy/egg_box, -/obj/item/storage/fancy/egg_box, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"fE" = ( -/obj/structure/table/standard, -/obj/item/pen/crayon/marker/black, -/obj/item/pen/crayon/marker/black{ - pixel_y = 5 - }, -/obj/item/pen/crayon/marker/black{ - pixel_y = 3 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"fF" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"fG" = ( -/turf/unsimulated/floor/outdoors/mud/turfpack/station, -/area/awaymission/diescraper/indoors/floor5) -"fH" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"fI" = ( -/obj/structure/table/rack/shelf, -/obj/item/towel/random{ - pixel_x = -5; - pixel_y = -9 - }, -/obj/item/towel/random{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/item/towel/random{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/random/soap{ - pixel_y = 8 - }, -/obj/random/soap{ - pixel_x = -1; - pixel_y = 10 - }, -/obj/item/clothing/under/bathrobe{ - pixel_x = 3; - pixel_y = -5 - }, -/obj/item/clothing/under/bathrobe{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/diescraper/indoors/floor9) -"fJ" = ( -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor5) -"fK" = ( -/obj/machinery/light{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"fL" = ( -/obj/item/bodybag, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"fM" = ( -/obj/effect/decal/cleanable/mucus/mapped, -/obj/structure/bed/padded, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"fN" = ( -/obj/item/stool/padded{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"fO" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_range = 10; - light_color = "#b3deff" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"fP" = ( -/obj/effect/simple_portal/linked{ - portal_id = 6666; - icon = 'icons/obj/machines/gateway.dmi'; - icon_state = "oncenter" - }, -/obj/effect/map_effect/perma_light/gateway, -/obj/effect/simple_portal/coords{ - icon = 'icons/obj/machines/gateway.dmi'; - icon_state = "oncenter"; - density = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor4second) -"fQ" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/telecomms/server, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/awaymission/diescraper/indoors/floor10) -"fR" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"fS" = ( -/obj/structure/table/standard, -/obj/item/storage/box/cups, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"fT" = ( -/obj/structure/table/steel_reinforced, -/obj/structure/window/titanium{ - dir = 2 - }, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"fU" = ( -/obj/machinery/power/rtg/fake_z_wires, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"fV" = ( -/obj/machinery/door/window/eastright{ - dir = 2 - }, -/turf/simulated/floor/carpet/geo, -/area/awaymission/diescraper/indoors/floor6) -"fX" = ( -/obj/structure/closet/secure_closet/freezer/kitchen{ - locked = 0 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"fZ" = ( -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"ga" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/aesirsalad, -/obj/item/reagent_containers/food/snacks/flowerchildsalad{ - pixel_y = 6 - }, -/obj/item/reagent_containers/food/snacks/rosesalad{ - pixel_y = 12 - }, -/obj/item/reagent_containers/food/snacks/tossedsalad{ - pixel_y = -4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor4) -"gb" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/closet/secure_closet/freezer/kitchen{ - locked = 0 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"gc" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"gd" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor4second) -"gf" = ( -/obj/effect/floor_decal/rust, -/obj/random/tool, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"gg" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/mob/living/simple_mob/humanoid/merc/ranged/technician, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/diescraper/indoors/floor7) -"gh" = ( -/obj/effect/landmark/gateway_scatter, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"gi" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"gj" = ( -/obj/structure/table/hardwoodtable, -/obj/effect/decal/remains, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"gk" = ( -/obj/random/junk, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"gl" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 170; - teleport_y = 80; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"gm" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"gn" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/carpet/brown, -/area/awaymission/diescraper/indoors/floor9) -"gp" = ( -/turf/simulated/floor/wood/alt/panel/broken, -/area/awaymission/diescraper/indoors/floor6) -"gq" = ( -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor7) -"gr" = ( -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/obj/machinery/computer/arcade{ - dir = 8 - }, -/turf/simulated/floor/carpet/retro, -/area/awaymission/diescraper/indoors/floor9) -"gs" = ( -/obj/machinery/power/rtg/fake_z_wires, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor11) -"gt" = ( -/obj/item/tape/engineering, -/obj/machinery/door/airlock/glass{ - locked = 1; - icon_state = "door_locked" - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"gu" = ( -/obj/machinery/light{ - dir = 8; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"gv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"gw" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/orangedouble, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/diescraper/indoors/floor9) -"gx" = ( -/obj/structure/closet/crate/engineering, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"gy" = ( -/obj/structure/table/steel, -/obj/random/tool/powermaint, -/obj/random/tool/power, -/obj/item/rcd/advanced/loaded, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"gz" = ( -/obj/structure/table/marble, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/reagent_containers/food/snacks/omelette, -/obj/item/reagent_containers/food/snacks/omelette{ - pixel_y = 8 - }, -/obj/item/reagent_containers/food/snacks/omelette, -/obj/item/reagent_containers/food/snacks/omelette{ - pixel_y = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"gA" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"gB" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor9) -"gC" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"gD" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor3) -"gE" = ( -/obj/structure/safe/floor, -/obj/item/reagent_containers/pill/cyanide, -/obj/item/storage/pill_bottle/healing_nanites, -/obj/effect/landmark/corpse/doctor, -/obj/item/reagent_containers/glass/beaker/vial/supermatter, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"gF" = ( -/obj/item/grenade/confetti, -/turf/simulated/floor/carpet/retro, -/area/awaymission/diescraper/indoors/floor9) -"gG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/effect/decal/remains, -/obj/random/drinkbottle, -/turf/simulated/floor, -/area/awaymission/diescraper/indoors/floor3) -"gH" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"gI" = ( -/obj/machinery/appliance/cooker/oven, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor4) -"gK" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 40; - teleport_y = 138 - }, -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"gL" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor10) -"gM" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/simulated/floor/carpet/retro, -/area/awaymission/diescraper/indoors/floor9) -"gN" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"gO" = ( -/obj/structure/table/standard, -/obj/item/cell/device/super, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"gP" = ( -/obj/structure/disposalpipe/broken{ - dir = 1 - }, -/obj/random/trash, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -28; - pixel_y = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"gQ" = ( -/obj/item/clothing/shoes/bhop, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"gR" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/structure/table/survival_pod, -/obj/item/spacecash/c1000, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"gS" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"gT" = ( -/mob/living/simple_mob/mechanical/cyber_horror, -/turf/unsimulated/floor/tiled/freezer, -/area/awaymission/diescraper/indoors/floor8) -"gV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - health = 1e+006; - req_access = list(5) - }, -/obj/machinery/telecomms/processor, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/awaymission/diescraper/indoors/floor10) -"gW" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/light{ - pixel_y = 0; - dir = 8 - }, -/obj/item/stack/material/diamond{ - amount = 3 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"gX" = ( -/obj/effect/floor_decal/industrial/warning/color/yellow{ - dir = 1 - }, -/mob/living/simple_mob/vore/aggressive/rat, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor10) -"gY" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"gZ" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"ha" = ( -/obj/structure/closet/crate/secure/large, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 295.15 - }, -/area/awaymission/diescraper/indoors/floor10) -"hb" = ( -/obj/structure/table/glass, -/obj/machinery/chemical_dispenser/bar_soft/full, -/turf/simulated/floor/carpet/geo, -/area/awaymission/diescraper/indoors/floor6) -"hc" = ( -/obj/machinery/papershredder, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"hd" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"he" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"hf" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"hg" = ( -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor1) -"hh" = ( -/obj/machinery/light{ - pixel_y = 0; - dir = 1 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"hi" = ( -/obj/machinery/door/airlock/glass_medical{ - req_one_access = null - }, -/turf/unsimulated/floor/tiled/freezer, -/area/awaymission/diescraper/indoors/floor8) -"hj" = ( -/obj/structure/reagent_dispensers/beerkeg/fakenuke, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"hk" = ( -/obj/effect/step_trigger/teleporter/deathfall{ - teleport_x = 55; - teleport_y = 16 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/sky/south{ - temperature = 295.15 - }, -/area/awaymission/diescraper/sky) -"hl" = ( -/obj/structure/sign/signnew/flammables, -/turf/simulated/wall/concrete, -/area/awaymission/diescraper/indoors/floor6) -"hm" = ( -/obj/machinery/door/airlock/medical{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor8) -"hn" = ( -/obj/machinery/light{ - dir = 8; - overlay_color = "#FFFEB8" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"ho" = ( -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"hp" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"hq" = ( -/obj/item/stack/cable_coil/random, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/port_gen/pacman/super, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"hr" = ( -/obj/machinery/light/poi, -/obj/structure/table/steel_reinforced, -/obj/item/storage/belt/utility/full/multitool, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor10) -"hs" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"ht" = ( -/obj/machinery/light, -/mob/living/simple_mob/mechanical/cyber_horror, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"hv" = ( -/obj/machinery/power/rtg/fake_z_wires, -/obj/structure/cable/green, -/obj/random/tool, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"hw" = ( -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"hy" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/rack/shelf/steel, -/obj/random/tool, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"hz" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/appliance/cooker/fryer, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"hA" = ( -/obj/structure/table/bench/sifwooden/padded, -/obj/item/firework_star/weather/confetti, -/obj/item/reagent_containers/food/snacks/tomatomeat, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"hB" = ( -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/diescraper/indoors/floor9) -"hC" = ( -/obj/machinery/appliance/cooker/oven, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"hD" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/item/weldingtool/alien, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"hE" = ( -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"hF" = ( -/obj/machinery/power/apc{ - dir = 8; - pixel_x = -26 - }, -/obj/structure/table/steel_reinforced, -/obj/random/tool, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor11) -"hH" = ( -/mob/living/simple_mob/animal/giant_spider/pepper, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor3) -"hJ" = ( -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"hK" = ( -/obj/machinery/power/port_gen/pacman, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"hL" = ( -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"hM" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/greendouble, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"hN" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 213; - teleport_y = 219 - }, -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"hO" = ( -/obj/structure/table/rack/shelf/wood, -/obj/random/multiple/gun/projectile/shotgun, -/obj/random/multiple/gun/projectile/smg, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"hP" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor9) -"hQ" = ( -/obj/structure/inflatable, -/turf/simulated/floor/plating{ - temperature = 277 - }, -/area/awaymission/diescraper/indoors/floor7) -"hR" = ( -/mob/living/simple_mob/mechanical/hivebot/support, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"hS" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"hT" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"hU" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/devilledegg, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"hV" = ( -/obj/structure/bed/chair/shuttle, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"hW" = ( -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/machinery/door/window/westright, -/obj/structure/curtain/open/shower, -/obj/structure/window/reinforced/tinted/frosted, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor9) -"hX" = ( -/obj/machinery/vending/boozeomat{ - emagged = 1; - req_access = newlist() - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"hY" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"hZ" = ( -/obj/random/trash, -/obj/structure/toilet{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor4) -"ia" = ( -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"ib" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/unsimulated/floor/tiled/freezer, -/area/awaymission/diescraper/indoors/floor8) -"ic" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"id" = ( -/obj/effect/floor_decal/corner/paleblue/border, -/obj/machinery/light, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"ie" = ( -/obj/structure/fence/hedge, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"if" = ( -/obj/random/pottedplant, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor2) -"ig" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"ih" = ( -/obj/structure/table/standard, -/obj/machinery/chemical_dispenser/bar_coffee/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor3) -"ii" = ( -/obj/structure/table/rack/shelf, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"ij" = ( -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor6) -"ik" = ( -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"il" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"in" = ( -/obj/structure/table/reinforced, -/obj/item/storage/quickdraw/syringe_case, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"ip" = ( -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"iq" = ( -/obj/effect/floor_decal/rust, -/obj/effect/catwalk_plated/dark, -/turf/simulated/sky/south{ - temperature = 295.15 - }, -/area/awaymission/diescraper/sky) -"ir" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"it" = ( -/obj/structure/table/bench/padded, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"iu" = ( -/obj/structure/fence/corner{ - dir = 9 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "slab2" - }, -/area/awaymission/diescraper/outside) -"iv" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor3) -"iw" = ( -/obj/random/trash{ - pixel_y = -1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"ix" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/spagetti, -/obj/item/reagent_containers/food/snacks/spagetti, -/obj/item/reagent_containers/food/snacks/spagetti, -/obj/item/reagent_containers/food/snacks/spagetti, -/obj/item/reagent_containers/food/snacks/spagetti, -/obj/item/reagent_containers/food/snacks/spagetti, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"iy" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor1) -"iz" = ( -/obj/structure/sign/warning/server_room, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor6) -"iA" = ( -/obj/structure/sign/warning/secure_area, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor6) -"iB" = ( -/obj/structure/prop/blackbox, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor10) -"iC" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"iD" = ( -/obj/structure/closet/crate/trashcart, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"iE" = ( -/obj/effect/map_helper/no_tele/area, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor11) -"iF" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor2) -"iG" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor1) -"iH" = ( -/obj/structure/bed/chair/oldsofa{ - dir = 4 - }, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/diescraper/indoors/floor9) -"iI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/diescraper/indoors/floor10) -"iJ" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/reinforced, -/area/awaymission/diescraper/indoors/floor112) -"iK" = ( -/turf/simulated/floor/tiled/old_tile, -/turf/simulated/wall/concrete, -/area/awaymission/diescraper/indoors/floor10) -"iL" = ( -/turf/simulated/wall/wood, -/area/awaymission/diescraper/indoors/floor10) -"iM" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor10) -"iN" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"iO" = ( -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"iP" = ( -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"iQ" = ( -/mob/living/simple_mob/animal/space/tree, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor7) -"iR" = ( -/obj/structure/sign/levels/elevator{ - dir = 6; - name = "\improper Elevator Floor 50" - }, -/turf/unsimulated/shuttle/wall/dark, -/area/awaymission/diescraper/indoors/floor2) -"iS" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_one_access = list(43,67) - }, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/obj/item/cell/device/weapon, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"iT" = ( -/obj/machinery/light/small/neon, -/turf/simulated/wall/wood, -/area/awaymission/diescraper/indoors/floor6) -"iU" = ( -/obj/structure/salvageable/machine, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"iV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"iW" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/toy/plushie/green_fox, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor9) -"iX" = ( -/obj/structure/table/marble, -/obj/structure/window/reinforced, -/obj/item/reagent_containers/food/snacks/monkeykabob, -/obj/item/reagent_containers/food/snacks/monkeykabob{ - pixel_y = 14 - }, -/obj/item/reagent_containers/food/snacks/monkeykabob{ - pixel_y = 3 - }, -/obj/item/reagent_containers/food/snacks/monkeykabob{ - pixel_y = 7 - }, -/obj/item/reagent_containers/food/snacks/monkeykabob{ - pixel_y = 11 - }, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor4) -"iY" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"iZ" = ( -/obj/structure/sign/directions/stairs_up{ - dir = 10 - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor4) -"ja" = ( -/obj/structure/table/standard, -/obj/item/autopsy_scanner, -/obj/item/surgical/FixOVein, -/obj/item/surgical/surgicaldrill, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"jb" = ( -/obj/machinery/hyperpad/centre{ - map_pad_id = "rizz"; - map_pad_link_id = "skibidi" - }, -/turf/simulated/shuttle/floor/black, -/area/awaymission/diescraper/indoors/floor1) -"jc" = ( -/obj/structure/closet/crate/secure/large, -/obj/item/reagent_containers/food/drinks/cans/starkist, -/obj/item/reagent_containers/food/drinks/cans/space_mountain_wind, -/obj/item/reagent_containers/food/drinks/cans/root_beer, -/obj/item/reagent_containers/food/drinks/cans/gingerale, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"jd" = ( -/obj/structure/window/basic, -/obj/structure/table/rack/wood, -/obj/item/clothing/under/circuitry, -/obj/item/clothing/suit/storage/teshari/cloak/standard/black_grey{ - pixel_y = 6 - }, -/obj/item/clothing/under/captain_fly, -/obj/item/clothing/under/bluepyjamas, -/obj/machinery/light/floortube{ - overlay_color = "#e060e0"; - brightness_color_ns = "#9C439C"; - light_color = "#e060e0"; - brightness_color = "#e060e0"; - name = "tinted light fixture" - }, -/turf/simulated/floor/wood/alt/parquet/turfpack, -/area/awaymission/diescraper/indoors/floor7) -"je" = ( -/mob/living/simple_mob/humanoid/pirate/ranged/shotgun, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"jf" = ( -/obj/item/seeds/towermycelium, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"jg" = ( -/obj/effect/floor_decal/stairs{ - dir = 2 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"jh" = ( -/obj/structure/table/gamblingtable, -/obj/item/spacecash/c1000, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"ji" = ( -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"jj" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"jl" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 - }, -/turf/simulated/floor/carpet/brown, -/area/awaymission/diescraper/indoors/floor9) -"jm" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/ion, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"jn" = ( -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"jo" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_coffee/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/diescraper/indoors/floor7) -"jp" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 - }, -/turf/unsimulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor9) -"jq" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"jr" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/random/mainttoyloot/nofail, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"jt" = ( -/obj/machinery/light/poi{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor10) -"ju" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"jv" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_coffee/full, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"jw" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/salvageable/console_broken_os{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"jx" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"jy" = ( -/obj/item/flashlight/lamp/green{ - pixel_y = 2 - }, -/obj/structure/table/bench/sifwooden, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/diescraper/indoors/floor9) -"jz" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor5) -"jA" = ( -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"jB" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"jC" = ( -/obj/machinery/light{ - pixel_y = 0; - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"jD" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_color = "#e060e0"; - light_power = 1; - light_range = 6 - }, -/obj/item/reagent_containers/food/drinks/bottle/rum, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"jG" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"jH" = ( -/obj/machinery/papershredder, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"jI" = ( -/turf/simulated/floor/carpet/geo, -/area/awaymission/diescraper/indoors/floor6) -"jJ" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/fruitspawner/potato, -/obj/fruitspawner/potato, -/obj/fruitspawner/potato, -/obj/fruitspawner/potato, -/obj/fruitspawner/potato, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"jK" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 32; - pixel_y = -4 - }, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/diescraper/indoors/floor9) -"jL" = ( -/obj/structure/table/hardwoodtable, -/obj/item/flashlight/lamp/green, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"jM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"jN" = ( -/obj/structure/table/hardwoodtable, -/obj/item/paper_bin, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"jO" = ( -/obj/structure/table/standard, -/obj/machinery/computer/med_data/laptop{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"jP" = ( -/obj/effect/floor_decal/stairs{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"jQ" = ( -/obj/structure/fence/hedge/corner, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"jR" = ( -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"jS" = ( -/obj/structure/sign/coffee_shop_library{ - pixel_y = 0; - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"jT" = ( -/mob/living/simple_mob/humanoid/merc/ranged/ionrifle, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"jU" = ( -/obj/structure/table/woodentable, -/obj/item/robot_parts/robot_component/camera, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"jV" = ( -/obj/effect/decal/mecha_wreckage/baron{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/diescraper/outside) -"jW" = ( -/obj/structure/prop/machine/comm_tower/starts_on, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"jX" = ( -/obj/structure/closet/jcloset, -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 - }, -/obj/item/soap/nanotrasen, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"jY" = ( -/obj/item/gun/magic/firestaff/vrwizard/fire, -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor5) -"jZ" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/dark{ - icon_state = "milspec-damaged2" - }, -/area/awaymission/diescraper/indoors/floor7) -"ka" = ( -/obj/structure/table/standard, -/obj/machinery/reagentgrinder, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/diescraper/indoors/floor7) -"kb" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor112) -"kc" = ( -/obj/structure/table/glass, -/obj/random/awayloot/looseloot, -/turf/simulated/floor/carpet/geo, -/area/awaymission/diescraper/indoors/floor6) -"kd" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/reagent_containers/food/drinks/cans/terra_cola{ - pixel_y = 12; - pixel_x = 9 - }, -/obj/item/reagent_containers/food/drinks/cans/terra_cola{ - pixel_y = 12; - pixel_x = -8 - }, -/obj/item/reagent_containers/food/drinks/cans/terra_cola{ - pixel_y = 12; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/drinks/cans/terra_cola{ - pixel_y = 12; - pixel_x = 3 - }, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ - pixel_x = -9 - }, -/obj/item/reagent_containers/food/drinks/bottle/milk{ - pixel_y = -3; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/drinks/bottle/milk{ - pixel_y = -3; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/drinks/bottle/milk{ - pixel_y = -3; - pixel_x = -3 - }, -/obj/structure/window/basic{ - dir = 2 - }, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor7) -"ke" = ( -/obj/structure/salvageable/machine, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"kf" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"kg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/mucus/mapped, -/obj/item/material/shard{ - icon_state = "splinterslarge" - }, -/turf/simulated/floor/tiled/steel{ - icon_state = "milspec-damaged5" - }, -/area/awaymission/diescraper/indoors/floor4) -"kh" = ( -/turf/unsimulated/wall/fakeglass{ - dir = 4 - }, -/area/awaymission/diescraper/indoors/floor11) -"ki" = ( -/obj/machinery/light{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"kj" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"kk" = ( -/obj/structure/table/rack/shelf/steel, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/item/reagent_containers/food/drinks/cans/cola{ - pixel_y = 11; - pixel_x = 10 - }, -/obj/item/reagent_containers/food/drinks/cans/cola{ - pixel_y = 11; - pixel_x = -9 - }, -/obj/item/reagent_containers/food/drinks/cans/cola{ - pixel_y = 11; - pixel_x = -5 - }, -/obj/item/reagent_containers/food/drinks/cans/cola{ - pixel_y = 11 - }, -/obj/item/reagent_containers/food/drinks/cans/cola{ - pixel_y = 11; - pixel_x = 5 - }, -/obj/item/reagent_containers/food/drinks/cans/decaf_cola{ - pixel_x = 9 - }, -/obj/item/reagent_containers/food/drinks/cans/decaf_cola{ - pixel_x = -9 - }, -/obj/item/reagent_containers/food/drinks/cans/decaf_cola{ - pixel_x = -6 - }, -/obj/item/reagent_containers/food/drinks/cans/decaf_cola{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/drinks/cans/decaf_cola{ - pixel_x = 1 - }, -/obj/item/reagent_containers/food/drinks/cans/decaf_cola{ - pixel_x = 5 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"kl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"km" = ( -/obj/structure/table/woodentable, -/obj/item/spacecasinocash, -/turf/unsimulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor6) -"kn" = ( -/obj/structure/bed/chair/oldsofa/right{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"ko" = ( -/obj/effect/fake_sun/warm, -/turf/simulated/wall/solidrock, -/area/awaymission/diescraper/outside) -"kp" = ( -/obj/structure/fence/corner{ - dir = 10 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "slab2" - }, -/area/awaymission/diescraper/outside) -"kq" = ( -/obj/machinery/light{ - dir = 8; - pixel_y = 0 - }, -/mob/living/simple_mob/humanoid/merc/ranged/space, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"kr" = ( -/obj/item/stool/baystool/padded{ - pixel_y = 0; - dir = 4 - }, -/obj/machinery/light/floortube{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"ks" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"kt" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"ku" = ( -/obj/structure/table/reinforced, -/obj/machinery/cash_register{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor7) -"kv" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"kw" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 194; - teleport_y = 82; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"kx" = ( -/obj/machinery/light/floortube{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"ky" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"kz" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor4) -"kA" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"kB" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"kC" = ( -/obj/structure/closet/crate/medical{ - name = "surgery crate" - }, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/firstaid/surgery, -/obj/item/storage/firstaid/surgery, -/obj/item/defib_kit/loaded, -/obj/random/contraband/nofail, -/obj/item/organ/internal/augment/armmounted, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor8) -"kD" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"kE" = ( -/obj/structure/bed/chair/sofa/left/purp{ - dir = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"kF" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/obj/item/reagent_containers/food/condiment/soysauce, -/obj/item/reagent_containers/food/condiment/soysauce{ - pixel_y = 0; - pixel_x = 5 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"kG" = ( -/obj/structure/toilet/prison{ - dir = 4 - }, -/obj/item/robot_parts/head, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"kH" = ( -/obj/structure/table/hardwoodtable, -/obj/structure/window/reinforced{ - dir = 8; - health = null - }, -/obj/item/reagent_containers/food/snacks/generalschicken{ - pixel_y = 4 - }, -/obj/item/reagent_containers/food/snacks/generalschicken{ - pixel_y = -3 - }, -/obj/item/reagent_containers/food/snacks/generalschicken{ - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"kI" = ( -/obj/random/organ, -/obj/effect/decal/cleanable/blood, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"kJ" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/outdoors/ice/turfpack/station{ - color = "grey" - }, -/area/awaymission/diescraper/sky) -"kK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"kL" = ( -/obj/item/clothing/shoes/bhop, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"kM" = ( -/obj/structure/salvageable/server, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"kN" = ( -/obj/structure/fence/corner, -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "slab2" - }, -/area/awaymission/diescraper/outside) -"kO" = ( -/obj/machinery/light{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor2) -"kP" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"kQ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"kR" = ( -/turf/simulated/wall/titanium, -/area/awaymission/diescraper/indoors/floor8) -"kS" = ( -/obj/effect/floor_decal/stairs, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"kT" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/diescraper/indoors/floor9) -"kU" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"kV" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/diescraper/indoors/floor5) -"kW" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/reagent_containers/food/snacks/butterscotch, -/obj/item/reagent_containers/food/snacks/burrito_spicy, -/obj/item/reagent_containers/food/snacks/burrito_hell{ - pixel_x = 3 - }, -/obj/structure/window/basic{ - dir = 2 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8 - }, -/obj/machinery/door/window/eastleft{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/white, -/area/awaymission/diescraper/indoors/floor7) -"kX" = ( -/obj/structure/bed/chair/wood, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"kY" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_containers/food/snacks/sliceable/cheesewheel, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"kZ" = ( -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/obj/structure/reagent_dispensers/fueltank/barrel/two, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"la" = ( -/turf/simulated/wall/concrete, -/area/awaymission/diescraper/indoors/floor2) -"lb" = ( -/obj/item/banner/red{ - name = "CONVENTION CENTER CLOSED" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"lc" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/shuttle/floor/black, -/area/awaymission/diescraper/indoors/floor2) -"ld" = ( -/obj/structure/sign/poster/custom{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/storage/box/glasses/square{ - pixel_y = 0; - pixel_x = 6 - }, -/obj/item/storage/box/glass_extras/straws, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor10) -"le" = ( -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"lf" = ( -/obj/structure/window/basic{ - dir = 4 - }, -/mob/living/simple_mob/slime/feral, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"lg" = ( -/obj/machinery/light{ - dir = 1 - }, -/mob/living/simple_mob/metroid/juvenile/super, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"lh" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"li" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/machinery/microwave{ - pixel_y = -4 - }, -/obj/machinery/light/poi, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"lj" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor5) -"lk" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/appliance/cooker/grill, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"ll" = ( -/obj/machinery/oxygen_pump/mobile/stabilizer, -/obj/random/organ, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"lm" = ( -/turf/simulated/floor/concrete, -/area/awaymission/diescraper/outside) -"ln" = ( -/obj/structure/bed/padded, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"lo" = ( -/obj/item/modular_computer/console/preset/civilian{ - pixel_y = 0; - dir = 4 - }, -/obj/item/card/emag, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"lp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"lq" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/closet/secure_closet/freezer/meat, -/obj/item/reagent_containers/food/snacks/meat/chicken, -/obj/item/reagent_containers/food/snacks/meat/chicken, -/obj/item/reagent_containers/food/snacks/meat/chicken, -/obj/item/reagent_containers/food/snacks/meat/chicken, -/obj/item/reagent_containers/food/snacks/meat/chicken, -/obj/item/reagent_containers/food/snacks/meat/chicken, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"ls" = ( -/obj/structure/table/standard, -/obj/random/awayloot/looseloot, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"lt" = ( -/obj/structure/table/bench/sifwooden/padded, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"lu" = ( -/mob/living/simple_mob/vore/aggressive/rat, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"lv" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"lw" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/beaker/neurotoxin, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"ly" = ( -/obj/structure/table/rack/shelf/wood, -/obj/random/maintenance/clean, -/obj/random/awayloot/looseloot, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"lz" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/bottle/stoxin{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/bottle/antitoxin{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/bottle/inaprovaline{ - pixel_x = 1 - }, -/obj/random/medical, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/regular, -/obj/random/medical, -/obj/item/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/masks, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"lA" = ( -/obj/machinery/light/small/torch{ - dir = 1 - }, -/obj/effect/decal/remains, -/obj/item/gun/energy/staff/focus, -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor5) -"lB" = ( -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor8) -"lC" = ( -/obj/machinery/computer/arcade, -/turf/unsimulated/floor/tiled/milspec, -/area/awaymission/diescraper/indoors/floor6) -"lE" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"lF" = ( -/obj/structure/table/steel_reinforced, -/obj/item/cell/high, -/obj/item/cell/high, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor11) -"lG" = ( -/turf/unsimulated/wall/fakeglass2{ - dir = 1 - }, -/area/awaymission/diescraper/indoors/floor11) -"lI" = ( -/obj/effect/landmark/mobcorpse/syndicatesoldier, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"lJ" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/item/paper_bin, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"lK" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_range = 10; - light_color = "#b3deff" - }, -/obj/random/trash, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/diescraper/indoors/floor6) -"lL" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 118; - teleport_y = 140; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor5) -"lM" = ( -/obj/structure/table/glass, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor11) -"lN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"lO" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/outdoors/newdirt/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor7) -"lQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/concrete, -/area/awaymission/diescraper/outside) -"lR" = ( -/obj/structure/table/marble, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"lS" = ( -/obj/random/maintenance, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"lT" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"lU" = ( -/obj/structure/barricade/cutout, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"lV" = ( -/turf/simulated/wall/concrete, -/area/awaymission/diescraper/indoors/floor3) -"lW" = ( -/obj/structure/closet/crate/secure/large, -/obj/item/storage/mre/random, -/obj/item/storage/mre/random, -/obj/item/storage/mre/random, -/obj/item/storage/mre/random, -/obj/item/storage/mre/random, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"lX" = ( -/obj/item/gun/magnetic/gasthrower, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"lY" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/structure/table/rack/shelf/steel, -/obj/random/mech_toy, -/obj/random/mech_toy, -/obj/random/mech_toy, -/obj/item/toy/plushie/susred, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"lZ" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_range = 10; - light_color = "#b3deff" - }, -/turf/simulated/floor/water/pool{ - temperature = 293.15 - }, -/area/awaymission/diescraper/indoors/floor7) -"ma" = ( -/obj/structure/sign/warning/secure_area/slabs{ - icon_state = "slab4-off" - }, -/turf/unsimulated/wall/cult, -/area/awaymission/diescraper/indoors/floor11) -"mb" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"mc" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_color = "#e060e0"; - light_power = 1; - light_range = 6 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"md" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"me" = ( -/obj/structure/girder/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"mf" = ( -/obj/structure/salvageable/implant_container, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"mg" = ( -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/rglass, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"mh" = ( -/obj/structure/salvageable/implant_container, -/obj/machinery/light{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"mi" = ( -/obj/structure/bed/chair/oldsofa/left{ - dir = 4 - }, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/diescraper/indoors/floor9) -"mj" = ( -/obj/structure/table/hardwoodtable, -/obj/item/folder, -/obj/item/folder/white, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"mk" = ( -/mob/living/simple_mob/animal/giant_spider/nurse/queen/eggless, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor3) -"ml" = ( -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/awaymission/diescraper/indoors/floor10) -"mm" = ( -/obj/structure/table/standard, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"mn" = ( -/obj/structure/table/marble, -/obj/item/material/knife/butch, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/obj/item/material/kitchen/rollingpin, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"mo" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"mp" = ( -/obj/structure/table/standard, -/obj/item/storage/bag/mail, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"mq" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/carpet, -/area/awaymission/diescraper/indoors/floor9) -"mr" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/appliance/mixer/candy, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"mt" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/diescraper/indoors/floor112) -"mu" = ( -/obj/structure/closet/crate/solar, -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"mv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/barricade/cutout, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"mw" = ( -/mob/living/simple_mob/clowns/big/c_shift/anormal{ - dir = 2 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"mx" = ( -/obj/structure/barricade/cutout, -/obj/effect/floor_decal/rust, -/obj/random/soap, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"my" = ( -/obj/effect/decal/remains/mummy1, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"mz" = ( -/obj/structure/table/rack/wood, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor7) -"mA" = ( -/obj/structure/table/gamblingtable, -/obj/item/book/bundle/custom_library/reference/ThermodynamicReactionsandResearch, -/obj/item/book/bundle/custom_library/fiction/coldmountain, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor6) -"mB" = ( -/obj/machinery/light/floortube, -/obj/structure/bed/padded, -/obj/item/bedsheet, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"mC" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"mD" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -36 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"mE" = ( -/obj/item/material/shard{ - icon_state = "splinterslarge" - }, -/turf/simulated/floor/plating{ - temperature = 277; - icon_state = "dmg4" - }, -/area/awaymission/diescraper/indoors/floor7) -"mF" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 134; - teleport_y = 217 - }, -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"mG" = ( -/obj/structure/bed/chair/wood, -/mob/living/carbon/human/ai_controlled/greytide{ - icon_state = "rune_teleport" - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"mI" = ( -/turf/simulated/wall/elevator, -/area/awaymission/diescraper/indoors/floor2) -"mJ" = ( -/obj/structure/bed/chair/sofa/bench/marble{ - dir = 8 - }, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor7) -"mK" = ( -/obj/structure/table/marble, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"mL" = ( -/obj/structure/bed/chair/sofa/right/purp{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"mM" = ( -/turf/unsimulated/wall/fakeglass2{ - dir = 4 - }, -/area/awaymission/diescraper/indoors/floor11) -"mN" = ( -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"mO" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/item/stack/material/wood, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor7) -"mP" = ( -/obj/structure/sign/directions/stairs_up{ - dir = 4 - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor7) -"mQ" = ( -/turf/unsimulated/shuttle/wall/dark, -/area/awaymission/diescraper/indoors/floor1) -"mR" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"mS" = ( -/obj/structure/table/steel_reinforced, -/obj/random/tool/power, -/obj/random/tool/power, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor11) -"mT" = ( -/obj/machinery/appliance/cooker/oven, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"mU" = ( -/obj/structure/table/reinforced, -/obj/machinery/cash_register{ - dir = 1 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"mV" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"mW" = ( -/obj/structure/table/rack/shelf/wood, -/obj/random/drinkbottle, -/obj/random/drinkbottle, -/obj/random/drinkbottle, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"mX" = ( -/obj/structure/table/gamblingtable, -/obj/item/moneybag, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"mY" = ( -/turf/simulated/floor/water/pool{ - temperature = 293.15 - }, -/area/awaymission/diescraper/indoors/floor7) -"mZ" = ( -/obj/structure/table/woodentable, -/obj/random/trash{ - pixel_y = -1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"na" = ( -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor2) -"nb" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/mob/living/simple_mob/animal/giant_spider/pepper, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor3) -"nc" = ( -/obj/machinery/power/rtg/fake_z_wires, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor5) -"nd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"ne" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"nf" = ( -/obj/item/reagent_containers/food/drinks/cans/nukie_banana, -/turf/simulated/floor/carpet/happy, -/area/awaymission/diescraper/indoors/floor7) -"ng" = ( -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"nh" = ( -/obj/effect/simple_portal/coords{ - icon = 'icons/obj/machines/gateway.dmi'; - icon_state = "on"; - dir = 1 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor2) -"ni" = ( -/obj/item/computer_hardware/battery_module/super, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"nj" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"nk" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -28; - pixel_y = 2 - }, -/mob/living/simple_mob/vore/alienanimals/skeleton/alt, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"nl" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/light{ - pixel_y = 0; - dir = 1 - }, -/obj/machinery/appliance/cooker/grill, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"nn" = ( -/obj/structure/table/rack/steel, -/obj/item/towel{ - color = "#3fc0ea"; - name = "light blue towel"; - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/towel{ - color = "#3fc0ea"; - name = "light blue towel"; - pixel_x = 2; - pixel_y = -5 - }, -/obj/item/towel{ - color = "#3fc0ea"; - name = "light blue towel"; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/towel{ - color = "#3fc0ea"; - name = "light blue towel"; - pixel_x = 2; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"no" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/carpet/purple, -/area/awaymission/diescraper/indoors/floor9) -"np" = ( -/obj/machinery/gateway, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor2) -"nq" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"nr" = ( -/obj/structure/girder, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor7) -"nt" = ( -/obj/item/storage/toolbox/mechanical, -/mob/living/simple_mob/animal/passive/mouse/rat, -/mob/living/simple_mob/animal/passive/mouse/rat, -/mob/living/simple_mob/animal/passive/mouse/rat, -/mob/living/simple_mob/animal/passive/mouse/rat, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"nu" = ( -/obj/machinery/door/window/eastright{ - dir = 8 - }, -/obj/machinery/door/window, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/awaymission/diescraper/indoors/floor10) -"nv" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 24 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/barricade/cutout, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"nw" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/item/reagent_containers/food/condiment/cornoil, -/obj/item/reagent_containers/food/condiment/cookingoil, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"nx" = ( -/obj/item/tape/police, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/diescraper/indoors/floor1) -"ny" = ( -/obj/structure/bed/chair/sofa/right/orange, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"nz" = ( -/obj/machinery/light/poi{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"nA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/fruit_smudge, -/obj/item/toy/plushie/bigcat, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"nB" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor4) -"nC" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"nD" = ( -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"nE" = ( -/obj/structure/table/marble, -/obj/item/material/kitchen/rollingpin{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/material/knife{ - pixel_x = 10; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"nF" = ( -/obj/item/toy/plushie/red_eastdragon{ - desc = "This plushie looks like a doofus." - }, -/turf/simulated/floor/carpet/purple, -/area/awaymission/diescraper/indoors/floor9) -"nG" = ( -/obj/machinery/power/rtg/fake_z_wires, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"nH" = ( -/obj/machinery/power/apc{ - dir = 4; - pixel_x = 26 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor1) -"nI" = ( -/obj/effect/decal/remains, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"nJ" = ( -/obj/structure/table/gamblingtable, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/structure/window/plastitanium{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"nK" = ( -/obj/item/stack/material/wood{ - amount = 5 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor7) -"nL" = ( -/obj/structure/fence/hedge/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"nM" = ( -/obj/structure/low_wall/bay/white, -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"nN" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/soap, -/obj/random/soap, -/obj/random/soap, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor9) -"nO" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/remains, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor5) -"nP" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 213; - teleport_y = 158 - }, -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"nQ" = ( -/turf/unsimulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor6) -"nR" = ( -/obj/structure/sink/countertop{ - pixel_y = 14 - }, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"nS" = ( -/obj/structure/table/rack/wood, -/obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_green{ - pixel_y = 13 - }, -/obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_pink{ - pixel_y = 8 - }, -/obj/item/clothing/suit/storage/teshari/beltcloak/standard/black_purple{ - pixel_y = 2 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack, -/area/awaymission/diescraper/indoors/floor7) -"nT" = ( -/obj/structure/bed/chair/oldsofa/left{ - dir = 4 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"nU" = ( -/obj/structure/bed/chair/sofa/left/orange, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"nV" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor7) -"nW" = ( -/obj/structure/table/hardwoodtable, -/obj/random/contraband/nofail, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"nX" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"nY" = ( -/obj/structure/table/standard, -/obj/item/modular_computer/laptop/preset, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"nZ" = ( -/obj/structure/table/gamblingtable, -/obj/machinery/light{ - dir = 4 - }, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/item/toy/plushie/teshari/y_yw, -/obj/structure/window/plastitanium{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"oa" = ( -/mob/living/simple_mob/clowns/big/c_shift/longface, -/turf/simulated/floor/carpet/happy, -/area/awaymission/diescraper/indoors/floor7) -"ob" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/random/medical/pillbottle, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"oc" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_alc/full{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"od" = ( -/obj/structure/table/hardwoodtable, -/obj/item/flashlight/lamp/green, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"oe" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"of" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/awaymission/diescraper/indoors/floor10) -"og" = ( -/mob/living/simple_mob/metroid/juvenile/super, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"oh" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -28; - pixel_y = 2 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"oi" = ( -/obj/effect/floor_decal/stairs, -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"oj" = ( -/obj/effect/decal/mecha_wreckage/hoverpod{ - dir = 8 - }, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/diescraper/outside) -"ok" = ( -/obj/structure/window/reinforced/survival_pod{ - dir = 2 - }, -/turf/unsimulated/wall/seperator, -/area/awaymission/diescraper/indoors/floor3) -"ol" = ( -/obj/item/gun/magic/firestaff, -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor5) -"om" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/diescraper/indoors/floor9) -"on" = ( -/obj/item/modular_computer/console/preset/civilian{ - pixel_y = 0; - dir = 4 - }, -/obj/machinery/light, -/turf/unsimulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor6) -"oo" = ( -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"op" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"oq" = ( -/obj/structure/sign/signnew/oxidants, -/turf/simulated/wall/concrete, -/area/awaymission/diescraper/indoors/floor6) -"or" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor4) -"os" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/item/modular_computer/laptop/preset, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"ot" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"ou" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"ov" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"ow" = ( -/mob/living/simple_mob/slime/feral, -/turf/unsimulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor9) -"ox" = ( -/obj/random/tool, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"oz" = ( -/obj/item/stool/baystool/padded{ - pixel_y = 0; - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"oB" = ( -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/table/rack/wood, -/obj/item/clothing/gloves/orange, -/obj/item/clothing/gloves/red{ - pixel_y = 5 - }, -/obj/item/clothing/gloves/green{ - pixel_y = -5 - }, -/obj/item/clothing/gloves/purple{ - pixel_y = 12 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack, -/area/awaymission/diescraper/indoors/floor7) -"oC" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 59; - teleport_y = 162 - }, -/obj/effect/floor_decal/stairs{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"oD" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor11) -"oE" = ( -/obj/item/reagent_containers/food/drinks/bottle/rum, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"oF" = ( -/obj/structure/sign/department/medbay{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"oG" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 41; - teleport_y = 199 - }, -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"oH" = ( -/mob/living/simple_mob/animal/space/bats{ - faction = "metroids" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"oI" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"oJ" = ( -/obj/machinery/computer/operating{ - dir = 2 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"oK" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 59; - teleport_y = 103 - }, -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"oL" = ( -/turf/simulated/wall/concrete, -/area/awaymission/diescraper/indoors/floor10) -"oM" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"oN" = ( -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"oP" = ( -/obj/structure/flora/tree/bigtree, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"oQ" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/medical/lite, -/obj/random/medical/lite, -/obj/random/medical/lite, -/obj/random/medical/lite, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor7) -"oR" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/caution/yellow, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"oS" = ( -/obj/structure/table/standard, -/obj/random/medical, -/obj/random/medical, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"oT" = ( -/obj/structure/table/hardwoodtable, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"oU" = ( -/obj/structure/table/rack/shelf/wood, -/obj/random/portalloot, -/obj/random/awayloot/looseloot, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"oV" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"oX" = ( -/obj/structure/closet/lasertag/red, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"oY" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/wall/wood, -/area/awaymission/diescraper/indoors/floor7) -"oZ" = ( -/obj/structure/table/standard, -/obj/machinery/computer/med_data/laptop, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"pa" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"pb" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/sliceable/cheesewheel, -/obj/item/reagent_containers/food/snacks/sliceable/cheesewheel, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"pc" = ( -/obj/structure/table/marble, -/obj/machinery/microwave{ - pixel_y = 14; - pixel_x = 2 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"pd" = ( -/obj/item/reagent_containers/food/drinks/bottle/specialwhiskey{ - pixel_y = 8; - pixel_x = 10 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/bottle/snaps{ - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/bottle/wine{ - pixel_y = 2; - pixel_x = 4 - }, -/obj/item/reagent_containers/food/drinks/bottle/sake{ - pixel_y = 1; - pixel_x = -6 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_y = 0; - pixel_x = 13 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"pf" = ( -/obj/structure/sink/puddle, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"pg" = ( -/obj/structure/table/steel_reinforced, -/obj/item/rcd/electric/mounted/rig, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"ph" = ( -/obj/structure/bed/chair/oldsofa/right{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/carpet/brown, -/area/awaymission/diescraper/indoors/floor9) -"pi" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/cell/device/giga{ - pixel_y = -3 - }, -/obj/item/cell/device/giga{ - pixel_y = -8 - }, -/obj/structure/window/basic{ - dir = 2 - }, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor7) -"pj" = ( -/obj/structure/barricade/cutout, -/obj/random/maintenance, -/obj/random/soap, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"pk" = ( -/obj/structure/table/hardwoodtable, -/obj/structure/window/reinforced{ - dir = 8; - health = null - }, -/obj/item/reagent_containers/food/snacks/kitsuneudon{ - pixel_y = 4 - }, -/obj/item/reagent_containers/food/snacks/kitsuneudon{ - pixel_y = -4 - }, -/obj/item/reagent_containers/food/snacks/kitsuneudon{ - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"pl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor10) -"pm" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/random/material, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"pn" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/beaker/large, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"po" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/light/floortube{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"pp" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/closet/secure_closet/freezer/kitchen{ - locked = 0 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"pr" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"ps" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/indoors/floor11) -"pt" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/bordercorner{ - dir = 1 - }, -/obj/structure/barricade/cutout, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/rtg/fake_z_wires, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"pu" = ( -/obj/effect/simple_portal/coords{ - icon = 'icons/obj/machines/gateway.dmi'; - icon_state = "on"; - dir = 8 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor2) -"pv" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"pw" = ( -/turf/unsimulated/floor{ - icon_state = "elevatorshaft" - }, -/area/awaymission/diescraper/indoors/floor8) -"px" = ( -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"py" = ( -/obj/item/gun/magic/firestaff/vrwizard/lighting, -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor5) -"pz" = ( -/obj/machinery/appliance/cooker/fryer, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor4) -"pA" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"pB" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/pill_bottle/tramadol, -/obj/item/storage/pill_bottle/tramadol, -/obj/item/storage/pill_bottle/vermicetol, -/obj/item/storage/pill_bottle/vermicetol, -/obj/item/storage/pill_bottle/zoom, -/obj/item/storage/pill_bottle/zoom, -/obj/item/storage/pill_bottle/zoom, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"pC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"pE" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"pF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash, -/obj/structure/salvageable/server, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"pG" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor3) -"pH" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/sky/moving/south{ - temperature = 277 - }, -/area/awaymission/diescraper/indoors/floor7) -"pI" = ( -/obj/structure/table/woodentable, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/diescraper/indoors/floor7) -"pJ" = ( -/obj/structure/salvageable/data, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"pK" = ( -/obj/structure/bed/chair/bay/comfy/brown{ - dir = 8 - }, -/obj/item/computer_hardware/processor_unit, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"pL" = ( -/obj/structure/window/reinforced/survival_pod{ - dir = 1 - }, -/obj/structure/window/reinforced/survival_pod, -/obj/structure/window/reinforced/survival_pod{ - dir = 4 - }, -/obj/structure/grille/rustic{ - health = 25; - name = "reinforced grille" - }, -/turf/simulated/floor, -/area/awaymission/diescraper/indoors/floor7) -"pM" = ( -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor9) -"pN" = ( -/obj/structure/table/marble, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/reagent_containers/food/snacks/old/pizza, -/obj/item/reagent_containers/food/snacks/old/pizza, -/obj/item/reagent_containers/food/snacks/old/pizza, -/obj/item/reagent_containers/food/snacks/old/pizza{ - pixel_y = -3 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"pO" = ( -/mob/living/simple_mob/mechanical/cyber_horror/grey, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"pP" = ( -/obj/random/trash, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"pQ" = ( -/obj/structure/frame, -/turf/simulated/floor/tiled/steel{ - icon_state = "milspec-damaged5" - }, -/area/awaymission/diescraper/indoors/floor4) -"pR" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"pS" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"pT" = ( -/mob/living/simple_mob/animal/passive/mouse/rat{ - name = "Emily" - }, -/turf/simulated/floor/carpet/purple, -/area/awaymission/diescraper/indoors/floor9) -"pU" = ( -/obj/machinery/light{ - dir = 2; - layer = 3 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"pV" = ( -/obj/structure/table/standard, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"pW" = ( -/obj/structure/table/standard, -/obj/structure/sink/countertop{ - dir = 1 - }, -/obj/item/trash/plate, -/obj/item/trash/plate{ - pixel_y = -2 - }, -/obj/item/trash/plate{ - pixel_y = 2 - }, -/obj/item/trash/plate{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"pX" = ( -/obj/structure/salvageable/console_broken_os{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"pY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor1) -"pZ" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"qb" = ( -/obj/effect/catwalk_plated/dark, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/sky/south{ - temperature = 295.15 - }, -/area/awaymission/diescraper/sky) -"qc" = ( -/obj/item/gun/magnetic/fuelrod, -/turf/unsimulated/floor/tiled/eris/dark/techfloor{ - temperature = 277; - nitrogen = 93.7835; - oxygen = 20.7263 - }, -/area/awaymission/diescraper/indoors/floor7) -"qd" = ( -/obj/machinery/light{ - dir = 2; - pixel_y = 0 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"qe" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/structure/window/reinforced/survival_pod, -/obj/machinery/light{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"qf" = ( -/obj/machinery/power/port_gen/pacman, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"qg" = ( -/obj/effect/decal/cleanable/mucus/mapped, -/obj/random/organ, -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gib3" - }, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"qh" = ( -/obj/effect/step_trigger/teleporter/deathfall{ - teleport_x = 55; - teleport_y = 16 - }, -/turf/simulated/sky/moving/south{ - temperature = 277 - }, -/area/awaymission/diescraper/indoors) -"qi" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/item/modular_computer/telescreen/preset/generic{ - pixel_y = 0; - pixel_x = 32 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"qj" = ( -/obj/item/stack/material/wood, -/turf/simulated/floor/wood/alt/panel/broken, -/area/awaymission/diescraper/indoors/floor7) -"qk" = ( -/obj/structure/table/hardwoodtable, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/obj/item/material/kitchen/rollingpin, -/obj/item/material/knife{ - pixel_y = 0; - pixel_x = 11 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"ql" = ( -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/diescraper/indoors/floor10) -"qm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/obj/machinery/door/blast/regular/open, -/turf/simulated/floor/reinforced, -/area/awaymission/diescraper/indoors/floor4second) -"qn" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"qq" = ( -/obj/structure/bookcase, -/turf/simulated/floor/wood/alt/panel/broken, -/area/awaymission/diescraper/indoors/floor7) -"qs" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"qt" = ( -/obj/machinery/door/airlock{ - name = "Custodial Closet" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"qu" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/condiment/ketchup{ - pixel_y = 2; - pixel_x = -10 - }, -/obj/item/reagent_containers/food/condiment/ketchup{ - pixel_y = -3; - pixel_x = -10 - }, -/obj/item/reagent_containers/food/condiment/mustard{ - pixel_y = 12; - pixel_x = -10 - }, -/obj/item/reagent_containers/food/condiment/mustard{ - pixel_y = 6; - pixel_x = -10 - }, -/obj/item/reagent_containers/food/condiment/small/packet/mayo{ - pixel_y = 0; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/small/packet/mayo{ - pixel_y = -8; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/small/packet/mayo{ - pixel_y = -4; - pixel_x = -3 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/fruitspawner/potato, -/obj/fruitspawner/potato, -/obj/fruitspawner/potato, -/obj/fruitspawner/potato, -/obj/fruitspawner/potato, -/obj/fruitspawner/potato, -/obj/fruitspawner/potato, -/obj/fruitspawner/potato, -/obj/fruitspawner/potato, -/obj/fruitspawner/potato, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"qv" = ( -/obj/structure/railing/grey, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"qw" = ( -/obj/item/storage/mrebag/side, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"qx" = ( -/mob/living/simple_mob/humanoid/merc/ranged/sniper, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor7) -"qy" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor9) -"qz" = ( -/obj/structure/reagent_dispensers/fueltank/barrel/two, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"qA" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/clown{ - pixel_y = 5 - }, -/turf/unsimulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor9) -"qB" = ( -/obj/structure/table/standard, -/obj/random/donkpocketbox, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"qC" = ( -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"qD" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/unsimulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor9) -"qE" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"qF" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/pill_bottle/souldew, -/obj/item/storage/pill_bottle/souldew, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"qG" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor1) -"qH" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_range = 10; - light_color = "#b3deff" - }, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor7) -"qI" = ( -/obj/structure/sign/poster/custom{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor10) -"qJ" = ( -/obj/structure/closet/cabinet, -/obj/random/maintenance/medical, -/obj/random/cash, -/obj/random/cigarettes, -/obj/random/firstaid, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance, -/turf/simulated/floor/carpet, -/area/awaymission/diescraper/indoors/floor9) -"qK" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"qL" = ( -/obj/structure/table/steel, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker/large, -/turf/simulated/floor/plating{ - temperature = 277; - icon_state = "dmg4" - }, -/area/awaymission/diescraper/indoors/floor2) -"qM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/mucus/mapped, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor4) -"qO" = ( -/obj/structure/barricade/cutout, -/obj/effect/decal/remains/human, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"qP" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/simulated/floor/carpet/purple, -/area/awaymission/diescraper/indoors/floor9) -"qQ" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 60; - teleport_y = 103 - }, -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"qR" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/appliance/cooker/grill, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"qS" = ( -/obj/machinery/power/rtg/fake_z_wires, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"qT" = ( -/obj/item/grenade/confetti/party_ball, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/diescraper/indoors/floor9) -"qU" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_range = 10; - light_color = "#b3deff" - }, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"qV" = ( -/obj/structure/sign/warning/secure_area/slabs{ - icon_state = "slab2-off" - }, -/turf/unsimulated/wall/cult, -/area/awaymission/diescraper/indoors/floor11) -"qW" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"qX" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"qY" = ( -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/obj/structure/table/standard, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"qZ" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor4) -"ra" = ( -/obj/structure/closet/excavation, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"rb" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"rc" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/diescraper/indoors/floor7) -"rd" = ( -/obj/structure/table/woodentable, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"re" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"rf" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 213; - teleport_y = 162 - }, -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"rg" = ( -/obj/structure/janitorialcart, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/poi{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"rh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/salvageable/server, -/obj/random/junk, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"ri" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 130; - teleport_y = 42; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"rj" = ( -/obj/machinery/optable, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor8) -"rk" = ( -/obj/structure/table/rack/shelf, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"rl" = ( -/obj/structure/table/gamblingtable, -/obj/item/coin/verdantium, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"rm" = ( -/obj/structure/railing, -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"rn" = ( -/obj/effect/floor_decal/stairs, -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 148; - teleport_y = 159; - pixel_x = -1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"ro" = ( -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/steel, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"rp" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/gun/projectile/revolver/toy/big_iron, -/obj/item/toy/plushie/green_fox{ - icon = 'icons/obj/surgery_vr.dmi'; - name = "The most beautiful plushie ever"; - desc = "A small toy plushie. You feel like you forgot to install something." - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"rq" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"rr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"rs" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4 - }, -/obj/machinery/light/floortube{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"rt" = ( -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor9) -"ru" = ( -/obj/structure/sign/warning/server_room, -/turf/simulated/wall, -/area/awaymission/diescraper/indoors/floor10) -"rv" = ( -/obj/machinery/appliance/cooker/oven, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"rw" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"rx" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 41; - teleport_y = 138 - }, -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"ry" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"rz" = ( -/obj/item/gun/launcher/confetti_cannon/fake_shottie, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"rA" = ( -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"rB" = ( -/obj/machinery/appliance/cooker/fryer, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"rD" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 195; - teleport_y = 82; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"rE" = ( -/obj/machinery/computer/arcade{ - dir = 8 - }, -/turf/simulated/floor/carpet/retro, -/area/awaymission/diescraper/indoors/floor9) -"rF" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"rG" = ( -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor10) -"rH" = ( -/obj/structure/table/marble, -/obj/item/material/knife/butch, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/obj/item/material/kitchen/rollingpin, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"rI" = ( -/obj/random/trash, -/obj/structure/reagent_dispensers/fueltank/barrel/two, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"rJ" = ( -/obj/structure/sign/directions/stairs_up{ - dir = 6; - pixel_y = 0 - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor9) -"rK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/marble, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor4) -"rL" = ( -/obj/structure/table/standard, -/obj/item/stack/medical/advanced/bruise_pack, -/obj/item/surgical/retractor, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"rM" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/burrito_cheese_spicy{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/snacks/burrito_hell{ - pixel_x = -12; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/snacks/burrito_cheese{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/snacks/burrito{ - pixel_x = 13; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/snacks/meatburrito{ - pixel_y = -4; - pixel_x = -12 - }, -/obj/item/reagent_containers/food/snacks/meatburrito{ - pixel_y = -4; - pixel_x = -7 - }, -/obj/item/reagent_containers/food/snacks/cheeseburrito{ - pixel_y = -4 - }, -/obj/item/reagent_containers/food/snacks/burrito_vegan{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/reagent_containers/food/snacks/burrito_mystery{ - pixel_x = 11; - pixel_y = -4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"rN" = ( -/obj/structure/table/standard, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"rO" = ( -/obj/machinery/door/airlock/sandstone, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"rP" = ( -/obj/item/tape/police, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor11) -"rQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/drinkbottle, -/mob/living/simple_mob/animal/giant_spider/electric, -/turf/simulated/floor, -/area/awaymission/diescraper/indoors/floor3) -"rR" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"rS" = ( -/turf/simulated/floor/concrete, -/area/awaymission/diescraper/indoors/floor5) -"rT" = ( -/turf/simulated/wall/concrete, -/area/awaymission/diescraper/indoors/floor1) -"rU" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 2 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"rV" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/pill_bottle/purifyingagent, -/obj/item/storage/pill_bottle/purifyingagent, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"rZ" = ( -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/concrete, -/obj/fiftyspawner/concrete, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"sa" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/diescraper/indoors/floor10) -"sb" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"sc" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 171; - teleport_y = 80; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"sd" = ( -/obj/item/modular_computer/console/preset/civilian{ - pixel_y = 0; - dir = 4 - }, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"se" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 93; - teleport_y = 198; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"sf" = ( -/obj/structure/sign/directions/stairs_up{ - dir = 9 - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor9) -"sg" = ( -/obj/machinery/light/floortube{ - dir = 1 - }, -/mob/living/simple_mob/animal/passive/mouse/rat, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"sh" = ( -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/table/rack/wood, -/obj/item/clothing/gloves/orange, -/obj/item/clothing/gloves/red{ - pixel_y = 5 - }, -/obj/item/clothing/gloves/green{ - pixel_y = -5 - }, -/obj/item/clothing/gloves/purple{ - pixel_y = 12 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/wood/alt/parquet/turfpack, -/area/awaymission/diescraper/indoors/floor7) -"si" = ( -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor7) -"sj" = ( -/obj/structure/table/marble, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"sl" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/glass/beaker/measuring_cup{ - pixel_x = 10; - pixel_y = 8 - }, -/obj/item/reagent_containers/dropper{ - pixel_x = -4; - pixel_y = 0 - }, -/obj/item/reagent_containers/glass/rag{ - pixel_x = 7; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"sm" = ( -/obj/structure/salvageable/console_broken_os{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"sn" = ( -/obj/structure/closet/crate/large{ - anchored = 1 - }, -/obj/item/reagent_containers/glass/beaker/vial/random, -/obj/item/reagent_containers/glass/beaker/vial/random, -/obj/item/reagent_containers/pill/happy, -/obj/item/reagent_containers/pill/happy, -/obj/item/reagent_containers/pill/happy, -/obj/item/reagent_containers/pill/vermicetol, -/obj/item/reagent_containers/pill/vermicetol, -/obj/item/reagent_containers/pill/vermicetol, -/obj/item/reagent_containers/pill/vermicetol, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"sp" = ( -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/diescraper/indoors/floor9) -"sq" = ( -/turf/simulated/wall/concrete, -/area/awaymission/diescraper/indoors/floor9) -"sr" = ( -/obj/structure/sign/graffiti/pisoff{ - pixel_y = 32 - }, -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor5) -"ss" = ( -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"st" = ( -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor9) -"su" = ( -/obj/item/storage/secure/briefcase/money{ - locked = 0 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/diescraper/outside) -"sv" = ( -/obj/machinery/light{ - dir = 2 - }, -/obj/structure/table/woodentable, -/obj/item/melee/baton/cattleprod, -/obj/item/cell/hyper, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"sw" = ( -/obj/machinery/light/floortube{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"sx" = ( -/obj/random/trash{ - pixel_y = -1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"sz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -28; - pixel_y = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"sA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"sB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/concrete, -/area/awaymission/diescraper/indoors/floor4) -"sC" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/remains/human, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"sD" = ( -/mob/living/simple_mob/humanoid/pirate/ranged/handcannon, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"sE" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/carpet/happy, -/area/awaymission/diescraper/indoors/floor7) -"sF" = ( -/obj/effect/floor_decal/industrial/warning/color/yellow{ - dir = 2 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor10) -"sG" = ( -/obj/machinery/light{ - dir = 2 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"sH" = ( -/obj/structure/table/marble, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/item/reagent_containers/food/snacks/sliceable/pizza/vegetablepizza, -/obj/item/reagent_containers/food/snacks/sliceable/pizza/mushroompizza{ - pixel_y = 5 - }, -/obj/item/reagent_containers/food/snacks/sliceable/pizza/meatpizza{ - pixel_y = 10 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"sI" = ( -/mob/living/simple_mob/animal/passive/mouse/rat, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"sJ" = ( -/obj/random/trash, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"sK" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/telecomms/bus, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/awaymission/diescraper/indoors/floor10) -"sL" = ( -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"sM" = ( -/obj/item/storage/secure/briefcase/rifle{ - locked = 0 - }, -/turf/simulated/floor/outdoors/dirt/turfpack/station, -/area/awaymission/diescraper/outside) -"sN" = ( -/turf/simulated/floor/tiled/steel{ - icon_state = "milspec-damaged5" - }, -/area/awaymission/diescraper/indoors/floor4) -"sO" = ( -/obj/structure/table/woodentable, -/obj/item/pen/fountain, -/obj/item/modular_computer/laptop/preset, -/obj/machinery/light/floortube{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"sP" = ( -/obj/random/trash, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"sQ" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/clowndouble, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/diescraper/indoors/floor9) -"sS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor10) -"sT" = ( -/obj/random/organ, -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gib3" - }, -/mob/living/simple_mob/mechanical/cyber_horror/ling_cyber_horror, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"sU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"sV" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor1) -"sX" = ( -/obj/structure/table/hardwoodtable, -/obj/item/gun/energy/mouseray/otie, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"sY" = ( -/obj/random/tool/alien, -/obj/structure/closet/crate, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"sZ" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"ta" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor10) -"tb" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"tc" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/bordercorner{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/barricade/cutout, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"td" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"te" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/item/tabloid, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"tf" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/suit_cooling_unit, -/obj/item/clothing/suit/space/void/exploration, -/obj/item/clothing/head/helmet/space/void/exploration, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/suit_cooling_unit, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/clothing/suit/space/void/exploration, -/obj/item/clothing/head/helmet/space/void/exploration, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"tg" = ( -/obj/structure/table/rack/shelf/wood, -/obj/random/portalloot, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"th" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/salvageable/console_broken_os{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"ti" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor2) -"tj" = ( -/obj/structure/table/gamblingtable, -/obj/random/toy, -/obj/random/toy, -/obj/random/toy, -/obj/random/toy, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"tk" = ( -/turf/simulated/wall/concrete, -/area/awaymission/diescraper/indoors/floor8) -"tl" = ( -/obj/machinery/computer/id_restorer{ - pixel_y = 26 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"tm" = ( -/obj/structure/fence/end{ - dir = 8 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "slab2" - }, -/area/awaymission/diescraper/outside) -"tn" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/glass/beaker/measuring_cup, -/obj/item/reagent_containers/food/condiment/enzyme, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"to" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"tp" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/item/reagent_containers/food/drinks/bottle/space_mountain_wind{ - pixel_y = 0; - pixel_x = -9 - }, -/obj/item/reagent_containers/food/drinks/bottle/space_up{ - pixel_x = -4 - }, -/obj/item/reagent_containers/food/drinks/bottle/cola, -/obj/machinery/light{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/diescraper/indoors/floor7) -"tq" = ( -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"tr" = ( -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"ts" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/random/awayloot/looseloot, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"tt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/mob/living/simple_mob/animal/giant_spider/webslinger, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"tu" = ( -/obj/structure/bed/double/padded, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/item/bedsheet/double, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"tv" = ( -/obj/structure/bed/chair/wood{ - dir = 8; - pixel_y = 0 - }, -/mob/living/simple_mob/humanoid/pirate, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"tw" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"tx" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/concrete, -/area/awaymission/diescraper/indoors/floor6) -"ty" = ( -/obj/machinery/power/rtg/fake_z_wires, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"tz" = ( -/obj/item/toy/partypopper, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/diescraper/indoors/floor9) -"tA" = ( -/obj/structure/prop/machine/comm_tower/starts_on, -/turf/simulated/floor/reinforced{ - temperature = 277; - outdoors = 1 - }, -/area/awaymission/diescraper/roof) -"tC" = ( -/obj/structure/table/steel, -/obj/item/reagent_containers/glass/bottle/biomass{ - pixel_y = 13; - pixel_x = -8 - }, -/obj/item/reagent_containers/chem_disp_cartridge/synaptizine, -/obj/item/reagent_containers/chem_disp_cartridge/hyperzine, -/obj/machinery/chemical_dispenser, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"tD" = ( -/obj/structure/table/glass, -/obj/item/storage/box/glasses/square{ - pixel_x = 9; - pixel_y = 1 - }, -/obj/item/storage/box/glasses/rocks{ - pixel_y = 1; - pixel_x = -6 - }, -/obj/item/storage/box/glasses/pint{ - pixel_y = 11; - pixel_x = -6 - }, -/obj/item/storage/box/glasses/meta/metapint{ - pixel_y = 11; - pixel_x = 9 - }, -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/carpet/geo, -/area/awaymission/diescraper/indoors/floor6) -"tE" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/random/maintenance/clean, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"tF" = ( -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/diescraper/indoors/floor10) -"tG" = ( -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"tH" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/rack/shelf/wood, -/obj/random/toy, -/obj/random/toy, -/obj/random/plushie, -/obj/random/plushie, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor1) -"tI" = ( -/obj/structure/table/standard, -/obj/item/organ/internal/augment/bioaugment/sprint_enhance, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"tJ" = ( -/obj/structure/bed/chair/sofa/brown{ - dir = 2 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor2) -"tK" = ( -/obj/structure/table/marble, -/obj/machinery/microwave{ - pixel_y = -4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"tL" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"tM" = ( -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor10) -"tN" = ( -/mob/living/simple_mob/vore/aggressive/rat/phoron{ - name = "giant rat"; - desc = "This rat makes all of the rules."; - health = 150 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"tO" = ( -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"tP" = ( -/obj/effect/decal/remains, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - temperature = 277; - outdoors = 1 - }, -/area/awaymission/diescraper/roof) -"tQ" = ( -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_one_access = null - }, -/turf/unsimulated/floor/tiled/freezer, -/area/awaymission/diescraper/indoors/floor8) -"tR" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"tS" = ( -/obj/machinery/light/floortube{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"tT" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/floor/carpet/retro, -/area/awaymission/diescraper/indoors/floor9) -"tU" = ( -/obj/structure/sign/directions/eva{ - dir = 5 - }, -/obj/structure/sign/directions/stairs_up{ - dir = 5; - pixel_y = 8 - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor10) -"tV" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/orangedouble, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/diescraper/indoors/floor9) -"tX" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"tZ" = ( -/obj/structure/table/steel_reinforced, -/obj/random/tool, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor11) -"ub" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 196; - teleport_y = 226; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/indoors/floor11) -"uc" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor4) -"ud" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"ue" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"ug" = ( -/obj/structure/table/steel, -/obj/random/tool/powermaint, -/obj/random/tool/power, -/obj/item/tool/transforming/altevian, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"uh" = ( -/obj/machinery/washing_machine, -/obj/item/toy/plushie/possum, -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor9) -"ui" = ( -/obj/structure/table/borosilicate, -/obj/item/flashlight/lamp, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"uj" = ( -/obj/item/clothing/shoes/bhop, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"uk" = ( -/mob/living/simple_mob/humanoid/pirate/ranged/armored, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"ul" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor9) -"um" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/random/trash{ - pixel_y = -1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"un" = ( -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"uo" = ( -/obj/structure/bed/chair/oldsofa{ - dir = 4 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/awaymission/diescraper/indoors/floor9) -"up" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 32; - pixel_y = -4 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"uq" = ( -/obj/structure/table/marble, -/obj/structure/sink/countertop{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"ur" = ( -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"us" = ( -/obj/structure/bed/chair/bay/comfy/brown{ - dir = 8 - }, -/turf/unsimulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor6) -"ut" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor1) -"uu" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"uv" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/structure/railing/grey{ - dir = 1; - pixel_y = 0 - }, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"uw" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"uy" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/concrete, -/area/awaymission/diescraper/indoors/floor4) -"uz" = ( -/obj/effect/floor_decal/corner/white/border/shifted, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/diescraper/outside) -"uA" = ( -/turf/simulated/floor/tiled/freezer/cold, -/area/awaymission/diescraper/indoors/floor10) -"uB" = ( -/obj/machinery/light/small/torch{ - dir = 1 - }, -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor5) -"uD" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/chickenwing{ - pixel_y = 8; - pixel_x = 9 - }, -/obj/item/reagent_containers/food/snacks/chickenwing{ - pixel_y = 9; - pixel_x = -9 - }, -/obj/item/reagent_containers/food/snacks/chickenwing{ - pixel_y = 10; - pixel_x = -4 - }, -/obj/item/reagent_containers/food/snacks/chickenwing{ - pixel_y = 9 - }, -/obj/item/reagent_containers/food/snacks/chickenwing{ - pixel_y = 8; - pixel_x = 3 - }, -/obj/item/reagent_containers/food/snacks/chickenwing{ - pixel_y = 8; - pixel_x = 7 - }, -/obj/item/storage/box/wings{ - pixel_y = 1; - pixel_x = 3 - }, -/obj/item/storage/box/wings{ - pixel_y = 1; - pixel_x = -10 - }, -/obj/item/storage/box/wings{ - pixel_y = 1; - pixel_x = -3 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"uE" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 142; - teleport_y = 45 - }, -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"uF" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/machinery/light{ - pixel_y = 0; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"uG" = ( -/obj/structure/table/standard, -/obj/structure/sink/countertop, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"uH" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"uI" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/machinery/vending/donksoft{ - req_log_access = null - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"uJ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"uK" = ( -/obj/structure/table/rack/wood, -/obj/item/clothing/suit/storage/hooded/teshari/standard{ - pixel_y = 0; - pixel_x = -8 - }, -/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 - }, -/obj/item/toy/plushie/teshari/y_yw{ - pixel_y = 4 - }, -/obj/machinery/light{ - pixel_y = 0; - dir = 1 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack, -/area/awaymission/diescraper/indoors/floor7) -"uL" = ( -/obj/effect/decal/cleanable/blood, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"uM" = ( -/obj/structure/table/woodentable, -/obj/item/paper/pamphlet/violent_video_games, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"uN" = ( -/obj/effect/decal/remains/mouse, -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor1) -"uO" = ( -/obj/structure/flora/pottedplant/decorative, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"uP" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor11) -"uQ" = ( -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/wall/solidrock, -/area/awaymission/diescraper/outside) -"uR" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor2) -"uS" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"uT" = ( -/obj/structure/table/marble, -/obj/item/material/kitchen/rollingpin, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor1) -"uU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"uW" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"uX" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"uY" = ( -/obj/structure/table/woodentable, -/obj/item/pen/fountain8, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"uZ" = ( -/obj/structure/table/glass, -/obj/item/storage/rollingpapers, -/turf/simulated/floor/carpet/geo, -/area/awaymission/diescraper/indoors/floor6) -"vb" = ( -/obj/structure/medical_stand/anesthetic, -/obj/random/organ, -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "metroid_gib1" - }, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"vc" = ( -/obj/structure/table/hardwoodtable, -/obj/structure/window/reinforced{ - dir = 8; - health = null - }, -/obj/item/reagent_containers/food/snacks/chickenkatsu{ - pixel_y = 2 - }, -/obj/item/reagent_containers/food/snacks/chickenkatsu{ - pixel_y = 5 - }, -/obj/item/reagent_containers/food/snacks/hotandsoursoup, -/obj/item/reagent_containers/food/snacks/hotandsoursoup{ - pixel_y = -4 - }, -/obj/item/reagent_containers/food/snacks/chickenmomo, -/obj/item/reagent_containers/food/snacks/chickenmomo, -/obj/item/reagent_containers/food/snacks/chickenmomo, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"vd" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"ve" = ( -/obj/machinery/light{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"vf" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"vg" = ( -/obj/structure/bed/chair/office/dark{ - dir = 2 - }, -/obj/effect/decal/remains, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor3) -"vh" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/fish_taco{ - pixel_y = 10 - }, -/obj/item/reagent_containers/food/snacks/taco, -/obj/item/reagent_containers/food/snacks/taco{ - pixel_y = 5 - }, -/obj/item/reagent_containers/food/snacks/taco{ - pixel_y = -5 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor1) -"vi" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor11) -"vj" = ( -/obj/structure/table/bench/sifwooden/padded, -/obj/item/grenade/confetti/party_ball, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/diescraper/indoors/floor9) -"vk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"vl" = ( -/obj/structure/closet/crate/solar, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"vn" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"vo" = ( -/obj/item/reagent_containers/food/snacks/tomatosoup, -/obj/effect/decal/remains, -/obj/effect/decal/cleanable/filth, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"vp" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"vq" = ( -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor7) -"vr" = ( -/turf/simulated/floor/concrete{ - temperature = 225.15; - outdoors = 1 - }, -/area/awaymission/diescraper/roof) -"vs" = ( -/obj/structure/table/hardwoodtable, -/obj/item/gun/energy/supercannon, -/turf/unsimulated/floor/cult, -/area/awaymission/diescraper/indoors/floor11) -"vt" = ( -/obj/machinery/light{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"vu" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"vv" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"vw" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"vx" = ( -/obj/machinery/light{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor4second) -"vy" = ( -/mob/living/simple_mob/mechanical/cyber_horror/cat_cyber_horror, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"vz" = ( -/obj/structure/bed/chair/sofa/bench/marble{ - dir = 4 - }, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor7) -"vA" = ( -/obj/machinery/light{ - dir = 2; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"vB" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/obj/structure/closet/secure_closet/medical_wall/pills{ - pixel_x = 32; - locked = 0 - }, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"vC" = ( -/obj/machinery/vending/snack{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor10) -"vD" = ( -/obj/structure/simple_door/wood, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"vE" = ( -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"vF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"vG" = ( -/obj/machinery/light{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"vH" = ( -/obj/item/tape/engineering, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"vI" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/barricade/cutout, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"vJ" = ( -/obj/machinery/light/poi{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor10) -"vK" = ( -/mob/living/simple_mob/animal/passive/mouse/rat, -/mob/living/simple_mob/animal/passive/mouse/rat, -/mob/living/simple_mob/animal/passive/mouse/rat, -/mob/living/simple_mob/animal/passive/mouse/rat, -/mob/living/simple_mob/animal/passive/mouse/rat, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"vL" = ( -/obj/structure/closet/crate/secure/large, -/obj/random/material, -/obj/random/material, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"vM" = ( -/obj/random/awayloot/looseloot, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"vN" = ( -/obj/structure/table/steel_reinforced, -/obj/structure/window/titanium{ - dir = 4 - }, -/obj/item/cell/giga, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"vO" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor10) -"vP" = ( -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor3) -"vQ" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"vR" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"vS" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/food/snacks/chipplate, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor10) -"vT" = ( -/obj/structure/sink/kitchen{ - pixel_y = 17 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"vU" = ( -/obj/structure/table/rack/shelf/wood, -/obj/random/toy, -/obj/random/toy, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor1) -"vV" = ( -/obj/structure/bed/chair/sofa/orange, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"vW" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/simulated/floor/outdoors/dirt/turfpack/station, -/area/awaymission/diescraper/outside) -"vX" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"vY" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"wa" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor3) -"wb" = ( -/obj/machinery/gateway, -/obj/effect/map_effect/perma_light/gateway, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor1) -"wc" = ( -/obj/structure/bed/chair/wood{ - dir = 8; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"wd" = ( -/obj/structure/bed/chair/sofa/bench/marble{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"we" = ( -/obj/machinery/vending/dinnerware, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"wf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating{ - temperature = 277; - icon_state = "dmg4" - }, -/area/awaymission/diescraper/indoors/floor2) -"wg" = ( -/obj/machinery/shower{ - pixel_y = 0; - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/machinery/door/window/westright, -/obj/structure/curtain/open/shower, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 1 - }, -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor9) -"wh" = ( -/obj/structure/bed/chair/sofa/bench/marble{ - dir = 4 - }, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"wi" = ( -/obj/structure/bed/chair/bay/comfy/brown{ - dir = 8 - }, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"wj" = ( -/obj/effect/floor_decal/industrial/warning/color/yellow{ - dir = 2 - }, -/obj/effect/floor_decal/industrial/warning/color/red{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor10) -"wk" = ( -/obj/structure/sign/signnew/explosives, -/turf/simulated/wall/concrete, -/area/awaymission/diescraper/indoors/floor6) -"wl" = ( -/obj/effect/floor_decal/stairs{ - dir = 4 - }, -/obj/machinery/light{ - dir = 2; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"wn" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"wo" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 95; - teleport_y = 141; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"wp" = ( -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"wq" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"wr" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor1) -"ws" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"wt" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor11) -"wv" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"ww" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"wx" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor11) -"wy" = ( -/obj/structure/bed/chair/sofa/right/purp{ - dir = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"wz" = ( -/obj/structure/table/steel_reinforced, -/obj/item/cell/device/weapon/recharge/alien/hybrid, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"wA" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/item/gun/energy/gun/burst, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"wB" = ( -/obj/machinery/door/airlock/medical{ - req_one_access = null - }, -/turf/unsimulated/floor/tiled/freezer, -/area/awaymission/diescraper/indoors/floor8) -"wC" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 233; - teleport_y = 239 - }, -/turf/simulated/sky/moving/south{ - temperature = 277 - }, -/area/awaymission/diescraper/sky) -"wD" = ( -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"wE" = ( -/obj/machinery/suit_cycler/exploration, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"wF" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/taco{ - pixel_y = 6 - }, -/obj/item/reagent_containers/food/snacks/taco{ - pixel_y = -8 - }, -/obj/item/reagent_containers/food/snacks/taco{ - pixel_y = -3 - }, -/obj/item/reagent_containers/food/snacks/taco{ - pixel_y = 2 - }, -/obj/item/reagent_containers/food/snacks/sliceable/supremoburrito{ - pixel_x = 12 - }, -/obj/item/reagent_containers/food/snacks/fuegoburrito, -/obj/item/reagent_containers/food/snacks/slice/bigbeanburrito/filled{ - pixel_y = 0; - pixel_x = -8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"wG" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"wH" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/meatburrito{ - pixel_y = -4; - pixel_x = -12 - }, -/obj/item/reagent_containers/food/snacks/meatburrito{ - pixel_y = -4; - pixel_x = -7 - }, -/obj/item/reagent_containers/food/snacks/cheeseburrito{ - pixel_y = -4 - }, -/obj/item/reagent_containers/food/snacks/burrito_vegan{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/reagent_containers/food/snacks/burrito_mystery{ - pixel_x = 11; - pixel_y = -4 - }, -/obj/item/reagent_containers/food/snacks/burrito_hell{ - pixel_x = -12; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/snacks/burrito_cheese_spicy{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/snacks/burrito_cheese{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/snacks/burrito{ - pixel_x = 13; - pixel_y = 6 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"wI" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"wJ" = ( -/mob/living/simple_mob/vore/aggressive/rat, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/diescraper/indoors/floor10) -"wK" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"wL" = ( -/obj/structure/table/steel_reinforced, -/obj/item/reagent_containers/spray/chemsprayer, -/obj/random/tool/power, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"wM" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"wN" = ( -/obj/random/trash{ - pixel_y = -1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"wO" = ( -/obj/structure/railing, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor11) -"wQ" = ( -/obj/structure/table/reinforced, -/obj/random/organ, -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "mfloor2" - }, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"wR" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plating{ - temperature = 277; - icon_state = "dmg4" - }, -/area/awaymission/diescraper/indoors/floor2) -"wS" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/item/trash/plate, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"wT" = ( -/obj/effect/floor_decal/corner/paleblue/border, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"wV" = ( -/obj/effect/floor_decal/rust, -/obj/random/junk, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"wW" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/carpet/retro, -/area/awaymission/diescraper/indoors/floor9) -"wX" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_range = 10; - light_color = "#b3deff" - }, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"wY" = ( -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"xa" = ( -/turf/simulated/floor/outdoors/newdirt/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor7) -"xb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/salvageable/server, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"xd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"xe" = ( -/obj/structure/fence, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"xf" = ( -/obj/structure/salvageable/console, -/turf/simulated/floor/reinforced, -/area/awaymission/diescraper/indoors/floor112) -"xg" = ( -/obj/effect/floor_decal/rust, -/obj/random/multiple/large_corp_crate, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"xh" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"xi" = ( -/obj/structure/closet/crate/secure/large, -/obj/item/storage/mre/random, -/obj/item/storage/mre/random, -/obj/item/storage/mre/random, -/obj/item/storage/mre/random, -/obj/item/storage/mre/random, -/obj/item/storage/mre/random, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"xj" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/random/tool, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor1) -"xk" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/basic, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor2) -"xl" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/barricade/cutout, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"xm" = ( -/obj/machinery/light/floortube{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"xn" = ( -/mob/living/simple_mob/vore/aggressive/rat, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"xo" = ( -/turf/simulated/floor/reinforced, -/area/awaymission/diescraper/sky) -"xp" = ( -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/table/rack/wood, -/obj/item/clothing/suit/storage/toggle/lawyer/bluejacket{ - pixel_y = 2; - pixel_x = -7 - }, -/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 - }, -/obj/item/clothing/under/suit_jacket/burgundy{ - pixel_y = -3; - pixel_x = -6 - }, -/obj/item/clothing/under/suit_jacket/charcoal{ - pixel_y = -3 - }, -/obj/item/clothing/under/suit_jacket/checkered{ - pixel_y = -2; - pixel_x = 8 - }, -/obj/item/clothing/shoes/dress{ - pixel_y = -10 - }, -/obj/item/clothing/shoes/dress{ - pixel_y = -10 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack, -/area/awaymission/diescraper/indoors/floor7) -"xq" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack, -/area/awaymission/diescraper/indoors/floor7) -"xr" = ( -/mob/living/simple_mob/humanoid/pirate/ranged, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/diescraper/indoors/floor6) -"xs" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/gun/projectile/revolver/toy, -/obj/item/gun/projectile/revolver/toy, -/obj/item/gun/projectile/revolver/toy, -/obj/item/gun/projectile/revolver/toy, -/obj/item/gun/projectile/revolver, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"xt" = ( -/obj/structure/table/marble, -/obj/structure/window/reinforced, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"xu" = ( -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"xv" = ( -/obj/structure/bed/chair/bay/comfy/brown{ - dir = 8 - }, -/mob/living/simple_mob/humanoid/pirate/las/armored, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"xw" = ( -/obj/effect/floor_decal/rust, -/obj/effect/overlay/snow/floor, -/obj/effect/mobblocker{ - dir = 4 - }, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"xx" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/carpet/brown, -/area/awaymission/diescraper/indoors/floor9) -"xy" = ( -/obj/structure/table/rack/shelf/wood, -/obj/item/paper_bin, -/obj/item/paper_bin, -/obj/item/paper_bin, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"xz" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor2) -"xA" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor5) -"xB" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"xD" = ( -/turf/simulated/wall/wood, -/area/awaymission/diescraper/indoors/floor7) -"xE" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/light{ - dir = 4 - }, -/obj/random/tool/alien, -/obj/structure/closet/crate, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"xF" = ( -/mob/living/simple_mob/mechanical/cyber_horror, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"xG" = ( -/turf/simulated/wall/concrete, -/area/awaymission/diescraper/indoors/floor11) -"xH" = ( -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/diescraper/indoors/floor9) -"xI" = ( -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"xJ" = ( -/obj/machinery/light, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"xK" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/obj/random/medical, -/obj/random/medical, -/obj/structure/closet/secure_closet/medical_wall/pills{ - pixel_x = 32; - locked = 0 - }, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"xL" = ( -/obj/structure/table/woodentable, -/obj/item/melee/baton/cattleprod, -/obj/item/cell/hyper, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"xM" = ( -/obj/effect/decal/remains/unathi, -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor1) -"xN" = ( -/obj/machinery/light/floortube{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor11) -"xO" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/mob/living/simple_mob/animal/space/goose{ - faction = "metroids" - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"xP" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"xQ" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/salvageable/implant_container, -/obj/item/reagent_containers/food/condiment/ketchup, -/obj/item/reagent_containers/food/condiment/mustard, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"xR" = ( -/mob/living/simple_mob/slime/feral, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"xT" = ( -/obj/effect/floor_decal/rust, -/obj/effect/overlay/snow/floor, -/obj/structure/girder/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"xU" = ( -/obj/structure/table/borosilicate, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"xV" = ( -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"xW" = ( -/obj/random/trash, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"xX" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = -9 - }, -/obj/item/clothing/glasses/sunglasses/big{ - pixel_y = -5 - }, -/obj/item/clothing/glasses/sunglasses/bigshot{ - pixel_y = -3 - }, -/obj/item/clothing/glasses/gglasses, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor7) -"xY" = ( -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"ya" = ( -/obj/structure/fence, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/diescraper/outside) -"yb" = ( -/obj/item/stack/material/uranium{ - amount = 12 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"yc" = ( -/obj/structure/table/bench/sifwooden/padded, -/obj/item/gun/launcher/confetti_cannon/overdrive, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/diescraper/indoors/floor9) -"yd" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor11) -"ye" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"yf" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/table/marble, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"yg" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/vending/dinnerware{ - dir = 1 - }, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"yh" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/door/blast/regular/open, -/turf/simulated/floor/reinforced, -/area/awaymission/diescraper/indoors/floor4second) -"yi" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/condiment/carton/flour/rustic{ - pixel_y = 0; - pixel_x = 9 - }, -/obj/item/reagent_containers/food/condiment/carton/sugar, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"yj" = ( -/turf/simulated/wall/titanium, -/area/awaymission/diescraper/indoors/floor112) -"yk" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/pill_bottle/burncard, -/obj/item/storage/pill_bottle/burncard, -/obj/item/storage/pill_bottle/juggernog, -/obj/item/storage/pill_bottle/juggernog, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"yl" = ( -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"yn" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/machinery/light/floortube, -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"yp" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/fire, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"yq" = ( -/obj/structure/table/marble, -/obj/random/awayloot/looseloot, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"yr" = ( -/obj/structure/table/gamblingtable, -/obj/item/book/bundle/custom_library/fiction/beyondthedoor, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor6) -"ys" = ( -/obj/machinery/door/airlock/medical{ - req_one_access = null - }, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"yt" = ( -/obj/machinery/appliance/cooker/grill, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"yu" = ( -/obj/structure/table/woodentable, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/prop/machine/random_radio, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"yv" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"yw" = ( -/obj/structure/table/rack/shelf/steel, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/reagent_containers/food/drinks/cans/lemon_cola{ - pixel_y = 12; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/drinks/cans/lemon_cola{ - pixel_y = 12; - pixel_x = -9 - }, -/obj/item/reagent_containers/food/drinks/cans/lemon_cola{ - pixel_y = 12; - pixel_x = 6 - }, -/obj/item/reagent_containers/food/drinks/cans/lemon_cola{ - pixel_y = 12; - pixel_x = 2 - }, -/obj/item/reagent_containers/food/drinks/cans/straw_cola{ - pixel_x = 7 - }, -/obj/item/reagent_containers/food/drinks/cans/straw_cola{ - pixel_x = -9 - }, -/obj/item/reagent_containers/food/drinks/cans/straw_cola{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/drinks/cans/straw_cola{ - pixel_x = 2 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"yx" = ( -/obj/structure/barricade/cutout, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"yy" = ( -/mob/living/simple_mob/tomato{ - dir = 2 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"yz" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 213; - teleport_y = 100 - }, -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"yA" = ( -/obj/structure/sink/kitchen{ - pixel_y = 17 - }, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor4) -"yC" = ( -/obj/item/stack/material/steel, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"yD" = ( -/mob/living/simple_mob/humanoid/pirate/captain, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"yE" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"yF" = ( -/obj/random/soap, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"yG" = ( -/obj/item/material/shard{ - icon_state = "splinterslarge" - }, -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/diescraper/indoors/floor7) -"yH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/drinkbottle, -/turf/simulated/floor, -/area/awaymission/diescraper/indoors/floor3) -"yI" = ( -/obj/machinery/appliance/cooker/oven, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"yJ" = ( -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor2) -"yK" = ( -/obj/structure/table/rack/shelf/wood, -/obj/random/maintenance/engineering, -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/wood/alt/panel/broken, -/area/awaymission/diescraper/indoors/floor6) -"yL" = ( -/obj/effect/decal/cleanable/fruit_smudge, -/obj/item/clothing/shoes/dress, -/obj/random/humanoidremains, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"yM" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 2; - req_access = list(886) - }, -/obj/machinery/cash_register, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"yN" = ( -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/concrete, -/obj/fiftyspawner/concrete, -/obj/random/awayloot/nofail, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"yO" = ( -/obj/item/modular_computer/console/preset/civilian{ - pixel_y = 0; - dir = 4 - }, -/turf/unsimulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor6) -"yP" = ( -/turf/simulated/floor/carpet/purple, -/area/awaymission/diescraper/indoors/floor9) -"yQ" = ( -/obj/machinery/light/floortube{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"yR" = ( -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/diescraper/indoors/floor6) -"yS" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/mob/living/simple_mob/vore/otie/feral/chubby{ - dir = 8; - faction = "metroids" - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"yT" = ( -/obj/effect/floor_decal/rust, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"yU" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/obj/machinery/vending/tool{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"yV" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor11) -"yW" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"yX" = ( -/obj/machinery/power/port_gen/pacman, -/obj/fiftyspawner/phoron, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"yY" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"yZ" = ( -/obj/structure/table/woodentable, -/obj/item/spacecasinocash, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"za" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"zb" = ( -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/obj/structure/closet/crate/trashcart, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"zc" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor3) -"zd" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"ze" = ( -/obj/item/c_tube, -/obj/structure/table/standard, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"zf" = ( -/obj/random/trash, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/diescraper/indoors/floor6) -"zg" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"zh" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"zi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"zj" = ( -/obj/structure/largecrate/animal/swoopie, -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor2) -"zk" = ( -/obj/effect/floor_decal/stairs/dark_stairs, -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"zl" = ( -/obj/structure/table/hardwoodtable, -/obj/item/reagent_containers/food/snacks/lomein{ - pixel_y = 3 - }, -/obj/item/reagent_containers/food/snacks/lomein{ - pixel_y = -3 - }, -/obj/item/reagent_containers/food/snacks/lomein{ - pixel_y = 0 - }, -/obj/item/reagent_containers/food/snacks/fortunecookie{ - pixel_y = 7; - pixel_x = 5 - }, -/obj/item/reagent_containers/food/snacks/fortunecookie{ - pixel_y = 7; - pixel_x = -8 - }, -/obj/item/reagent_containers/food/snacks/fortunecookie{ - pixel_y = 7; - pixel_x = -8 - }, -/obj/item/reagent_containers/food/snacks/fortunecookie{ - pixel_y = 7 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"zm" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/fruitspawner/icechili, -/obj/fruitspawner/icechili, -/obj/fruitspawner/icechili, -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"zn" = ( -/obj/machinery/light/floortube{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"zo" = ( -/obj/random/pottedplant, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"zp" = ( -/mob/living/simple_mob/humanoid/merc/ranged/space/shotgun/auto, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"zq" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"zr" = ( -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor3) -"zs" = ( -/turf/unsimulated/wall, -/area/awaymission/diescraper/indoors/floor8) -"zt" = ( -/obj/structure/table/standard, -/obj/structure/closet/secure_closet/medical_wall{ - pixel_y = 0; - pixel_x = 32; - locked = 0 - }, -/obj/random/medical/pillbottle, -/obj/random/medical/pillbottle, -/obj/random/medical/pillbottle, -/obj/random/medical/pillbottle, -/obj/item/reagent_containers/blood/OMinus, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"zu" = ( -/obj/structure/bed/chair/wood{ - dir = 1; - pixel_y = 0 - }, -/mob/living/simple_mob/animal/passive/mouse/rat, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"zv" = ( -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"zw" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/bottle/jager{ - pixel_y = 11; - pixel_x = 16 - }, -/obj/item/reagent_containers/food/drinks/bottle/gin{ - pixel_y = 3; - pixel_x = 13 - }, -/obj/item/reagent_containers/food/drinks/bottle/cognac{ - pixel_y = 7; - pixel_x = -8 - }, -/obj/item/reagent_containers/food/drinks/bottle/patron{ - pixel_y = 11; - pixel_x = 2 - }, -/obj/item/reagent_containers/food/drinks/bottle/bluecuracao{ - pixel_y = 1; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/drinks/bottle/whitewine{ - pixel_y = 2; - pixel_x = 6 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"zx" = ( -/obj/structure/window/plastitanium{ - dir = 1; - name = "screen" - }, -/turf/simulated/wall, -/area/awaymission/diescraper/indoors/floor10) -"zy" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"zz" = ( -/obj/effect/floor_decal/industrial/warning/color/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"zA" = ( -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/diescraper/outside) -"zB" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/structure/table/survival_pod, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"zC" = ( -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/machinery/door/window/westright, -/obj/structure/curtain/open/shower, -/obj/structure/window/reinforced/tinted/frosted, -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor9) -"zE" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/reagent_containers/food/drinks/bottle/specialwhiskey, -/obj/item/reagent_containers/food/drinks/bottle/specialwhiskey, -/obj/item/reagent_containers/food/drinks/bottle/specialwhiskey, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_y = 0; - pixel_x = -5 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_y = 0; - pixel_x = -5 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_y = 0; - pixel_x = -5 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_y = 1; - pixel_x = 6 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_y = 1; - pixel_x = 6 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_y = 1; - pixel_x = 6 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor7) -"zF" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor11) -"zH" = ( -/obj/structure/reagent_dispensers/water_cooler/full{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"zI" = ( -/obj/machinery/computer/arcade{ - dir = 4 - }, -/turf/simulated/floor/carpet/retro, -/area/awaymission/diescraper/indoors/floor9) -"zJ" = ( -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/diescraper/indoors/floor6) -"zK" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/item/reagent_containers/food/snacks/meat/chicken, -/obj/item/reagent_containers/food/snacks/meat/chicken, -/obj/item/reagent_containers/food/snacks/meat/chicken, -/obj/item/reagent_containers/food/snacks/meat/chicken, -/obj/item/reagent_containers/food/snacks/meat/chicken, -/obj/item/reagent_containers/food/snacks/meat/chicken, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"zL" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/carbon/human/ai_controlled/greytide{ - icon_state = "rune_teleport" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"zM" = ( -/obj/structure/sign/small/warning/high_voltage, -/turf/simulated/wall, -/area/awaymission/diescraper/indoors/floor10) -"zN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor5) -"zO" = ( -/obj/structure/table/rack/shelf/wood, -/obj/item/pen/autostun/paralyse, -/obj/item/pen, -/obj/item/pen, -/obj/item/pen, -/obj/item/pen/fountain, -/obj/item/pen/fountain2, -/obj/item/pen/fountain3, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"zP" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/outdoors/newdirt/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor7) -"zQ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"zS" = ( -/obj/structure/table/marble{ - color = "grey" - }, -/obj/machinery/door/window/eastleft, -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 8; - req_access = list(886) - }, -/obj/random/awayloot/looseloot, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"zT" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 60; - teleport_y = 162 - }, -/obj/effect/floor_decal/stairs{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"zU" = ( -/obj/structure/bed/chair/sofa/right/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"zV" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"zW" = ( -/obj/effect/decal/remains, -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor1) -"zX" = ( -/obj/structure/table/marble, -/obj/fruitspawner/chili, -/obj/fruitspawner/chili, -/obj/fruitspawner/chili, -/obj/fruitspawner/chili, -/obj/fruitspawner/chili, -/obj/fruitspawner/chili, -/obj/fruitspawner/chili, -/obj/fruitspawner/chili, -/obj/fruitspawner/chili, -/obj/fruitspawner/chili, -/obj/fruitspawner/chili, -/obj/fruitspawner/ghostchili, -/obj/fruitspawner/ghostchili, -/obj/fruitspawner/ghostchili, -/obj/fruitspawner/ghostchili, -/obj/fruitspawner/ghostchili, -/obj/fruitspawner/ghostchili, -/obj/fruitspawner/ghostchili, -/obj/machinery/light{ - dir = 4 - }, -/obj/fruitspawner/soybean, -/obj/fruitspawner/soybean, -/obj/fruitspawner/soybean, -/obj/fruitspawner/soybean, -/obj/fruitspawner/soybean, -/obj/fruitspawner/soybean, -/obj/fruitspawner/soybean, -/obj/fruitspawner/soybean, -/obj/fruitspawner/soybean, -/obj/fruitspawner/soybean, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"zY" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/diescraper/indoors/floor9) -"zZ" = ( -/turf/simulated/floor/concrete, -/area/awaymission/diescraper/indoors/floor3) -"Aa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor7) -"Ab" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"Ac" = ( -/obj/structure/table/steel_reinforced, -/obj/item/rcd/electric/mounted/mecha, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"Ad" = ( -/obj/structure/table/reinforced, -/obj/item/gun/launcher/syringe, -/obj/machinery/recharger, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"Ae" = ( -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/diescraper/outside) -"Af" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor11) -"Ag" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/appliance/cooker/oven, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Ah" = ( -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor2) -"Ai" = ( -/obj/item/stack/material/supermatter{ - amount = 5 - }, -/turf/simulated/floor/carpet/happy, -/area/awaymission/diescraper/indoors/floor7) -"Aj" = ( -/obj/item/modular_computer/console/preset/civilian, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Ak" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/telecomms/broadcaster, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/awaymission/diescraper/indoors/floor10) -"Al" = ( -/obj/structure/sign/signnew/secure{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"Am" = ( -/mob/living/simple_mob/mechanical/cyber_horror/tajaran, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"An" = ( -/obj/structure/fence/door/opened, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor5) -"Ao" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor5) -"Ap" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"Aq" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/pill_bottle/paracetamol, -/obj/item/storage/pill_bottle/paracetamol, -/obj/item/storage/pill_bottle/peridaxon, -/obj/item/storage/pill_bottle/peridaxon, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Ar" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/chickenwing{ - pixel_y = 8; - pixel_x = 9 - }, -/obj/item/reagent_containers/food/snacks/chickenwing{ - pixel_y = 9; - pixel_x = -9 - }, -/obj/item/reagent_containers/food/snacks/chickenwing{ - pixel_y = 10; - pixel_x = -4 - }, -/obj/item/reagent_containers/food/snacks/chickenwing{ - pixel_y = 9 - }, -/obj/item/reagent_containers/food/snacks/chickenwing{ - pixel_y = 8; - pixel_x = 3 - }, -/obj/item/reagent_containers/food/snacks/chickenwing{ - pixel_y = 8; - pixel_x = 7 - }, -/obj/item/storage/box/wings{ - pixel_y = 1; - pixel_x = 3 - }, -/obj/item/storage/box/wings{ - pixel_y = 1; - pixel_x = -10 - }, -/obj/item/storage/box/wings{ - pixel_y = 1; - pixel_x = -3 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"As" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/obj/item/material/kitchen/rollingpin, -/obj/item/material/knife{ - pixel_y = 0; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Au" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/item/newspaper, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"Aw" = ( -/obj/machinery/vending/hotfood{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor10) -"Ax" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Ay" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/machinery/light{ - dir = 2; - layer = 3 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"Az" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor11) -"AA" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"AB" = ( -/obj/item/grenade/supermatter, -/turf/simulated/floor/carpet/happy, -/area/awaymission/diescraper/indoors/floor7) -"AC" = ( -/obj/structure/bed/chair/oldsofa/left{ - dir = 8 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"AD" = ( -/obj/machinery/light{ - dir = 2 - }, -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor2) -"AE" = ( -/obj/item/spacecasinocash, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"AF" = ( -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"AG" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood, -/obj/structure/barricade/cutout, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"AH" = ( -/obj/structure/fence/end{ - dir = 4 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "slab2" - }, -/area/awaymission/diescraper/outside) -"AI" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"AJ" = ( -/obj/structure/table/woodentable, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"AK" = ( -/obj/machinery/photocopier/faxmachine, -/obj/structure/table/standard, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"AL" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 32; - pixel_y = -4 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/awaymission/diescraper/indoors/floor9) -"AM" = ( -/obj/structure/table/steel_reinforced, -/obj/item/multitool{ - pixel_x = 4 - }, -/obj/item/multitool{ - pixel_x = -5 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"AN" = ( -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"AO" = ( -/obj/structure/table/marble{ - color = "grey" - }, -/obj/structure/window/titanium{ - dir = 8 - }, -/obj/structure/window/titanium, -/obj/structure/window/titanium{ - dir = 4 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"AP" = ( -/obj/effect/floor_decal/corner/yellow/border/shifted, -/turf/simulated/floor/concrete, -/area/awaymission/diescraper/outside) -"AQ" = ( -/turf/unsimulated/wall/fakeglass{ - dir = 8 - }, -/area/awaymission/diescraper/indoors/floor11) -"AR" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 17; - teleport_y = 200; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor5) -"AS" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor1) -"AT" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/machinery/light{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"AU" = ( -/obj/random/material, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"AV" = ( -/obj/structure/table/woodentable, -/obj/random/mug, -/turf/unsimulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor9) -"AW" = ( -/obj/structure/sign/directions/stairs_down{ - dir = 6 - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor10) -"AX" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"AY" = ( -/obj/machinery/light/floortube{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"AZ" = ( -/obj/structure/fence/end, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/diescraper/outside) -"Ba" = ( -/obj/structure/railing/grey{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"Bb" = ( -/obj/effect/floor_decal/industrial/warning/color/yellow{ - dir = 2 - }, -/mob/living/simple_mob/vore/aggressive/rat, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor10) -"Bc" = ( -/obj/machinery/gateway, -/obj/effect/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor4second) -"Be" = ( -/obj/structure/table/hardwoodtable, -/obj/effect/map_effect/perma_light/brighter{ - light_color = "#f58d42" - }, -/obj/item/stack/material/morphium{ - amount = 20 - }, -/obj/item/stack/material/supermatter{ - amount = 20 - }, -/turf/unsimulated/floor/cult, -/area/awaymission/diescraper/indoors/floor11) -"Bf" = ( -/obj/structure/inflatable/door, -/turf/simulated/floor/plating{ - temperature = 277 - }, -/area/awaymission/diescraper/indoors/floor7) -"Bg" = ( -/turf/simulated/wall/elevator, -/area/awaymission/diescraper/indoors/floor1) -"Bh" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor6) -"Bi" = ( -/obj/item/reagent_containers/food/drinks/bottle/specialwhiskey{ - pixel_y = 8; - pixel_x = 10 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_y = 13 - }, -/obj/item/reagent_containers/food/drinks/bottle/wine{ - pixel_y = 2; - pixel_x = 4 - }, -/obj/item/reagent_containers/food/drinks/bottle/sake{ - pixel_y = 1; - pixel_x = -6 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_y = 3; - pixel_x = 14 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"Bj" = ( -/obj/machinery/light{ - dir = 2 - }, -/obj/structure/table/woodentable, -/obj/item/card/id/diescrapergun, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"Bk" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/awaymission/diescraper/outside; - base_turf = /turf/simulated/floor/concrete; - landmark_tag = "diescraper_parking"; - name = "Skyscraper Parking Lot" - }, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/diescraper/outside) -"Bl" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/mob/living/simple_mob/vore/alienanimals/skeleton/alt, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"Bm" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"Bn" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/vending/dinnerware{ - dir = 8; - pixel_x = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"Bo" = ( -/obj/structure/closet/secure_closet/freezer/kitchen/mining, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor1) -"Bp" = ( -/obj/structure/sign/directions/stairs_down{ - dir = 10 - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor7) -"Bq" = ( -/obj/structure/table/steel_reinforced, -/obj/random/projectile, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"Br" = ( -/turf/simulated/floor/tiled/dark{ - icon_state = "milspec-damaged2" - }, -/area/awaymission/diescraper/indoors/floor7) -"Bs" = ( -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"Bt" = ( -/obj/structure/table/standard, -/obj/item/gun/energy/medigun, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Bu" = ( -/obj/random/mech, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"Bv" = ( -/obj/structure/bed/chair/oldsofa{ - dir = 4 - }, -/turf/simulated/floor/carpet/brown, -/area/awaymission/diescraper/indoors/floor9) -"Bw" = ( -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"By" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"Bz" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor1) -"BA" = ( -/obj/structure/fireaxecabinet{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"BB" = ( -/obj/item/clothing/head/pizzaguy, -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor1) -"BC" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor7) -"BD" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor1) -"BE" = ( -/obj/structure/table/rack/shelf/steel, -/obj/fiftyspawner/phoron, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"BF" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/shuttle/floor/black, -/area/awaymission/diescraper/indoors/floor1) -"BG" = ( -/obj/structure/table/steel_reinforced, -/obj/item/integrated_circuit_printer/all_upgrades, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"BH" = ( -/obj/structure/table/marble, -/obj/structure/sink/countertop{ - pixel_y = 3; - dir = 4; - pixel_x = -6 - }, -/obj/item/reagent_containers/glass/rag{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/measuring_cup{ - pixel_x = 10; - pixel_y = 8 - }, -/obj/item/reagent_containers/dropper{ - pixel_x = -4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"BI" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/bordercorner{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/barricade/cutout, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"BJ" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"BK" = ( -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor2) -"BL" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor2) -"BM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor7) -"BN" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 170; - teleport_y = 141; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"BO" = ( -/mob/living/simple_mob/vore/aggressive/rat, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor10) -"BP" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"BQ" = ( -/obj/structure/table/woodentable, -/obj/item/modular_computer/laptop/preset/custom_loadout/cheap, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"BR" = ( -/obj/random/trash, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"BS" = ( -/obj/structure/table/standard, -/obj/item/pen{ - pixel_y = -5 - }, -/obj/item/pen/blue, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"BT" = ( -/obj/structure/closet, -/obj/item/gun/energy/gun/rifle, -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor2) -"BU" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 195; - teleport_y = 139; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"BV" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "slab2"; - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"BW" = ( -/obj/effect/floor_decal/stairs{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"BX" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_y = 14; - pixel_x = 3 - }, -/obj/item/reagent_containers/food/drinks/bottle/kahlua{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/lemonadeschnapps{ - pixel_y = 5; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/drinks/bottle/goldschlager{ - pixel_y = 13; - pixel_x = -9 - }, -/obj/item/reagent_containers/food/drinks/bottle/absinthe{ - pixel_y = 3; - pixel_x = -8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"BY" = ( -/obj/item/stack/material/wood, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor7) -"BZ" = ( -/obj/structure/reagent_dispensers/fueltank/barrel/two, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"Ca" = ( -/obj/structure/sign/directions/stairs_up{ - dir = 9 - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor6) -"Cc" = ( -/obj/item/stack/material/steel{ - amount = 15 - }, -/obj/item/stack/material/glass/reinforced{ - amount = 10 - }, -/obj/structure/mopbucket, -/obj/item/mop, -/mob/living/simple_mob/animal/passive/mouse/rat, -/mob/living/simple_mob/animal/passive/mouse/rat, -/mob/living/simple_mob/animal/passive/mouse/rat, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"Cd" = ( -/obj/random/trash, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"Ce" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_coffee/full{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"Cf" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/lights/mixed, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/radio{ - frequency = 1487; - icon_state = "med_walkietalkie"; - name = "Medbay Emergency Radio Link" - }, -/obj/item/radio{ - frequency = 1487; - icon_state = "med_walkietalkie"; - name = "Medbay Emergency Radio Link" - }, -/obj/item/tool/crowbar/red, -/obj/item/tool/crowbar/red, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"Cg" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Ch" = ( -/turf/unsimulated/wall/seperator, -/area/space) -"Ci" = ( -/obj/item/modular_computer/console/preset/civilian{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Cj" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor6) -"Ck" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 4; - req_access = list(886) - }, -/obj/item/cell/giga, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"Cl" = ( -/obj/effect/floor_decal/rust, -/obj/random/junk, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"Cm" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/mimedouble, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/diescraper/indoors/floor9) -"Co" = ( -/obj/structure/bed/chair/shuttle, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"Cq" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"Cr" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Ct" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/suit_cooling_unit, -/obj/item/clothing/suit/space/void/pilot, -/obj/item/clothing/head/helmet/space/void/pilot, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/suit_cooling_unit, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/clothing/suit/space/void/pilot, -/obj/item/clothing/head/helmet/space/void/pilot, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"Cu" = ( -/obj/machinery/computer{ - desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; - dir = 1; - name = "Broken Computer" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor10) -"Cv" = ( -/obj/machinery/door/airlock/sandstone, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"Cx" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_range = 10; - light_color = "#b3deff" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/diescraper/indoors/floor6) -"Cy" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 13; - teleport_y = 104 - }, -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"Cz" = ( -/obj/machinery/light{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"CA" = ( -/obj/machinery/light{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/carpet/happy, -/area/awaymission/diescraper/indoors/floor7) -"CB" = ( -/obj/machinery/appliance/cooker/grill, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"CC" = ( -/obj/structure/table/marble, -/obj/machinery/cash_register{ - req_access = null; - dir = 1 - }, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor4) -"CD" = ( -/obj/item/modular_computer/console/preset/civilian, -/obj/effect/floor_decal/industrial/warning/color/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"CE" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"CF" = ( -/obj/structure/sign/signnew/biohazard{ - pixel_y = 32 - }, -/obj/item/tape/medical, -/turf/unsimulated/floor/tiled/freezer, -/area/awaymission/diescraper/indoors/floor8) -"CH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"CI" = ( -/obj/item/computer_hardware/battery_module/lambda, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"CJ" = ( -/obj/machinery/light{ - dir = 2; - layer = 3 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor2) -"CK" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/item/tape/police, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"CL" = ( -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor9) -"CM" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/random/drinkbottle, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"CN" = ( -/obj/structure/table/steel_reinforced, -/obj/structure/bedsheetbin, -/obj/item/toy/sif{ - pixel_y = 16 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor9) -"CO" = ( -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"CP" = ( -/obj/structure/table/rack/shelf/wood, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"CQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/flicker{ - dir = 4 - }, -/obj/structure/salvageable/server, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"CR" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/retro, -/area/awaymission/diescraper/indoors/floor9) -"CT" = ( -/obj/machinery/light{ - pixel_y = 0; - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"CU" = ( -/obj/item/clothing/head/hardhat, -/obj/effect/catwalk_plated/dark, -/turf/simulated/sky/south{ - temperature = 295.15 - }, -/area/awaymission/diescraper/sky) -"CV" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"CW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/mummy1, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"CX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/barricade/cutout, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"CY" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 4 - }, -/obj/item/tape/medical, -/obj/structure/barricade, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"CZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"Da" = ( -/obj/structure/fence/end{ - dir = 1 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/diescraper/outside) -"Db" = ( -/obj/structure/salvageable/console_broken_os{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Dc" = ( -/obj/structure/table/standard, -/obj/item/organ/internal/augment/bioaugment/thermalshades, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Dd" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor11) -"De" = ( -/obj/effect/floor_decal/industrial/warning/color/red{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor10) -"Df" = ( -/turf/unsimulated/floor/cult, -/area/awaymission/diescraper/indoors/floor11) -"Dg" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/diescraper/indoors/floor7) -"Dh" = ( -/obj/structure/barricade/cutout, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"Di" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/sky/south{ - temperature = 295.15 - }, -/area/awaymission/diescraper/sky) -"Dj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stolenpackage, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"Dk" = ( -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor8) -"Dl" = ( -/obj/structure/closet/crate/secure/large, -/obj/item/reagent_containers/food/drinks/cans/tonic, -/obj/item/reagent_containers/food/drinks/cans/tonic, -/obj/item/reagent_containers/food/drinks/cans/space_mountain_wind, -/obj/item/reagent_containers/food/drinks/cans/sodawater, -/obj/item/reagent_containers/food/drinks/cans/root_beer, -/obj/item/reagent_containers/food/drinks/cans/grape_juice, -/obj/item/reagent_containers/food/drinks/cans/gingerale, -/obj/item/reagent_containers/food/drinks/cans/dr_gibb, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"Dm" = ( -/obj/structure/fence/door{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"Dn" = ( -/obj/structure/prop/machine/tradebeacon, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"Dp" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/chickenfillet{ - pixel_y = 3; - pixel_x = -6 - }, -/obj/item/reagent_containers/food/snacks/chickenfillet{ - pixel_y = -5; - pixel_x = -7 - }, -/obj/item/reagent_containers/food/snacks/chickenfillet{ - pixel_y = -4; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/snacks/chickenfillet{ - pixel_y = 0; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/snacks/plumphelmetbiscuit{ - pixel_y = 3; - pixel_x = 9 - }, -/obj/item/reagent_containers/food/snacks/plumphelmetbiscuit{ - pixel_y = 7; - pixel_x = 9 - }, -/obj/item/reagent_containers/food/snacks/plumphelmetbiscuit{ - pixel_y = 10; - pixel_x = 9 - }, -/obj/item/reagent_containers/food/snacks/nugget{ - pixel_y = -12; - pixel_x = 8 - }, -/obj/item/reagent_containers/food/snacks/nugget{ - pixel_y = -3; - pixel_x = 8 - }, -/obj/item/reagent_containers/food/snacks/nugget{ - pixel_y = -6; - pixel_x = 8 - }, -/obj/item/reagent_containers/food/snacks/nugget{ - pixel_y = -9; - pixel_x = 8 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Dq" = ( -/obj/structure/bed/chair/oldsofa/corner{ - dir = 4 - }, -/turf/simulated/floor/carpet/brown, -/area/awaymission/diescraper/indoors/floor9) -"Dr" = ( -/obj/structure/closet/crate, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"Ds" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/structure/table/rack/shelf/steel, -/obj/random/mainttoyloot/nofail, -/obj/item/toy/plushie/green_fox, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"Dt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"Dw" = ( -/mob/living/simple_mob/animal/space/goose{ - faction = "metroids" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"Dx" = ( -/obj/structure/table/hardwoodtable, -/obj/item/paper_bin, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor3) -"Dy" = ( -/obj/machinery/light/poi{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"Dz" = ( -/obj/machinery/button/remote/airlock{ - dir = 4; - pixel_y = -10; - id = "yourefireduwu" - }, -/turf/simulated/wall/wood, -/area/awaymission/diescraper/indoors/floor10) -"DA" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/machinery/reagentgrinder, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"DB" = ( -/obj/structure/table/steel_reinforced, -/obj/structure/window/titanium{ - dir = 4 - }, -/obj/random/maintenance/engineering, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"DC" = ( -/obj/structure/railing/grey{ - dir = 1; - pixel_y = 0 - }, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"DD" = ( -/obj/random/junk, -/obj/item/material/shard/shrapnel, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"DE" = ( -/mob/living/simple_mob/humanoid/merc/ranged/sniper, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"DF" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"DG" = ( -/obj/effect/step_trigger/teleporter/deathfall{ - teleport_x = 55; - teleport_y = 16 - }, -/turf/simulated/sky/moving/south{ - temperature = 277 - }, -/area/awaymission/diescraper/indoors/floor7) -"DH" = ( -/obj/structure/window/reinforced/survival_pod{ - dir = 8 - }, -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/diescraper/indoors/floor112) -"DI" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"DJ" = ( -/obj/structure/bed/chair/comfy/brown, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"DK" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/door/airlock, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"DL" = ( -/obj/structure/table/marble, -/obj/machinery/microwave{ - pixel_x = 2; - pixel_y = 9 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"DM" = ( -/obj/structure/table/reinforced, -/obj/item/retail_scanner, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor7) -"DN" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor7) -"DO" = ( -/obj/structure/bed/chair/office/dark{ - dir = 2 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor3) -"DP" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"DQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"DR" = ( -/turf/simulated/floor/concrete, -/area/awaymission/diescraper/indoors/floor7) -"DT" = ( -/obj/structure/table/steel_reinforced, -/obj/random/ammo, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"DU" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"DV" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/structure/sink/countertop{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/diescraper/indoors/floor7) -"DW" = ( -/obj/item/material/shard/shrapnel, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"DY" = ( -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"DZ" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"Ea" = ( -/obj/structure/sign/directions/stairs_down{ - dir = 10 - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor3) -"Eb" = ( -/obj/effect/floor_decal/industrial/warning/color/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/color/yellow{ - dir = 2 - }, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor2) -"Ec" = ( -/obj/machinery/door/blast/puzzle{ - id = "youup" - }, -/turf/unsimulated/floor/cult, -/area/awaymission/diescraper/indoors/floor11) -"Ed" = ( -/obj/random/vendordrink{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"Ee" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/material/shard{ - icon_state = "splinterslarge" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor4) -"Ef" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Eg" = ( -/obj/machinery/door/airlock/glass_medical{ - req_one_access = null - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"Ei" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor7) -"Ek" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"El" = ( -/obj/machinery/computer{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"Em" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 148; - teleport_y = 219; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs, -/obj/structure/window/plastitanium{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"En" = ( -/obj/item/material/shard/shrapnel, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"Eo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor11) -"Ep" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank/barrel/two, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"Er" = ( -/obj/random/organ, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"Es" = ( -/obj/random/trash, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"Et" = ( -/obj/machinery/gateway{ - dir = 1 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor1) -"Eu" = ( -/obj/structure/table/steel_reinforced, -/obj/random/tool/power, -/obj/item/rcd/advanced/loaded, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"Ev" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor11) -"Ew" = ( -/obj/effect/floor_decal/stairs/dark_stairs, -/obj/machinery/light/poi{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"Ex" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"Ey" = ( -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Ez" = ( -/obj/structure/prop/statue{ - anchored = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor5) -"EA" = ( -/obj/structure/flora/bboulder2, -/turf/unsimulated/floor/outdoors/mud/turfpack/station, -/area/awaymission/diescraper/indoors/floor5) -"EB" = ( -/obj/machinery/light/bigfloorlamp{ - light_range = 10 - }, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"EC" = ( -/obj/machinery/light{ - pixel_y = 0; - dir = 1 - }, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor4) -"ED" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/beaker/vial, -/obj/item/storage/fancy/vials, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"EE" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"EF" = ( -/mob/living/simple_mob/mechanical/hivebot/precusor/chrono, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor2) -"EG" = ( -/obj/structure/table/steel, -/obj/random/toolbox, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"EH" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"EI" = ( -/obj/structure/closet/cabinet, -/obj/random/maintenance/medical, -/obj/random/cash, -/obj/random/cigarettes, -/obj/random/firstaid, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"EJ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/mob/living/simple_mob/animal/passive/mouse/rat, -/mob/living/simple_mob/animal/passive/mouse/rat, -/mob/living/simple_mob/animal/passive/mouse/rat, -/mob/living/simple_mob/animal/passive/mouse/rat, -/mob/living/simple_mob/animal/passive/mouse/rat, -/mob/living/simple_mob/animal/passive/mouse/rat, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"EK" = ( -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"EL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/barricade/cutout, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"EM" = ( -/obj/structure/table/steel_reinforced, -/obj/random/toolbox, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"EN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"EO" = ( -/mob/living/simple_mob/humanoid/pirate/captain, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"EQ" = ( -/obj/item/storage/secure/briefcase/fuelrod, -/turf/unsimulated/floor/tiled/eris/dark/techfloor{ - temperature = 277; - nitrogen = 93.7835; - oxygen = 20.7263 - }, -/area/awaymission/diescraper/indoors/floor7) -"ER" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"ES" = ( -/obj/machinery/washing_machine, -/obj/item/reagent_containers/food/snacks/badrecipe, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor9) -"ET" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor3) -"EU" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/remains, -/obj/item/gun/projectile/revolver{ - pixel_y = 1; - pixel_x = -13 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"EV" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/pill_bottle/blood_regen, -/obj/item/storage/pill_bottle/blood_regen, -/obj/item/storage/pill_bottle/kelotane, -/obj/item/storage/pill_bottle/kelotane, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"EW" = ( -/obj/structure/table/bench/wooden, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"EX" = ( -/obj/structure/table/steel_reinforced, -/obj/item/material/twohanded/sledgehammer, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"EY" = ( -/obj/structure/closet/crate/hydroponics/exotic, -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"EZ" = ( -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/diescraper/indoors/floor10) -"Fa" = ( -/obj/structure/bed/chair/oldsofa/left, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"Fb" = ( -/obj/machinery/atmospherics/unary/heater{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"Fc" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Fd" = ( -/obj/item/toy/balloon, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"Fe" = ( -/obj/item/material/shard/shrapnel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"Ff" = ( -/obj/machinery/floor_light{ - anchored = 1 - }, -/obj/effect/map_effect/perma_light/brighter{ - light_color = "#e060e0"; - light_power = 1; - light_range = 6 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"Fg" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood/alt/tile, -/area/awaymission/diescraper/indoors/floor9) -"Fh" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/chickenfillet{ - pixel_y = 3; - pixel_x = -6 - }, -/obj/item/reagent_containers/food/snacks/chickenfillet{ - pixel_y = -5; - pixel_x = -7 - }, -/obj/item/reagent_containers/food/snacks/chickenfillet{ - pixel_y = -4; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/snacks/chickenfillet{ - pixel_y = 0; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/snacks/plumphelmetbiscuit{ - pixel_y = 3; - pixel_x = 9 - }, -/obj/item/reagent_containers/food/snacks/plumphelmetbiscuit{ - pixel_y = 7; - pixel_x = 9 - }, -/obj/item/reagent_containers/food/snacks/plumphelmetbiscuit{ - pixel_y = 10; - pixel_x = 9 - }, -/obj/item/reagent_containers/food/snacks/nugget{ - pixel_y = -12; - pixel_x = 8 - }, -/obj/item/reagent_containers/food/snacks/nugget{ - pixel_y = -3; - pixel_x = 8 - }, -/obj/item/reagent_containers/food/snacks/nugget{ - pixel_y = -6; - pixel_x = 8 - }, -/obj/item/reagent_containers/food/snacks/nugget{ - pixel_y = -9; - pixel_x = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Fi" = ( -/obj/structure/table/woodentable, -/obj/item/modular_computer/laptop/preset/custom_loadout, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Fj" = ( -/obj/structure/table/standard, -/obj/item/defib_kit/loaded, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Fk" = ( -/obj/structure/window/basic, -/obj/structure/table/rack/wood, -/obj/machinery/light/floortube{ - overlay_color = "#e060e0"; - brightness_color_ns = "#9C439C"; - light_color = "#e060e0"; - brightness_color = "#e060e0"; - name = "tinted light fixture" - }, -/obj/item/clothing/under/clown, -/obj/item/clothing/under/clown/blue, -/obj/item/clothing/under/clown/green, -/obj/item/clothing/under/clown/purple, -/obj/item/clothing/under/clown/yellow, -/obj/item/clothing/mask/gas/clown_hat, -/obj/item/clothing/shoes/clown_shoes, -/obj/item/clothing/shoes/clown_shoes, -/obj/item/clothing/shoes/clown_shoes, -/obj/item/clothing/shoes/clown_shoes, -/obj/item/clothing/shoes/clown_shoes, -/turf/simulated/floor/wood/alt/parquet/turfpack, -/area/awaymission/diescraper/indoors/floor7) -"Fl" = ( -/obj/structure/table/bench/glass, -/obj/structure/flora/pottedplant/bamboo{ - pixel_y = 10 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"Fm" = ( -/obj/structure/table/steel, -/obj/item/stack/material/phoron{ - amount = 5 - }, -/turf/simulated/floor/plating{ - temperature = 277; - icon_state = "dmg4" - }, -/area/awaymission/diescraper/indoors/floor2) -"Fo" = ( -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"Fp" = ( -/obj/structure/inflatable, -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/diescraper/indoors/floor7) -"Fq" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/diescraper/outside) -"Fr" = ( -/obj/machinery/door/airlock/glass{ - locked = 1; - icon_state = "door_locked" - }, -/turf/simulated/shuttle/floor/black, -/area/awaymission/diescraper/indoors/floor1) -"Fs" = ( -/obj/structure/table/marble, -/obj/structure/window/reinforced, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor4) -"Ft" = ( -/obj/structure/table/rack/steel, -/obj/item/towel{ - color = "#3fc0ea"; - name = "light blue towel"; - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/towel{ - color = "#3fc0ea"; - name = "light blue towel"; - pixel_x = 2; - pixel_y = -5 - }, -/obj/item/towel{ - color = "#3fc0ea"; - name = "light blue towel"; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/towel{ - color = "#3fc0ea"; - name = "light blue towel"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Fu" = ( -/mob/living/carbon/human/ai_controlled/greytide{ - icon_state = "rune_teleport" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"Fv" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/unsimulated/floor/tiled/milspec, -/area/awaymission/diescraper/indoors/floor6) -"Fx" = ( -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor6) -"Fy" = ( -/turf/simulated/mineral/ignore_oregen, -/area/awaymission/diescraper/outside) -"Fz" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"FA" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 210; - teleport_y = 98 - }, -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"FB" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/firstaid/regular, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor2) -"FC" = ( -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor5) -"FD" = ( -/obj/structure/table/glass, -/obj/random/pottedplant, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor11) -"FE" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/shuttle/floor/black, -/area/awaymission/diescraper/indoors/floor1) -"FF" = ( -/obj/machinery/power/rtg/fake_z_wires, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor1) -"FG" = ( -/obj/structure/table/woodentable, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"FH" = ( -/obj/structure/closet/cabinet, -/obj/random/maintenance/medical, -/obj/random/cash, -/obj/random/cigarettes, -/obj/random/firstaid, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"FI" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/paper/pamphlet, -/obj/item/paper/pamphlet, -/obj/item/paper/pamphlet, -/obj/item/paper/pamphlet, -/obj/item/paper/pamphlet/violent_video_games, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor1) -"FJ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"FK" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 134; - teleport_y = 216 - }, -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"FL" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"FM" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/burrito_hell, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"FN" = ( -/obj/structure/table/standard, -/obj/structure/sign/poster/custom{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"FO" = ( -/obj/machinery/light/poi{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor10) -"FP" = ( -/obj/machinery/door/airlock, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"FQ" = ( -/obj/machinery/door/airlock/medical{ - req_one_access = null - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"FR" = ( -/obj/machinery/vending/tool{ - emagged = 1; - req_access = null; - req_log_access = null - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"FS" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor2) -"FT" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_range = 10; - light_color = "#b3deff" - }, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor7) -"FU" = ( -/obj/structure/bed/chair, -/obj/effect/decal/remains, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"FV" = ( -/turf/simulated/wall/ironphoron, -/area/awaymission/diescraper/indoors/floor7) -"FW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/fence, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"FX" = ( -/turf/simulated/floor/carpet/gaycarpet, -/area/awaymission/diescraper/indoors/floor9) -"FY" = ( -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/indoors/floor11) -"FZ" = ( -/obj/machinery/light{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"Ga" = ( -/turf/simulated/floor/concrete, -/area/awaymission/diescraper/indoors/floor9) -"Gb" = ( -/obj/structure/table/steel, -/obj/item/clothing/gloves/yellow, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"Gc" = ( -/obj/structure/table/woodentable, -/obj/item/pen/fountain7, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"Gd" = ( -/obj/structure/table/glass, -/obj/random/pottedplant, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor2) -"Ge" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_containers/food/snacks/spagetti, -/obj/item/reagent_containers/food/snacks/spagetti, -/obj/item/reagent_containers/food/snacks/spagetti, -/obj/item/reagent_containers/food/snacks/spagetti, -/obj/item/reagent_containers/food/snacks/spagetti, -/obj/item/reagent_containers/food/snacks/spagetti, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Gf" = ( -/obj/structure/table/reinforced, -/obj/item/gun/energy/medigun, -/obj/effect/decal/cleanable/mucus/mapped, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"Gg" = ( -/obj/structure/table/woodentable, -/mob/living/simple_mob/animal/passive/mouse/rat, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Gh" = ( -/obj/structure/table/bench/wooden, -/obj/item/reagent_containers/food/drinks/bottle/rum, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"Gi" = ( -/obj/random/junk, -/obj/item/stack/material/steel, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"Gj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"Gk" = ( -/obj/item/pizzavoucher, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor1) -"Gm" = ( -/obj/structure/sign/securearea{ - icon_state = "restroom" - }, -/turf/simulated/wall/concrete, -/area/awaymission/diescraper/indoors/floor1) -"Gn" = ( -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"Go" = ( -/obj/structure/bed/chair/oldsofa/left{ - dir = 8 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"Gp" = ( -/obj/item/material/shard/shrapnel, -/obj/item/material/shard/shrapnel, -/obj/item/stack/material/steel, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"Gq" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/item/reagent_containers/food/snacks/badrecipe, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"Gr" = ( -/obj/structure/table/marble, -/obj/machinery/microwave{ - pixel_y = 19 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"Gs" = ( -/obj/machinery/light{ - dir = 2; - layer = 3 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/diescraper/indoors/floor6) -"Gt" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gib1_flesh" - }, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"Gu" = ( -/obj/effect/decal/cleanable/blood, -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"Gv" = ( -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"Gw" = ( -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/diescraper/indoors/floor7) -"Gx" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"Gy" = ( -/obj/structure/bed/chair/sofa/left/purp{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"Gz" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/pill/inaprovaline{ - pixel_y = 11; - pixel_x = 7 - }, -/obj/item/reagent_containers/pill/inaprovaline{ - pixel_y = -3; - pixel_x = 6 - }, -/obj/item/reagent_containers/pill/inaprovaline{ - pixel_y = 0; - pixel_x = 6 - }, -/obj/item/reagent_containers/pill/inaprovaline{ - pixel_y = 1; - pixel_x = 8 - }, -/obj/item/reagent_containers/pill/inaprovaline{ - pixel_y = 8; - pixel_x = 9 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"GA" = ( -/obj/item/stool/padded{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"GB" = ( -/obj/structure/table/gamblingtable, -/obj/item/book/bundle/custom_library/reference/recyclingprocedures, -/obj/item/spellbook/oneuse/fireball, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor6) -"GC" = ( -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/obj/structure/table/woodentable, -/obj/item/paper/pamphlet, -/obj/item/paper/pamphlet, -/obj/item/paper/pamphlet, -/turf/unsimulated/floor/tiled/milspec, -/area/awaymission/diescraper/indoors/floor6) -"GD" = ( -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"GE" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 94; - teleport_y = 198; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"GG" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"GH" = ( -/obj/structure/table/marble, -/obj/structure/sink/countertop{ - pixel_y = 15 - }, -/obj/item/reagent_containers/glass/rag{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/measuring_cup{ - pixel_x = 10; - pixel_y = 8 - }, -/obj/item/reagent_containers/dropper{ - pixel_x = -4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"GI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/trash, -/obj/random/junk, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"GJ" = ( -/turf/unsimulated/wall/cult, -/area/awaymission/diescraper/outside) -"GK" = ( -/obj/structure/inflatable, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"GL" = ( -/obj/machinery/light, -/turf/simulated/floor/concrete, -/area/awaymission/diescraper/outside) -"GM" = ( -/obj/machinery/light, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"GN" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/undies_wardrobe, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"GO" = ( -/obj/machinery/vending/dinnerware{ - dir = 4; - pixel_x = -4 - }, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor4) -"GP" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/pill_bottle/osteodaxon, -/obj/item/storage/pill_bottle/osteodaxon, -/obj/item/storage/pill_bottle/osteodaxon, -/obj/item/storage/pill_bottle/combat, -/obj/item/storage/pill_bottle/corophizine, -/obj/item/storage/pill_bottle/corophizine, -/obj/item/storage/pill_bottle/nutriment, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"GQ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor4) -"GR" = ( -/obj/structure/window/reinforced/survival_pod, -/obj/structure/window/reinforced/survival_pod{ - dir = 4 - }, -/obj/structure/grille/rustic{ - health = 25; - name = "reinforced grille" - }, -/obj/item/material/shard{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor, -/area/awaymission/diescraper/indoors/floor7) -"GS" = ( -/obj/effect/mobblocker{ - dir = 2 - }, -/turf/unsimulated/floor/tiled/eris/dark/techfloor{ - temperature = 277; - nitrogen = 93.7835; - oxygen = 20.7263 - }, -/area/awaymission/diescraper/indoors/floor7) -"GT" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/flashlight/lamp/clown, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/diescraper/indoors/floor10) -"GU" = ( -/turf/simulated/floor/carpet, -/area/awaymission/diescraper/indoors/floor9) -"GV" = ( -/obj/machinery/door/airlock/external, -/turf/simulated/floor/plating{ - temperature = 277 - }, -/area/awaymission/diescraper/indoors/floor7) -"GW" = ( -/obj/structure/salvageable/server, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"GX" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/mobblocker{ - dir = 2 - }, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"GY" = ( -/turf/simulated/wall/wood, -/area/awaymission/diescraper/indoors/floor4) -"GZ" = ( -/obj/machinery/light{ - dir = 4; - layer = 3 - }, -/obj/structure/table/bench/standard, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"Ha" = ( -/turf/simulated/wall/thull, -/area/awaymission/diescraper/indoors/floor7) -"Hb" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"Hc" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"Hd" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "slab2" - }, -/area/awaymission/diescraper/outside) -"He" = ( -/mob/living/simple_mob/clowns/big/c_shift/honkling, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"Hf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor7) -"Hg" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor4) -"Hh" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor11) -"Hi" = ( -/obj/structure/toilet{ - dir = 4 - }, -/mob/living/simple_mob/mechanical/cyber_horror/cat_cyber_horror, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Hj" = ( -/obj/structure/table/bench/standard, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"Hk" = ( -/turf/simulated/floor/reinforced{ - temperature = 277; - outdoors = 1 - }, -/area/awaymission/diescraper/roof) -"Hm" = ( -/obj/machinery/computer/arcade/clawmachine, -/turf/unsimulated/floor/tiled/milspec, -/area/awaymission/diescraper/indoors/floor6) -"Hn" = ( -/obj/effect/simple_portal/coords{ - icon = 'icons/obj/machines/gateway.dmi'; - icon_state = "on"; - dir = 4 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor4second) -"Ho" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"Hp" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor5) -"Hq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"Hr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Ht" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/chem_disp_cartridge/radium, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"Hu" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/food/condiment/mustard{ - pixel_y = 6; - pixel_x = -4 - }, -/obj/item/reagent_containers/food/condiment/ketchup, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor10) -"Hv" = ( -/turf/unsimulated/wall/cult, -/area/awaymission/diescraper/indoors/floor2) -"Hw" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 214; - teleport_y = 219 - }, -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"Hx" = ( -/obj/structure/table/standard, -/obj/item/surgical/hemostat, -/obj/item/surgical/cautery, -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"Hy" = ( -/obj/machinery/telecomms/receiver, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/awaymission/diescraper/indoors/floor10) -"Hz" = ( -/obj/structure/table/bench/standard, -/turf/simulated/floor/carpet/gaycarpet, -/area/awaymission/diescraper/indoors/floor9) -"HA" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor11) -"HB" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"HC" = ( -/obj/structure/table/woodentable, -/turf/unsimulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor9) -"HD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/woodentable, -/obj/item/clothing/mask/smokable/cigarette/cigar, -/turf/simulated/floor, -/area/awaymission/diescraper/indoors/floor3) -"HE" = ( -/obj/effect/floor_decal/stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"HF" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor2) -"HG" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/obj/random/medical, -/obj/structure/closet/secure_closet/medical_wall/pills{ - pixel_x = 32; - locked = 0 - }, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"HH" = ( -/obj/structure/table/rack, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor7) -"HI" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"HJ" = ( -/obj/structure/prop/statue, -/turf/simulated/floor/water/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"HK" = ( -/obj/structure/table/steel_reinforced, -/obj/random/grenade/box, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"HL" = ( -/obj/structure/table/bench/sifwooden/padded, -/turf/simulated/floor/carpet/brown, -/area/awaymission/diescraper/indoors/floor9) -"HM" = ( -/obj/structure/bed/chair/sofa/purp{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"HN" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_range = 10; - light_color = "#b3deff" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"HO" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"HP" = ( -/obj/machinery/light/floortube{ - dir = 8 - }, -/mob/living/simple_mob/animal/space/bats{ - faction = "metroids" - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"HQ" = ( -/obj/structure/table/marble, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/reagent_containers/food/snacks/ghostmuffin/poison, -/obj/item/reagent_containers/food/snacks/ghostmuffin/berry{ - pixel_y = -2; - pixel_x = -5 - }, -/obj/item/reagent_containers/food/snacks/ghostmuffin/berry{ - pixel_y = 2; - pixel_x = 6 - }, -/obj/item/reagent_containers/food/snacks/ghostmuffin/berry{ - pixel_y = -5; - pixel_x = 6 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"HR" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light/floortube{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"HS" = ( -/turf/simulated/floor/wood/alt/parquet/turfpack, -/area/awaymission/diescraper/indoors/floor7) -"HT" = ( -/obj/structure/sink/kitchen{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"HU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"HV" = ( -/obj/structure/table/woodentable, -/obj/machinery/recharger, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"HW" = ( -/obj/effect/simple_portal/linked{ - portal_id = 6666; - icon = 'icons/obj/machines/gateway.dmi'; - icon_state = "oncenter" - }, -/obj/effect/map_effect/perma_light/gateway, -/obj/effect/simple_portal/coords{ - icon = 'icons/obj/machines/gateway.dmi'; - icon_state = "oncenter"; - density = 0 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor2) -"HX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"HY" = ( -/obj/structure/table/steel, -/obj/item/clothing/head/welding, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor6) -"HZ" = ( -/obj/item/storage/mrebag/menu3, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"Ia" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 94; - teleport_y = 141; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"Ib" = ( -/obj/structure/bookcase, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"Ic" = ( -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"If" = ( -/obj/structure/table/standard, -/obj/structure/closet/secure_closet/medical_wall{ - pixel_y = 32; - locked = 0 - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Ih" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor4second) -"Ii" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/reagent_containers/food/snacks/chips{ - pixel_y = -3; - pixel_x = 6 - }, -/obj/item/reagent_containers/food/snacks/chips{ - pixel_y = -3; - pixel_x = -5 - }, -/obj/item/reagent_containers/food/snacks/chips{ - pixel_y = -3; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/snacks/chips{ - pixel_y = -3 - }, -/obj/item/reagent_containers/food/snacks/chips{ - pixel_y = -3; - pixel_x = 3 - }, -/obj/item/reagent_containers/food/snacks/unajerky{ - pixel_y = 12; - pixel_x = 3 - }, -/obj/item/reagent_containers/food/snacks/unajerky{ - pixel_y = 12; - pixel_x = -4 - }, -/obj/item/reagent_containers/food/snacks/unajerky{ - pixel_y = 15; - pixel_x = -2 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"Ij" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/cash_register{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Ik" = ( -/obj/machinery/light/poi, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor10) -"Il" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor9) -"Im" = ( -/obj/structure/closet/crate/secure/large, -/obj/item/clothing/under/syndicate/tacticool, -/obj/item/clothing/under/syndicate/tacticool, -/obj/item/clothing/under/syndicate/tacticool, -/obj/item/clothing/suit/storage/vest/tactical, -/obj/item/clothing/suit/storage/vest/tactical, -/obj/item/clothing/suit/storage/vest/tactical, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 295.15 - }, -/area/awaymission/diescraper/indoors/floor10) -"In" = ( -/turf/simulated/sky/moving/south{ - temperature = 277 - }, -/area/awaymission/diescraper/sky) -"Io" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"Ip" = ( -/obj/structure/table/hardwoodtable, -/obj/structure/table/hardwoodtable, -/obj/random/pizzabox, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"Iq" = ( -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"Ir" = ( -/obj/machinery/power/apc/alarms_hidden{ - dir = 4; - pixel_x = 20 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"Is" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/mask/gas/clear, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"It" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_range = 10; - light_color = "#b3deff" - }, -/obj/effect/decal/remains/mummy2, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"Iu" = ( -/obj/structure/table/woodentable, -/obj/item/flashlight/lamp/green, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"Iv" = ( -/obj/item/material/shard/shrapnel, -/obj/item/material/shard/shrapnel, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"Iw" = ( -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor11) -"Ix" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/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/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"Iy" = ( -/mob/living/simple_mob/vore/aggressive/panther, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor5) -"Iz" = ( -/obj/effect/step_trigger/teleporter/deathfall{ - teleport_x = 55; - teleport_y = 16 - }, -/obj/effect/step_trigger/teleporter/deathfall{ - teleport_x = 55; - teleport_y = 16 - }, -/turf/simulated/sky/south{ - temperature = 295.15 - }, -/area/awaymission/diescraper/sky) -"IB" = ( -/obj/structure/table/standard, -/obj/structure/sink/countertop{ - pixel_y = 3; - dir = 8; - pixel_x = 6 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"IC" = ( -/turf/simulated/floor/carpet/brown, -/area/awaymission/diescraper/indoors/floor9) -"ID" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/mummy2, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"IE" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"IF" = ( -/obj/structure/bed/chair/sofa/left/blue{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"IG" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor3) -"IH" = ( -/obj/structure/railing, -/obj/structure/table/hardwoodtable, -/obj/item/multitool, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"II" = ( -/obj/structure/medical_stand/anesthetic, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"IJ" = ( -/turf/simulated/floor/lava, -/area/awaymission/diescraper/indoors/floor11) -"IK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor8) -"IL" = ( -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor11) -"IM" = ( -/obj/structure/barricade/cutout/gondola, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"IN" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"IO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor8) -"IP" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/wood/alt/parquet/turfpack, -/area/awaymission/diescraper/indoors/floor7) -"IQ" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"IR" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/green/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"IS" = ( -/obj/effect/floor_decal/corner/white/border/shifted, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/diescraper/outside) -"IT" = ( -/obj/machinery/telecomms/relay, -/turf/simulated/floor/reinforced, -/area/awaymission/diescraper/indoors/floor112) -"IU" = ( -/obj/random/vendorfood, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"IV" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/diescraper/indoors/floor7) -"IW" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor7) -"IX" = ( -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"IY" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/toolbox, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"IZ" = ( -/obj/effect/wingrille_spawn, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"Ja" = ( -/obj/item/modular_computer/console/preset/civilian, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"Jb" = ( -/obj/structure/window/reinforced/tinted/frosted{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor9) -"Jc" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"Jd" = ( -/obj/effect/map_effect/interval/sound_emitter/clownsteps, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"Je" = ( -/obj/machinery/biogenerator, -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"Jf" = ( -/obj/effect/floor_decal/stairs/dark_stairs, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"Jg" = ( -/mob/living/simple_mob/humanoid/pirate/shield/machete/armored, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"Jh" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/diescraper/indoors/floor6) -"Ji" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"Jj" = ( -/obj/effect/floor_decal/corner/paleblue/border/shifted, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/diescraper/outside) -"Jk" = ( -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/obj/structure/table/marble, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"Jl" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Jm" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 24 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/barricade/cutout, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"Jn" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"Jp" = ( -/obj/structure/bed/chair/oldsofa{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"Jq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/mob/living/simple_mob/vore/aggressive/rat, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"Jr" = ( -/mob/living/simple_mob/slime/feral, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"Ju" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Jv" = ( -/obj/structure/table/hardwoodtable, -/obj/item/modular_computer/laptop/preset, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"Jw" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor5) -"Jx" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/fruitspawner/icechili, -/obj/fruitspawner/icechili, -/obj/fruitspawner/icechili, -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"Jy" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Jz" = ( -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"JB" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/green/border, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"JC" = ( -/obj/machinery/door/window/eastright{ - pixel_y = 0; - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"JD" = ( -/obj/structure/table/standard, -/obj/item/surgical/bonesetter, -/obj/item/surgical/bonegel, -/obj/item/surgical/bioregen, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"JE" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"JF" = ( -/turf/simulated/floor/concrete, -/area/awaymission/diescraper/indoors/floor6) -"JG" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"JH" = ( -/obj/item/stack/cable_coil/green, -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor5) -"JI" = ( -/obj/structure/table/standard, -/obj/random/medical, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"JJ" = ( -/obj/machinery/appliance/cooker/oven, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"JK" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"JL" = ( -/obj/effect/floor_decal/rust, -/obj/structure/table/rack/shelf/steel, -/obj/random/tool, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"JM" = ( -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor5) -"JN" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/pill_bottle/bicaridine, -/obj/item/storage/pill_bottle/bicaridine, -/obj/item/storage/pill_bottle/myelamine, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"JO" = ( -/obj/effect/floor_decal/rust, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"JQ" = ( -/obj/structure/table/woodentable, -/obj/random/plushie, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"JR" = ( -/obj/structure/table/standard, -/obj/item/surgical/scalpel, -/obj/item/surgical/circular_saw{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"JS" = ( -/obj/effect/overlay/snow/floor, -/obj/item/tape/engineering, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"JT" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/gun/launcher/pneumatic, -/obj/item/tank/oxygen/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"JU" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/unsimulated/floor/tiled/freezer, -/area/awaymission/diescraper/indoors/floor8) -"JW" = ( -/obj/structure/table/marble{ - color = "grey" - }, -/obj/item/cell/giga, -/obj/item/cell/giga, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"JX" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"JY" = ( -/mob/living/simple_mob/vore/alienanimals/skeleton/alt, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"JZ" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor6) -"Ka" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/salvageable/server, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"Kb" = ( -/obj/machinery/floor_light{ - anchored = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"Kc" = ( -/obj/structure/table/rack/shelf/steel, -/obj/machinery/light{ - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/cans/lemon_cola{ - pixel_y = 12; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/drinks/cans/lemon_cola{ - pixel_y = 12; - pixel_x = -9 - }, -/obj/item/reagent_containers/food/drinks/cans/lemon_cola{ - pixel_y = 12; - pixel_x = 6 - }, -/obj/item/reagent_containers/food/drinks/cans/lemon_cola{ - pixel_y = 12; - pixel_x = 2 - }, -/obj/item/reagent_containers/food/drinks/cans/straw_cola{ - pixel_x = 7 - }, -/obj/item/reagent_containers/food/drinks/cans/straw_cola{ - pixel_x = -9 - }, -/obj/item/reagent_containers/food/drinks/cans/straw_cola{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/drinks/cans/straw_cola{ - pixel_x = 2 - }, -/obj/structure/window/basic{ - dir = 2 - }, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor7) -"Kd" = ( -/turf/unsimulated/wall/cult, -/area/awaymission/diescraper/indoors/floor4second) -"Ke" = ( -/obj/structure/table/rack/shelf/wood, -/obj/random/projectile/scrapped_laser, -/obj/random/awayloot/looseloot, -/turf/simulated/floor/wood/alt/panel/broken, -/area/awaymission/diescraper/indoors/floor6) -"Kf" = ( -/obj/structure/bed/chair/wood{ - dir = 8; - pixel_y = 0 - }, -/mob/living/simple_mob/humanoid/pirate/mate/ranged/shotgun, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"Kg" = ( -/obj/effect/decal/remains, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/diescraper/outside) -"Kh" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"Ki" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"Kj" = ( -/obj/item/melee/umbrella/random, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor6) -"Kk" = ( -/obj/item/clothing/under/pizzaguy, -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor1) -"Kl" = ( -/obj/structure/table/woodentable, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Km" = ( -/obj/structure/bed/chair/sofa/right/blue{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"Kn" = ( -/obj/structure/table/woodentable, -/obj/item/paper/pamphlet, -/obj/item/paper/pamphlet, -/obj/item/paper/pamphlet, -/turf/unsimulated/floor/tiled/milspec, -/area/awaymission/diescraper/indoors/floor6) -"Ko" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"Kp" = ( -/obj/item/fuel_assembly/phoron, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"Kq" = ( -/obj/random/trash, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"Ks" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/diescraper/indoors/floor6) -"Kt" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"Ku" = ( -/obj/structure/closet/crate/secure/large, -/obj/effect/floor_decal/rust, -/obj/item/ammo_magazine/m9mm/compact, -/obj/item/ammo_magazine/m9mm/compact, -/obj/item/ammo_magazine/m9mm/compact, -/obj/item/gun/projectile/pistol, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 295.15 - }, -/area/awaymission/diescraper/indoors/floor10) -"Kv" = ( -/obj/item/tape/engineering, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"Kw" = ( -/obj/machinery/power/solar, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"Kx" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/sink/kitchen{ - dir = 8; - pixel_y = 0; - pixel_x = -12 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Ky" = ( -/obj/item/digestion_remains/skull/teshari, -/obj/effect/decal/cleanable/filth, -/mob/living/simple_mob/animal/passive/mouse/rat, -/mob/living/simple_mob/animal/passive/mouse/rat, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"Kz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"KA" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"KB" = ( -/obj/machinery/shower{ - pixel_y = 0; - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor9) -"KC" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/item/robot_parts/head, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor4) -"KE" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor1) -"KF" = ( -/turf/simulated/wall/concrete, -/area/awaymission/diescraper/indoors/floor4) -"KG" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"KH" = ( -/obj/structure/table/steel_reinforced, -/obj/item/modular_computer/laptop/preset/custom_loadout/elite, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"KI" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/sink/kitchen{ - pixel_y = 21 - }, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"KJ" = ( -/obj/machinery/computer/arcade/clawmachine, -/turf/simulated/floor/carpet/retro, -/area/awaymission/diescraper/indoors/floor9) -"KK" = ( -/obj/structure/table/rack/wood, -/obj/item/clothing/shoes/sandals_elegant{ - pixel_y = -9; - pixel_x = -6 - }, -/obj/item/clothing/shoes/skater{ - pixel_y = -8 - }, -/obj/item/clothing/shoes/sneakersblue{ - pixel_y = 4; - pixel_x = 4 - }, -/obj/item/clothing/shoes/sneakerspurple{ - pixel_y = 4; - pixel_x = -2 - }, -/obj/item/clothing/shoes/sneakersred{ - pixel_x = -9; - pixel_y = 4 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack, -/area/awaymission/diescraper/indoors/floor7) -"KL" = ( -/mob/living/simple_mob/clowns/big/c_shift/punished, -/obj/machinery/light{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/carpet/happy, -/area/awaymission/diescraper/indoors/floor7) -"KM" = ( -/turf/unsimulated/floor/tiled/eris/dark/techfloor{ - temperature = 277; - nitrogen = 93.7835; - oxygen = 20.7263 - }, -/area/awaymission/diescraper/indoors/floor7) -"KN" = ( -/obj/structure/closet/crate/secure/large, -/obj/item/reagent_containers/food/drinks/cans/thirteenloko, -/obj/item/reagent_containers/food/drinks/cans/space_up, -/obj/item/reagent_containers/food/drinks/cans/sodawater, -/obj/item/reagent_containers/food/drinks/cans/grape_juice, -/obj/item/reagent_containers/food/drinks/cans/dr_gibb_diet, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"KO" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"KP" = ( -/obj/item/stack/cable_coil/green{ - amount = 2 - }, -/obj/effect/map_effect/perma_light, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"KQ" = ( -/obj/structure/table/standard, -/obj/random/energy, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"KR" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/light/floortube, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor3) -"KS" = ( -/obj/structure/bed/chair/office/dark{ - dir = 2 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"KT" = ( -/obj/structure/flora/tree/bigtree, -/turf/unsimulated/floor/outdoors/mud/turfpack/station, -/area/awaymission/diescraper/indoors/floor5) -"KU" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"KV" = ( -/obj/structure/table/steel_reinforced, -/obj/random/energy/highend, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"KW" = ( -/turf/simulated/floor/tiled/steel{ - icon_state = "milspec-damaged4" - }, -/area/awaymission/diescraper/indoors/floor4) -"KX" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"KY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/barricade/cutout, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"KZ" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"La" = ( -/obj/structure/bed/chair/shuttle, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor11) -"Lb" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/barricade/cutout, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Lc" = ( -/obj/structure/table/hardwoodtable, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"Ld" = ( -/obj/structure/salvageable/console_broken_os{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Le" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/green/border, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/wall{ - dir = 1; - pixel_y = -35 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"Lf" = ( -/obj/machinery/gateway{ - density = 0; - dir = 6 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor1) -"Lg" = ( -/obj/machinery/light{ - pixel_y = 0; - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"Lh" = ( -/obj/structure/table/hardwoodtable, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"Li" = ( -/obj/structure/salvageable/machine, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"Lj" = ( -/obj/structure/bonfire, -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor5) -"Lk" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor2) -"Ll" = ( -/obj/machinery/light/small, -/turf/unsimulated/floor{ - icon_state = "elevatorshaft" - }, -/area/awaymission/diescraper/indoors/floor8) -"Lm" = ( -/obj/structure/closet/grave, -/obj/item/material/gravemarker, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"Ln" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"Lo" = ( -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"Lp" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/light{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Lq" = ( -/obj/machinery/power/solar, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"Lr" = ( -/obj/machinery/appliance/cooker/grill, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor4) -"Ls" = ( -/obj/structure/closet/crate/secure/large, -/obj/item/storage/backpack/parachute, -/obj/item/storage/backpack/parachute, -/obj/item/storage/backpack/parachute, -/obj/item/storage/backpack/parachute, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"Lt" = ( -/obj/machinery/light/floortube{ - dir = 1 - }, -/turf/simulated/floor/concrete{ - temperature = 225.15; - outdoors = 1 - }, -/area/awaymission/diescraper/roof) -"Lu" = ( -/turf/simulated/floor/outdoors/grass/heavy{ - temperature = 293.15 - }, -/area/awaymission/diescraper/outside) -"Lv" = ( -/obj/machinery/suit_cycler/pilot, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"Lw" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"Lx" = ( -/turf/simulated/floor/outdoors/dirt/turfpack/station, -/area/awaymission/diescraper/outside) -"Ly" = ( -/turf/simulated/floor/cult, -/area/awaymission/diescraper/outside) -"Lz" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/pandenata{ - pixel_y = 11; - pixel_x = 1 - }, -/obj/item/reagent_containers/food/snacks/pandenata{ - pixel_y = 0; - pixel_x = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"LA" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 2 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"LB" = ( -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"LC" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"LD" = ( -/obj/effect/floor_decal/stairs{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"LE" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/validsalad{ - pixel_y = 18 - }, -/obj/item/reagent_containers/food/snacks/validsalad{ - pixel_y = 13 - }, -/obj/item/reagent_containers/food/snacks/boiledrice{ - pixel_y = -4 - }, -/obj/item/reagent_containers/food/snacks/boiledrice{ - pixel_y = 4 - }, -/obj/item/reagent_containers/food/snacks/boiledrice{ - pixel_y = 0 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor4) -"LF" = ( -/obj/machinery/photocopier/faxmachine, -/obj/structure/table/standard, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"LG" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"LH" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/ammo_all, -/obj/random/ammo_all, -/obj/item/storage/mre/random, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"LI" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"LJ" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"LK" = ( -/obj/structure/table/rack/shelf/wood, -/obj/random/toy, -/obj/random/toy, -/obj/random/plushie, -/obj/random/plushie, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor1) -"LL" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor7) -"LM" = ( -/obj/machinery/power/solar_control{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor11) -"LN" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/item/tape/medical, -/obj/structure/barricade, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"LO" = ( -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"LP" = ( -/obj/structure/fence, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"LQ" = ( -/obj/structure/table/rack/wood, -/obj/item/clothing/shoes/hitops/orange{ - pixel_y = -8; - pixel_x = -8 - }, -/obj/item/clothing/shoes/hitops/purple{ - pixel_y = -8 - }, -/obj/item/clothing/shoes/hitops/red{ - pixel_y = -8; - pixel_x = 4 - }, -/obj/item/clothing/shoes/black/cuffs{ - pixel_y = 4; - pixel_x = -10 - }, -/obj/item/clothing/shoes/black/cuffs/blue{ - pixel_y = 4; - pixel_x = -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 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack, -/area/awaymission/diescraper/indoors/floor7) -"LR" = ( -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"LS" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/pill/osteodaxon{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/reagent_containers/pill/osteodaxon{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_containers/pill/osteodaxon{ - pixel_x = 6; - pixel_y = 5 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"LT" = ( -/obj/structure/flora/pottedplant/subterranean, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"LU" = ( -/obj/random/pottedplant, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"LV" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/pill_bottle/phenethylamine, -/obj/item/storage/pill_bottle/phenethylamine, -/obj/item/storage/pill_bottle/phenethylamine, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"LX" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"LY" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 93; - teleport_y = 80 - }, -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"LZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"Ma" = ( -/turf/unsimulated/wall/cult, -/area/awaymission/diescraper/indoors/floor5) -"Mb" = ( -/obj/structure/table/steel, -/obj/item/paper_bin{ - pixel_y = -6 - }, -/obj/item/camera{ - name = "Autopsy Camera"; - pixel_x = -2; - pixel_y = 7 - }, -/obj/item/pen/red{ - pixel_x = -1; - pixel_y = -9 - }, -/obj/item/pen/blue{ - pixel_x = 3; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor8) -"Mc" = ( -/mob/living/simple_mob/mechanical/cyber_horror/ling_cyber_horror, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Md" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor2) -"Me" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/tamales{ - pixel_x = 1; - pixel_y = 18 - }, -/obj/item/reagent_containers/food/snacks/tamales{ - pixel_x = 1; - pixel_y = 11 - }, -/obj/item/reagent_containers/food/snacks/enchiladas{ - pixel_y = -4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"Mf" = ( -/turf/simulated/floor/concrete, -/area/awaymission/diescraper/indoors/floor10) -"Mg" = ( -/turf/unsimulated/wall/seperator, -/area/awaymission/diescraper/sky) -"Mh" = ( -/obj/structure/table/marble, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/reagent_containers/food/snacks/waffles, -/obj/item/reagent_containers/food/snacks/waffles, -/obj/item/reagent_containers/food/snacks/waffles, -/obj/item/reagent_containers/food/snacks/waffles{ - pixel_y = -3 - }, -/obj/item/reagent_containers/food/snacks/waffles{ - pixel_y = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"Mi" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Mj" = ( -/obj/structure/table/woodentable, -/obj/item/spacecasinocash, -/obj/item/spacecasinocash, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"Mk" = ( -/obj/machinery/door/window/brigdoor/eastright{ - req_access = list(886) - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"Ml" = ( -/turf/simulated/floor/water/turfpack/station, -/area/awaymission/diescraper/indoors/floor5) -"Mm" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/fruitspawner/lettuce, -/obj/fruitspawner/lettuce, -/obj/fruitspawner/lettuce, -/obj/structure/closet/crate/bin, -/obj/item/clothing/shoes/dress, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"Mn" = ( -/obj/machinery/telecomms/relay/preset/ruskie{ - on = 0 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/awaymission/diescraper/indoors/floor10) -"Mo" = ( -/obj/structure/railing/grey, -/obj/structure/railing/grey{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"Mp" = ( -/obj/item/rig_module/device/paperdispenser, -/obj/structure/table/standard, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"Mq" = ( -/obj/structure/table/standard, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Mr" = ( -/obj/structure/bed/chair/comfy/lime{ - dir = 8 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"Ms" = ( -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"Mt" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"Mu" = ( -/obj/structure/window/reinforced/survival_pod{ - dir = 1 - }, -/obj/structure/window/reinforced/survival_pod, -/obj/structure/window/reinforced/survival_pod{ - dir = 4 - }, -/obj/structure/grille/rustic{ - health = 25; - name = "reinforced grille" - }, -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor, -/area/awaymission/diescraper/indoors/floor7) -"Mw" = ( -/obj/item/bodybag, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"Mx" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor2) -"My" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/diescraper/indoors/floor112) -"Mz" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack, -/area/awaymission/diescraper/indoors/floor7) -"MA" = ( -/obj/structure/salvageable/shuttle_console, -/turf/simulated/floor/reinforced, -/area/awaymission/diescraper/indoors/floor112) -"MB" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor3) -"MC" = ( -/obj/structure/table/steel_reinforced, -/obj/item/multitool, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor10) -"MD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/woodentable, -/obj/item/organ/internal/augment/armmounted/shoulder/surge, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"ME" = ( -/obj/machinery/power/apc{ - dir = 8; - pixel_x = -26 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"MF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"MG" = ( -/obj/machinery/gateway{ - density = 0; - dir = 10 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor2) -"MH" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"MI" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor1) -"MJ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/carpet/brown, -/area/awaymission/diescraper/indoors/floor9) -"MK" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/barricade/cutout, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"ML" = ( -/obj/structure/table/rack/shelf/wood, -/obj/random/maintenance/clean, -/turf/simulated/floor/wood/alt/panel/broken, -/area/awaymission/diescraper/indoors/floor6) -"MM" = ( -/obj/structure/inflatable/door, -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/diescraper/indoors/floor7) -"MN" = ( -/mob/living/simple_mob/clowns/big/c_shift/punished, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/carpet/happy, -/area/awaymission/diescraper/indoors/floor7) -"MO" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"MP" = ( -/obj/structure/table/steel_reinforced, -/obj/item/gun/magnetic/railgun, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"MQ" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 2 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"MR" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/fluff/fidgetspinner, -/obj/item/fluff/fidgetspinner/red, -/obj/item/fluff/fidgetspinner/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"MS" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank/barrel/two, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"MT" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor8) -"MU" = ( -/obj/structure/table/steel_reinforced, -/obj/item/rig/industrial/equipped, -/obj/item/gun/launcher/spikethrower, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"MV" = ( -/obj/structure/salvageable/server_os, -/turf/simulated/floor/reinforced, -/area/awaymission/diescraper/indoors/floor112) -"MW" = ( -/obj/item/material/minihoe, -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"MX" = ( -/obj/structure/table/rack/shelf/wood, -/obj/random/maintenance/clean, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"MY" = ( -/obj/machinery/gateway{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor1) -"MZ" = ( -/mob/living/simple_mob/tomato, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"Na" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"Nb" = ( -/obj/machinery/light{ - dir = 8; - pixel_y = 0 - }, -/obj/structure/table/standard, -/obj/machinery/computer/med_data/laptop, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Nc" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/door/window/eastright{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"Nd" = ( -/obj/machinery/light/floortube, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"Ne" = ( -/obj/structure/low_wall/bay/white, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"Nf" = ( -/obj/structure/reagent_dispensers/fueltank/high, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"Ng" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/appliance/mixer/cereal, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"Nh" = ( -/mob/living/simple_mob/mechanical/cyber_horror, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Ni" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/beaker/vial/alkysine, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Nj" = ( -/obj/structure/girder, -/turf/simulated/floor/wood/alt/panel/broken, -/area/awaymission/diescraper/indoors/floor7) -"Nk" = ( -/obj/machinery/light{ - dir = 2; - pixel_y = 0 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"Nl" = ( -/obj/structure/table/gamblingtable, -/obj/item/book/bundle/custom_library/nonfiction/viabilityofcorporategov, -/obj/item/book/bundle/custom_library/fiction/silence, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor6) -"Nm" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 171; - teleport_y = 141; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"Nn" = ( -/obj/machinery/appliance/cooker/fryer, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"No" = ( -/obj/structure/table/steel_reinforced, -/obj/item/modular_computer/tablet/preset/custom_loadout/hybrid, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"Np" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor9) -"Nq" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"Nr" = ( -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/drinks/bluespace_coffee, -/turf/unsimulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor6) -"Ns" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/flashlight/lamp/green{ - pixel_y = 5 - }, -/obj/item/flashlight/lamp/green, -/obj/item/flashlight/lamp/green{ - pixel_y = -5 - }, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/diescraper/indoors/floor10) -"Nt" = ( -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"Nu" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"Nv" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/toy/desk/officetoy, -/obj/item/toy/partypopper, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"Nw" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 32; - pixel_y = -4 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"Nx" = ( -/obj/machinery/hyperpad/centre{ - map_pad_id = "skibidi"; - map_pad_link_id = "rizz" - }, -/turf/simulated/shuttle/floor/black, -/area/awaymission/diescraper/indoors/floor2) -"Ny" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"Nz" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/item/storage/box/buns{ - pixel_y = -3 - }, -/obj/item/storage/box/buns{ - pixel_y = 10 - }, -/obj/item/storage/box/buns, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"NA" = ( -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor7) -"NB" = ( -/obj/structure/table/rack/shelf/steel, -/obj/structure/window/basic{ - dir = 2 - }, -/obj/item/reagent_containers/food/snacks/candy/gummy, -/obj/item/reagent_containers/food/snacks/candy/gummy, -/obj/item/reagent_containers/food/snacks/candy/gummy, -/obj/item/reagent_containers/food/snacks/candy/donor, -/obj/item/reagent_containers/food/snacks/candy/proteinbar, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor7) -"NC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"ND" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor1) -"NE" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/tiled/freezer/cold, -/area/awaymission/diescraper/indoors/floor10) -"NF" = ( -/obj/structure/prop/machine/nt_biocan, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"NG" = ( -/obj/structure/table/woodentable, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/paper_bin, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"NH" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"NI" = ( -/obj/effect/floor_decal/rust, -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"NK" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/orangedouble, -/turf/simulated/floor/carpet/purple, -/area/awaymission/diescraper/indoors/floor9) -"NL" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/reagent_containers/food/snacks/sosjerky{ - pixel_y = -3; - pixel_x = 10 - }, -/obj/item/reagent_containers/food/snacks/sosjerky{ - pixel_y = -3; - pixel_x = -7 - }, -/obj/item/reagent_containers/food/snacks/sosjerky{ - pixel_y = -3; - pixel_x = 3 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"NM" = ( -/obj/structure/sign/directions/stairs_up{ - dir = 9 - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor2) -"NN" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/firstaid/adv, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor2) -"NO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"NP" = ( -/obj/structure/barricade/cutout/cultist, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"NQ" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/firstaid/regular, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor2) -"NR" = ( -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"NS" = ( -/obj/item/computer_hardware/network_card, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"NT" = ( -/obj/machinery/door/blast/puzzle{ - id = "gonna" - }, -/turf/unsimulated/floor/cult, -/area/awaymission/diescraper/indoors/floor11) -"NU" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor9) -"NV" = ( -/obj/structure/flora/pottedplant/decorative, -/mob/living/simple_mob/slime/feral, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"NX" = ( -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"NY" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"NZ" = ( -/obj/structure/table/steel_reinforced, -/obj/item/modular_computer/laptop/preset/custom_loadout/hybrid, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"Oa" = ( -/obj/machinery/optable, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Ob" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"Oc" = ( -/obj/structure/table/hardwoodtable, -/obj/item/folder, -/obj/item/folder/white, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"Od" = ( -/obj/structure/table/woodentable, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/recharger, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"Oe" = ( -/obj/machinery/light, -/obj/random/organ, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"Of" = ( -/obj/structure/table/reinforced, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"Og" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/drinks/bottle/jager{ - pixel_y = 11; - pixel_x = 8 - }, -/obj/item/reagent_containers/food/drinks/bottle/gin{ - pixel_y = 3; - pixel_x = 13 - }, -/obj/item/reagent_containers/food/drinks/bottle/cognac{ - pixel_y = 7; - pixel_x = -8 - }, -/obj/item/reagent_containers/food/drinks/bottle/patron{ - pixel_y = 11; - pixel_x = 2 - }, -/obj/item/reagent_containers/food/drinks/bottle/bluecuracao{ - pixel_y = 1; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/drinks/bottle/whitewine{ - pixel_y = 2; - pixel_x = 6 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"Oh" = ( -/obj/structure/table/woodentable, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/melee/baton/cattleprod, -/obj/item/cell/hyper, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"Oi" = ( -/obj/item/fuel_assembly/blitz/shielded, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/unsimulated/floor/tiled/eris/dark/techfloor{ - temperature = 277; - nitrogen = 93.7835; - oxygen = 20.7263 - }, -/area/awaymission/diescraper/indoors/floor7) -"Oj" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"Ok" = ( -/obj/mecha/working/ripley/deathripley, -/obj/machinery/mech_recharger, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"Ol" = ( -/obj/structure/barricade/cutout, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"Om" = ( -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"On" = ( -/obj/effect/simple_portal/coords{ - icon = 'icons/obj/machines/gateway.dmi'; - icon_state = "on"; - dir = 1 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor4second) -"Oo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/barricade/cutout, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"Op" = ( -/obj/item/material/shard, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"Oq" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_color = "#f58d42" - }, -/turf/unsimulated/floor/cult, -/area/awaymission/diescraper/indoors/floor11) -"Or" = ( -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"Os" = ( -/obj/structure/closet/crate, -/obj/random/awayloot/nofail, -/obj/random/awayloot/nofail, -/obj/random/awayloot/nofail, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"Ot" = ( -/obj/structure/medical_stand/anesthetic, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"Ou" = ( -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"Ov" = ( -/obj/structure/table/sifwooden_reinforced, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"Ow" = ( -/mob/living/simple_mob/vore/aggressive/rat, -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor10) -"Ox" = ( -/obj/structure/table/standard, -/obj/item/defib_kit/loaded, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Oy" = ( -/obj/structure/safe/floor, -/obj/item/gun/projectile/gyropistol, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/mob/living/simple_mob/humanoid/merc/ranged/space/shotgun, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor7) -"Oz" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"OA" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"OB" = ( -/obj/machinery/oxygen_pump/mobile/stabilizer, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"OC" = ( -/obj/effect/wingrille_spawn, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"OD" = ( -/obj/structure/sign/directions/stairs_down{ - dir = 5 - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor6) -"OE" = ( -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"OF" = ( -/obj/structure/closet/lasertag/blue, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"OG" = ( -/obj/structure/flora/ausbushes/reedbush, -/turf/simulated/floor/water/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"OH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor5) -"OJ" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"OK" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"OL" = ( -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"OM" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastleft{ - dir = 8 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/toxin, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"ON" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"OO" = ( -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"OP" = ( -/obj/structure/bed/chair/oldsofa, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"OQ" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4 - }, -/turf/simulated/wall/thull, -/area/awaymission/diescraper/indoors/floor7) -"OR" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"OS" = ( -/turf/simulated/floor/carpet/retro, -/area/awaymission/diescraper/indoors/floor9) -"OT" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"OU" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"OV" = ( -/obj/machinery/computer{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"OW" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"OX" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"OY" = ( -/turf/simulated/floor/concrete, -/area/awaymission/diescraper/indoors/floor2) -"OZ" = ( -/obj/random/tool, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor1) -"Pa" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"Pb" = ( -/obj/structure/table/standard, -/obj/item/modular_computer/laptop/preset, -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"Pc" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/random/awayloot/looseloot, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor11) -"Pd" = ( -/obj/structure/closet/cabinet, -/obj/random/maintenance/medical, -/obj/random/cash, -/obj/random/cigarettes, -/obj/random/firstaid, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"Pf" = ( -/obj/effect/floor_decal/industrial/warning/color/yellow{ - dir = 2 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor10) -"Pg" = ( -/obj/structure/table/hardwoodtable, -/obj/random/pizzabox, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"Ph" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 18; - teleport_y = 200; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor5) -"Pi" = ( -/obj/effect/floor_decal/corner/yellow/border/shifted, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/diescraper/outside) -"Pj" = ( -/obj/machinery/appliance/cooker/grill, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor1) -"Pk" = ( -/obj/item/tape/police, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor1) -"Pl" = ( -/obj/machinery/light/floortube{ - dir = 2 - }, -/turf/simulated/floor/concrete{ - temperature = 225.15; - outdoors = 1 - }, -/area/awaymission/diescraper/roof) -"Pm" = ( -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/diescraper/outside) -"Pn" = ( -/obj/structure/bed/chair/sofa/blue{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"Po" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"Pp" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/toilet/prison{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"Pq" = ( -/obj/structure/table/glass, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"Pr" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor10) -"Ps" = ( -/obj/machinery/light/floortube{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"Pt" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/fruitspawner/lettuce, -/obj/fruitspawner/lettuce, -/obj/fruitspawner/lettuce, -/obj/fruitspawner/lettuce, -/obj/fruitspawner/lettuce, -/obj/fruitspawner/lettuce, -/obj/fruitspawner/tomato, -/obj/fruitspawner/tomato, -/obj/fruitspawner/tomato, -/obj/fruitspawner/tomato, -/obj/fruitspawner/tomato, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/obj/item/reagent_containers/food/snacks/meat, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"Pu" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"Pv" = ( -/obj/effect/floor_decal/rust, -/obj/random/maintenance, -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor4second) -"Pw" = ( -/obj/machinery/door/blast/angled{ - dir = 4; - maxhealth = 69420 - }, -/turf/space, -/area/awaymission/diescraper/outside) -"Px" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 210; - teleport_y = 99 - }, -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"Py" = ( -/obj/structure/fence/hedge/end{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"Pz" = ( -/obj/structure/bed/chair/bay/comfy/brown{ - dir = 8 - }, -/obj/machinery/light, -/turf/unsimulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor6) -"PA" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/simulated/floor/carpet/retro, -/area/awaymission/diescraper/indoors/floor9) -"PB" = ( -/obj/structure/closet/crate{ - name = "blood crate" - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"PC" = ( -/obj/structure/railing/grey, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"PD" = ( -/obj/machinery/gibber, -/turf/simulated/floor/tiled/freezer/cold, -/area/awaymission/diescraper/indoors/floor10) -"PE" = ( -/mob/living/simple_mob/humanoid/pirate/ranged/armored, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor6) -"PF" = ( -/obj/machinery/light/poi{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"PG" = ( -/obj/machinery/appliance/cooker/grill, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"PH" = ( -/obj/structure/sink/puddle, -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"PI" = ( -/obj/effect/simple_portal/coords{ - icon = 'icons/obj/machines/gateway.dmi'; - icon_state = "on"; - dir = 8 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor4second) -"PK" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/pill_bottle/spaceacillin, -/obj/item/storage/pill_bottle/spaceacillin, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"PL" = ( -/obj/structure/sign/levels/elevator{ - dir = 5 - }, -/turf/unsimulated/shuttle/wall/dark, -/area/awaymission/diescraper/indoors/floor1) -"PM" = ( -/obj/structure/table/hardwoodtable, -/obj/random/unidentified_medicine, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"PN" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_color = "#f58d42" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor11) -"PO" = ( -/obj/structure/sign/warning/secure_area/slabs, -/turf/unsimulated/wall/cult, -/area/awaymission/diescraper/indoors/floor11) -"PP" = ( -/mob/living/simple_mob/metroid/juvenile/alpha, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"PQ" = ( -/obj/structure/table/steel_reinforced, -/obj/random/tool/power, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"PR" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"PS" = ( -/obj/structure/table/glass, -/obj/machinery/chemical_dispenser/bar_alc/full, -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/carpet/geo, -/area/awaymission/diescraper/indoors/floor6) -"PT" = ( -/obj/structure/bed/chair/wood{ - dir = 2; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"PU" = ( -/mob/living/simple_mob/metroid/juvenile/queen, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"PV" = ( -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"PW" = ( -/obj/structure/table/steel_reinforced, -/obj/item/beacon_locator{ - pixel_y = 4 - }, -/obj/item/beacon_locator, -/obj/item/beacon_locator{ - pixel_y = -4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor10) -"PY" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/sink/kitchen{ - dir = 4; - pixel_x = 13; - pixel_y = 0 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"Qb" = ( -/mob/living/simple_mob/humanoid/pirate/armored, -/turf/unsimulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor6) -"Qd" = ( -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor6) -"Qf" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"Qg" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32; - pixel_y = -4 - }, -/obj/item/reagent_containers/food/snacks/tomatosoup, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"Qh" = ( -/obj/random/trash, -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"Qi" = ( -/obj/structure/table/darkglass, -/turf/simulated/floor/carpet/retro, -/area/awaymission/diescraper/indoors/floor9) -"Qj" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Ql" = ( -/turf/simulated/wall/concrete, -/area/awaymission/diescraper/indoors/floor6) -"Qm" = ( -/obj/random/organ, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs{ - color = "red"; - icon_state = "gibup1_flesh" - }, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"Qn" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"Qo" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"Qq" = ( -/obj/structure/table/standard, -/obj/structure/sink/countertop{ - pixel_y = 3; - dir = 4; - pixel_x = -6 - }, -/obj/random/contraband/nofail, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Qr" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"Qs" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32; - pixel_y = -4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"Qt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"Qv" = ( -/mob/living/simple_mob/animal/giant_spider/tunneler/fast, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor3) -"Qy" = ( -/obj/structure/bed/chair/oldsofa/right{ - dir = 8 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"Qz" = ( -/obj/structure/prop/dominator{ - pixel_y = 9 - }, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor10) -"QA" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/item/storage/box/buns{ - pixel_y = -3 - }, -/obj/item/storage/box/buns{ - pixel_y = 10 - }, -/obj/item/storage/box/buns, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"QB" = ( -/obj/item/storage/secure/briefcase/money, -/turf/unsimulated/floor/tiled/eris/dark/techfloor{ - temperature = 277; - nitrogen = 93.7835; - oxygen = 20.7263 - }, -/area/awaymission/diescraper/indoors/floor7) -"QC" = ( -/obj/structure/sign/signnew/biohazard{ - pixel_y = -32 - }, -/obj/item/tape/medical, -/turf/unsimulated/floor/tiled/freezer, -/area/awaymission/diescraper/indoors/floor8) -"QD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"QE" = ( -/obj/effect/wingrille_spawn, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"QF" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"QG" = ( -/obj/effect/overlay/snow/floor, -/obj/item/tape/engineering, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"QH" = ( -/obj/structure/table/standard, -/obj/structure/mirror{ - dir = 1; - pixel_y = -27 - }, -/obj/item/surgical/cautery, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"QI" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"QJ" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/fruitspawner/tomato, -/obj/fruitspawner/tomato, -/obj/fruitspawner/tomato, -/obj/fruitspawner/tomato, -/obj/fruitspawner/tomato, -/obj/fruitspawner/tomato, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"QK" = ( -/obj/machinery/door/window/eastleft{ - dir = 2 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"QM" = ( -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor3) -"QN" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor11) -"QO" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"QP" = ( -/obj/structure/table/rack/shelf/steel, -/obj/fiftyspawner/plastic, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"QQ" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/random/material/refined, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"QR" = ( -/obj/structure/table/steel_reinforced, -/obj/item/cell/device/weapon/recharge/alien/omni, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"QT" = ( -/obj/effect/floor_decal/rust, -/obj/effect/overlay/snow/floor, -/obj/effect/mobblocker{ - dir = 2 - }, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"QU" = ( -/obj/machinery/door/window/northright, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"QV" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/diescraper/indoors/floor6) -"QW" = ( -/obj/structure/barricade/cutout/greytide, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"QX" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_color = "#f58d42" - }, -/turf/simulated/floor/lava, -/area/awaymission/diescraper/indoors/floor11) -"QY" = ( -/mob/living/simple_mob/animal/giant_spider/webslinger, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"QZ" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/appliance/cooker/fryer, -/mob/living/simple_mob/animal/passive/mouse/white, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Ra" = ( -/obj/structure/table/gamblingtable, -/obj/item/deck/cards, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"Rb" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"Rc" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"Rd" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/mre/random, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"Re" = ( -/obj/structure/flora/pottedplant/drooping, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"Rf" = ( -/obj/machinery/light, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"Rg" = ( -/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/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/roof) -"Rh" = ( -/obj/machinery/vending/engivend{ - emagged = 1; - req_access = null; - req_log_access = null - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor11) -"Ri" = ( -/turf/simulated/floor/concrete, -/area/awaymission/diescraper/indoors/floor4) -"Rj" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor7) -"Rk" = ( -/obj/structure/sign/directions/stairs_down{ - dir = 6 - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor4) -"Rl" = ( -/obj/effect/decal/mecha_wreckage/ripley, -/obj/machinery/mech_recharger, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"Rm" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Rn" = ( -/obj/effect/floor_decal/rust, -/obj/structure/shuttle/engine/heater{ - dir = 4 - }, -/turf/simulated/wall/thull, -/area/awaymission/diescraper/indoors/floor7) -"Rp" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"Rq" = ( -/obj/machinery/light, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Rr" = ( -/obj/structure/table/woodentable, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"Rs" = ( -/obj/structure/table/standard, -/obj/random/drinkbottle, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"Ru" = ( -/obj/item/reagent_containers/food/drinks/bottle/rum, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor8) -"Rv" = ( -/turf/simulated/floor/water/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"Rw" = ( -/obj/random/trash, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor6) -"Rx" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 117; - teleport_y = 79; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"Ry" = ( -/turf/space, -/area/space) -"Rz" = ( -/obj/effect/floor_decal/corner/paleblue/border/shifted, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/diescraper/outside) -"RA" = ( -/obj/item/stack/material/wood, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"RB" = ( -/obj/structure/sign/directions/stairs_down{ - dir = 8 - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor5) -"RC" = ( -/obj/structure/table/standard, -/obj/structure/mirror{ - dir = 1; - pixel_y = -27 - }, -/obj/item/surgical/scalpel, -/obj/item/autopsy_scanner, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"RD" = ( -/obj/structure/window/basic, -/obj/structure/table/rack/wood, -/obj/item/clothing/head/sombrero{ - pixel_y = 8 - }, -/obj/item/clothing/accessory/poncho, -/turf/simulated/floor/wood/alt/parquet/turfpack, -/area/awaymission/diescraper/indoors/floor7) -"RE" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/random/medical, -/obj/random/firstaid, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"RF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"RG" = ( -/obj/machinery/light/flicker, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor4) -"RI" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"RJ" = ( -/obj/machinery/power/rtg/fake_z_wires, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"RK" = ( -/turf/unsimulated/shuttle/wall/dark, -/area/awaymission/diescraper/indoors/floor8) -"RL" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor6) -"RM" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"RN" = ( -/obj/structure/bed/chair/oldsofa/left{ - dir = 4 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/awaymission/diescraper/indoors/floor9) -"RO" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"RP" = ( -/obj/random/junk, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"RQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"RR" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/obj/random/awayloot/looseloot, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"RS" = ( -/obj/structure/table/glass, -/obj/machinery/chemical_dispenser/bar_coffee/full, -/turf/simulated/floor/carpet/geo, -/area/awaymission/diescraper/indoors/floor6) -"RT" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"RU" = ( -/obj/structure/largecrate/animal/catgirl, -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor2) -"RV" = ( -/turf/unsimulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor9) -"RW" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"RY" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"RZ" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/flashlight/lamp, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/diescraper/indoors/floor10) -"Sa" = ( -/obj/structure/prop/transmitter{ - message_to_play = "Youre so skibidi" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor10) -"Sb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/backpack/dufflebag/cratebooze, -/mob/living/simple_mob/animal/giant_spider/ion, -/turf/simulated/floor, -/area/awaymission/diescraper/indoors/floor3) -"Sc" = ( -/turf/simulated/wall/wood, -/area/awaymission/diescraper/indoors/floor6) -"Sd" = ( -/obj/structure/table/gamblingtable, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/structure/window/plastitanium{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"Se" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/awaymission/diescraper/outside) -"Sf" = ( -/mob/living/simple_mob/vore/alienanimals/startreader{ - icon_living = "cutout_basic"; - icon_dead = "cutout_basic"; - icon_state = "cutout_basic"; - icon = 'icons/obj/cardboard_cutout.dmi'; - name = "stand-up figure?" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"Sg" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/concrete, -/area/awaymission/diescraper/indoors/floor4) -"Sh" = ( -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"Si" = ( -/obj/structure/table/steel_reinforced, -/obj/item/rig/industrial/equipped, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"Sj" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "slab2"; - temperature = 277; - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor11) -"Sk" = ( -/obj/machinery/light/poi{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 8; - pixel_y = 0; - pixel_x = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor10) -"Sl" = ( -/obj/effect/floor_decal/stairs, -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"Sm" = ( -/obj/structure/table/standard, -/obj/item/storage/box/donut, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Sn" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor10) -"So" = ( -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor11) -"Sp" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/bed/chair/sofa/bench/marble{ - dir = 8 - }, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor7) -"Sq" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"Ss" = ( -/obj/effect/step_trigger/teleporter/deathfall{ - teleport_x = 55; - teleport_y = 16 - }, -/turf/simulated/sky/south{ - temperature = 295.15 - }, -/area/awaymission/diescraper/sky) -"St" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/pill_bottle/alkysine, -/obj/item/storage/pill_bottle/alkysine, -/obj/item/storage/pill_bottle/antitox, -/obj/item/storage/pill_bottle/antitox, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Su" = ( -/turf/simulated/floor/wood/alt/tile, -/area/awaymission/diescraper/indoors/floor9) -"Sv" = ( -/obj/structure/bed/chair/sofa/left/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"Sw" = ( -/obj/structure/table/rack/wood, -/obj/item/clothing/under/color/grey{ - pixel_y = 7; - pixel_x = -7 - }, -/obj/item/clothing/under/color/lightblue{ - pixel_y = 7 - }, -/obj/item/clothing/under/color/lightbrown{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/clothing/under/color/lightpurple{ - pixel_y = -1; - pixel_x = -7 - }, -/obj/item/clothing/under/color/red{ - pixel_y = -1 - }, -/obj/item/clothing/under/color/fjumpsuit/yellowgreenf{ - pixel_y = -1; - pixel_x = 7 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack, -/area/awaymission/diescraper/indoors/floor7) -"Sy" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/light{ - pixel_y = 0; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Sz" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/fish_taco{ - pixel_y = 0; - pixel_x = 7 - }, -/obj/item/reagent_containers/food/snacks/fish_taco{ - pixel_y = -8; - pixel_x = 7 - }, -/obj/item/reagent_containers/food/snacks/fish_taco{ - pixel_y = -4; - pixel_x = 7 - }, -/obj/item/reagent_containers/food/snacks/fish_taco{ - pixel_y = 4; - pixel_x = 7 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"SA" = ( -/obj/structure/table/hardwoodtable, -/obj/item/reagent_containers/food/snacks/soydope{ - pixel_y = -10 - }, -/obj/item/reagent_containers/food/snacks/friedrice, -/obj/item/reagent_containers/food/snacks/friedrice{ - pixel_y = 6 - }, -/obj/item/reagent_containers/food/snacks/friedrice{ - pixel_y = 3 - }, -/obj/item/reagent_containers/food/snacks/eggroll{ - pixel_y = 7; - pixel_x = -10 - }, -/obj/item/reagent_containers/food/snacks/eggroll{ - pixel_y = 7 - }, -/obj/item/reagent_containers/food/snacks/eggroll{ - pixel_y = 7; - pixel_x = 4 - }, -/obj/item/reagent_containers/food/snacks/eggroll{ - pixel_y = 7; - pixel_x = 8 - }, -/obj/item/reagent_containers/food/snacks/eggroll{ - pixel_y = 7; - pixel_x = -5 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"SB" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/diescraper/indoors/floor4second) -"SC" = ( -/obj/random/trash{ - pixel_y = -1 - }, -/mob/living/simple_mob/animal/passive/mouse/rat, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"SD" = ( -/obj/random/pottedplant, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"SE" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"SF" = ( -/obj/machinery/door/airlock, -/obj/structure/fans/hardlight/colorable, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"SG" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/diescraper/indoors/floor7) -"SH" = ( -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"SI" = ( -/obj/machinery/appliance/cooker/oven, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"SJ" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 40; - teleport_y = 199 - }, -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"SK" = ( -/obj/item/spacecasinocash, -/turf/unsimulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor6) -"SL" = ( -/obj/machinery/appliance/cooker/oven, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor1) -"SM" = ( -/obj/effect/floor_decal/rust, -/obj/item/material/shard/shrapnel, -/obj/item/material/shard/shrapnel, -/obj/effect/overlay/snow/floor, -/obj/effect/mobblocker{ - dir = 2 - }, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"SN" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/pill_bottle/rezadone, -/obj/item/storage/pill_bottle/rezadone, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"SO" = ( -/obj/structure/bed/chair/sofa/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"SP" = ( -/obj/random/pottedplant, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"SQ" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"SR" = ( -/obj/structure/closet/crate/secure/large, -/obj/random/material/refined, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"SS" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_y = 14; - pixel_x = 3 - }, -/obj/item/reagent_containers/food/drinks/bottle/kahlua{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/lemonadeschnapps{ - pixel_y = 5; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/drinks/bottle/goldschlager{ - pixel_y = 13; - pixel_x = -9 - }, -/obj/item/reagent_containers/food/drinks/bottle/absinthe{ - pixel_y = 3; - pixel_x = -8 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"ST" = ( -/obj/structure/bed/chair/oldsofa/right{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/diescraper/indoors/floor9) -"SU" = ( -/obj/structure/table/marble{ - color = "grey" - }, -/obj/structure/window/titanium{ - dir = 4 - }, -/obj/structure/window/titanium{ - dir = 8 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"SV" = ( -/obj/machinery/vending/food{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"SW" = ( -/obj/structure/closet, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"SX" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_y = -6; - pixel_x = -13 - }, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_y = -7; - pixel_x = -8 - }, -/obj/item/reagent_containers/food/condiment/small/peppergrinder{ - pixel_y = 7; - pixel_x = -9 - }, -/obj/item/reagent_containers/food/condiment/small/peppergrinder{ - pixel_y = 4; - pixel_x = -12 - }, -/mob/living/simple_mob/animal/passive/mouse/white, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"SY" = ( -/obj/structure/table/borosilicate, -/obj/item/tape/engineering, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"SZ" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/toy/desk/officetoy, -/obj/item/toy/plushie/ipc, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"Ta" = ( -/obj/machinery/portable_atmospherics/powered/reagent_distillery/industrial, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"Tb" = ( -/obj/machinery/microwave{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/structure/table/marble, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor4) -"Tc" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"Td" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor10) -"Te" = ( -/obj/item/storage/box/cups, -/obj/structure/table/standard, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"Tf" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"Tg" = ( -/obj/machinery/power/solar_control, -/obj/effect/floor_decal/industrial/warning/color/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"Th" = ( -/obj/structure/table/marble, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"Tj" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 117; - teleport_y = 140; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor5) -"Tk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/woodentable, -/obj/item/organ/internal/augment/armmounted/shoulder/multiple/medical, -/obj/item/organ/internal/augment/armmounted/hand/sword, -/obj/item/organ/internal/augment/armmounted/dartbow, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"Tl" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/random/medical/pillbottle, -/obj/random/medical/pillbottle, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"Tm" = ( -/obj/structure/table/standard, -/obj/item/storage/box/donut, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"Tn" = ( -/obj/structure/table/marble, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/reagent_containers/food/snacks/pancakes, -/obj/item/reagent_containers/food/snacks/pancakes{ - pixel_y = -3; - pixel_x = -4 - }, -/obj/item/reagent_containers/food/snacks/pancakes{ - pixel_y = 1; - pixel_x = 5 - }, -/obj/item/reagent_containers/food/snacks/pancakes{ - pixel_y = -4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"To" = ( -/obj/item/material/shard{ - icon_state = "splinterslarge" - }, -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/structure/table/rack/shelf/steel, -/obj/random/mainttoyloot/nofail, -/obj/random/mainttoyloot/nofail, -/obj/random/mainttoyloot/nofail, -/obj/random/mainttoyloot/nofail, -/obj/random/mainttoyloot/nofail, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"Tp" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"Tq" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/carpet, -/area/awaymission/diescraper/indoors/floor9) -"Tr" = ( -/obj/structure/table/standard, -/obj/item/storage/box/donut, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"Ts" = ( -/mob/living/simple_mob/mechanical/hivebot/precusor/machinegun, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Tt" = ( -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor2) -"Tu" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"Tv" = ( -/obj/structure/closet/crate/engineering, -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"Tw" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 156; - teleport_y = 38 - }, -/obj/structure/window/reinforced/survival_pod{ - dir = 8 - }, -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/diescraper/indoors/floor112) -"Tx" = ( -/obj/structure/flora/skeleton, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/diescraper/indoors/floor10) -"Ty" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/tiled/kafel_full, -/area/awaymission/diescraper/indoors/floor2) -"Tz" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/diescraper/indoors/floor9) -"TA" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/item/paper_bin, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"TB" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/bed/chair/sofa/bench/marble{ - dir = 8 - }, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor7) -"TC" = ( -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"TD" = ( -/mob/living/simple_mob/mechanical/cyber_horror/corgi, -/turf/unsimulated/floor/tiled/freezer, -/area/awaymission/diescraper/indoors/floor8) -"TE" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 131; - teleport_y = 42; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"TF" = ( -/obj/structure/girder, -/turf/simulated/floor/reinforced{ - temperature = 277; - outdoors = 1 - }, -/area/awaymission/diescraper/roof) -"TG" = ( -/obj/structure/anomaly_container, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"TH" = ( -/obj/machinery/vending/tool{ - emagged = 1; - req_access = null; - req_log_access = null - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor6) -"TI" = ( -/obj/structure/salvageable/console_os{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"TK" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/green/border, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"TL" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/item/fluff/fidgetspinner, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"TM" = ( -/obj/structure/table/steel, -/obj/item/autopsy_scanner, -/obj/item/surgical/scalpel, -/obj/item/surgical/cautery, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor8) -"TN" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/bag/circuits/all, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"TO" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 118; - teleport_y = 197; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"TQ" = ( -/turf/simulated/floor/wood/alt/panel/broken, -/area/awaymission/diescraper/indoors/floor7) -"TR" = ( -/obj/structure/bed/chair/wood{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"TS" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/mob/living/simple_mob/humanoid/pirate/machete, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"TT" = ( -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"TU" = ( -/obj/structure/table/reinforced, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"TV" = ( -/obj/structure/table/marble, -/obj/structure/sink/countertop{ - dir = 1 - }, -/obj/item/reagent_containers/glass/rag{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/measuring_cup{ - pixel_x = 10; - pixel_y = 8 - }, -/obj/item/reagent_containers/dropper{ - pixel_x = -4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"TW" = ( -/obj/structure/fence/corner{ - dir = 4 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "slab2" - }, -/area/awaymission/diescraper/outside) -"TX" = ( -/obj/structure/bed/chair/sofa/right/brown{ - dir = 2 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor2) -"TY" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/random/maintenance/engineering, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"TZ" = ( -/obj/structure/salvageable/console_os{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"Ua" = ( -/obj/machinery/power/apc/hyper{ - dir = 4; - pixel_x = 23 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"Ub" = ( -/obj/structure/closet/crate/trashcart, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"Uc" = ( -/obj/item/stack/material/supermatter, -/turf/simulated/floor/carpet/happy, -/area/awaymission/diescraper/indoors/floor7) -"Ud" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"Ue" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/awaymission/diescraper/roof; - base_turf = /turf/simulated/floor/concrete; - landmark_tag = "diescraper_roof"; - name = "Skyscraper Roof" - }, -/turf/simulated/floor/concrete{ - temperature = 225.15; - outdoors = 1 - }, -/area/awaymission/diescraper/roof) -"Uf" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 206; - teleport_y = 225 - }, -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor11) -"Ug" = ( -/obj/machinery/vending/engivend{ - emagged = 1; - req_access = null; - req_log_access = null - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"Uh" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - name = "1W-entertainment monitor"; - pixel_y = 32 - }, -/turf/unsimulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor9) -"Ui" = ( -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor6) -"Uj" = ( -/obj/machinery/computer, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"Uk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"Ul" = ( -/obj/structure/table/standard, -/obj/machinery/microwave{ - pixel_y = 8; - pixel_x = 3 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor3) -"Um" = ( -/mob/living/simple_mob/mechanical/hivebot/tank, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Un" = ( -/mob/living/simple_mob/mechanical/mecha/ripley/deathripley, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"Uo" = ( -/obj/item/stack/material/steel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"Up" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/awaymission/diescraper/indoors/floor9) -"Uq" = ( -/obj/structure/table/standard, -/obj/random/drinkbottle, -/obj/random/drinksoft, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Ur" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"Us" = ( -/obj/machinery/power/apc{ - dir = 8; - pixel_x = -26 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/closet/crate/engineering, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"Ut" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor8) -"Uu" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/diescraper/indoors/floor4second) -"Uv" = ( -/obj/machinery/vending/boozeomat{ - req_access = null - }, -/turf/simulated/floor/carpet/geo, -/area/awaymission/diescraper/indoors/floor6) -"Uw" = ( -/turf/simulated/shuttle/floor/black, -/area/awaymission/diescraper/indoors/floor1) -"Ux" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_range = 10; - light_color = "#b3deff" - }, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"Uy" = ( -/obj/structure/mopbucket, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"Uz" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"UA" = ( -/obj/effect/decal/cleanable/mucus/mapped, -/obj/machinery/oxygen_pump/mobile/stabilizer, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"UB" = ( -/obj/structure/table/hardwoodtable, -/obj/item/slime_extract/yellow, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"UC" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/outdoors/sidewalk/slab{ - icon_state = "slab2"; - temperature = 277; - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor11) -"UD" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/rainbowdouble, -/turf/simulated/floor/carpet, -/area/awaymission/diescraper/indoors/floor9) -"UE" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"UF" = ( -/obj/structure/table/bench/sifwooden/padded, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"UG" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/random/material/refined, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"UI" = ( -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"UJ" = ( -/obj/effect/floor_decal/stairs{ - dir = 2 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"UK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"UL" = ( -/obj/structure/bookcase, -/obj/machinery/light{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor7) -"UN" = ( -/obj/structure/sign/securearea{ - icon_state = "restroom" - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor4) -"UO" = ( -/turf/unsimulated/shuttle/wall/dark, -/area/awaymission/diescraper/indoors/floor2) -"UP" = ( -/obj/item/clothing/shoes/bhop, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"UQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/borosilicate, -/obj/item/gun/energy/lasertag/blue, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"UR" = ( -/obj/effect/floor_decal/stairs{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"US" = ( -/obj/machinery/door/airlock/sandstone, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"UT" = ( -/mob/living/simple_mob/animal/space/bats{ - faction = "metroids" - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"UU" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"UV" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor6) -"UX" = ( -/turf/simulated/floor/reinforced, -/area/awaymission/diescraper/indoors/floor112) -"UY" = ( -/turf/simulated/floor/outdoors/sidewalk/side{ - movement_cost = 0; - temperature = 293.15 - }, -/area/awaymission/diescraper/outside) -"UZ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"Va" = ( -/obj/effect/decal/remains/human, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"Vb" = ( -/mob/living/simple_mob/slime/feral/silver, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"Vc" = ( -/obj/structure/bookcase, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor7) -"Vd" = ( -/obj/structure/table/marble, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/reagent_containers/food/snacks/nt_muffin{ - pixel_y = 3; - pixel_x = 4 - }, -/obj/item/reagent_containers/food/snacks/nt_muffin{ - pixel_y = -3; - pixel_x = -4 - }, -/obj/item/reagent_containers/food/snacks/nt_muffin{ - pixel_y = -2; - pixel_x = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"Ve" = ( -/turf/simulated/floor/outdoors/sidewalk/slab{ - movement_cost = 0; - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/diescraper/indoors/floor2) -"Vf" = ( -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor8) -"Vg" = ( -/obj/machinery/door/airlock, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor10) -"Vh" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"Vi" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"Vj" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/machinery/microwave{ - pixel_y = -3 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Vk" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 32; - pixel_y = -4 - }, -/obj/item/toy/partypopper, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/diescraper/indoors/floor9) -"Vl" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_color = "#f58d42" - }, -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor4second) -"Vm" = ( -/obj/structure/table/steel_reinforced, -/obj/random/tool/power, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"Vo" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/reagent_containers/food/drinks/bottle/vermouth, -/obj/item/reagent_containers/food/drinks/bottle/vermouth, -/obj/item/reagent_containers/food/drinks/bottle/vermouth, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = -5 - }, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = -5 - }, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = -5 - }, -/obj/item/reagent_containers/food/drinks/bottle/sake{ - pixel_x = 6 - }, -/obj/item/reagent_containers/food/drinks/bottle/sake{ - pixel_x = 6 - }, -/obj/item/reagent_containers/food/drinks/bottle/sake{ - pixel_x = 6 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor7) -"Vp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"Vq" = ( -/obj/structure/table/marble, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor4) -"Vr" = ( -/obj/machinery/door/airlock{ - id_tag = "yourefireduwu" - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"Vs" = ( -/obj/structure/table/gamblingtable, -/obj/item/coin/uranium, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor8) -"Vt" = ( -/obj/structure/salvageable/implant_container_os, -/turf/simulated/floor/tiled/steel{ - icon_state = "milspec-damaged5" - }, -/area/awaymission/diescraper/indoors/floor4) -"Vu" = ( -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"Vv" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/appliance/cooker/fryer, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"Vw" = ( -/obj/structure/table/gamblingtable, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor6) -"Vx" = ( -/obj/random/plushielarge, -/obj/structure/window/plastitanium{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"Vy" = ( -/obj/machinery/light{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Vz" = ( -/obj/structure/table/rack/shelf, -/obj/item/towel/random{ - pixel_x = -5; - pixel_y = -9 - }, -/obj/item/towel/random{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/item/towel/random{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/random/soap{ - pixel_y = 8 - }, -/obj/random/soap{ - pixel_x = -1; - pixel_y = 10 - }, -/obj/item/clothing/under/bathrobe{ - pixel_x = 3; - pixel_y = -5 - }, -/obj/item/clothing/under/bathrobe{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor9) -"VA" = ( -/obj/structure/table/marble, -/obj/machinery/microwave{ - pixel_y = 19 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"VB" = ( -/obj/effect/decal/remains, -/obj/item/gun/energy/stunrevolver, -/obj/item/melee/baton, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/diescraper/outside) -"VC" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/orangedouble, -/turf/simulated/floor/carpet, -/area/awaymission/diescraper/indoors/floor9) -"VD" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_range = 10; - light_color = "#b3deff" - }, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"VE" = ( -/turf/simulated/wall, -/area/awaymission/diescraper/indoors/floor10) -"VG" = ( -/obj/machinery/light{ - dir = 1 - }, -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/backline, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor2) -"VH" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"VI" = ( -/obj/structure/table/marble, -/obj/item/material/knife{ - pixel_x = 10; - pixel_y = 0 - }, -/obj/item/material/kitchen/rollingpin{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor9) -"VJ" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/closet/secure_closet/freezer/kitchen{ - locked = 0 - }, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"VK" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"VM" = ( -/obj/machinery/light{ - dir = 4; - layer = 3 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"VN" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor11) -"VO" = ( -/obj/effect/map_effect/perma_light/brighter{ - light_range = 10; - light_color = "#b3deff" - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"VP" = ( -/obj/machinery/light{ - dir = 2; - pixel_y = 0 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor2) -"VQ" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/med_data/laptop{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"VR" = ( -/obj/machinery/recharger/wallcharger{ - pixel_y = 22 - }, -/mob/living/simple_mob/humanoid/pirate/ranged, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"VS" = ( -/mob/living/simple_mob/humanoid/merc/ranged/space/shotgun, -/turf/unsimulated/floor/tiled/eris/dark/techfloor{ - temperature = 277; - nitrogen = 93.7835; - oxygen = 20.7263 - }, -/area/awaymission/diescraper/indoors/floor7) -"VT" = ( -/obj/effect/floor_decal/rust, -/obj/item/material/shard/shrapnel, -/obj/item/stack/material/steel, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"VU" = ( -/obj/structure/table/woodentable, -/obj/item/spacecasinocash, -/obj/item/spacecasinocash, -/obj/random/awayloot/nofail, -/turf/unsimulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor6) -"VV" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/machinery/microwave, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/diescraper/indoors/floor7) -"VW" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor7) -"VX" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/backline, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor2) -"VY" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"VZ" = ( -/obj/structure/bed/chair/bay/comfy/brown{ - dir = 8 - }, -/mob/living/simple_mob/humanoid/pirate/mate/ranged, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"Wa" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor10) -"Wb" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - pixel_y = 0; - dir = 8 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/o2, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"Wc" = ( -/obj/machinery/door/airlock/sandstone, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"Wd" = ( -/obj/structure/table/marble, -/obj/machinery/microwave{ - pixel_x = 2; - pixel_y = 9 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"We" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 94; - teleport_y = 80 - }, -/obj/effect/floor_decal/stairs/dark_stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"Wf" = ( -/obj/machinery/power/rtg/fake_z_wires, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor9) -"Wg" = ( -/turf/simulated/floor/concrete, -/area/awaymission/diescraper/indoors/floor8) -"Wh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"Wi" = ( -/obj/machinery/light/floortube, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor11) -"Wj" = ( -/obj/structure/bed/chair/office/light, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Wk" = ( -/obj/effect/floor_decal/corner/white/border/shifted, -/turf/simulated/floor/concrete{ - outdoors = 1 - }, -/area/awaymission/diescraper/outside) -"Wl" = ( -/obj/machinery/door/airlock/glass{ - locked = 1; - icon_state = "door_locked" - }, -/turf/unsimulated/floor{ - icon_state = "elevatorshaft" - }, -/area/awaymission/diescraper/indoors/floor8) -"Wm" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"Wn" = ( -/obj/effect/floor_decal/stairs/dark_stairs, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - temperature = 277 - }, -/area/awaymission/diescraper/indoors/floor11) -"Wo" = ( -/obj/effect/step_trigger/teleporter/deathfall{ - teleport_x = 55; - teleport_y = 16 - }, -/turf/simulated/sky/moving/south{ - temperature = 277 - }, -/area/awaymission/diescraper/sky) -"Wp" = ( -/mob/living/simple_mob/mechanical/hivebot/precusor/laser, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor2) -"Wq" = ( -/obj/structure/table/standard, -/obj/structure/sink/countertop, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Wr" = ( -/obj/structure/closet/grave, -/obj/item/material/gravemarker, -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"Ws" = ( -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor4second) -"Wt" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"Wv" = ( -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"Ww" = ( -/obj/effect/floor_decal/rust, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"Wy" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 13; - teleport_y = 163 - }, -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"Wz" = ( -/obj/effect/floor_decal/corner/purple/diagonal{ - color = "#f700ff" - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/toy/desk/fan, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"WA" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/simulated/floor/carpet, -/area/awaymission/diescraper/indoors/floor9) -"WB" = ( -/obj/machinery/light{ - dir = 1; - overlay_color = "#FFFEB8" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor7) -"WC" = ( -/obj/item/stack/cable_coil/green{ - amount = 2 - }, -/turf/simulated/floor/plating{ - icon_state = "dmg1" - }, -/area/awaymission/diescraper/indoors/floor8) -"WD" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"WE" = ( -/obj/structure/table/marble, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/item/reagent_containers/food/snacks/lasagna, -/obj/item/reagent_containers/food/snacks/lasagna{ - pixel_y = 9 - }, -/obj/item/reagent_containers/food/snacks/lasagna{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"WF" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/machinery/light/poi, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"WH" = ( -/obj/machinery/light{ - dir = 8; - pixel_y = 0 - }, -/obj/structure/table/rack/shelf, -/obj/random/medical/pillbottle, -/obj/random/medical/pillbottle, -/obj/random/medical/pillbottle, -/obj/random/medical/pillbottle, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"WI" = ( -/obj/machinery/artifact/predefined/hungry_statue, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"WJ" = ( -/turf/simulated/floor/lava/turfpack/station, -/area/awaymission/diescraper/outside) -"WK" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"WL" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor2) -"WM" = ( -/obj/item/rig_module/device/paperdispenser, -/obj/structure/table/standard, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"WN" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/item/camera, -/turf/simulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor4) -"WO" = ( -/obj/structure/table/woodentable, -/obj/item/pen/fountain6, -/obj/machinery/light/floortube{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"WP" = ( -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor2) -"WQ" = ( -/mob/living/simple_mob/vore/aggressive/rat, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"WR" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"WS" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"WT" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 14; - teleport_y = 163 - }, -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"WW" = ( -/obj/structure/table/standard, -/obj/random/drinkbottle, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"WX" = ( -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor3) -"WY" = ( -/obj/machinery/light{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"WZ" = ( -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/rods, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"Xa" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/machinery/appliance/cooker/fryer, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"Xb" = ( -/obj/structure/table/marble, -/obj/machinery/cash_register{ - req_access = null; - dir = 1 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"Xc" = ( -/obj/effect/floor_decal/rust, -/obj/random/junk, -/obj/item/material/shard/shrapnel, -/obj/item/stack/material/steel, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"Xd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/mucus/mapped, -/turf/simulated/floor/tiled/steel{ - icon_state = "milspec-damaged4" - }, -/area/awaymission/diescraper/indoors/floor4) -"Xe" = ( -/obj/structure/table/marble, -/obj/item/material/kitchen/rollingpin, -/obj/item/material/knife{ - pixel_y = 0; - pixel_x = 11 - }, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/glass/beaker, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"Xf" = ( -/obj/effect/decal/cleanable/filth, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor1) -"Xh" = ( -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"Xj" = ( -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"Xk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/barricade/cutout, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"Xl" = ( -/obj/effect/floor_decal/stairs{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"Xm" = ( -/obj/machinery/door/airlock/freezer{ - name = "Restrooms"; - locked = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"Xn" = ( -/obj/machinery/oxygen_pump/mobile/stabilizer, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 6 - }, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"Xo" = ( -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/steel, -/obj/random/awayloot/looseloot, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"Xp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/diescraper/indoors/floor8) -"Xq" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"Xr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"Xs" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"Xt" = ( -/obj/structure/table/rack/shelf/wood, -/obj/random/portalloot, -/turf/simulated/floor/wood/alt/panel/broken, -/area/awaymission/diescraper/indoors/floor6) -"Xu" = ( -/obj/structure/shuttle/engine/router, -/turf/unsimulated/floor/tiled/eris/dark/techfloor{ - temperature = 277; - nitrogen = 93.7835; - oxygen = 20.7263 - }, -/area/awaymission/diescraper/indoors/floor7) -"Xv" = ( -/obj/effect/decal/cleanable/mucus/mapped, -/obj/machinery/light{ - dir = 1 - }, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"Xw" = ( -/obj/effect/floor_decal/industrial/warning/color/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/color/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor10) -"Xx" = ( -/turf/unsimulated/floor/tiled/milspec, -/area/awaymission/diescraper/indoors/floor6) -"Xy" = ( -/obj/structure/table/marble, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"Xz" = ( -/obj/structure/simple_door/wood, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"XA" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"XB" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/clowndouble, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"XC" = ( -/obj/structure/salvageable/console_broken_os{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"XD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/machinery/light/floortube, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"XF" = ( -/obj/item/gun/projectile/revolver/stainless, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor3) -"XG" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/diescraper/indoors/floor7) -"XI" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/item/tape/police, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor1) -"XJ" = ( -/obj/structure/flora/pottedplant/crystal, -/turf/simulated/floor/carpet/brown, -/area/awaymission/diescraper/indoors/floor9) -"XK" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor5) -"XL" = ( -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/steel, -/obj/random/awayloot/nofail, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"XM" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"XN" = ( -/obj/structure/girder, -/turf/simulated/floor/reinforced, -/area/awaymission/diescraper/sky) -"XO" = ( -/obj/machinery/door/airlock, -/obj/item/tape/police, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"XP" = ( -/obj/effect/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/turf/unsimulated/floor/tiled/yellow, -/area/awaymission/diescraper/indoors/floor8) -"XQ" = ( -/obj/structure/inflatable/door, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"XR" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 2 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"XS" = ( -/obj/item/storage/mrebag/menu6, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"XT" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor7) -"XU" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/salvageable/console_broken_os{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"XV" = ( -/obj/machinery/button/remote/blast_door/single_use/slab/slab1{ - pixel_y = 30; - id = "never" - }, -/obj/effect/map_effect/perma_light/brighter{ - light_color = "#f58d42" - }, -/turf/simulated/floor/cult, -/area/awaymission/diescraper/outside) -"XW" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"XX" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/barricade/cutout, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"XY" = ( -/obj/structure/table/glass, -/obj/random/awayloot/looseloot, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor11) -"XZ" = ( -/obj/machinery/door/airlock/maintenance, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor9) -"Ya" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 194; - teleport_y = 139; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"Yb" = ( -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor2) -"Yc" = ( -/obj/structure/table/steel_reinforced, -/obj/item/radio/beacon{ - pixel_y = 4; - on = 0 - }, -/obj/item/radio/beacon{ - pixel_y = 1; - on = 0 - }, -/obj/item/radio/beacon{ - pixel_y = -2; - on = 0 - }, -/obj/machinery/light/poi{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor10) -"Yd" = ( -/obj/structure/table/hardwoodtable, -/obj/random/unidentified_medicine, -/obj/random/technology_scanner, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"Ye" = ( -/obj/effect/floor_decal/rust, -/obj/mecha/working/ripley, -/obj/machinery/mech_recharger, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"Yf" = ( -/obj/effect/decal/cleanable/mucus/mapped, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"Yh" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/obj/item/stack/material/wood{ - amount = 5 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor7) -"Yi" = ( -/obj/structure/table/hardwoodtable, -/obj/item/toy/tennis/blue{ - pixel_y = 0; - pixel_x = -3 - }, -/obj/item/toy/tennis/red{ - pixel_x = 4 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"Yj" = ( -/obj/structure/closet/jcloset, -/obj/item/soap/nanotrasen, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"Yk" = ( -/obj/machinery/appliance/cooker/grill, -/obj/machinery/light{ - pixel_y = 0; - dir = 1 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor4) -"Yl" = ( -/obj/structure/bed/padded, -/obj/effect/decal/cleanable/mucus/mapped, -/obj/random/organ, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"Ym" = ( -/obj/structure/barricade, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor4) -"Yn" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 118; - teleport_y = 79; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"Yo" = ( -/obj/structure/table/steel_reinforced, -/obj/item/rcd/advanced/loaded, -/obj/random/awayloot/looseloot, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor6) -"Yp" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor9) -"Yq" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 117; - teleport_y = 197; - pixel_x = -1 - }, -/obj/effect/floor_decal/stairs{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"Yr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/spray/cleaner, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"Ys" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/cash_register{ - req_access = null; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"Yt" = ( -/obj/effect/step_trigger/teleporter/poi{ - teleport_x = 141; - teleport_y = 45 - }, -/obj/effect/floor_decal/stairs, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"Yu" = ( -/mob/living/simple_mob/humanoid/pirate/ranged/armored, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"Yw" = ( -/obj/structure/bed/padded, -/obj/effect/decal/cleanable/mucus/mapped, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"Yx" = ( -/obj/random/trash{ - pixel_y = -1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"Yy" = ( -/obj/machinery/papershredder, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor10) -"Yz" = ( -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/obj/structure/closet/crate/secure/large, -/obj/random/material, -/obj/random/material, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"YA" = ( -/obj/machinery/optable, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"YB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor4) -"YC" = ( -/obj/structure/bed/chair/sofa/purp{ - dir = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/diescraper/indoors/floor9) -"YD" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/outdoors/newdirt_nograss/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"YE" = ( -/obj/machinery/door/blast/puzzle{ - id = "never" - }, -/turf/unsimulated/floor/cult, -/area/awaymission/diescraper/indoors/floor11) -"YF" = ( -/obj/machinery/gateway{ - density = 0; - dir = 6 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/diescraper/indoors/floor4second) -"YG" = ( -/obj/item/stack/marker_beacon, -/turf/simulated/floor/concrete{ - temperature = 225.15; - outdoors = 1 - }, -/area/awaymission/diescraper/roof) -"YH" = ( -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"YI" = ( -/obj/machinery/recharger/wallcharger{ - pixel_y = 22 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"YJ" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor7) -"YK" = ( -/obj/machinery/light{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"YL" = ( -/obj/item/clothing/head/helmet/bucket/wood, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor7) -"YM" = ( -/obj/machinery/light{ - dir = 8; - layer = 3 - }, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"YN" = ( -/obj/machinery/light{ - pixel_y = 0; - dir = 8 - }, -/obj/structure/table/gamblingtable, -/obj/random/toy, -/obj/random/toy, -/obj/random/toy, -/obj/random/toy, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor4) -"YO" = ( -/obj/structure/sign/directions/stairs_down{ - dir = 6 - }, -/turf/simulated/wall/r_concrete, -/area/awaymission/diescraper/indoors/floor8) -"YP" = ( -/obj/item/tape/engineering, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"YQ" = ( -/obj/machinery/light{ - dir = 2; - pixel_y = 0 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"YR" = ( -/obj/random/material/refined, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"YS" = ( -/turf/simulated/wall/wood, -/area/awaymission/diescraper/indoors/floor2) -"YT" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/lampshade, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/diescraper/indoors/floor10) -"YU" = ( -/obj/random/trash, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -28; - pixel_y = 2 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4) -"YV" = ( -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor11) -"YW" = ( -/obj/structure/flora/bboulder1, -/turf/simulated/floor/water/turfpack/station{ - outdoors = 0 - }, -/area/awaymission/diescraper/indoors/floor5) -"YX" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/bed/chair/sofa/bench/marble{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor5) -"YY" = ( -/obj/structure/prop/machine/nt_cruciforge, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"YZ" = ( -/obj/structure/girder, -/obj/structure/sign/directions/stairs_up{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"Za" = ( -/obj/machinery/door/airlock/glass_medical{ - req_one_access = null - }, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"Zc" = ( -/obj/structure/table/steel, -/obj/random/tool/powermaint, -/obj/random/tool/power, -/obj/item/rcd_ammo/large, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"Zd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/unsimulated/floor/wood/alt/parquet, -/area/awaymission/diescraper/indoors/floor9) -"Ze" = ( -/obj/structure/barricade/cutout/fluke, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"Zf" = ( -/obj/structure/bed/chair/oldsofa/left, -/turf/simulated/floor/carpet/brown, -/area/awaymission/diescraper/indoors/floor9) -"Zg" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Zh" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/clowns/big/blob{ - faction = "mouse" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/diescraper/indoors/floor4) -"Zi" = ( -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor1) -"Zj" = ( -/obj/structure/table/rack/wood, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor7) -"Zk" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/fish_taco{ - pixel_y = 4; - pixel_x = 7 - }, -/obj/item/reagent_containers/food/snacks/fish_taco{ - pixel_y = -8; - pixel_x = 7 - }, -/obj/item/reagent_containers/food/snacks/fish_taco{ - pixel_y = -4; - pixel_x = 7 - }, -/obj/item/reagent_containers/food/snacks/fish_taco{ - pixel_y = 0; - pixel_x = 7 - }, -/obj/item/reagent_containers/food/snacks/taco{ - pixel_y = 6 - }, -/obj/item/reagent_containers/food/snacks/taco{ - pixel_y = -8 - }, -/obj/item/reagent_containers/food/snacks/taco{ - pixel_y = -3 - }, -/obj/item/reagent_containers/food/snacks/taco{ - pixel_y = 2 - }, -/turf/simulated/floor/wood/alt/panel, -/area/awaymission/diescraper/indoors/floor6) -"Zl" = ( -/obj/machinery/gateway{ - density = 0; - dir = 10 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor1) -"Zo" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ - pixel_y = 0; - pixel_x = -9 - }, -/obj/item/reagent_containers/food/drinks/bottle/tomatojuice{ - pixel_y = 0; - pixel_x = -4 - }, -/obj/item/reagent_containers/food/drinks/bottle/applejuice{ - pixel_y = 2; - pixel_x = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/diescraper/indoors/floor7) -"Zp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor10) -"Zq" = ( -/obj/structure/table/reinforced, -/obj/item/gun/launcher/syringe, -/obj/random/organ, -/turf/unsimulated/floor/tiled/old_tile/blue, -/area/awaymission/diescraper/indoors/floor8) -"Zr" = ( -/obj/structure/salvageable/server, -/obj/machinery/light{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) -"Zs" = ( -/obj/machinery/light{ - dir = 4; - pixel_y = 0 - }, -/obj/structure/table/steel, -/obj/item/reagent_containers/spray/chemsprayer, -/obj/item/reagent_containers/glass/bottle/lube, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"Zt" = ( -/obj/effect/overlay/snow/floor, -/obj/effect/floor_decal/industrial/warning/color/tile/yellow, -/obj/item/tape/engineering, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/sky) -"Zu" = ( -/obj/machinery/door/airlock/glass_medical{ - req_one_access = null - }, -/turf/simulated/floor/tiled/old_tile, -/area/awaymission/diescraper/indoors/floor8) -"Zv" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass2, -/area/awaymission/diescraper/indoors/floor7) -"Zw" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"Zx" = ( -/obj/structure/table/steel, -/obj/random/toolbox, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor6) -"Zy" = ( -/obj/structure/barricade/cutout, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor4second) -"Zz" = ( -/obj/machinery/button/remote/blast_door/single_use/slab/slab4{ - id = "youup"; - pixel_y = 28 - }, -/turf/simulated/floor/cult, -/area/awaymission/diescraper/indoors/floor4second) -"ZA" = ( -/obj/structure/table/marble, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/item/reagent_containers/food/snacks/bacon_and_eggs{ - pixel_y = 6 - }, -/obj/item/reagent_containers/food/snacks/bacon_and_eggs{ - pixel_y = -5 - }, -/obj/item/reagent_containers/food/snacks/bacon_and_eggs{ - pixel_y = -3 - }, -/obj/item/reagent_containers/food/snacks/bacon_and_eggs{ - pixel_y = 0 - }, -/obj/item/reagent_containers/food/snacks/bacon_and_eggs{ - pixel_y = 3 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"ZB" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/adv, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor8) -"ZC" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/diescraper/indoors/floor10) -"ZD" = ( -/obj/structure/closet/secure_closet/freezer/kitchen{ - locked = 0 - }, -/turf/simulated/floor/wood, -/area/awaymission/diescraper/indoors/floor4) -"ZE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor8) -"ZF" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/diescraper/indoors/floor2) -"ZG" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/overlay/snow/floor, -/turf/simulated/floor/plating{ - temperature = 277; - oxygen = 20.7263; - nitrogen = 93.7835 - }, -/area/awaymission/diescraper/indoors/floor7) -"ZH" = ( -/obj/item/storage/firstaid/adv{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 5 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = -5 - }, -/obj/structure/table/rack/shelf, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor4second) -"ZI" = ( -/obj/structure/bed/chair/oldsofa/left, -/turf/simulated/floor/tiled/asteroid_steel/turfpack/station, -/area/awaymission/diescraper/indoors/floor10) -"ZJ" = ( -/obj/machinery/vending/coffee{ - dir = 4; - pixel_x = -6 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor1) -"ZK" = ( -/obj/machinery/atmospherics/unary/heater/sauna{ - dir = 4 - }, -/turf/simulated/floor/wood/alt, -/area/awaymission/diescraper/indoors/floor7) -"ZL" = ( -/mob/living/simple_mob/metroid/mine, -/turf/simulated/floor/bmarble, -/area/awaymission/diescraper/indoors/floor1) -"ZM" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/diescraper/indoors/floor8) -"ZN" = ( -/obj/effect/floor_decal/stairs/dark_stairs{ - dir = 1 - }, -/obj/machinery/light{ - pixel_y = 0; - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/diescraper/indoors/floor7) -"ZO" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/diescraper/indoors/floor7) -"ZP" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced/tinted{ - dir = 2 - }, -/obj/machinery/photocopier/faxmachine, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"ZQ" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/medical/lite, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/awaymission/diescraper/indoors/floor3) -"ZR" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor10) -"ZS" = ( -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/drinks/cans/icecoffee, -/obj/item/reagent_containers/food/drinks/cans/icecoffee{ - pixel_y = 2; - pixel_x = 4 - }, -/obj/item/spacecasinocash, -/turf/unsimulated/floor/tiled/techfloor, -/area/awaymission/diescraper/indoors/floor6) -"ZT" = ( -/obj/structure/bed/chair/wood{ - dir = 1; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/awaymission/diescraper/indoors/floor3) -"ZU" = ( -/obj/structure/table/rack/wood, -/obj/item/clothing/under/color/yellow{ - pixel_y = -2; - pixel_x = -7 - }, -/obj/item/clothing/under/color/rainbow{ - pixel_y = -2 - }, -/obj/item/clothing/under/color/lightbrown{ - pixel_y = -2; - pixel_x = 8 - }, -/obj/item/clothing/under/color/green{ - pixel_y = 4; - pixel_x = -8 - }, -/obj/item/clothing/under/color/darkred{ - pixel_y = 4 - }, -/obj/item/clothing/under/color/blue{ - pixel_y = 4; - pixel_x = 8 - }, -/turf/simulated/floor/wood/alt/parquet/turfpack, -/area/awaymission/diescraper/indoors/floor7) -"ZV" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor3) -"ZW" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/greendouble, -/turf/simulated/floor/carpet/sblucarpet, -/area/awaymission/diescraper/indoors/floor9) -"ZX" = ( -/obj/effect/floor_decal/stairs, -/obj/machinery/light{ - dir = 4; - light_color = "#DDFFD3" - }, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor3) -"ZY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/plating, -/area/awaymission/diescraper/indoors/floor5) -"ZZ" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/lino, -/area/awaymission/diescraper/indoors/floor2) - -(1,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -ko -"} -(2,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Fy -bP -uQ -"} -(3,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Fy -Fy -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Fy -bP -bP -"} -(4,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Fy -bP -bP -"} -(5,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Ly -Ly -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -UY -Pm -Pm -Pi -Pm -Pm -UY -Lx -bP -bP -"} -(6,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Lx -Lx -Lx -Ly -Ly -Ly -Ly -Ly -Lx -Ly -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(7,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Ly -Ly -Ly -Ly -Ly -Ly -Ly -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(8,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Ly -Ly -Ly -Ly -Lx -Lu -Lu -Lx -Lu -Lu -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lu -Lu -Lu -Lu -Lu -Lx -Lx -Lx -Lu -Lu -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lu -Lu -Lu -Lx -Lx -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(9,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Ly -Ly -GJ -XV -Lx -Lx -Lu -Lx -Lu -Lu -Lu -Lu -Lu -Lx -Lu -Lx -Lx -Lu -Lu -Lu -Lu -Lu -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lu -Lx -Lx -Lx -Lu -Lu -Lu -Lu -Lx -Lx -Lx -Lu -Lu -Lu -UY -ap -Pm -Pm -Pm -Pm -UY -Fy -bP -bP -"} -(10,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Iz -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Ly -Ly -Ly -Ly -Lu -Lu -Lx -Lu -Lu -Lu -Lx -Lx -Lu -Lu -Lu -Lu -Lu -Lx -Lx -Lx -Lx -Lx -Lu -Lx -Lx -Lu -Lu -Lx -Lx -Lx -Lx -Lx -Lx -Lu -Lu -Lx -Lx -Lx -Lx -Lx -Lu -Lx -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Fy -bP -bP -"} -(11,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -qZ -pa -pa -pa -qZ -qZ -pa -pa -pa -qZ -pa -pa -pa -pa -pa -qZ -pa -pa -pa -qZ -pa -pa -pa -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -kt -kt -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -kt -kt -kt -kt -kt -kt -ET -kt -kt -kt -kt -kt -kt -kt -kt -kt -ET -kt -kt -kt -kt -kt -kt -kt -kt -ET -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -uR -uR -uR -uR -uR -uR -uR -uR -uR -uR -uR -uR -uR -uR -uR -Kt -Kt -uR -Kt -Kt -Kt -uR -uR -Kt -Kt -Kt -uR -uR -Kt -Kt -Kt -uR -uR -Kt -Kt -Kt -uR -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Ly -Ly -Ly -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lu -Lu -Lu -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lu -Lu -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lu -Lu -Lu -Lx -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(12,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -qZ -DP -gZ -Lp -gZ -gZ -Lp -Kx -qR -KF -aw -qM -aw -Ee -fk -KF -qu -Po -Io -Po -Po -Po -Po -jG -ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -qZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -gG -HD -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -Xh -vE -ET -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -bB -Dt -Fb -Tu -uR -uR -uR -uR -uR -uR -uR -uR -uR -la -GW -Zr -GW -GW -GW -Ey -Ey -Ey -Zg -hp -Zg -Vy -Zg -Ey -Ey -la -ng -ng -ME -uw -tG -ng -ox -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Ly -Ly -Ly -Ly -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -UY -Pm -Pm -Pi -Pm -Pm -UY -Lx -bP -bP -"} -(13,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -qZ -Ge -gZ -DA -QJ -Vj -gZ -gZ -Vv -KF -pQ -aw -rK -kg -Zh -KF -lk -Po -rH -Nz -xQ -Po -yg -KF -ao -ao -ao -xW -ao -xW -ao -ao -ao -xW -ao -ao -ao -ao -qZ -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -Sb -yH -ET -zZ -zZ -ho -ho -ho -ho -Cy -ET -ET -vE -vE -vE -UU -XU -TA -CE -vE -UU -XU -TA -CE -vE -tE -XU -TA -CE -vE -UU -XU -TA -CE -vE -vE -vE -ET -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -Ta -as -wf -ju -uR -uR -uR -Wy -Yb -Yb -Yb -OY -OY -la -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Db -Ey -Db -hp -Db -hp -Ey -la -ng -gf -kl -uw -uw -ng -ng -uR -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Ly -Ly -Ly -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(14,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -qZ -qZ -gZ -ix -nw -pb -gZ -gZ -Ag -KF -Vt -Ee -Xd -rK -RG -KF -nl -Po -kY -hz -yf -Po -Pt -KF -xW -xW -ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -cV -pC -qZ -qZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -ET -rQ -ET -zZ -zZ -ho -ZX -ho -ho -cj -ET -ET -vE -vE -vE -Kh -XD -vE -vE -vE -os -XD -vE -vE -vE -Kh -XD -vE -vE -vE -os -NC -vE -vE -vE -vE -vE -ET -ET -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -uR -Fm -ng -Sq -uR -uR -uR -WT -Yb -Sl -Yb -OY -OY -la -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Zg -Ey -Zg -Ey -dD -Ey -Ey -la -ng -uw -tw -Wh -Hq -hv -ng -uR -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Ly -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(15,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -qZ -gZ -gZ -gZ -gZ -gZ -gZ -gZ -KF -sN -aw -aw -KW -qM -KF -KI -Po -Po -Mm -WN -Po -VJ -KF -ao -ao -ao -ao -ao -ao -ao -xW -ao -ao -ao -ao -ao -iV -ao -qZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -ET -eX -ET -Jz -Jz -ET -ET -ET -ET -ET -ET -ET -vE -vE -vE -tE -XU -TA -CE -vE -UU -XU -TA -CE -vE -UU -XU -TA -CE -vE -QQ -XU -TA -CE -vE -vE -vE -vE -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -uR -qL -ng -tC -uR -uR -uR -uR -uR -uR -uR -zv -zv -la -Ey -Ey -Ey -Ey -Mq -Ey -jm -Ts -jm -Ey -Ey -Ey -Ey -Ey -Ey -la -ng -uw -ox -uw -yU -ng -ng -ng -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(16,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -Sy -gZ -gZ -OU -eg -WE -Ij -KF -LN -CY -CY -CY -CY -KF -Po -Po -Po -Po -Po -Po -bl -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -ao -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -eX -ET -Jz -Jz -ET -vE -vE -vE -vE -vE -vE -vE -vE -QY -os -NC -Xh -vE -vE -Kh -tt -vE -vE -vE -Kh -NC -vE -vE -vE -Kh -NC -vE -vE -vE -Nd -vE -vE -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -Kp -SE -eU -eU -eU -ng -wR -ng -ng -uR -zv -zv -la -Ey -Ey -Ey -gc -Mq -Ey -Ey -Ey -Zg -Ey -bw -Ey -Zg -Ey -ls -la -ez -la -la -la -la -la -la -la -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(17,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -gZ -gZ -gZ -fo -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz -KF -yf -yf -yf -yf -yf -KF -DK -qZ -Ri -uy -Vu -Vu -Vu -Vu -Jf -Vu -LY -qZ -qZ -qZ -xW -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -cm -Ea -Jz -Jz -ET -vE -vE -vE -vE -UU -XU -TA -CE -vE -UU -XU -TA -CE -vE -TY -XU -TA -CE -vE -tE -XU -TA -CE -vE -UU -XU -TA -CE -vE -vE -vE -vE -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -uR -uR -iF -uR -uR -uR -uR -uR -uR -NM -zv -zv -la -Mq -Mq -Mq -Ci -Mq -Ey -Ey -hR -Db -hp -Db -hp -Db -hp -fg -la -hL -Sv -SO -zU -ip -Sv -SO -zU -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Lu -Lu -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(18,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -gZ -gZ -gb -sH -Kz -Kz -Kz -Kz -Kz -Kz -dv -Kz -Kz -Kz -Kz -Kz -CH -CH -CH -gu -CH -qZ -Ri -Ri -Vu -Vu -Vu -Vu -Vu -Vu -We -qZ -qZ -qZ -ao -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -vE -ve -fw -fw -ve -vE -vE -vE -vE -Kh -XD -vE -vE -vE -Kh -XD -vE -vE -vE -Kh -XD -vE -vE -vE -os -XD -vE -vE -vE -Kh -NC -vE -vE -vE -vE -vE -vE -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -Gd -Ah -Ah -Ah -Ah -Mx -Ah -Ah -Ah -Ah -Tt -Tt -la -Ey -Ey -Ey -Ey -Ey -Um -Ey -Ey -dD -Ey -Zg -Ey -Zg -Ey -Sm -la -hL -hL -hL -hL -hL -hL -hL -hL -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -es -NR -NR -NR -aE -jS -ZJ -NR -NR -NR -NR -NR -NR -vG -NR -NR -NR -NR -NR -NR -NR -NR -vG -NR -NR -NR -NR -NR -NR -vG -NR -NR -NR -AS -Zi -Zi -Zi -Bz -Lu -Lu -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(19,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -qZ -dl -KF -KF -KF -Kz -dv -sw -CH -CH -CH -CH -CH -sw -CH -CH -Kz -Kz -CH -CH -CH -CH -qZ -rR -rR -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -iV -xW -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -vE -vE -fw -fw -vE -vE -vE -vE -vE -UU -XU -TA -CE -vE -UU -XU -TA -CE -vE -UU -XU -TA -CE -vE -UU -XU -TA -CE -vE -UU -XU -TA -CE -vE -vE -vE -vE -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Kt -TX -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Tt -Tt -la -LU -Ey -rA -Ey -Ey -Ey -Ey -Ey -lv -Ey -Ey -Ey -Ey -Ey -gY -la -hL -hL -hL -hL -hL -hL -hL -hL -la -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -es -NR -NR -NR -jv -NR -NR -NR -NR -NR -td -td -NR -NR -NR -NR -NR -NR -NR -td -td -NR -NR -NR -zo -NR -NR -NR -NR -NR -NR -NR -NR -Bz -OZ -Zi -Zi -Bz -Lu -Lu -UY -Pm -Pm -Pi -Pm -Pm -UY -Fy -bP -bP -"} -(20,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -qZ -lT -Ou -Ou -Ou -Kz -Kz -CH -CH -CH -CH -sI -CH -CH -CH -CH -dv -Kz -CH -CH -CH -CH -qZ -rR -rR -qZ -iP -iP -iP -iP -iP -iP -iP -iP -iP -qZ -fq -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -kt -vE -vE -fw -fw -vE -vE -vE -vE -vE -Kh -NC -vE -vE -vE -Kh -NC -vE -vE -vE -os -NC -vE -vE -vE -Kh -NC -vE -vE -vE -Kh -NC -vE -vE -vE -vE -vE -vE -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Kt -tJ -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Tt -Tt -la -la -Kt -Kt -ng -Lw -Kt -Kt -la -la -Kt -Kt -la -Kt -Kt -la -la -DI -hL -hL -hL -hL -hL -hL -hL -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -Bz -rv -NR -NR -pN -NR -NR -td -td -NR -Wv -Wv -NR -NR -NR -td -td -NR -NR -Wv -Wv -NR -NR -NR -td -td -NR -NR -DJ -Wv -Wv -vu -NR -Bz -Zi -FF -Zi -Bz -Bz -Lu -UY -Pm -Pm -Pm -Pm -Pm -UY -Fy -bP -bP -"} -(21,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -qZ -DZ -KF -KF -KF -Kz -Kz -CH -kf -kf -CH -kf -kf -CH -CH -sI -Kz -Kz -CH -CH -CH -CH -qZ -rR -rR -qZ -iP -iP -iP -iP -iP -iP -iP -iP -iP -qZ -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -kt -vE -vE -fw -Qv -fw -fw -fw -fw -fw -fw -fw -fw -fw -fw -fw -fw -Qv -fw -fw -fw -fw -fw -fw -fw -fw -fw -fw -fw -fw -fw -fw -fw -Qv -fw -fw -fw -fw -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Kt -ce -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -kO -Tt -Tt -Tt -Tt -Tt -Tt -Tt -if -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -tn -NR -NR -ZA -NR -NR -Wv -Wv -NR -Wv -Wv -NR -NR -zo -Wv -Wv -NR -NR -LC -LC -NR -NR -NR -Wv -Wv -NR -NR -DJ -Wv -Wv -vu -NR -Bz -Zi -pY -Zi -dw -Bz -Lu -UY -Pm -Pm -Pm -Pm -Pm -UY -Fy -bP -bP -"} -(22,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -Ms -zm -dU -xt -Kz -dv -CH -Gg -Kl -CH -Kl -Kl -CH -CH -CH -Kz -Kz -Kz -Kz -Yx -CH -iZ -rR -rR -qZ -iP -Ou -qi -Ou -TN -cM -Ou -iP -vA -qZ -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -vE -vE -fw -fw -fw -fw -fw -zr -fw -fw -fw -fw -fw -zr -fw -fw -fw -fw -fw -fw -zr -fw -fw -fw -fw -fw -fw -zr -fw -fw -fw -fw -fw -fw -fw -fw -fw -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -Gd -Ah -Ah -xz -Ah -Ah -Ah -Ah -Ah -xz -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -FS -Tt -Tt -Tt -FS -Tt -Tt -Tt -Tt -Tt -Tt -Tt -la -la -la -la -la -la -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -Th -NR -NR -HQ -NR -NR -Lc -Wv -NR -LC -LC -NR -NR -NR -Wv -Lc -NR -NR -NR -NR -NR -NR -NR -Wv -Wv -NR -NR -DJ -Wv -Wv -vu -NR -Bz -Zi -nH -xj -Zi -Bz -Lu -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(23,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -hh -Ms -Ms -Me -Kz -Kz -CH -Kl -Kl -CH -Kl -Kl -CH -CH -CH -CH -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz -CH -iP -xJ -GY -Lg -Ou -BG -Ou -iP -iP -qZ -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -kt -vE -vE -fw -fw -vE -vE -lV -lV -lV -lV -vE -vE -lV -lV -lV -lV -vE -vE -lV -lV -lV -lV -vE -vE -lV -lV -lV -lV -vE -vE -vE -vE -vE -vE -vE -fw -aJ -ET -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -YS -Kt -Kt -YS -Kt -Kt -YS -Kt -Kt -YS -Ey -zh -YS -Tt -CJ -uR -uR -uR -uR -uR -uR -uR -uR -uR -uR -Ah -Ah -Ah -Ah -Tt -Tt -Kt -SV -Ed -hL -fu -hL -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -yt -NR -NR -Vd -NR -NR -LC -LC -NR -kx -NR -NR -NR -NR -LC -LC -NR -NR -kx -NR -NR -NR -NR -LC -LC -NR -kx -NR -NR -NR -NR -NR -Bz -Bz -Bz -Bz -Bz -Bz -Lu -ep -ep -Lx -WJ -Pm -Pm -UY -Lx -bP -bP -"} -(24,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -qZ -vT -Ms -Ms -rM -Kz -Kz -CH -uX -uX -CH -uX -uX -sI -iw -CH -kf -kf -sw -CH -Kz -Kz -Kz -Kz -Kz -CH -iP -Ou -gW -Ou -Ou -Vi -Ou -iP -iP -qZ -iV -xW -qZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -kt -vE -vE -fw -fw -vE -Nk -lV -pV -KG -pV -vE -vE -eZ -KG -sm -lV -vE -vE -lV -pV -KG -pV -vE -vE -eZ -Rs -sm -lV -vE -vE -UU -XU -TA -CE -vE -fw -fw -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -Ey -Ey -Ey -aM -Ey -Ey -Ey -Ey -Ey -aM -Ey -Ey -YS -Tt -Tt -uR -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Ah -uR -Ah -Ah -Ah -Ah -Tt -Tt -Kt -hL -hL -hL -hL -mp -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -Nn -NR -NR -Tn -NR -NR -NR -NR -NR -NR -NR -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -NR -NR -NR -zo -NR -NR -NR -NR -NR -NR -NR -Bz -Lu -su -Ae -WJ -WJ -Pm -Pm -UY -Lx -bP -bP -"} -(25,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -we -Ms -Ms -Lz -Kz -Yx -sw -CH -CH -sI -CH -CH -sw -CH -sI -Kl -Kl -CH -CH -CH -CH -CH -Kz -Kz -CH -iP -Ou -Vi -KH -No -NZ -Ou -iP -iP -qZ -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -ZV -vE -fw -fw -vE -vE -lV -pV -KS -vE -vE -vE -vE -NC -vE -lV -vE -vE -lV -pV -KS -vE -vE -vE -vE -NC -vE -lV -vE -vE -os -XD -vE -vE -vE -fw -fw -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Kt -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Kt -xk -Tt -uR -Ah -Ah -Ah -BK -Ah -Ah -Ah -Ah -uR -ti -Ah -Ah -Ah -Tt -Tt -la -hL -hL -hL -hL -Tr -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -cZ -NR -NR -Mh -NR -NR -NR -NR -td -td -NR -ur -ur -ur -ur -ur -oH -ur -ur -ur -ur -ur -ur -oH -ur -ur -NR -NR -NR -td -td -NR -NR -NR -NR -Co -Wv -sV -Lu -UY -oj -WJ -WJ -Pm -Pm -UY -Lx -bP -bP -"} -(26,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -CB -Ms -Ms -Xb -Kz -Kz -CH -kf -kf -CH -kf -kf -CH -CH -CH -Kl -Kl -CH -ft -ft -CH -CH -dv -Kz -CH -iP -Ou -Ou -Ou -Ou -Ou -Ou -iP -iP -qZ -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -kt -vE -vE -fw -fw -vE -QY -vE -vE -vE -vE -vE -Xh -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -Xh -vE -vE -vE -vE -vE -vE -UU -XU -TA -CE -vE -fw -fw -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Kt -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Kt -Tt -Tt -uR -UO -UO -UO -UO -UO -UO -UO -Lk -ah -Ah -Ah -Ah -Ah -Tt -VP -la -DI -hL -hL -hL -ou -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Lx -Lx -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -NR -NR -NR -gz -NR -NR -NR -NR -Wv -Wv -NR -ur -ur -ur -ur -ur -ur -ur -ur -ur -oH -ur -ur -ur -ur -ur -NR -NR -NR -Wv -Wv -NR -NR -NR -NR -Co -Wv -sV -Lu -UY -sM -Kg -Pi -Pm -Pm -UY -Lx -bP -bP -"} -(27,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -Yk -Ms -Ms -wF -Kz -dv -CH -Kl -Kl -CH -Kl -Kl -CH -CH -CH -um -uX -iw -Kl -Kl -CH -CH -Kz -Kz -CH -iP -iP -iP -iP -iP -iP -iP -iP -vA -qZ -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -kt -vE -vE -fw -fw -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -Kh -NC -vE -vE -vE -fw -fw -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Kt -Ey -Cr -Ld -ZZ -Ey -Ey -Cr -Ld -ZZ -Ey -Ey -Ey -YS -Tt -Tt -uR -UO -mI -mI -mI -mI -mI -iR -Tt -Ah -Ah -Ah -Ah -Ah -Tt -Tt -gS -hL -hL -hL -hL -hL -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Lx -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -Ho -NR -NR -Th -NR -NR -NR -NR -Wv -Wv -NR -ur -ur -NR -NR -NR -NR -UT -kx -NR -NR -NR -NR -ur -ur -ur -NR -NR -NR -Wv -Lc -NR -NR -NR -NR -Co -Wv -sV -Lu -UY -Pm -oj -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(28,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -DL -Ms -Ms -Sz -Kz -Kz -CH -Kl -Kl -CH -Kl -Kl -CH -SC -CH -CH -CH -CH -wc -wc -CH -CH -Kz -Kz -Kz -Ou -Ou -Ou -Ou -Ou -Ou -Ou -Ou -Ou -IQ -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -vE -vE -fw -fw -vE -vE -lV -pV -ON -vE -vE -vE -NC -vE -pV -lV -vE -vE -lV -pV -ON -vE -vE -vE -NC -vE -pV -lV -vE -vE -vE -vE -vE -vE -vE -fw -fw -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -Ey -te -Lb -ze -Ey -Ey -ts -Lb -WM -Ey -Ey -Ey -Kt -Tt -Tt -uR -UO -mI -lc -eI -eI -ba -Eb -Tt -Ah -Ah -Ah -Ah -Ah -Tt -Tt -hL -hL -hL -Wp -hL -hL -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Lx -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -NR -NR -Th -Th -NR -xO -xO -NR -LC -LC -NR -ur -ur -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -ur -ur -ur -NR -NR -NR -LC -LC -NR -NR -NR -NR -NR -NR -Bz -Lu -Ae -Lx -Lx -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(29,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -DL -zX -fX -KF -Kz -Kz -CH -uX -uX -iw -uX -uX -CH -CH -PT -Kl -TR -sw -CH -CH -CH -sw -Kz -Kz -Kz -Ou -Ou -Ou -Ou -Ou -Ou -Ou -Ou -Ou -Ou -fq -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -kt -vE -vE -fw -fw -vE -vE -lV -pV -RI -pV -vE -vE -pV -nY -pV -lV -vE -vE -lV -WW -vw -pV -vE -vE -pV -Pb -JI -lV -vE -vE -UU -XU -TA -CE -vE -fw -fw -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Kt -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Kt -Tt -xk -uR -UO -mI -eI -Nx -eI -ba -Eb -Tt -Ah -Ah -Ah -EF -Ah -Tt -VP -la -DI -hL -hL -hL -yv -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Lx -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -NR -NR -NR -zo -NR -Wv -Lc -NR -NR -NR -NR -ur -ur -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -ur -ur -ur -HP -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -Bz -Lu -oj -Ae -Pm -Pm -ap -Pm -UY -Lx -bP -bP -"} -(30,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -qZ -KF -KF -KF -KF -Kz -dv -sw -sI -CH -sI -CH -sI -sw -CH -PT -Kl -zu -CH -ft -ft -CH -CH -Kz -Kz -CH -iP -iP -iP -iP -iP -iP -iP -iP -vA -qZ -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -kt -vE -vE -fw -fw -vE -Nk -lV -lV -lV -lV -vE -vE -lV -lV -lV -lV -vE -vE -lV -lV -lV -lV -vE -vE -lV -lV -lV -lV -vE -vE -os -XD -vE -vE -vE -fw -fw -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Kt -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Rq -YS -Lk -Tt -uR -UO -mI -lc -eI -eI -ba -Eb -Tt -Ah -Ah -Ah -Ah -Ah -Tt -Tt -la -hL -hL -hL -hL -qB -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Lx -Lx -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -NR -NR -NR -NR -NR -Wv -Wv -NR -NR -td -td -ur -aT -Bz -NR -NR -NR -NR -NR -NR -NR -NR -Bz -ur -ur -ur -oH -ur -ur -NR -tX -tX -Wv -tX -tX -NR -NR -Bz -Lu -Lx -Pm -Lx -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(31,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -nB -Tb -GO -iX -dv -Kz -CH -kf -kf -CH -kf -kf -CH -CH -CH -CH -CH -CH -Kl -Kl -CH -CH -dv -Kz -CH -Ou -Ou -Ou -Ou -Ou -Ou -Ou -Ou -Ou -qZ -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -vE -vE -fw -fw -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -UU -XU -TA -CE -vE -fw -fw -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Kt -Ey -Cr -Ld -ZZ -Ey -Ey -Cr -Ld -ZZ -Ey -Ey -Ey -Kt -Tt -Tt -uR -UO -mI -mI -mI -mI -mI -UO -cK -Ah -Ah -Ah -Ah -Ah -Tt -Tt -Kt -KZ -OJ -OJ -kQ -pW -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Lx -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -NR -NR -RT -NR -NR -ai -ai -NR -kx -Wv -Wv -ur -ur -Bz -NR -NR -NR -RT -NR -NR -NR -NR -Bz -ur -oH -ur -ur -ur -ur -NR -jj -rs -Wv -jj -jj -kx -NR -sV -Lu -Lx -Pm -Lx -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(32,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -EC -ct -ct -LE -Kz -Kz -CH -Kl -Kl -CH -Kl -Kl -CH -iw -PT -Kl -TR -CH -wc -wc -CH -CH -Kz -Kz -CH -Ou -Ou -PM -Ou -Ou -nJ -nJ -Vx -Ou -qZ -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -vE -qC -fw -fw -vE -vE -vE -qC -vE -vE -vE -vE -vE -vE -vE -qC -vE -vE -vE -vE -vE -qC -vE -vE -vE -vE -vE -vE -vE -vE -Kh -NC -vE -vE -vE -fw -aJ -ET -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -Ey -ts -Lb -WM -Ey -Ey -ts -Lb -WM -Ey -Ey -Ey -Kt -Tt -Tt -uR -UO -UO -UO -UO -UO -UO -UO -Lk -Ah -Ah -Ah -Ah -Ah -Tt -Tt -Kt -KZ -OJ -OJ -jA -OJ -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Lx -Lx -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -rT -rT -rT -rT -Ho -NR -NR -NR -NR -Wv -Lc -ur -ur -Bz -mQ -mQ -mQ -mQ -mQ -mQ -mQ -Ho -ur -ur -ur -Wv -Wv -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ut -Lu -UY -Pm -Pm -Pm -Pm -Pm -UY -Fy -bP -bP -"} -(33,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -qZ -yA -ct -ct -ga -Kz -Kz -CH -Kl -Kl -CH -Kl -Kl -CH -CH -PT -Kl -TR -CH -CH -CH -CH -CH -Kz -Kz -CH -Ou -Ou -PM -Ou -Ou -Sd -nZ -Sd -Ou -qZ -iV -xW -qZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -lV -lV -dk -lV -lV -lV -lV -lV -lV -lV -lV -lV -lV -lV -lV -lV -vE -vE -Zw -lV -UU -XU -TA -CE -vE -UU -XU -TA -CE -vE -vE -vE -vE -vE -vE -fw -fw -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Kt -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -KQ -YS -Tt -CJ -uR -Ah -Ah -Ah -ah -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Tt -Tt -la -la -la -la -la -la -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Lx -Lx -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -LK -hg -fz -FI -NR -NR -NR -NR -NR -LC -LC -ur -ur -Bz -mQ -Bg -Bg -Bg -Bg -Bg -PL -NR -ur -ur -ur -UE -Wv -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ut -Lu -UY -Pm -Pm -Pi -Pm -Pm -UY -Fy -bP -bP -"} -(34,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -ct -Lr -ct -CC -Kz -Kz -CH -uX -uX -CH -uX -uX -CH -CH -CH -CH -CH -sw -CH -Kz -Kz -Kz -Kz -Kz -CH -Ou -IU -PM -IU -Ou -xJ -qZ -DU -qd -qZ -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -bK -QM -QM -QM -lV -lV -WX -dX -WX -nb -iv -iv -iv -dX -WX -WX -vE -vE -Zw -lV -os -yn -vE -vE -vE -os -aO -vE -vE -vE -vE -vE -vE -vE -vE -fw -fw -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Kt -Ey -Ey -Ey -Ey -Ey -Ve -Ve -Ve -Ve -Ve -Ey -KQ -Kt -xk -Tt -MO -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -tH -hg -hg -iG -NR -td -td -NR -NR -NR -NR -ur -ur -Bz -mQ -Bg -FE -Uw -Uw -BF -cl -ur -ur -ur -oH -NR -Wv -NR -NR -NR -UT -NR -NR -NR -NR -NR -NR -sV -Lu -UY -Pm -Pm -Pm -Pm -Pm -UY -Fy -bP -bP -"} -(35,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -EC -ct -ct -Vq -Kz -Kz -sw -CH -CH -CH -CH -CH -sg -CH -iw -CH -Kz -Kz -Kz -dv -Kz -ic -Kz -Kz -Rm -Ou -aW -Yd -aW -Ou -tj -YN -tj -Ou -qZ -fq -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -kt -zc -ZT -QM -QM -lV -ok -WX -XF -mk -KR -vP -Dx -vP -WX -WX -WX -vE -vE -pV -lV -UU -XU -TA -CE -vE -UU -XU -TA -CE -vE -vE -vE -vE -vE -vE -fw -fw -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Kt -Ey -cI -LX -Ey -Ey -Ve -ZF -pu -MG -Ve -Ey -KQ -Kt -Tt -Tt -ng -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Tt -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -LK -hg -hg -dV -NR -Wv -Lc -NR -td -td -NR -ur -ur -Bz -mQ -Bg -Uw -jb -Uw -BF -cl -ur -ur -ur -ur -Wv -Wv -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -sV -Lu -Lx -Pm -Pm -Pm -Pm -Pm -UY -Fy -bP -bP -"} -(36,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -ct -ct -ct -Fs -Kz -Kz -CH -kf -kf -CH -kf -kf -CH -CH -CH -dv -Kz -Kz -Kz -Kz -CH -Rk -Tf -Tf -qZ -Ou -Ou -Ou -Ou -Ou -Ou -Ou -Ou -Ou -qZ -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -kt -zc -ZT -QM -QM -lV -ok -WX -vg -vP -vP -vP -vP -vP -vP -WX -lV -vE -vE -AK -lV -Kh -NC -vE -vE -vE -Kh -NC -vE -vE -vE -vE -vE -vE -vE -vE -fw -fw -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -Ey -RW -Ey -Ey -Ey -Ve -nh -HW -np -Ve -Ey -gO -YS -Tt -Tt -uR -Ah -Ah -Ah -Ah -Ah -Ah -Ah -la -NN -Ah -Ah -Ah -Ah -Ah -Ah -la -la -la -la -la -cU -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -vU -hg -hg -iG -NR -LC -LC -NR -Wv -Wv -NR -ur -ur -Bz -mQ -Bg -FE -Uw -Uw -BF -cl -ur -oH -ur -ur -NR -Wv -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ut -Lu -vW -Lx -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(37,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -ct -pz -gI -Fs -Kz -Kz -CH -mZ -Kl -iw -Kl -Kl -CH -CH -CH -Kz -Kz -CH -CH -CH -CH -qZ -Tf -Tf -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -QM -QM -QM -QM -lV -ok -WX -WX -hH -vP -vP -vP -KR -WX -WX -lV -vE -vE -pV -lV -xB -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -ei -BW -BW -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Kt -Ey -Aj -xl -Ey -Ey -Ve -WL -dG -af -Ve -Ey -gO -Kt -Tt -Tt -uR -Ah -Ah -Ah -BK -Ah -Ah -Ah -la -NQ -Ah -Ah -Ah -Ah -Ah -Ah -Mq -Ey -cu -WH -cu -Ey -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Bz -vU -hg -hg -hg -NR -NR -NR -NR -LC -LC -NR -ur -ur -Bz -mQ -Bg -Bg -Bg -Bg -Bg -mQ -NR -ur -ur -ur -KO -Jv -ur -ur -ur -ur -ur -ur -ur -Dw -ur -ur -ut -Lu -Ae -jV -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(38,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -qZ -uc -KF -KF -KF -Kz -dv -CH -uX -uX -iw -uX -uX -CH -CH -sI -Kz -Kz -CH -CH -CH -CH -qZ -Tf -Tf -qZ -ao -ao -ao -ao -ao -ao -ao -ao -ao -xW -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -kt -zc -ZT -QM -QM -lV -lV -WX -gD -WX -wa -wa -iv -DO -gD -WX -lV -vE -vE -NH -lV -UU -XU -TA -CE -vE -vE -vE -vE -vE -vE -vE -Xh -vE -vE -ET -BW -wl -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Kt -Ey -wA -ot -Ey -Ey -Ve -Ve -Ve -Ve -Ve -Ey -gO -Kt -Tt -Tt -uR -la -la -la -la -la -la -la -la -FB -Ah -Ah -Ah -Ah -Ah -Ah -Mq -Ey -Ey -Ey -Ey -Ey -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Bz -rT -rT -rT -rT -NR -NR -NR -NR -NR -NR -NR -ur -ur -Bz -mQ -mQ -mQ -mQ -mQ -mQ -mQ -Ho -ur -ur -ur -Wv -Wv -ur -ur -NR -NR -tS -NR -NR -NR -tS -NR -sV -Lu -UY -VB -Lx -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(39,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -qZ -lT -Ou -sU -za -uJ -uJ -zn -Cg -Cg -Cg -Cg -Cg -zn -Cg -Cg -uJ -uJ -Cg -Cg -wN -Ju -qZ -Tf -Tf -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -ao -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -kt -zc -ZT -QM -QM -lV -lV -lV -lV -lV -lV -lV -lV -lV -lV -lV -lV -vE -vE -vE -lV -os -yn -vE -vE -vE -vE -vE -vE -ET -ET -ET -ET -ET -ET -ET -BW -BW -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Kt -Ey -Ey -lv -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Rq -YS -VG -VX -uR -Ey -Ey -Ey -Vy -Ey -Ey -Ey -la -Ah -Ah -Ah -Ah -Ah -Ah -Ah -Mq -Ey -Ey -Ey -Ey -Ey -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Bz -NL -ur -AI -Of -NR -td -td -NR -td -td -NR -ur -ur -Bz -NR -NR -NR -Rc -NR -NR -NR -NR -Bz -ur -oH -ur -ur -ur -ur -NR -NR -NR -bG -Wv -Wv -ne -NR -Bz -Lu -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(40,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -qZ -aX -KF -sB -KF -Yx -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz -CH -CH -CH -CH -DQ -qZ -Ri -Ri -ER -ER -ER -ER -ER -ER -ER -gK -qZ -qZ -ao -fq -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -bK -QM -QM -QM -lV -JL -oe -hy -oe -hd -cD -cD -YR -UG -TC -lV -vE -vE -vE -vE -CM -XU -TA -CE -vE -vE -vE -vE -ET -ET -ET -SJ -ho -ho -ho -zZ -zZ -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -YS -AA -YS -YS -YS -YS -YS -Kt -Kt -YS -Ud -YS -YS -Tt -Tt -uR -Ey -EV -JN -bn -eQ -St -Ey -la -Mq -Mq -Mq -la -Mq -Mq -Mq -la -Ey -Ey -Ey -Ey -YQ -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Bz -cd -ur -ur -mU -NR -Wv -Wv -NR -po -Wv -NR -ur -aT -Bz -NR -NR -NR -NR -NR -NR -NR -NR -Bz -ur -ur -ur -tS -NR -NR -NR -NR -NR -Km -Pn -IF -zo -NR -Bz -Lu -UY -Pm -Pm -Pi -Pm -Pm -UY -Lx -bP -bP -"} -(41,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -gZ -Ar -Fh -an -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz -Kz -KF -KF -Ny -KF -Hr -qZ -Ri -Sg -ER -ER -ER -ER -ER -MQ -ER -rx -qZ -qZ -ao -iV -ao -pa -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -kt -zc -ZT -QM -QM -lV -dr -xn -JL -TC -RJ -TC -oe -TC -oe -TC -lV -vE -vE -vE -vE -Kh -NC -vE -vE -vE -vE -vE -vE -ET -ET -ET -oG -ho -ZX -ho -zZ -zZ -ET -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -BT -na -Ty -Ty -Ty -Ty -YS -od -nW -ss -ss -hc -YS -Tt -Tt -uR -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Nb -QO -Ey -Ey -Vy -Ey -Ey -Ey -Vy -Ey -Ey -Ey -Ey -Ey -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Bz -Ii -ur -ur -Of -NR -zo -zo -NR -LC -LC -NR -ur -ur -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -ur -ur -ur -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -NR -Bz -Lu -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(42,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -pa -gZ -gZ -tb -OU -hs -eD -uD -Dp -KF -pk -kH -vc -Ys -Lh -zl -SA -PG -JJ -wD -KF -YB -UN -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -ao -iV -qZ -qZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -kt -zc -ZT -QM -QM -lV -xg -oe -TC -TC -TC -TC -TC -TC -TC -TC -mb -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -uR -HF -na -na -na -na -na -YS -xI -LJ -Vb -ss -Os -YS -Tt -Tt -uR -wM -LV -Aq -GP -au -yk -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -lw -sn -Ey -Ey -Ey -Ni -mC -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -he -ur -ur -Of -NR -Lc -Wv -NR -XR -Wv -vu -ur -ur -Bz -NR -NR -NR -NR -NR -NR -NR -NR -NR -ur -ur -ur -NR -NR -NR -NR -NR -NR -NR -NR -NR -Co -Wv -sV -Lu -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(43,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -qZ -qZ -IE -gZ -tb -gZ -gZ -gZ -gZ -fm -KF -wD -wD -wD -wD -wD -wD -wD -wD -wD -wD -KF -ad -or -Qo -sz -gP -YU -GQ -Ny -ao -Ln -lN -lN -lN -lN -lN -uU -qZ -qZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -ET -QM -QM -QM -ff -lV -xg -TC -WQ -TC -TC -TC -oe -xn -oe -TC -lV -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -ET -ET -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -uR -BL -na -Ty -Ty -Ty -Ty -YS -Oc -ss -ss -ss -LF -YS -Tt -Tt -uR -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Bt -LS -Gz -oZ -gE -Ey -Ey -Ey -ED -uR -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -ur -ur -ur -Of -NR -LC -LC -NR -XR -Wv -vu -ur -ur -Bz -NR -NR -NR -NR -tS -NR -NR -NR -UT -ur -ur -ur -UT -NR -NR -NR -NR -NR -NR -NR -NR -Co -Wv -sV -Lu -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(44,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -lq -gZ -gZ -tb -gZ -gZ -gZ -gZ -gZ -KF -wD -wD -wD -wD -wD -wD -wD -wD -wD -wD -KF -rF -KF -kz -KF -Ym -KF -kz -qZ -sx -xW -ao -ao -ao -ao -ao -ao -qZ -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -IG -QM -QM -QM -ih -lV -sY -TC -TC -TC -TC -oe -TC -TC -TC -TC -lV -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -ET -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -RU -HF -na -na -na -na -na -YS -jN -ss -ss -ss -kM -YS -Tt -Tt -uR -Ey -pB -PK -qF -SN -rV -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Mq -Mq -Ey -Ey -Ey -pn -uR -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -kk -et -ur -Of -NR -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -oH -ur -ur -NR -NR -NR -NR -NR -NR -NR -NR -NR -Co -Wv -sV -Lu -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(45,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -pa -gb -gZ -gZ -Jy -QZ -Vv -jJ -SX -As -KF -ZD -fc -zK -bs -HT -Cq -qk -kF -rB -wD -KF -iP -KF -hZ -KF -KC -KF -Hg -qZ -ao -xW -ao -ao -ao -xW -xW -ao -qZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -Ul -IG -pG -QM -MB -lV -xE -oe -TC -TC -TC -AU -AU -AU -pm -TC -lV -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -vE -ET -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -zj -HF -na -Ty -Ty -Ty -Ty -YS -ks -ss -ss -ss -kM -YS -Tt -Tt -uR -Ey -Ey -Ey -Ey -rA -Ey -Ey -Ey -Ey -Ey -rA -Ey -Ey -Ey -Ey -Ey -Ey -Ey -Ey -qY -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -yw -QU -ur -ur -NR -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -NR -NR -NR -NR -oz -kr -oz -oz -oz -kr -NR -Bz -Lu -UY -Pm -Pm -ap -Pm -Pm -UY -Lx -bP -bP -"} -(46,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -qZ -pa -pa -pa -OX -qZ -pa -pa -pa -pa -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -rF -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -kt -kt -kt -kt -kt -ET -ET -kt -kt -kt -ET -ET -ET -ET -ET -ET -ET -ET -ET -kt -kt -kt -kt -kt -kt -kt -kt -kt -ET -kt -kt -kt -kt -kt -kt -kt -kt -ET -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -uR -uR -uR -uR -uR -uR -uR -uR -uR -Kt -Kt -Kt -uR -uR -Kt -Kt -uR -uR -Kt -Kt -Kt -uR -uR -Kt -Kt -Kt -uR -uR -Kt -Kt -Kt -uR -uR -Kt -Kt -Kt -uR -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -rT -rT -rT -rT -NR -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -ur -iO -ur -ur -ur -ur -ur -ur -iO -ur -ur -NR -NR -NR -mK -mK -mK -mK -mK -mK -mK -mK -Bz -Lu -UY -Pm -Pm -Pm -Pm -Pm -UY -Fy -bP -bP -"} -(47,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -hk -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -wI -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -wI -wI -wI -wI -wI -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -ur -Yj -jX -rT -NR -ur -ur -ur -NR -NR -NR -NR -NR -rT -rT -rT -rT -rT -Xm -Gm -bi -rT -rT -rT -rT -rT -NR -NR -NR -mK -ur -ur -ur -ur -ur -ur -ur -Bz -Lu -UY -Pm -Pm -Pi -Pm -Pm -UY -Fy -bP -bP -"} -(48,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Di -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -ci -Ss -GD -kD -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -wI -wI -wI -wI -wI -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -he -He -ur -qt -NR -ur -ur -ur -NR -NR -NR -NR -NR -rT -nk -nk -aD -mR -JY -rT -NR -mR -aD -oh -oh -rT -NR -NR -NR -mK -ZL -ur -ZL -ur -ur -ur -hX -Bz -Lu -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(49,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Di -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -GD -GD -GD -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -wI -wI -wI -wI -wI -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -Bz -ur -Jd -ur -rT -NR -ur -ur -ur -NR -NR -NR -NR -NR -rT -JY -JY -JY -JY -JY -rT -NR -NR -NR -NR -NR -rT -NR -NR -NR -ur -ur -ur -ur -ur -ur -ur -Bz -Bz -Lu -UY -Pm -Pm -Pm -Pm -Pm -UY -Fy -bP -bP -"} -(50,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -hk -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -GD -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -wI -wI -wI -wI -wI -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -zq -ur -ur -aK -rT -kA -ur -PP -ur -NR -NR -NR -NR -NR -rT -Bl -rT -bi -rT -bi -rT -bi -rT -bi -rT -bi -rT -NR -NR -NR -mK -ur -yQ -ur -ur -yQ -ur -Bz -Lu -Lu -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(51,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ws -Pu -Pu -Ws -Pu -Pu -Pu -Pu -Ws -Pu -Pu -Pu -Pu -Pu -Ws -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -In -In -In -In -In -In -In -In -In -In -Wo -ET -ET -ET -ET -ET -ET -kt -kt -kt -ET -ET -ET -ET -ET -ET -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -Kt -Kt -Kt -uR -uR -Kt -Kt -Kt -uR -uR -Kt -Kt -Kt -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -zq -ur -JK -Zs -rT -NR -ur -ur -ur -NR -NR -PV -NR -NR -rT -Bl -rT -Ur -rT -Ur -rT -Ur -rT -Gq -rT -Ur -rT -NR -NR -RT -mK -sZ -Og -bz -BX -oc -Ce -Bz -Lu -Lu -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(52,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ws -XX -EL -Mt -IX -IX -JB -Uu -mN -mN -vt -yx -eo -mN -Ws -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -ef -OL -ax -OL -sb -OL -OL -OL -LH -OL -Rd -eC -ZQ -ET -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -ss -ss -ss -it -yu -yW -xL -HV -Od -it -ss -ss -ss -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -Bz -Bz -Bz -Bz -Bz -Bz -og -ur -og -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Lu -Lu -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(53,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ws -BI -EL -Mt -Ct -tf -IX -IX -zV -zV -mN -bm -Fz -mN -Pu -Ss -Ss -Ss -Ss -GD -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -HI -ef -OL -Is -OL -sb -OL -OL -qw -LH -HZ -Rd -OL -ZQ -HI -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Hc -ss -ss -ss -az -az -az -az -az -az -it -ss -ss -ss -Hc -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -ur -PU -ur -Bz -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(54,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ws -mv -Oo -IX -IX -IX -IX -yx -uu -lS -Va -lS -HO -qO -Pu -Ss -Ss -Ss -Ss -GD -wI -wI -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -HI -ef -OL -Is -OL -sb -OL -OL -OL -LH -OL -Rd -XS -ZQ -HI -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Hc -ss -ss -ss -kK -kK -kK -kK -kK -kK -Es -ss -ss -ss -Hc -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -ur -ur -GM -Bz -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -UY -Pm -Pm -Pi -Pm -Pm -UY -Lx -bP -bP -"} -(55,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ws -lU -EL -jB -Lv -wE -IX -jq -Va -eo -HO -mN -mN -yF -Pu -Ss -Ss -Ss -Ss -GD -wI -NI -wI -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -HI -ef -OL -Is -OL -sb -OL -OL -OL -LH -qw -Rd -OL -ZQ -HI -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Hc -ss -ss -ss -kK -kK -Fu -kK -kK -kK -ss -ss -ss -ss -Hc -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -lg -lb -og -Bz -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(56,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ws -tc -EL -cc -iY -VH -Le -Uu -yx -HO -Fz -yx -HO -jq -Pu -Ss -Ss -Ss -Ss -GD -wI -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -HI -OL -OL -OL -OL -OL -OL -OL -OL -OL -OL -OL -OL -OL -HI -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Hc -it -it -ss -kK -kK -kK -kK -sJ -kK -ss -kK -ss -ss -Hc -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -dF -ur -dF -Bz -Lx -Lx -Lx -Lx -Lx -Lx -iu -ya -ya -ya -ya -ya -ya -ya -ya -ya -ya -ya -ya -ya -ya -AZ -UY -UY -UY -UY -Da -kp -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(57,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ws -nv -Xk -IX -IX -IX -IR -Uu -Uu -IX -Va -mN -Va -YK -Ws -Ss -Ss -Ss -Ss -GD -wI -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -OL -OL -OL -OL -OL -OL -OL -OL -OL -de -OL -OL -OL -ET -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -Pa -yW -yJ -yJ -ss -yJ -ss -ss -ss -ss -kK -ss -Bj -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -Bz -Bz -Bz -Bz -Bz -nx -nx -nx -Bz -Bz -Bz -Bz -Bz -Bz -Lx -Fq -Pm -Pm -zA -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -IS -Pm -Rz -Pm -Rz -Pm -Jj -Pm -Fq -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(58,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ws -Jm -CX -CZ -CZ -Uk -TK -Uu -Uu -Pv -Vl -pj -eo -mN -Pu -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -HI -eb -OL -QR -OL -OL -OL -ET -ET -ET -ET -OL -OL -OL -HI -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Hc -it -it -yJ -yJ -AD -uR -uR -uR -uR -nX -kK -ss -pd -Hc -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -yl -yl -yl -yl -eB -qG -qG -qG -Bz -Bz -Bz -Bz -Bz -Bz -Lx -Fq -Pm -Pm -zA -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -IS -Pm -Rz -Pm -Rz -Pm -Jj -Pm -Fq -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(59,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ws -pt -KY -Al -IX -IX -LI -Uu -Uu -Kd -Zz -eo -HO -uu -Pu -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -HI -eb -OL -QR -OL -OL -OL -ho -ho -oK -ET -OL -OL -OL -HI -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Hc -ss -kK -yJ -eN -yJ -uR -zT -jP -jP -ss -kK -ss -zw -Hc -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -XI -XI -XI -XI -XI -Pk -qG -qG -mQ -mQ -mQ -mQ -mQ -Bz -Lx -Fq -Pm -Pm -zA -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -IS -Pm -Rz -Pm -Rz -Pm -Jj -Pm -Fq -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(60,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Uu -Uu -Uu -Uu -Uu -yh -qm -Uu -Uu -vx -Zy -jq -EE -mN -Pu -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -HI -en -OL -wz -Un -OL -Un -ho -kS -qQ -ET -OL -OL -OL -HI -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Hc -ss -Fu -yJ -Hv -yJ -uR -oC -jP -jP -ss -kK -ss -Bi -Hc -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -yl -yl -yl -yl -rm -Pk -qG -qG -mQ -Bg -Bg -Bg -mQ -Bz -Lx -Fq -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -ap -Pm -Pm -Pm -Pm -Pm -Fq -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(61,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Uu -Dr -ra -fl -AM -IX -Vp -Uu -Uu -AG -IX -mN -yx -YK -Pu -Ss -Ss -Ss -Ss -wI -hS -hS -hS -vQ -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -HI -en -OL -wz -OL -OL -OL -ET -ET -ET -ET -OL -OL -OL -HI -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Hc -it -az -yJ -Md -AD -uR -uR -uR -uR -nX -kK -ss -SS -Hc -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -MI -cG -Zl -yl -rm -Pk -qG -qG -Fr -Uw -Uw -Bg -mQ -Bz -Lx -Fq -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Fq -Lx -Lx -UY -Pm -Pm -Pi -Pm -Pm -UY -Lx -bP -bP -"} -(62,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Uu -fp -fp -fp -dL -IX -yY -Uu -Uu -JO -mN -UP -sC -mN -Ws -Ss -LO -Ss -Ss -GD -GD -LO -GD -LO -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -OL -OL -OL -OL -OL -OL -OL -OL -OL -OL -OL -OL -OL -ET -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -Pa -FG -ss -Md -ss -ss -ss -ss -ss -ss -kK -ss -sv -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -Et -dn -wb -yl -rm -Pk -qG -qG -Fr -Uw -Uw -Bg -mQ -Bz -Lx -Fq -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Fq -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(63,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Uu -gd -PI -cC -zi -Xr -cf -Uu -Uu -mx -yx -mN -UP -eo -qK -GD -GD -wI -Ss -Ss -Ss -Ss -LO -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -kt -vn -OL -vn -OL -OL -OL -OL -OL -QI -DB -Ck -vN -vN -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Kt -it -az -ss -kK -ss -ss -ss -ss -ss -ss -sJ -ss -ss -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -KE -MY -Lf -yl -rm -Pk -qG -qG -mQ -Bg -Bg -Bg -mQ -Bz -Lx -Fq -Pm -Pm -zA -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -Wk -Pm -tm -UY -UY -Hd -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(64,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Uu -On -fP -Bc -vk -IX -dN -Uu -SB -Sf -Fz -Ol -lS -IX -yE -LO -GD -GD -Ss -Ss -Ss -LO -GD -LO -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -HI -OL -Bu -OL -OL -OL -OL -OL -OL -fT -MP -DT -DT -DT -HI -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Hc -ss -kK -ss -ss -sJ -ss -ss -ss -ss -ss -kK -kK -ss -Hc -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -yl -yl -yl -yl -IH -Pk -qG -qG -mQ -mQ -mQ -mQ -mQ -Bz -Lx -Fq -Pm -Pm -zA -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -Wk -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(65,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Uu -Ih -Hn -YF -ue -cQ -QD -Uu -Uu -Va -UP -mN -UP -kL -qK -GD -GD -hS -wI -Ss -LO -wI -wI -NI -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -kt -vn -OL -vn -OL -OL -OL -OL -OL -yM -OL -OL -OL -OL -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Kt -ss -ss -ss -ss -ss -ss -kK -kK -kK -kK -kK -kK -ss -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -CK -CK -CK -cw -CK -Pk -qG -qG -Bz -Bz -Bz -Bz -Bz -Bz -Lx -Fq -Pm -Pm -zA -Pm -uz -Pm -bk -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -Wk -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(66,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Uu -MF -MF -MF -IN -IX -IX -Uu -Uu -MK -yx -oM -Gu -oM -Ws -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -kt -OL -OL -OL -OL -OL -OL -OL -OL -ET -OL -OL -OL -KV -kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Kt -ss -ss -ss -kX -FG -fH -kK -mG -JQ -WP -ss -ss -ss -Kt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -yl -yl -yl -OE -yl -qG -qG -qG -iy -iy -iy -iy -iy -Bz -Lx -Fq -Pm -Pm -zA -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -Wk -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(67,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Uu -rk -ZH -fl -dM -iS -ii -Uu -Uu -uL -yx -mN -Va -YK -Ws -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -OL -OL -OL -OL -OL -OL -OL -OL -Cv -OL -HK -Bq -KV -ET -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -ss -ss -ss -kX -aY -kP -ss -kX -Oh -kP -ss -ss -ss -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -wq -xu -pA -wq -dA -ND -Xf -Kk -iy -iy -iy -iy -iy -Bz -Lx -Fq -Pm -Pm -zA -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -Wk -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(68,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Uu -Uu -Uu -Uu -Uu -Uu -Uu -Uu -Ws -Pu -Pu -Pu -Pu -Ws -Ws -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -uR -Kt -Kt -Kt -uR -uR -Kt -Kt -Kt -uR -uR -Kt -Kt -Kt -uR -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -FU -Ip -pA -wq -xu -ND -BB -Gk -BD -BD -iy -iy -iy -Bz -Lx -Fq -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pi -Pm -Pm -UY -Lx -bP -bP -"} -(69,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -wq -xu -pA -wq -Pg -ND -qG -qG -vh -iy -iy -iy -iy -Bz -Lx -Fq -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Bk -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -AH -UY -UY -Hd -ap -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(70,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -wq -sX -yS -wq -Pg -ND -qG -qG -Pj -iy -iy -iy -iy -Bz -Lx -Fq -Pm -Pm -Pm -Pm -ap -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -ap -Pm -Pm -Pm -Pm -Fq -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(71,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -wq -xu -pA -wq -gj -ND -qG -qG -BD -iy -iy -iy -iy -Bz -Lx -Fq -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Pm -Fq -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(72,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -wq -Pg -pA -wq -xu -dB -ex -xM -SL -iy -iy -iy -iy -Bz -Lx -Fq -Pm -Pm -zA -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -Wk -Pm -Fq -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(73,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -yl -yl -yl -OE -nI -uN -zW -zW -ew -uT -wr -Bo -iy -Bz -Lx -Fq -Pm -Pm -zA -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -Wk -Pm -Fq -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(74,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Bz -Lx -Fq -Pm -Pm -zA -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -uz -Pm -Wk -Pm -Fq -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(75,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -TW -ya -ya -ya -ya -ya -ya -ya -ya -ya -ya -ya -ya -ya -ya -ya -ya -ya -ya -ya -ya -kN -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(76,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(77,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Fy -Fy -Fy -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Lx -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Lx -Lx -Lx -UY -Pm -Pm -Pi -Pm -Pm -UY -Lx -bP -bP -"} -(78,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -bP -bP -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Lx -Lx -Lx -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(79,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -Fy -UY -Pm -Pm -Pm -Pm -Pm -UY -Lx -bP -bP -"} -(80,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -Fy -Fy -Fy -bP -bP -Fy -Fy -Fy -Fy -Fy -bP -bP -bP -bP -bP -bP -bP -bP -Fy -Fy -Fy -Fy -Fy -bP -bP -bP -bP -bP -bP -Fy -Fy -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Fy -Fy -Fy -Fy -bP -UY -Pm -Pm -Pm -Pm -Pm -UY -bP -bP -bP -"} -(81,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Se -lm -lm -lm -lm -lm -Se -bP -bP -bP -"} -(82,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Se -lm -lm -lm -lm -lm -Se -bP -bP -bP -"} -(83,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Se -lm -lm -lm -lm -lm -Se -bP -bP -bP -"} -(84,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Se -lQ -lm -lm -lm -GL -Se -bP -bP -bP -"} -(85,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Se -lm -lm -lm -lm -lm -Se -bP -bP -bP -"} -(86,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Se -lm -lm -AP -lm -lm -Se -bP -bP -bP -"} -(87,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -Se -Pw -Pw -Pw -Pw -Pw -Se -bP -bP -bP -"} -(88,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -Wo -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -Wo -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -gi -gi -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -gi -gi -gi -gi -gi -gi -JZ -JZ -JZ -gi -gi -gi -gi -JZ -JZ -JZ -gi -gi -gi -gi -JZ -JZ -JZ -JZ -JZ -JZ -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Jw -fB -fB -fB -fB -fB -fB -fB -fB -Jw -fB -fB -fB -fB -fB -fB -fB -fB -fB -Jw -fB -fB -fB -fB -fB -fB -fB -fB -fB -Jw -fB -fB -fB -fB -fB -fB -fB -fB -Jw -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bd -bP -bP -bP -bP -bP -bP -"} -(89,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -Wo -BC -xY -xY -xY -xY -xY -xY -xY -xY -hn -xY -xY -xY -xY -xY -xY -xY -xY -xD -NA -NA -VW -NA -NA -NA -xD -Zj -mz -Zj -xD -ay -bq -KL -AB -ay -Uc -CA -bq -BC -Wo -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -Sh -BR -Sh -Sh -Sh -Sh -Sh -Qd -Qd -Qd -Qd -Qd -Sh -Sh -BR -Sh -EH -EH -EH -EH -EH -dj -EH -EH -EH -Nf -pP -Nf -iU -iU -Li -qz -qz -kZ -Nf -Nf -EH -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Jw -Fo -Fo -OO -Jn -Jn -Jn -Jn -Fo -Fo -eH -eH -eH -eH -eH -Fo -Fo -Fo -Fo -OO -OO -Fo -Fo -Fo -Fo -Fo -WD -WD -Fo -Fo -xA -fi -fi -fJ -fJ -JH -fJ -FC -Jw -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -bP -"} -(90,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -Wo -BC -xY -xY -xY -FV -FV -FV -FV -FV -FV -FV -FV -FV -FV -FV -FV -xY -xY -xD -NA -HH -HH -NA -NA -NA -LL -NA -NA -NA -xD -ay -bq -ay -nf -oa -Ai -bq -bq -BC -Wo -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -Sh -Sh -Sh -Sh -Sh -Sh -BR -Qd -Qd -Qd -Qd -Qd -Sh -Sh -Sh -xh -EH -EH -EH -pP -EH -EH -EH -Xs -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -JZ -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Jw -Fo -vR -Jn -Bm -vR -VO -Jn -vR -Fo -Fo -Fo -EB -Fo -eH -Ux -OO -OO -OO -EB -Fo -OO -Fo -WD -WD -wX -WD -EB -Fo -Fo -xA -fi -Iy -nO -fi -FC -FC -FC -Jw -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -"} -(91,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -Wo -BC -BC -xY -xY -FV -wG -lY -wG -AT -Wz -jr -xs -qe -gR -zB -FV -xY -xY -xD -LL -xD -xD -ku -xX -DM -xD -xD -xD -xD -xD -ay -bq -MN -AB -ay -Uc -sE -bq -BC -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -gi -Sh -Sh -xh -Sh -Sh -Sh -Qd -Qd -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -Ql -oq -wk -hl -Ql -Ql -Ql -qz -EH -pP -EH -hD -EH -rI -qz -BZ -JZ -LP -LP -JZ -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Jw -Jw -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -An -fi -Ao -zN -ZY -OH -nc -FC -Jw -Jw -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -ci -In -In -In -In -In -In -In -In -In -Mg -"} -(92,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -Wo -DG -BC -xY -xY -FV -wG -To -jr -wG -Nv -wG -MR -wG -wG -wG -IZ -xY -xY -xD -HS -HS -xp -HS -HS -HS -Mz -jd -HS -KK -xD -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -JZ -Ql -Ql -Ql -Ql -Ql -Ql -Qd -Qd -Jh -Jh -Ql -JZ -JZ -JZ -JZ -JZ -JZ -Ql -Sc -Sc -Sc -Sc -Sc -Ql -qz -qz -Ep -Li -iU -Li -MS -qz -qz -JZ -Jh -Jh -Jh -gi -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Jw -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -Jw -Jw -Jw -Jw -Jw -Jw -Jw -Jw -Jw -Jw -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -ci -In -In -In -In -In -In -In -In -In -Mg -"} -(93,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -BC -WB -xY -FV -jr -SZ -fb -jr -wG -jr -wG -wG -bF -vX -IZ -xY -xY -xD -HS -HS -oB -HS -HS -HS -HS -RD -HS -LQ -xD -BC -BC -Ia -GG -ZN -GG -GG -DR -DR -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -Sc -Sc -Sc -Sc -Sc -Sc -Qd -Rw -Jh -Jh -Ql -JZ -fr -dq -dq -hO -JZ -Ql -Sc -lC -Xx -Fv -Sc -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -Cx -zf -Jh -gi -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -OO -OO -OO -Jn -OO -OO -Jn -OO -WD -WD -eH -eH -eH -Fo -OO -OO -pr -pr -pr -OO -OO -OO -OO -OO -kV -kV -Jw -Jw -AR -jz -jz -jz -jz -rS -rS -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -ci -In -In -In -In -In -In -In -In -In -Mg -"} -(94,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -BC -xY -xY -FV -uF -rp -Br -xY -XT -jZ -JT -wG -wG -wG -IZ -xY -xY -xD -uK -HS -xp -HS -bJ -HS -HS -bH -HS -LQ -xD -BC -BC -wo -GG -GG -GG -GG -DR -DR -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -eE -jI -uZ -vp -vp -Sc -Qd -Qd -Jh -Gs -Ql -JZ -tO -tO -tO -pU -JZ -Ql -Sc -Hm -Xx -bj -Sc -JZ -JF -JF -Ap -Ap -Ap -Ap -se -JZ -JZ -JZ -Jh -xr -zf -gi -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -OO -Jn -OO -OO -Jn -OO -Fo -Fo -WD -eH -eH -eH -eH -eH -eH -YD -OO -gm -pr -pr -pr -OO -OO -OO -kV -kV -Jw -Jw -Ph -jz -jz -jz -jz -rS -rS -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(95,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -BC -xY -xY -Gw -mE -dp -Br -XT -XT -jZ -Ds -wG -wG -wG -IZ -xY -xY -xD -nS -HS -HS -HS -HS -HS -HS -HS -HS -KK -xD -BC -BC -BC -BC -BC -BC -BC -LG -LG -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -PS -jI -eE -vp -vp -OC -Qd -Qd -zf -Jh -Ql -JZ -fx -bW -tO -tO -JZ -Ql -Sc -lC -Xx -Fv -Sc -JZ -JF -JF -Ap -fR -Ap -Ap -GE -JZ -JZ -JZ -zJ -Jh -Jh -gi -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -OO -OO -OO -Jn -Jn -Fo -WD -Ob -OO -Fo -Fo -Cd -Fo -Fo -eH -Fo -OO -OO -pr -pr -pr -pr -OO -OO -kV -kV -Jw -Jw -Jw -Jw -Jw -Jw -Jw -Hp -Hp -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(96,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -BC -xY -GK -GK -XQ -GK -dp -GK -XQ -GK -wG -uI -wG -wG -FV -DF -xY -xD -ZU -HS -xp -HS -HS -HS -HS -Fk -HS -LQ -xD -pS -xY -xY -Cz -xY -qS -BC -LG -LG -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -hb -jI -eE -vp -vp -Sc -Fx -Qd -zf -Jh -Ql -JZ -SU -zS -AO -Mk -JZ -Ql -Sc -Xx -Xx -Xx -Sc -JZ -to -to -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -Jh -Jh -Jh -gi -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -Jn -Jn -OO -OO -WD -WD -WD -OO -Jn -Jn -vR -Fo -Fo -Fo -Fo -Fo -OO -OO -OO -pr -pr -pr -pr -OO -kV -kV -EB -Fo -Fo -Fo -Fo -EB -Jw -Hp -Hp -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(97,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -BC -xY -GK -Gw -dp -GK -Gw -GK -Gw -GK -yG -FV -FV -wG -FV -xY -xY -xD -Sw -HS -sh -HS -HS -HS -HS -RD -IP -KK -xD -NO -xY -xY -xY -xY -vv -BC -LG -LG -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -Uv -jI -kc -vp -Ay -Sc -Qd -Qd -Jh -Jh -Ql -Ql -tO -tO -tO -tO -Ql -Ql -Sc -Xx -Xx -Xx -Sc -JZ -to -to -JZ -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -OO -PH -dS -WD -WD -oP -oP -Fo -Jn -Jn -vR -VD -Fo -Fo -Fo -KT -fG -fG -fG -Fo -pr -qU -pr -OO -kV -kV -Fo -nM -nM -nM -nM -Fo -Jw -Hp -Hp -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(98,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -BC -xY -GK -Bw -Bw -GK -Bw -GK -Bw -GK -Bw -Bw -Bw -aA -xY -xY -xY -xD -xD -xD -xD -xD -HS -xq -xD -xD -xD -xD -xD -FW -Dm -xe -xe -BC -BC -BC -LG -LG -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -RS -jI -eE -vp -vp -Sc -Qd -Qd -Jh -Jh -Ql -Ql -aI -uk -tO -Wm -Ql -Ql -Sc -Xx -Xx -Xx -Sc -JZ -to -to -JZ -Ca -Jh -zf -Jh -Jh -Jh -zf -Jh -Jh -Jh -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -OO -Jn -Fo -Fo -Fo -Fo -OO -OO -Jn -Jn -vR -Fo -Fo -Fo -fG -fG -OG -OG -Rv -EA -fG -pr -pr -OO -kV -kV -QF -nM -HJ -Rv -nM -Fo -RB -Hp -Hp -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(99,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -BC -oY -oY -XQ -GK -xD -xD -GK -XQ -GK -GK -xD -xD -Fp -Fp -rc -aA -aA -aA -fK -aA -aA -aA -aA -aA -aA -fK -nd -df -xd -aA -aA -aA -GG -GG -GG -DR -DR -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -tD -jI -eE -vp -vp -Gx -Qd -Qd -Jh -Jh -Ql -Ql -YI -tO -tO -JW -Ql -Ql -Sc -GC -Xx -Xx -Sc -JZ -JF -JF -XW -XW -Qd -Qd -Qd -Qd -Qd -Qd -Jh -Jh -Jh -gi -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -OO -Jn -Fo -Fo -Fo -Fo -oP -OO -Jn -QF -QF -QF -Fo -fG -OG -Rv -Rv -OG -OG -Rv -fG -pr -pr -pr -kV -kV -QF -nM -nM -nM -nM -Fo -Fo -kV -kV -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -Mg -"} -(100,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -BC -yT -Tp -Tp -Ek -Ek -Ek -Op -SH -SH -SH -SH -Bf -Gw -MM -aA -aA -aA -aA -aA -aA -jT -jT -jT -aA -aA -aA -ig -aA -aA -aA -aA -aA -GG -GG -wK -DR -DR -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -jI -jI -fV -vp -vp -vp -Qd -Qd -zf -Jh -Ql -Ql -VR -sD -je -eV -Ql -Ql -Sc -Kn -Xx -Xx -Sc -JZ -JF -tx -XW -XW -Qd -Qd -Qd -Qd -Qd -Qd -Jh -Jh -Jh -gi -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -Jn -OO -Fo -Fo -Fo -Fo -Fo -oP -OO -QF -QF -QF -QF -fG -OG -Rv -Rv -Rv -Rv -Rv -fG -pr -pr -pr -kV -kV -EB -Fo -Fo -Fo -VD -EB -Fo -kV -kV -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -Wo -uv -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -ud -PC -Wo -In -In -In -In -In -In -In -In -In -Mg -"} -(101,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -BC -ZG -ZG -ZG -wV -Ek -Ha -pL -GR -Mu -Ha -SH -hQ -hQ -GK -gC -gC -xD -IZ -IZ -xD -xD -aA -aA -xD -xD -IZ -QE -xD -xD -xY -iC -xY -Bp -BC -BC -BC -BC -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -Sc -Sc -Sc -Sc -Sc -Sc -Qd -Qd -Jh -Jh -Ql -Ql -Wc -Ql -Ql -Ql -Ql -Ql -Sc -Sc -cr -Sc -Sc -JZ -JZ -JZ -JZ -JZ -Jh -Jh -Jh -Jh -Qd -Qd -Jh -Jh -Jh -gi -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Jw -kV -kV -OO -OO -Fo -Fo -Fo -Fo -Fo -Fo -OO -QF -QF -QF -QF -fG -Rv -Rv -OO -fG -Ml -Rv -fG -pr -pr -pr -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -Jw -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -In -Mg -"} -(102,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -BC -xw -yT -ZG -qn -JG -KM -VS -dH -dH -Ha -Ji -RP -TQ -xD -aB -IW -UL -qq -qq -Vc -xD -aA -le -xD -Oy -vq -Hf -ZK -xD -xY -xD -xD -xD -xD -xD -xD -xD -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -Ql -Ql -Ql -Ql -Ql -Ql -Fx -Qd -Jh -Jh -Ql -Jh -Jh -Jh -Jh -Jh -Jh -Ql -Jh -Jh -Jh -Jh -Jh -Jh -Jh -yR -Jh -Jh -Jh -Jh -Jh -Jh -Qd -Qd -lK -Jh -Jh -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -Jn -OO -Fo -Fo -Fo -Fo -Fo -Fo -QF -QF -Fo -Fo -QF -fG -Rv -Rv -fG -fG -Ml -Rv -Rv -fG -Fo -Fo -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -Wo -In -In -In -In -In -In -In -In -Mg -"} -(103,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Wo -xw -xw -ZG -JG -KM -KM -QB -EQ -Ha -SH -SH -TQ -xD -IW -TQ -TQ -gq -nK -gq -nr -aA -aA -xD -Ei -cX -BM -Aa -wn -xY -IV -Dg -Zo -tp -ka -ka -xD -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -Xe -Jx -zg -Sc -Sh -Rw -Qd -Qd -Qd -Qd -ij -Qd -Qd -Qd -Qd -Qd -Qd -ij -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Rw -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Jh -Jh -Jh -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -Jn -OO -Fo -Fo -oP -QF -QF -QF -QF -Fo -oP -Fo -fG -fG -Rv -Rv -Rv -Rv -Rv -Rv -fG -fG -Fo -WD -Fo -Ne -wh -wh -Ne -wh -wh -EB -wh -wh -Fo -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -Wo -Ba -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -PC -Wo -In -In -In -In -In -In -In -In -Mg -"} -(104,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -Wo -Wo -Wo -xw -ZG -Ha -KM -eK -qc -GV -SH -TQ -TQ -xD -Yh -TQ -qq -Vc -gq -gq -gq -aA -aA -IZ -qx -vq -vq -kW -xD -xY -xD -Dg -Dg -Dg -Dg -Dg -xD -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -tO -tO -tO -Sc -Sh -Qd -Qd -Qd -Qd -Qd -Qd -Rw -Qd -Qd -Qd -Qd -Rw -Qd -Qd -Qd -Qd -Qd -Rw -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Jh -Jh -Jh -gi -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -OO -OO -Fo -Fo -Fo -QF -QF -QF -QF -Fo -Fo -Fo -fG -fG -fG -YW -Rv -Rv -Rv -fG -KT -Fo -WD -dg -Fo -Fo -Fo -Fo -Fo -Fo -Fo -Fo -Fo -Fo -Fo -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -Wo -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -sP -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(105,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -Wo -xw -Ha -KM -Oi -KM -SH -Ji -RA -TQ -GK -GK -GK -GK -YL -gq -TQ -gq -aA -aA -IZ -oQ -vq -vq -NB -xD -xY -xD -Dg -Dg -XG -Dg -DV -xD -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -tO -tO -tO -lR -GA -Qd -Qd -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -zf -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -gi -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -OO -OO -jf -jf -OO -OO -QF -Fo -Fo -Fo -OO -OO -Fo -Fo -fG -fG -Rv -Rv -fG -fG -Fo -RM -Fo -dg -Fo -pr -pr -pr -pr -pr -pr -pr -pr -Fo -Fo -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(106,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -Wo -xw -DW -Gi -Iv -cJ -bA -SH -TQ -GK -TQ -aB -GK -gq -gq -gq -BY -aA -aA -IZ -bR -vq -vq -Kc -xD -xY -xD -Dg -gg -XG -Dg -jo -xD -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -Wd -tO -tO -yq -GA -Qd -Qd -Jh -jQ -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -Py -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -Je -MW -PH -jf -uW -Fo -KX -OO -Fo -OO -OO -OO -OO -Fo -Fo -fG -fG -fG -fG -dg -Fo -Fo -vR -WD -Fo -eH -eH -eH -eH -eH -eH -eH -eH -Fo -Fo -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -YG -vr -vr -vr -vr -vr -vr -vr -vr -vr -vr -YG -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(107,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -Wo -cb -En -Xc -VT -fL -SH -RA -GK -gq -qj -XQ -aB -BY -gq -gq -aA -aA -xD -zE -vq -vq -kd -xD -xY -xD -Dg -Dg -XG -Dg -ZO -xD -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -cL -tO -tO -FM -GA -Qd -Rw -Jh -nL -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -ie -Py -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -OO -hE -dS -Fo -uW -Fo -uW -OO -Fo -OO -Fo -dS -Fo -Fo -Fo -Fo -Fo -fG -fG -eL -Fo -VD -vR -dg -Fo -dg -dg -dg -Fo -Fo -Fo -Fo -Fo -Fo -Fo -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -vr -vr -vr -vr -vr -vr -vr -vr -vr -vr -vr -vr -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(108,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -SM -DD -Gp -eY -Mw -Ek -SH -XQ -gq -gq -GK -TQ -gq -DN -xD -CT -aA -xD -Vo -vq -vq -pi -xD -xY -xD -VV -Dg -Dg -Dg -SG -xD -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -tO -tO -tO -lR -GA -Qd -Qd -Jh -Jh -Jh -Jh -zf -zf -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -gi -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -Jn -Jn -EY -Fo -uW -Fo -uW -Fo -Fo -Qh -fn -OO -OO -OR -Fo -OO -Fo -oP -Fo -Fo -WD -vR -Fo -Cd -dg -Ne -wd -YX -Ne -wd -wd -EB -wd -wd -Fo -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -vr -vr -vr -vr -vr -vr -vr -vr -vr -vr -vr -vr -Nt -Nt -Nt -Nt -Nt -Nt -Nt -sP -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(109,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -QT -Cl -Wt -yC -av -Ek -SH -xD -GK -GK -GK -Nj -mO -xD -xD -aA -aA -xD -xD -vq -YJ -xD -xD -xY -xD -xD -pI -pI -pI -xD -xD -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -tO -tO -wH -Sc -Sh -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Rw -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Jh -Jh -Jh -gi -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -OO -Jn -WD -Fo -uW -Fo -KX -OO -Fo -Fo -Fo -Fo -OR -OR -OO -OO -Fo -Fo -Fo -vR -vR -vR -WD -WD -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -vr -vr -vr -vr -vr -vr -vr -vr -vr -vr -vr -vr -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(110,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -Wo -GX -En -gk -Mw -Fe -Ek -xD -Bw -Bw -GK -aA -aA -aA -aA -aA -aA -aA -fK -aA -aA -aA -aA -aA -aA -fK -aA -aA -aA -aA -aA -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -nq -tO -Zk -Sc -Sh -Qd -Bh -Qd -Qd -Rw -Bh -Qd -Qd -Qd -Qd -Bh -Qd -Qd -Rw -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -Qd -mA -yr -Ui -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Jw -kV -kV -OO -Jn -WD -WD -OO -OO -OO -Fo -Fo -Fo -Fo -OR -Ko -Ko -Ko -OR -OR -Fo -Fo -Fo -Fo -WD -Fo -Fo -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -Jw -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -vr -vr -Pl -BV -BV -BV -BV -BV -BV -Lt -vr -vr -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(111,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -GX -qn -RP -fL -Uo -Ek -GK -Bw -Bw -GK -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -aA -zd -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -Ql -cR -Ql -Ql -Ql -Ql -Ql -Sh -Sh -Ql -Ql -Jh -Jh -Jh -Jh -Ql -Jh -Jh -Jh -Jh -Jh -Jh -Jh -QV -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Qd -Qd -aP -Kj -Ui -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -OO -Jn -OO -WD -Fo -Fo -Fo -Fo -Fo -Fo -Fo -OR -OR -OR -OR -OR -OR -Fo -Fo -Fo -QF -Fo -QF -Fo -kV -kV -EB -Fo -Cd -Fo -VD -EB -Fo -kV -kV -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -sP -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -vr -vr -vr -vr -vr -BV -vr -vr -vr -vr -vr -vr -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(112,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -Wo -GS -Xu -KM -Ha -Ek -GK -Bw -Bw -GK -si -vz -vz -vz -si -vz -vz -vz -si -si -xa -xa -xa -si -si -si -si -si -aA -aA -zd -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -Ub -Sh -zb -Sh -Sh -Sh -wY -Sh -Sh -Sh -Ql -Sc -Jg -Jg -Sc -Sc -Sc -Sc -Sc -Oj -Sc -Sc -Sc -JZ -JZ -JZ -JZ -OD -Jh -Jh -Jh -Jh -Qd -Qd -Nl -Ui -Ui -gi -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -OO -Jn -OO -Ob -WD -OO -Fo -Fo -Fo -Fo -oP -Fo -OR -OR -OR -OR -Fo -Fo -Fo -Fo -Fo -eH -eH -eH -kV -kV -Fo -nM -nM -nM -nM -Fo -Fo -kV -kV -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -vr -vr -vr -vr -vr -BV -vr -vr -vr -vr -vr -vr -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(113,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -Rn -OQ -OQ -Ha -Ek -GK -Bw -Bw -XQ -Rj -Rj -Rj -Rj -si -si -si -si -Rj -Rj -zP -mY -mY -xa -xa -si -si -si -aA -aA -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -Sh -Sh -Sh -Sh -Yu -Sh -Sh -Sh -Sh -Sh -Ql -iT -SK -Qb -cn -yO -yO -Sc -tO -gp -gp -SP -Sc -JZ -JF -JF -Ap -Ap -Qd -Qd -Qd -Qd -Qd -Qd -GB -Vw -Ui -gi -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -OO -OO -OO -OO -WD -WD -OO -Fo -Fo -WD -WD -Fo -Fo -pf -Fo -Fo -Fo -Fo -Fo -Fo -eH -eH -eH -OO -kV -kV -Fo -nM -HJ -Rv -nM -dg -bN -lj -lj -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -vr -vr -Pl -BV -BV -BV -BV -BV -BV -Lt -vr -vr -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(114,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -JG -cF -cF -RP -Ek -GK -Bw -Bw -GK -si -mJ -mJ -mJ -si -TB -TB -TB -si -si -xa -mY -mY -lZ -mY -xa -xa -mP -LG -LG -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -lX -Sh -Sh -Sh -Sh -Sh -Sh -Sh -Sh -Sh -Ql -Sc -Om -hJ -hJ -xv -pK -Sc -Xt -gp -gp -tO -Sc -JZ -JF -JF -fR -Ap -Qd -Qd -Qd -Qd -Qd -Qd -Cx -Jh -Jh -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -OO -OO -Jn -OO -OO -WD -WD -OO -Fo -Fo -WD -WD -WD -WD -WD -Fo -Fo -Fo -eH -eH -eH -eH -YD -OO -kV -kV -Fo -nM -nM -nM -nM -dg -Jw -lj -lj -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -gh -Nt -Nt -Nt -Nt -Nt -vr -vr -vr -vr -vr -vr -Ue -vr -vr -vr -vr -vr -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(115,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -Wo -ZG -Ek -Ek -Ek -GK -Bw -Bw -GK -si -si -si -si -FT -nV -nV -nV -Rj -Rj -Rj -mY -mY -mY -mY -lO -xa -BC -LG -LG -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -JZ -JZ -JZ -JZ -JZ -iz -iA -YP -YP -JZ -JZ -Sc -ch -cn -AE -yO -on -Sc -tg -gp -Xt -tO -Sc -JZ -to -to -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -Jh -Jh -Jh -gi -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -Jn -OO -Jn -Jn -OO -WD -WD -OO -OO -WD -WD -WD -WD -WD -WD -WD -Fo -eH -eH -eH -eH -OO -OO -OO -kV -kV -EB -Fo -Fo -Fo -Fo -EB -Jw -lj -lj -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -vr -vr -vr -vr -vr -vr -vr -vr -vr -vr -vr -vr -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(116,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -ZG -Tp -Ek -Ek -xD -GK -GK -GK -xa -si -si -nV -nV -nV -nV -si -si -BC -si -BC -BC -BC -BC -BC -BC -BC -LG -LG -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -Us -gx -Tv -gx -CD -RL -RL -RL -RL -TH -JZ -Sc -Nr -nQ -NS -wi -VZ -Sc -tO -gp -Ke -tO -Sc -JZ -to -to -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -Jh -Jh -Jh -gi -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -OO -Jn -Jn -Jn -OO -OO -Fo -WD -Fo -OO -Ob -WD -WD -WD -WD -WD -eH -eH -eH -OO -OO -OO -OO -OO -kV -kV -Jw -Jw -Jw -Jw -Jw -Jw -Jw -lj -lj -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -gh -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -vr -vr -vr -vr -vr -vr -vr -vr -vr -vr -vr -vr -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(117,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -ZG -ZG -Ek -Ek -xD -Bw -Bw -GK -si -xa -si -nV -Rj -nV -nV -si -xa -si -si -BC -BC -BC -kw -xV -ag -xV -DR -DR -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -PR -nG -Sh -Sh -zz -RL -RL -RL -RL -HY -JZ -Sc -ZS -hJ -hJ -yO -yO -Sc -tO -tO -gp -tO -Sc -JZ -JF -JF -XW -XW -XW -XW -XW -Rx -JZ -JZ -Jh -Jh -Jh -gi -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -OO -OO -dS -OO -Jn -OO -OO -Fo -WD -WD -Fo -VD -Fo -Fo -Fo -oP -oP -OO -OO -OO -OO -dS -OO -OO -kV -kV -Jw -Jw -Jw -Tj -fh -fh -fh -rS -rS -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -gh -Nt -YG -vr -vr -vr -vr -vr -vr -vr -vr -vr -vr -YG -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(118,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -Wo -ZG -gk -Ek -GK -Bw -Bw -GK -si -si -si -nV -Rj -nV -nV -si -Rj -zP -qH -BC -BC -BC -rD -xV -xV -xV -DR -DR -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -Li -Sh -Zx -Zx -zz -RL -PE -RL -RL -HY -JZ -Sc -bE -SK -ni -wi -VZ -Sc -MX -tO -gp -tO -Sc -JZ -JF -tx -XW -XW -XW -rU -XW -Yn -JZ -JZ -Jh -Ks -Jh -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -kV -kV -Jn -OO -OO -OO -OO -Jn -OO -OO -OO -OO -OO -OO -OO -OO -OO -OO -OO -OO -OO -OO -OO -OO -OO -OO -kV -kV -Jw -Jw -Jw -lL -fh -fh -fh -rS -rS -fB -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(119,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -ZG -ZG -Ek -GK -Bw -Bw -GK -Rj -Rj -Rj -Rj -qH -nV -nV -nV -si -BC -Rj -BC -BC -BC -BC -BC -BC -BC -BC -BC -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -JZ -Li -Sh -gy -Sh -zz -RL -RL -RL -UV -UV -JZ -Sc -CI -hJ -hJ -lo -sd -Sc -aa -gp -gp -ly -Sc -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Jw -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -Jw -Jw -Jw -Jw -Jw -Jw -Jw -Jw -Jw -Jw -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(120,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -ZG -ZG -Tp -XQ -Bw -Bw -XQ -si -si -si -si -Rj -Zv -Zv -nV -si -si -Rj -si -si -si -si -si -si -si -si -BC -BC -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -JZ -Li -Sh -ug -Zc -zz -RL -RL -RL -UV -UV -JZ -Sc -Om -hJ -AE -us -Pz -Sc -yK -gp -tO -oU -Sc -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -JZ -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Jw -Jw -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -kV -Fo -Fo -Fo -Fo -Fo -Fo -Fo -Fo -Jw -Jw -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(121,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -Wo -ZG -Tp -GK -Bw -Bw -GK -Rj -Rj -Rj -si -si -si -nV -nV -si -si -Rj -Zv -Zv -si -FT -si -si -iQ -si -BC -Wo -Wo -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -Uj -Sh -Sh -Sh -Sh -zz -RL -RL -RL -UV -UV -JZ -Sc -BQ -bu -hJ -Mj -VU -Sc -ML -tO -tO -tO -Sc -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -JZ -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Jw -Fo -Fo -Fo -EB -Fo -Fo -Fo -Fo -Fo -oP -Fo -EB -Fo -Fo -Fo -Fo -Fo -Fo -EB -Fo -Fo -Fo -OO -OO -OO -OO -BJ -Fo -Fo -Fo -Fo -Fo -Fo -Fo -Fo -Fo -Fo -Jw -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -gh -Nt -Nt -Nt -Nt -Nt -Nt -Nt -sP -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(122,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -ZG -Tp -GK -GK -GK -GK -Zv -Sp -Sp -Sp -Sp -Zv -mJ -Sp -Sp -Sp -Zv -Zv -Zv -Zv -Zv -si -si -si -si -BC -Wo -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -Uj -Sh -Sh -mu -vl -Tg -RL -RL -RL -Cj -UV -JZ -Sc -EO -hJ -hJ -yZ -km -Sc -Sc -Sc -Sc -Sc -Sc -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Jw -Fo -Fo -Fo -Fo -Fo -VD -Fo -Fo -Fo -Fo -Fo -Fo -Fo -Fo -VD -Fo -Fo -Fo -OO -OO -OO -OO -OO -Fo -VD -Fo -Fo -Fo -Fo -Fo -Fo -Fo -Fo -Fo -Fo -Fo -Fo -Jw -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -sP -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(123,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -Wo -BC -BC -BC -BC -BC -BC -zd -zd -zd -zd -BC -zd -zd -zd -zd -BC -zd -zd -zd -zd -BC -BC -BC -BC -BC -Wo -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -JZ -JZ -JZ -JZ -JZ -JZ -gi -gi -RY -gi -gi -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Jw -fB -fB -fB -fB -fB -fB -fB -fB -Jw -fB -fB -fB -fB -fB -fB -fB -fB -fB -Jw -fB -fB -fB -fB -fB -fB -fB -fB -fB -Jw -fB -fB -fB -fB -fB -fB -fB -fB -Jw -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -gh -Nt -Nt -Nt -Nt -Nt -gh -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(124,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Zt -GD -oR -wI -Zt -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -xo -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(125,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Zt -wI -GD -wI -Zt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -xo -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(126,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Zt -wI -wI -wI -Zt -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -XN -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -jW -Nt -sP -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(127,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Zt -GD -GD -GD -Zt -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -xo -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Hh -ps -ps -Hh -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -xG -uP -xG -xG -wx -wx -xG -xG -Nt -Kw -Kw -Kw -Kw -Kw -Kw -Kw -Kw -Kw -Kw -Kw -Kw -Kw -Kw -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(128,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -pH -zd -BC -zd -zd -BC -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -JZ -JZ -JZ -JZ -JZ -Lo -Lo -Lo -JZ -JZ -JZ -JZ -JZ -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Jw -fB -fB -fB -fB -fB -Jw -Jw -Jw -fB -fB -fB -fB -fB -Jw -Ss -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -xo -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Hh -ps -ps -Hh -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -xG -So -hF -mS -tZ -vi -LM -xG -zy -Ix -Ix -Ix -Ix -Ix -Ix -Ix -Ix -Ix -Ix -Ix -Ix -Ix -fF -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(129,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -dP -dK -me -Bw -Bw -BC -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -vY -vY -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -JZ -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -Fo -Fo -Fo -Fo -Fo -OO -OO -OO -Fo -Fo -Fo -Fo -Fo -fB -Ss -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -xo -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Hh -ps -ps -Hh -Hh -Hh -Hh -Hh -Hh -Hh -Hh -Nt -Nt -xG -So -So -So -So -So -Af -xG -gv -Lq -Lq -Lq -Lq -Lq -Lq -Lq -Lq -Lq -Lq -Lq -Lq -Lq -Lq -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(130,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -dP -dK -Bw -me -Bw -Bw -zd -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -UZ -vY -Ye -vY -Rl -Lo -Lo -Ic -Lo -eS -eS -eS -eS -Lo -JZ -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -Fo -VD -Fo -Fo -OO -OO -OO -OO -OO -Fo -Fo -It -Fo -fB -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -xo -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -Wo -DC -Hh -Sj -Sj -FY -FY -FY -FY -ub -Hh -Hh -Hh -Nt -Nt -xG -lF -So -So -So -So -Af -xG -gv -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(131,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -dP -dK -Bw -Bw -me -Bw -Bw -zd -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -UZ -vY -JE -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -JZ -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -Fo -Fo -OO -OO -OO -Rv -Rv -OO -OO -OO -OO -ek -Fo -fB -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -xo -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -Wo -Wo -DC -Hh -UC -Sj -FY -FY -Wn -FY -eT -Hh -Hh -Hh -Nt -Nt -xG -Rh -Ev -So -So -So -gs -Eo -Rg -Kw -Kw -Kw -Kw -Kw -Kw -Kw -Kw -Kw -Kw -Kw -Kw -Kw -Kw -Nt -qv -Wo -In -In -In -In -In -In -In -In -Mg -"} -(132,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -Wo -dP -dP -dK -Bw -Bw -BC -BC -BC -BC -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -UZ -Lo -eS -eS -eS -eS -Lo -xm -Lo -hf -hf -hf -eS -Lo -JZ -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -Fo -ek -OO -Rv -Rv -Rv -Rv -Rv -Rv -Rv -OO -Fo -Fo -fB -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -XN -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -Wo -uv -Nt -Hh -Hh -Hh -Hh -Hh -Hh -Hh -Hh -Hh -Hh -Hh -Nt -Nt -xG -xG -xG -xG -wx -wx -xG -xG -wv -Ix -Ix -Ix -Ix -Ix -Ix -Ix -Ix -Ix -Ix -Ix -Ix -Ix -fF -Nt -Mo -Wo -In -In -In -In -In -In -In -In -Mg -"} -(133,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -dP -dP -dP -dK -Bw -Ps -Bw -BC -Px -FA -BC -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -UZ -Lo -Ok -fO -Rl -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -JZ -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -Fo -OO -OO -Rv -Rv -JM -JM -JM -JM -Rv -OO -OO -Fo -fB -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -xo -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Lq -Lq -Lq -Lq -Lq -Lq -Lq -Lq -Lq -Lq -Lq -Lq -Lq -Lq -qv -Wo -Wo -In -In -In -In -In -In -In -In -Mg -"} -(134,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -dP -dP -dK -dK -Bw -Bw -Bw -Bw -BC -UR -UR -zd -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -Lo -Yo -Lo -Ac -Lo -Lo -Lo -Lo -wL -Eu -PQ -EX -Lo -JZ -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -OO -OO -Rv -Rv -Ma -Ma -Ma -Ma -uB -Rv -Rv -OO -Fo -fB -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -xo -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -Wo -DC -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -Nt -qv -Wo -In -In -In -In -In -In -In -In -In -Mg -"} -(135,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -xT -aS -aS -Kv -me -me -me -me -me -Bw -Bw -zd -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -UZ -Lo -Si -Lo -pg -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -eO -gQ -gQ -gQ -gQ -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -OO -Rv -Rv -JM -Ma -py -dd -Ma -JM -JM -JM -JM -OO -fB -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -xo -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -Wo -Ba -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -pv -aq -Wo -In -In -In -In -In -In -In -In -In -Mg -"} -(136,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -Wo -dP -dP -Kv -Bw -Bw -me -Bw -Bw -Bw -Bw -Bw -Bw -BC -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -UZ -Lo -MU -Lo -RR -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Ic -Lo -fd -fd -fd -fd -iq -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Jw -OO -Rv -JM -JM -Ma -lA -Ez -XK -JM -Ma -eG -JM -OO -Jw -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -xo -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -Mg -"} -(137,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Wo -dP -dP -dK -Kv -Bw -Bw -me -Bw -Bw -me -Bw -Ps -Bw -BC -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -UZ -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Ic -Lo -Lo -Lo -Lo -Lo -Lo -fd -fd -fd -CU -iq -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Jw -OO -Rv -JM -JM -Ma -ol -jY -Ma -sr -JM -JM -JM -OO -Jw -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -xo -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(138,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -zd -JS -JS -Kv -Kv -Bw -Bw -me -Kv -Kv -me -Bw -Bw -Bw -zd -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -UZ -Lo -ro -Xo -ro -XL -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -fd -fd -fd -iq -fd -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -OO -Rv -Rv -JM -Ma -Ma -Ma -Ma -uB -Lj -Rv -OO -OO -fB -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -xo -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(139,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -zd -dK -dK -Bw -Bw -Bw -Ps -me -Bw -Bw -me -Bw -Bw -Bw -zd -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -TG -TG -eS -eS -Lo -JZ -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -OO -OO -Rv -Rv -Rv -JM -JM -Rv -Rv -Rv -Rv -OO -Fo -fB -Ss -Ss -Ss -Ss -Ss -XN -Ss -Ss -Ss -Ss -Ss -xo -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(140,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -BC -dK -dK -dK -HN -Bw -Bw -me -Bw -Bw -me -HN -Bw -Bw -BC -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -JZ -Ss -Ss -Ss -wI -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -Fo -OO -OO -Rv -Rv -Rv -JM -Rv -OO -OO -OO -OO -Fo -fB -xo -xo -xo -xo -xo -xo -xo -xo -xo -xo -xo -xo -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -iE -Az -Az -Az -Hh -Hh -Hh -Az -Az -Hh -Hh -Az -Az -Az -Hh -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(141,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -BC -Bw -Bw -Bw -Bw -Bw -Bw -me -Bw -me -me -Bw -Bw -Bw -BC -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -UZ -Lo -mg -WZ -rZ -yN -Lo -xm -Lo -Lo -vM -Lo -eS -Lo -JZ -Ss -Ss -Ss -wI -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -Fo -Fo -OO -OO -Rv -Rv -Rv -Rv -Wr -OO -Wr -Fo -ek -fB -xo -xo -xo -xo -xo -xo -xo -xo -xo -xo -xo -xo -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hh -VN -Wi -IL -Uf -Hh -Hh -Iw -Iw -bX -bX -bX -bX -bX -Hh -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(142,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -zd -Bw -Bw -Bw -me -me -Bw -Bw -Bw -Bw -Bw -Bw -Ps -Bw -zd -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -eS -Lo -JZ -Ss -Ss -LO -Ww -bU -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -Fo -ek -Fo -OO -OO -OO -OO -OO -OO -OO -Fo -Fo -my -fB -Ss -Ss -Ss -Ss -Ss -XN -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -oD -VN -Wi -IL -eJ -Hh -Hh -Iw -Iw -Df -Df -Oq -Df -bX -Hh -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(143,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -zd -Bw -Bw -Bw -Bw -Bw -Bw -Bw -me -me -me -me -me -Bw -zd -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -gi -Lo -Lo -fO -Lo -Ic -Lo -Lo -Lo -Lo -Lo -fO -eS -Lo -JZ -Ss -Ss -bU -GD -gH -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -Fo -VD -Fo -Fo -Fo -Fo -OO -OO -Wr -Fo -Lm -VD -Fo -fB -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -oD -VN -VN -Hh -Hh -Hh -Hh -wt -PN -PO -YE -YE -bX -bX -Hh -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(144,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -BC -JX -JX -Bw -JX -Bw -me -Bw -me -Bw -Bw -Bw -Bw -Bw -BC -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -Lo -JZ -Ss -Ss -LO -Ss -LO -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -fB -Fo -ek -Fo -Fo -Fo -Fo -OO -OO -Fo -Fo -Fo -Fo -Fo -fB -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -oD -VN -VN -Hh -Hh -Hh -Hh -Iw -Iw -mM -Df -Oq -Df -bX -Hh -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(145,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -BC -zd -zd -BC -BC -zd -zd -zd -BC -zd -Kv -Kv -zd -zd -BC -Ss -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -JZ -gi -gi -gi -gi -gi -JZ -JZ -JZ -gi -gi -gi -gi -gi -JZ -Ss -Ss -qb -fd -fd -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Jw -fB -fB -fB -fB -fB -Jw -Jw -Jw -fB -fB -fB -fB -fB -Jw -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -oD -VN -VN -VN -VN -VN -Hh -Iw -Iw -qV -NT -NT -bX -bX -Hh -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(146,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -uj -LO -Ss -Ss -Ss -Ss -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -fd -fd -fd -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hh -Pc -VN -VN -VN -VN -rP -Iw -Iw -mM -Df -Oq -Df -bX -Hh -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(147,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -QG -LO -uj -vQ -vQ -LO -LO -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -vQ -vQ -LO -vQ -LO -fd -fd -LO -kJ -kJ -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -oD -La -VN -xN -VN -VN -rP -Iw -Iw -bM -cO -cO -bX -bX -Hh -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(148,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -bU -LO -Iq -rn -vQ -LO -Ss -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Em -Iq -LO -LO -LO -Ss -Ss -md -GD -LO -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -oD -La -VN -VN -VN -VN -rP -Iw -yV -mM -Df -Oq -Df -bX -Hh -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(149,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -GD -Rb -GD -vQ -vQ -LO -Ss -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -vQ -YZ -LO -GD -LO -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -oD -La -VN -VN -VN -VN -rP -YV -QX -ma -Ec -Ec -bX -bX -Hh -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(150,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -GD -GD -GD -GD -GD -vQ -Ss -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -GD -GD -GD -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -oD -La -VN -VN -VN -VN -rP -YV -IJ -AQ -Df -Df -Df -bX -Hh -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(151,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -Ss -Ss -Ss -Ss -Ss -ci -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hh -yd -VN -xN -VN -FD -Hh -wO -IJ -lG -Df -Be -Df -bX -Hh -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(152,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Az -VN -VN -VN -VN -XY -oD -YV -IJ -lG -Df -vs -Df -bX -Hh -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(153,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -oD -VN -VN -VN -VN -XY -oD -YV -IJ -kh -Df -dZ -Df -bX -Hh -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(154,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -Ss -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Az -La -VN -VN -VN -XY -oD -YV -IJ -bX -bX -bX -bX -bX -Hh -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(155,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Az -La -VN -xN -VN -FD -Hh -Hh -Hh -Hh -Hh -Hh -Hh -Hh -Hh -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(156,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hh -lM -zF -zF -HA -VN -VN -VN -Dd -QN -QN -eM -Hh -Hh -Hh -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(157,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hh -Az -Az -Az -Hh -Hh -Az -Az -Az -Hh -Hh -Hh -Hh -Hh -Hh -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(158,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(159,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(160,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(161,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(162,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(163,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(164,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(165,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -Wo -vO -vO -ws -ws -ws -vO -vO -ws -ws -ws -vO -vO -ws -ws -ws -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -Wo -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -ul -ul -ul -ul -kv -kv -kv -ul -ul -ul -ul -kv -ul -ul -ul -kv -kv -kv -ul -ul -ul -kv -kv -ul -ul -ul -ul -ul -ul -ul -ul -ul -ul -ul -ul -ul -ul -ul -ul -Wo -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -Ut -Ut -Ut -Ut -Ut -Ut -Ut -zQ -zQ -Ut -Ut -Ut -Ut -zQ -zQ -zQ -Ut -Ut -zQ -zQ -zQ -Ut -Ut -zQ -zQ -zQ -Ut -Ut -Ut -Ut -zQ -zQ -zQ -Ut -zQ -zQ -zQ -Ut -Ut -Wo -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(166,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -Wo -vO -mm -BS -dJ -dJ -vd -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -iL -kU -Uy -oL -tr -xy -CP -zO -SW -SW -oL -uA -uA -uA -uA -uA -oL -mf -mf -yX -Gb -cz -vO -Wo -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -ul -eR -GU -Up -mq -mq -mq -Up -GU -dx -Vz -CL -qy -dx -om -hB -hB -hB -hB -dx -qP -yP -yP -yP -dx -ul -cW -LB -LB -LB -xU -LB -LB -LB -SY -Or -Or -Or -ul -Wo -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -Ut -TM -IK -Dk -aR -Mb -kR -cp -cp -zQ -cp -cp -cp -cp -cp -cp -cp -cp -cp -cp -cp -cp -cp -cp -cp -cp -cp -cp -wB -px -OT -px -Kq -px -Kq -px -px -lI -Ut -Wo -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(167,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -Wo -vO -fE -Xj -Xj -Xj -AY -Xj -Xj -Xj -Xj -AY -Xj -Xj -Xj -AY -Xj -iL -Yr -rg -oL -lu -tr -tr -er -tr -tr -oL -uA -uA -NE -uA -PD -oL -oN -oN -oN -oN -FZ -vO -Wo -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -ul -WA -GU -GU -GU -ae -GU -GU -GU -dx -CL -CL -CL -dx -hB -bD -hB -bD -hB -dx -nF -yP -yP -yP -dx -ul -xU -DE -xU -LB -xU -LB -xU -LB -SY -Or -Or -Or -ul -Wo -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -Ut -rj -Dk -Dk -Dk -ck -tQ -cp -cp -hi -cp -cp -JU -cp -cp -cp -cp -cp -cp -cp -JU -cp -cp -cp -cp -cp -cp -cp -Ut -LZ -px -px -OT -px -px -px -px -OT -Ut -Wo -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -"} -(168,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -Wo -vO -vO -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -eA -Xj -iL -qE -oL -oL -qE -oL -oL -oL -oL -oL -oL -SF -iK -iK -iK -oL -oL -FL -UK -UK -ty -oN -vO -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -ul -ul -GU -GU -GU -GU -ae -GU -GU -dx -Jb -Jb -CL -gB -hB -hB -hB -hB -hB -dx -pT -yP -yP -yP -dx -ul -oX -KU -xU -LB -LB -LB -UQ -OF -vH -Or -Wf -Or -ul -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -Ut -Ut -MT -MT -MT -MT -kR -ib -cp -kR -kR -kR -kR -kR -kR -kR -zQ -zQ -kR -Eg -kR -kR -Eg -kR -zQ -zQ -kR -hm -Ut -bp -IY -eu -qf -Ua -ZE -WC -fU -px -Ut -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(169,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -Wo -Wo -vO -vd -Xj -Xj -Xj -rw -rq -eA -Xj -Xj -Xj -Xj -Xj -Xj -Xj -iL -dR -qI -dR -dR -dR -vJ -qI -dR -dR -hT -Rp -Rp -mT -mr -Ng -oL -vF -oN -oN -oN -oN -ke -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -Wo -ul -GU -GU -GU -GU -GU -GU -GU -dx -rt -rt -CL -dx -hB -bD -hB -hB -hB -dx -yP -yP -yP -yP -dx -ul -ul -ul -ul -ul -ul -ul -ul -ul -ul -Or -HX -Or -FR -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -Wo -Ut -kR -kR -kR -kR -kR -cp -cp -kR -kR -kR -kR -kR -kR -oJ -ik -ik -Uz -ik -kR -oJ -ik -ik -ik -Uz -kR -Dk -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(170,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -mm -rr -Xj -Xj -oV -Xj -Xj -Oz -jw -lJ -xP -Xj -Xj -Xj -iL -dR -cA -cA -cA -dR -cA -cA -dR -dR -hT -Rp -Rp -Rp -Rp -Rp -oL -vF -oN -oN -oN -oN -ke -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -ul -GU -GU -qJ -VC -UD -mq -ec -dx -KB -Np -CL -dx -zY -sQ -Cm -hB -hB -dx -NK -at -yP -yP -dx -ul -Ga -Ga -jR -aG -jR -jR -gl -ul -ul -NX -HX -Or -Ug -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -nR -ia -Xz -Ef -kR -cp -cp -kR -nR -ia -Xz -Ef -kR -YA -ik -ik -ik -ik -kR -YA -ik -ik -ik -ik -kR -ZM -Ut -Ut -Ut -Ut -BN -DY -DY -DY -Wg -Wg -Ut -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(171,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -Hb -TZ -aN -Xj -oV -vd -Xj -br -sA -vd -Xj -Xj -Xj -Xj -op -dR -Pr -Hu -Pr -dR -Hu -Pr -dR -dR -wS -Rp -QA -Rp -Rp -WF -oL -vF -oN -oN -oN -oN -ke -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -ul -dx -Tq -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -kT -dx -dx -dx -dx -no -dx -ul -Ga -Ga -jR -jR -jR -jR -sc -ul -ul -hK -HX -Or -Vm -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -ob -id -kR -kR -kR -cp -cp -kR -ar -id -kR -kR -kR -JR -rL -Hx -JD -ja -kR -JR -rL -Hx -JD -ja -kR -kC -Ut -Ut -Ut -Ut -Nm -DY -oi -DY -Wg -Wg -Ut -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(172,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -vd -Xj -Xj -AY -Xj -Xj -Xj -Xj -AY -Xj -Xj -Xj -AY -Xj -op -dR -cA -cA -cA -dR -cA -cA -dR -dR -wS -Rp -cv -Rp -Rp -Xa -oL -vF -oN -oN -oN -oN -ke -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -ul -AF -AF -Pd -Fl -dx -Vz -qy -dx -AF -Ab -Gy -HM -HM -mL -Ab -AF -AF -Zd -Zd -Ab -AF -AF -AF -ul -Qr -Qr -ul -ul -ul -ul -ul -ul -ul -Or -HX -Or -EM -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -Gv -XP -wp -ia -ys -cp -cp -ys -Gv -XP -wp -ia -kR -kR -kR -kR -kR -kR -kR -kR -kR -kR -kR -kR -kR -kR -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -UI -UI -Ut -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(173,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -vd -Xj -Xj -Xj -Xj -eA -Xj -Xj -Xj -Xj -Xj -Xj -Xj -xP -ws -dR -dR -dR -BO -dR -dR -dR -dR -Ik -oL -Dy -cY -Rp -Rp -Xa -oL -vF -oN -oN -oN -EG -EG -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -kv -AF -AF -AF -AF -dx -CL -CL -dx -AF -AF -Su -Fg -Fg -Su -AF -AF -EN -Zd -EN -Zd -Zd -AF -AF -ul -Qr -Qr -ul -NU -uh -ES -NU -st -XZ -Or -HX -Or -cS -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -zQ -Gv -sL -sL -wT -kR -cp -cp -kR -Gv -sL -sL -wT -kR -Ax -ji -kR -OW -kR -bY -AN -ji -ji -kR -hV -Jl -Fi -ji -ji -ji -ji -ji -nD -nD -nD -Wg -Wg -Ut -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(174,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -ws -vd -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -xP -ws -dR -cA -cA -cA -dR -cA -cA -dR -BO -wS -Rp -mn -Rp -Rp -Nu -oL -vF -TI -oN -oN -oN -mh -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -kv -AF -AF -AF -AF -dx -CL -CL -dx -AF -AF -AF -cx -cx -Zd -Zd -Zd -Zd -Zd -Zd -Zd -AF -AF -AF -ul -Qn -Qr -ul -st -st -st -st -st -ul -Or -HX -Or -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -zQ -Gv -sL -sL -id -kR -cp -cp -kR -Gv -eF -sL -wT -kR -ji -ji -FQ -ji -kR -bY -ji -ji -ji -kR -hV -Jl -VK -ji -ji -ji -ji -ji -nD -tq -nD -Wg -Wg -Ut -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(175,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -ws -mm -rr -Xj -Xj -rw -rq -Xj -Oz -XC -Jc -Xj -Xj -Xj -Tm -ws -dR -Pr -Hu -vS -dR -Hu -Pr -dR -BO -wS -Rp -mo -Rp -Rp -li -oL -Qt -oN -oN -oN -oN -pJ -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -kv -AF -AF -AF -AF -gB -CL -wg -dx -AF -AF -up -up -AF -AF -Zd -WS -EN -Zd -Zd -AF -AF -AF -AF -sf -Qr -Qr -ul -st -st -st -st -CN -ul -Or -HX -Or -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -xK -tu -bT -Xn -kR -cp -cp -kR -vB -tu -bT -Xn -kR -il -ji -kR -ji -kR -Fj -ji -ji -XA -kR -hV -ji -ji -ji -ji -ji -ji -Ut -dC -Ut -Ut -Ut -Ut -Ut -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(176,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -ws -TL -th -LA -Xj -Ja -By -Xj -oV -sA -Mp -Xj -Xj -Xj -fS -iL -dR -cA -cA -cA -dR -cA -cA -dR -dR -hT -Rp -Rp -Rp -Rp -Rp -oL -vF -oN -oN -oN -oN -pJ -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -kv -AF -AF -Jr -AF -dx -dx -dx -dx -US -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -IC -IC -ul -st -st -st -st -ee -ul -Or -HX -Or -QP -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -kR -kR -kR -kR -kR -ib -cp -kR -kR -kR -kR -kR -kR -kR -kR -kR -ji -kR -Fj -ji -Wj -jO -kR -YH -ji -ji -ji -ji -kB -ji -Ut -px -px -px -px -px -px -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(177,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -Re -Ib -Ib -Xj -oV -vd -Xj -Xj -Xj -Xj -Xj -Xj -Xj -zH -iL -vC -Aw -jt -dR -dR -dR -ld -Sk -dR -Nc -Rp -PY -oI -pp -Bn -oL -vF -pX -Dn -Dn -Dn -pJ -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -kv -AF -AF -AF -AF -dx -IC -IC -IC -IC -jl -IC -MJ -IC -IC -IC -IC -jl -MJ -IC -IC -IC -IC -jl -MJ -IC -IC -XZ -st -st -st -st -iW -ul -Or -HX -Or -BE -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -nR -ia -Xz -Ef -kR -cp -cp -kR -nR -ia -Xz -pR -kR -XA -ji -ji -pO -kR -kR -ji -kR -kR -kR -ji -ji -LT -kR -kR -kR -kR -kR -px -px -px -px -px -px -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(178,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -Qf -Xj -Xj -AY -Xj -Xj -Xj -Xj -AY -Xj -Xj -Xj -AY -Xj -iL -iL -iL -iL -iL -iL -oL -oL -oL -oL -oL -oL -oL -oL -oL -oL -oL -FP -oL -oL -oL -oL -oL -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -ul -AF -AF -AF -AF -US -IC -IC -IC -IC -IC -IC -IC -IC -IC -xx -IC -IC -IC -IC -IC -IC -IC -IC -IC -IC -IC -ul -nN -nN -cy -st -bO -ul -Or -Ir -BP -oo -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -Tl -id -kR -kR -kR -cp -cp -kR -RE -id -kR -kR -kR -FN -ji -ky -ji -Zu -ji -ji -Fc -rb -AJ -ji -ji -uM -kR -ji -ji -ji -RK -RK -RK -RK -RK -RK -RK -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(179,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -ws -jH -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -ws -tr -tr -tr -tr -iL -em -rG -gL -gL -iL -ql -ql -EZ -Tx -iL -Xj -cE -Xj -Xj -Xj -Xj -Xj -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -ul -ny -oT -AF -AF -dx -IC -IC -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -US -dx -dx -dx -dx -dx -dx -dx -dx -dx -ul -ul -ul -ul -ul -ul -sq -ul -ul -ul -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -Gv -XP -wp -ia -ys -cp -cp -ys -Gv -XP -wp -ia -kR -uG -ji -XA -ji -kR -ji -ji -ji -Wj -VQ -ji -ji -Jl -kR -ji -ji -ji -RK -zs -zs -zs -zs -zs -RK -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(180,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -ws -mm -Xj -Xj -Xj -Xj -Xj -Xj -Au -XC -lJ -Xj -Xj -Xj -Xj -ws -tr -jL -UB -xR -iL -iM -Ow -rG -rG -iL -EZ -EZ -EZ -ql -iL -Xj -cE -Xj -Xj -Xj -Xj -sG -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -ul -vV -Yi -AF -aC -dx -gn -IC -dx -fD -TT -TT -FX -FX -RN -uo -fe -Pd -AF -AF -AF -vD -xH -xH -xH -xH -dx -hW -CL -Yp -Vz -dx -ul -ul -Or -Or -Or -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -zQ -Gv -sL -sL -wT -kR -cp -cp -kR -Gv -sL -eF -wT -kR -lE -ji -FJ -ji -kR -BA -ji -ji -ji -AJ -ji -ji -Jl -kR -jC -ji -ji -gt -Wl -pw -pw -pw -zs -RK -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(181,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -ws -mm -bc -ZP -vd -Xj -Xj -Xj -br -sA -vd -Xj -Xj -Xj -Xj -iL -Vh -aj -yL -Fd -iL -Sn -rG -gL -gL -iL -YT -RZ -wJ -ql -iL -Xj -cE -Xj -xP -xP -Xj -Xj -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -kv -nU -AF -AF -aC -dx -IC -IC -dx -SI -fN -TT -FX -FX -FX -Hz -FX -AF -AF -AF -AF -dx -xH -xH -xH -xH -dx -CL -hP -CL -CL -dx -ul -ul -Or -Or -Or -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -zQ -Gv -sL -sL -id -kR -cp -cp -kR -Gv -sL -sL -id -kR -re -ji -ji -ji -kR -HB -ji -ji -ji -AJ -ji -ji -NY -kR -ji -ji -ji -gt -Wl -pw -pw -Ll -zs -RK -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(182,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -VE -VE -VE -VE -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Vr -tr -mj -ww -tr -iL -iM -rG -rG -rG -iL -EZ -EZ -EZ -GT -iL -Xj -cE -iL -iL -iL -Xj -Xj -ws -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -kv -AF -AF -AF -AF -dx -IC -IC -dx -GH -TT -TT -FX -FX -FX -FX -FX -dx -dx -dx -gB -dx -xH -xH -xH -xH -dx -dx -dx -dx -gB -dx -dx -dx -dx -dx -Or -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -HG -tu -bT -Xn -kR -cp -cp -kR -vB -tu -bT -Xn -kR -oF -ji -ji -ji -kR -ji -ry -ji -Wj -VK -ji -ji -Jl -kR -ji -ji -ji -gt -Wl -pw -pw -pw -zs -RK -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(183,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -Cc -vK -tN -XO -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -vd -Dz -tr -ej -Tc -Yy -iL -iM -rG -gL -gL -iL -EZ -EZ -EZ -Ns -iL -Xj -cE -Rr -El -tL -Xj -Xj -ws -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -kv -AF -AF -AF -AF -dx -IC -IC -dx -pc -yi -VI -FX -FX -AL -AL -FX -dx -CL -CL -CL -dx -xH -xH -xH -xH -dx -OK -vf -RV -RV -RV -RV -HC -HC -dx -Or -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -kR -kR -kR -kR -kR -ib -cp -kR -kR -kR -kR -kR -kR -kR -Zu -kR -kR -kR -JC -rd -rd -NG -rd -ji -ji -VK -kR -ji -ji -ji -RK -zs -zs -zs -zs -zs -RK -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(184,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -nt -EJ -Ky -VE -Xj -Xj -Xj -iL -iL -iL -Xj -Xj -Xj -iL -iL -Vr -iL -ws -iL -iL -iL -ta -iL -iL -iL -iL -sa -iL -iL -iL -Xj -Jq -Rr -sA -Xj -Xj -Xj -ws -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -kv -TT -TT -Gr -nE -dx -IC -IC -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -zC -Il -Vz -dx -Tz -tV -gw -jy -dx -XB -lf -ow -RV -RV -RV -jp -jp -dx -Or -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -zQ -II -aH -Cf -PB -cs -cp -cp -dT -cp -cp -cp -cp -zQ -cp -cp -cp -cp -zQ -cp -cp -cp -cp -cp -ji -ji -ji -kR -ji -ji -ji -RK -RK -RK -RK -RK -RK -RK -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(185,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -VE -VE -VE -VE -Xj -Xj -Xj -Xj -PF -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -tF -tF -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -MH -Xj -cE -tL -Xj -Xj -Xj -Xj -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -kv -TT -TT -TT -TT -dx -gn -IC -dx -tT -OS -OS -OS -dx -zC -Yp -fI -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -qD -RV -RV -RV -RV -RV -RV -RV -dx -Or -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -zQ -ik -ik -ik -ik -QK -cp -TD -cp -cp -cp -cp -cp -hi -cp -cp -cp -cp -hi -cp -gT -cp -cp -cp -Mc -ji -mV -kR -jC -ji -ji -RK -zs -zs -zs -zs -zs -RK -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(186,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -vO -Mf -Mf -di -Xj -Xj -Xj -Xj -Xj -Xj -Xj -HR -fC -fC -fC -fC -fC -UK -KP -iI -fC -fC -fC -fC -fC -fC -fC -fC -fC -fC -fC -aF -tL -tL -Xj -Xj -sG -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -ul -BH -sj -yI -fD -dx -IC -IC -dx -Qi -OS -OS -OS -dx -CL -CL -CL -dx -AF -aV -aV -AF -BH -sj -hC -fD -dx -RV -RV -RV -wy -dx -Gr -TT -fD -dx -Or -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -zQ -ZB -Wb -OM -yp -lz -cp -cp -JU -cp -cp -cp -cp -zQ -cp -JU -cp -cp -zQ -cp -cp -JU -cp -cp -ji -ji -ji -ki -ji -ji -ji -gt -Wl -pw -pw -pw -zs -RK -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(187,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -vO -Mf -Mf -di -Xj -Xj -Xj -Xj -Xj -Xj -Xj -cE -Xj -Xj -Xj -Xj -bb -Xj -Xj -Xj -Xj -xP -xP -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -tL -Xj -Xj -Xj -Xj -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -ul -dx -dx -dx -dx -dx -IC -IC -dx -PA -OS -OS -OS -dx -gB -dx -dx -dx -AF -AF -AF -AF -TT -TT -TT -TT -dx -Uh -RV -AV -YC -dx -hU -TT -TT -dx -Or -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -kR -kR -kR -kR -kR -CF -QC -kR -kR -kR -kR -kR -kR -kR -kR -FQ -kR -kR -kR -FQ -kR -kR -kR -ji -ji -ji -ji -ji -ji -ji -gt -Wl -pw -pw -Ll -zs -RK -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(188,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -vO -nj -nj -tU -vO -vO -vO -vO -VE -ws -ws -Vg -ws -ru -VE -qW -VE -ws -ws -ws -ws -VE -VE -VE -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Xj -Rr -rr -Xj -eA -Xj -ws -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -ul -lh -vf -vf -WR -dx -IC -IC -dx -OS -OS -OS -OS -vD -AF -AF -Jr -AF -Jr -AF -UF -dO -TT -TT -TT -TT -dx -Uh -RV -qA -YC -dx -sl -TT -TT -dx -Or -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -kR -Ht -Ad -bC -zQ -cp -cp -zQ -TU -in -dE -kR -iD -Nh -Am -ji -jx -kR -tI -ji -ji -Oa -kR -ji -ji -ji -ji -ji -ji -ji -gt -Wl -pw -pw -pw -zs -RK -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(189,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -vO -Mf -Mf -di -di -bx -Mf -Mf -VE -Qz -sF -pl -ac -Sa -VE -Xj -Xj -Xj -Xj -Xj -Xj -Te -WK -VE -nz -Xj -Xj -nz -Xj -Xj -Xj -Xj -Rr -OV -tL -Xj -Xj -ws -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -kv -vf -vf -vf -OK -dx -gn -IC -dx -cP -OS -wW -gM -dx -AF -pZ -AF -AF -AF -Qy -Jp -AC -TT -TT -VA -nE -dx -RV -RV -RV -kE -dx -uq -TT -hC -dx -Or -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -kR -Bs -Bs -Bs -zQ -cp -cp -zQ -Bs -Bs -Bs -kR -iD -ji -ji -Nh -jx -kR -Dc -ji -ji -RC -kR -ji -ji -uS -ji -ji -ji -ji -RK -zs -zs -zs -zs -zs -RK -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(190,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -vO -Mf -Mf -di -di -di -Mf -Mf -VE -PW -sF -pl -gX -Cu -ws -Xj -Xj -Xj -rr -Xj -Xj -Xj -Xj -zx -AW -LR -LR -vO -tl -Xj -Xj -Xj -iL -Xj -Xj -Xj -Xj -ws -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -kv -vf -vf -vf -FH -dx -IC -IC -dx -dx -dx -dx -dx -dx -dx -dx -US -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -rO -dx -dx -dx -dx -rJ -ul -ul -ul -ul -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -kR -Xv -xF -Bs -Za -cp -cp -Za -Bs -xF -Rf -kR -kR -kR -kR -Nh -Ft -kR -HB -ji -ji -QH -kR -Ut -Ut -Ut -Ut -YO -ji -ji -RK -RK -RK -RK -RK -RK -RK -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(191,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -vO -vO -vO -vO -vO -vO -nj -nj -VE -Yc -sF -pl -ac -Cu -ws -Xj -gN -tL -sO -cq -By -Xj -Xj -zx -vO -LR -LR -vO -bI -bI -ZR -bI -iL -Xj -Xj -Xj -Xj -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -kv -vf -vf -vf -vf -dx -IC -IC -IC -jl -MJ -IC -IC -IC -IC -MJ -IC -jl -IC -IC -IC -IC -IC -IC -IC -IC -IC -IC -IC -MJ -jl -IC -VY -VY -Ga -Ga -ul -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -kR -Bs -Bs -Yf -zQ -cp -cp -zQ -Bs -Yf -Bs -kR -Hi -OW -kR -ji -nn -kR -CO -ji -ji -YY -kR -Ut -Wg -Wg -nD -nD -ji -ji -tk -ye -lp -Gj -Gj -Gj -Gj -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(192,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -vO -vO -vO -vO -vO -vO -nj -nj -VE -tM -Pf -pl -ac -MC -VE -Xj -gN -tL -tL -tL -By -jU -Xj -zx -vO -LR -LR -vO -vO -vO -vO -vO -vO -Xj -Xj -Xj -Xj -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -ul -vf -vf -vf -hM -dx -IC -xx -IC -IC -IC -IC -xx -IC -IC -IC -IC -IC -xx -IC -IC -IC -IC -xx -IC -IC -IC -IC -IC -xx -IC -IC -VY -qX -Ga -Ga -ul -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -kR -OB -fM -Ot -zQ -cp -cp -zQ -UA -ln -Ot -kR -ji -Mi -kR -jx -jx -kR -CO -ji -ji -el -kR -Ut -Wg -Wg -tq -nD -ji -ji -tk -Gj -lp -Dj -jM -CW -jM -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(193,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -vO -vO -vO -vO -vO -vO -nj -nj -VE -iB -Bb -pl -ac -hr -VE -Xj -gN -Gc -tL -Iu -By -Xj -Xj -zx -vO -Mf -Mf -LD -LD -LD -Ya -vO -vO -Xj -Xj -Xj -Xj -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -ul -al -dx -dx -dx -dx -dx -dx -dx -dx -dx -US -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -US -dx -ul -ul -ul -ul -ul -ul -Qr -Qr -ul -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -kR -kR -kR -kR -kR -ib -cp -kR -kR -kR -kR -kR -FQ -kR -kR -kR -kR -kR -kR -ji -ji -kR -kR -Ut -UI -UI -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Gj -ID -Gj -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(194,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -vO -vO -vO -vO -vO -vO -nj -nj -VE -tM -Pf -pl -ac -Wa -VE -Xj -gN -uY -tL -by -By -Xj -Xj -zx -vO -Mf -Mf -LD -jg -LD -BU -vO -vO -Xj -Xj -bb -Xj -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -ul -AF -AF -gB -CL -pM -CL -dx -sj -Jk -sj -AF -dx -ui -xU -LB -LB -EI -dx -zC -qy -dx -Dq -Bv -ph -AF -AF -dx -ul -ul -ul -ab -jR -jR -Ga -Ga -ul -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -kR -Gf -aZ -dE -zQ -cp -cp -zQ -dE -wQ -Zq -kR -ji -CO -Uq -Qq -oS -kR -CO -Nh -ji -uH -kR -Ut -Wg -Wg -Xl -Xl -Xl -Xl -Yq -Ut -Ut -Ut -Gj -Gj -Gj -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(195,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -Wo -vO -vO -vO -TE -di -di -di -Mf -Mf -VE -be -wj -De -Xw -ds -VE -Xj -gN -Iu -tL -tL -By -Xj -Xj -VE -vO -vO -vO -vO -vO -vO -vO -vO -vO -ir -vO -vO -vO -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -ul -AF -AF -dx -zC -Il -Vz -dx -sj -TT -TT -AF -dx -Mr -Mr -LB -LB -LB -dx -CL -CL -dx -Zf -HL -IC -AF -mD -dx -ul -ul -ul -do -zk -jR -Ga -Ga -ul -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -Wo -Ut -kR -Yf -Yf -Bs -zQ -cp -cp -zQ -Qm -kI -Gt -kR -Qj -ji -ji -ji -ji -kR -ji -ji -ji -XA -kR -Ut -Wg -Wg -Xl -Xl -UJ -Xl -TO -Ut -Ut -Ut -WI -lp -Gj -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(196,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -Wo -Wo -vO -vO -vO -ri -di -di -Ew -Mf -Mf -VE -sS -gV -nu -sK -fQ -VE -Xj -gN -tL -WO -tL -By -Xj -Xj -qE -oN -oN -vO -SQ -vO -SQ -vO -SQ -vO -EK -ZC -bS -vO -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -Wo -ul -AF -AF -dx -dx -dx -dx -dx -kj -TT -TT -AF -dx -LB -LB -LB -GN -ZW -dx -CL -Vz -dx -XJ -IC -IC -AF -mD -dx -ul -ul -ul -ul -ul -ul -ul -ul -ul -Or -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -Wo -Ut -kR -dh -xF -Bs -Za -cp -cp -Za -bZ -sT -Oe -kR -Wq -ji -Am -ji -ht -kR -HB -mB -ji -XM -kR -Ut -tk -tk -tk -tk -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(197,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -Wo -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -VE -FO -of -ml -ml -ml -ws -Xj -Xj -Xj -EU -Xj -Xj -eA -Xj -VE -oN -oN -vO -Na -vO -Na -vO -Na -vO -EK -EK -hY -vO -vO -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -ul -ul -AF -AF -AF -AF -YM -AF -AF -AF -AF -AF -AF -dx -Xq -dx -dx -dx -dx -dx -gB -dx -dx -IC -IC -IC -TT -fD -dx -Or -Or -Or -Or -Or -Or -Or -Or -Or -ul -ul -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -Ut -Ut -kR -Yf -Bs -Bs -zQ -cp -cp -zQ -kI -qg -Er -kR -If -ji -vy -ji -ji -ji -ji -ji -ji -Ox -kR -xb -HU -lp -Gj -Gj -Ut -MD -Tk -dQ -RQ -HU -Gj -Gj -Ut -Ut -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(198,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -Wo -vO -vO -vO -vO -vO -vO -oN -dI -Zp -hq -zM -sS -of -ml -ml -ml -ws -Xj -Xj -eA -Xj -Xj -Xj -Xj -Xj -VE -oN -oN -vO -EK -EK -EK -EK -EK -EK -EK -EK -EK -ws -qh -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -ul -AF -AF -AF -AF -AF -Jr -Jr -AF -AF -AF -AF -AF -dx -AF -uO -AF -AF -AF -NV -AF -AF -AF -AF -Nq -Nq -TT -TV -dx -Or -Or -Or -Or -Or -Or -Or -Or -Or -ul -Wo -Wo -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -Ut -kG -kR -OB -Yw -Ot -zQ -cp -cp -zQ -ll -Yl -vb -kR -XA -CV -ji -CV -ji -kR -XM -zt -IB -NF -kR -lp -HU -Gj -lp -rh -Ut -dt -lp -Xp -GI -Gj -GI -Gj -Ut -Wo -Wo -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(199,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -Wo -vO -vO -vO -vO -vO -vO -yb -tR -oN -RO -Ex -Td -Ak -Mn -Hy -ml -VE -Xj -nC -Xj -Xj -Xj -Xj -nC -Xj -VE -oN -tR -vO -KA -KA -KA -KA -EK -EK -EK -EK -EK -ws -qh -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -ul -AF -VM -AF -AF -AF -Hj -Hj -GZ -AF -AF -AF -AF -dx -AF -AF -AF -AF -AF -AF -AF -Jr -AF -AF -bQ -iN -TT -tK -dx -Or -Or -Or -Or -Or -Or -Or -Or -Or -ul -Wo -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -Ut -px -kR -kR -kR -kR -kR -cp -cp -kR -kR -kR -kR -kR -kR -kR -kR -kR -kR -kR -kR -kR -kR -kR -kR -Ka -pF -CQ -RF -jM -nA -RF -Gj -ak -zL -xb -IO -Pp -Ut -Wo -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(200,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -Wo -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -ws -ws -ws -ws -vO -vO -vO -vO -ws -ws -ws -ws -vO -vO -vO -vO -vO -vO -vO -vO -vO -vO -ws -ws -ws -ws -ws -vO -qh -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -ul -ul -ul -kv -kv -kv -ul -ul -ul -kv -kv -kv -ul -ul -ul -kv -kv -kv -ul -ul -ul -ul -ul -ul -kv -kv -kv -ul -ul -ul -ul -ul -ul -ul -ul -ul -ul -ul -ul -Wo -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -Ut -Ut -Ut -Ut -Ut -Ut -Ut -zQ -zQ -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Ut -Wo -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(201,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(202,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(203,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(204,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(205,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -vO -vO -vO -vO -vO -vO -vO -vO -vO -ws -ws -vO -ws -ws -vO -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -ul -kv -kv -ul -ul -ul -kv -kv -ul -kv -kv -ul -kv -kv -ul -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Ut -zQ -zQ -Ut -Ut -zQ -zQ -zQ -Ut -zQ -zQ -Ut -zQ -zQ -Ut -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(206,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -vO -vO -vO -Yt -fZ -Mf -Mf -vO -lW -xi -ev -Dh -Dh -vI -vO -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -ul -SD -AF -AF -AX -dx -AF -AF -hB -mi -iH -ST -hB -AF -ul -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Ut -Gn -Gn -Gn -bV -rN -dY -Gn -Gn -oE -Gn -Gn -Gn -Gn -Ut -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(207,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -vO -vO -vO -uE -fZ -Mf -Mf -vO -lW -xi -Ku -Dh -Dh -Dh -ws -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -kv -AF -AF -rz -AF -dx -AF -AF -hB -yc -vj -vj -hB -AF -kv -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -zQ -rN -EW -Gn -EW -EW -EW -Gn -Gn -Gn -Gn -Gn -Gn -Gn -zQ -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(208,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -vO -vO -vO -vO -vO -LR -LR -vO -Dl -KN -ha -hw -hw -hw -ws -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -kv -AF -AF -AF -AF -dx -AF -AF -hB -qT -hB -qT -hB -AF -kv -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -zQ -rN -Gh -Gn -Gn -Gn -Gn -Gn -Gn -Gn -oE -Gn -Gn -Gn -zQ -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(209,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -vO -Ki -Ki -Ki -vO -LR -LR -vO -Ls -jc -Im -hw -hw -hw -vO -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -ul -AF -AF -mw -AF -US -AF -AF -hB -hB -qT -hB -tz -AF -ul -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Ut -Gn -Gn -Gn -TS -fj -TS -Gn -oE -Gn -Gn -Ut -UI -UI -Ut -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(210,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -vO -Ki -Ki -Ki -vO -LR -LR -vO -ed -SR -vL -QW -fy -hw -vO -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -ul -lt -nT -bh -LB -dx -gA -AF -hB -hB -hB -hB -hB -AF -ul -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Ut -rN -EW -Gn -mX -Ra -Vs -Gn -Gn -Gn -Gn -Ut -UI -UI -Ut -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(211,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -ws -Pq -un -Ov -vO -LR -LR -vO -vO -SR -Yz -NP -IM -hw -ws -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -kv -LB -LB -LB -LB -dx -AF -AF -sp -jK -Vk -jK -sp -AF -kv -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -zQ -rN -EW -jD -ea -rl -jh -Gn -mc -Gn -Gn -Ut -FK -mF -Ut -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(212,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -ws -Pq -un -Ov -kq -hw -hw -WY -vO -vO -vO -pE -hw -hw -ws -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -kv -KU -Nw -Nw -LB -dx -AF -AF -ul -ul -ul -ul -ul -AF -kv -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -zQ -Gn -Gn -Gn -tv -Kf -tv -Gn -oE -Gn -Gn -Ut -Ut -Ut -Ut -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(213,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -vO -hw -hw -hw -hw -hw -hw -hw -vO -rf -HE -hw -hw -hw -vO -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -ul -dx -dx -dx -dx -dx -AF -AF -fA -hN -ul -yz -fA -AF -ul -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Ut -Gn -Gn -Gn -Gn -Gn -Gn -Gn -Gn -oE -Gn -nD -nP -Ut -Ut -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(214,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -vO -dW -OA -Xy -hw -hw -hw -hw -vO -bv -HE -hw -hw -hw -vO -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -ul -dx -dx -dx -dx -dx -AF -AF -fA -Hw -ul -bL -fA -AF -ul -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Ut -ov -ov -am -Gn -Gn -Gn -Gn -Gn -Gn -jn -nD -fa -Ut -Ut -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(215,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -ws -qs -OA -Xy -hw -hw -hw -hw -vO -vO -vO -pE -Ze -hw -ws -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -kv -aQ -Qs -Qg -vf -dx -AF -AF -ul -ul -ul -ul -ul -AF -kv -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -zQ -mW -Gn -am -Gn -Gn -lB -lB -lB -lB -Ut -Ut -Ut -Ut -Ut -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(216,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -ws -hw -hw -hw -hw -hw -hw -hw -WY -hw -WY -hw -hw -hw -ws -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -kv -vf -kn -Go -hA -dx -AF -AF -CR -gF -OS -OS -CR -AF -kv -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -zQ -mW -yD -am -Gn -oE -lB -lB -Kb -Kb -Kb -Kb -Kb -lB -zQ -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(217,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -vO -dm -Ki -Ki -Ki -hw -hw -hw -hw -hw -Ze -hw -hw -Ze -vO -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -ul -vf -vf -vf -vf -dx -gA -AF -rE -rE -rE -rE -OS -AF -ul -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Ut -mW -Gn -ov -Gn -Gn -lB -lB -Kb -Kb -Kb -Kb -Kb -lB -Ut -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hk -Hk -Hk -Hk -Hk -Hk -fv -tP -Hk -Hk -Hk -Hk -Hk -Hk -tA -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(218,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -vO -dm -Ki -Ki -Ki -hw -hw -Ze -hw -hw -hw -hw -hw -hw -vO -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -ul -yy -AF -MZ -AF -US -AF -AF -zI -zI -KJ -zI -OS -AF -ul -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Ut -mW -Gn -mc -Gn -oE -lB -lB -Ff -Kb -Kb -Kb -Ff -lB -Ut -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(219,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -ws -bg -bg -bg -bg -hw -zp -hw -hw -hw -hw -Ze -hw -hw -ws -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -kv -AF -vo -AF -AF -dx -AF -AF -OS -OS -gF -OS -OS -AF -kv -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -zQ -dz -ov -ov -Gn -Gn -lB -lB -Kb -Kb -Kb -Kb -Kb -lB -zQ -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(220,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -ws -OP -OP -OP -OP -hw -hw -hw -hw -hw -hw -hw -hw -hw -ws -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -kv -AF -MZ -AF -AF -dx -AF -AF -OS -OS -OS -OS -OS -AF -kv -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -zQ -Gn -Gn -Gn -Gn -Gn -lB -lB -Kb -Kb -Kb -Kb -Kb -lB -zQ -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(221,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -vO -ZI -ZI -Fa -ZI -hw -hw -hw -hw -hw -hw -dy -hw -hw -vO -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -ul -SD -AF -AF -co -dx -AF -AF -KJ -rE -rE -gr -OS -AF -ul -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Ut -hj -Gn -Gn -jn -Gn -Ru -lB -lB -lB -lB -Vf -lB -lB -Ut -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(222,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -Wo -vO -ws -ws -vO -vO -ws -ws -ws -vO -ws -ws -vO -ws -ws -vO -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -ul -kv -kv -ul -ul -ul -kv -kv -ul -kv -kv -ul -kv -kv -ul -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Ut -zQ -zQ -Ut -Ut -zQ -zQ -zQ -Ut -zQ -zQ -Ut -zQ -zQ -Ut -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(223,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -wC -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(224,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hk -Hk -Hk -Hk -Hk -Hk -TF -TF -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(225,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hk -Hk -Hk -Hk -Hk -TF -TF -TF -TF -Hk -Hk -Hk -Hk -Hk -Hk -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(226,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hk -Hk -Hk -Hk -Hk -TF -TF -TF -TF -Hk -Hk -Hk -Hk -Hk -Hk -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(227,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hk -Hk -Hk -Hk -Hk -Hk -TF -TF -Hk -yj -yj -kb -kb -yj -Hk -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(228,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -yj -MV -mt -IT -yj -Hk -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(229,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -yj -MA -UX -bt -yj -Hk -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(230,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -iJ -UX -UX -UX -yj -Hk -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(231,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -yj -xf -UX -UX -yj -Hk -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(232,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -yj -Tw -DH -My -yj -Hk -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(233,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ch -Ch -Ch -Ch -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -yj -kb -yj -yj -yj -Hk -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(234,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ch -Ch -Ch -Ch -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Hk -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(235,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ch -Ch -Ch -Ch -Mg -In -In -In -In -In -In -In -In -In -In -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(236,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ch -Ch -Ch -Ch -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(237,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ch -Ch -Ch -Ch -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(238,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ch -Ch -Ch -Ch -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(239,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ch -Ch -Ch -Ch -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(240,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ch -Ch -Ch -Ch -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(241,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ch -Ch -Ch -Ch -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(242,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ch -Ch -Ch -Ch -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(243,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ch -Ch -Ch -Ch -Mg -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -In -Mg -"} -(244,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ch -Ch -Ch -Ch -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -Mg -"} -(245,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -"} -(246,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -"} -(247,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -"} -(248,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -"} -(249,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -"} -(250,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -"} -(251,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -"} -(252,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -"} -(253,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -"} -(254,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -"} -(255,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -"} -(256,1,1) = {" -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -Ry -"} diff --git a/maps/southern_sun/submaps/gateway/hiddeneclipse.dm b/maps/southern_sun/submaps/gateway/hiddeneclipse.dm deleted file mode 100644 index 8513edc26a..0000000000 --- a/maps/southern_sun/submaps/gateway/hiddeneclipse.dm +++ /dev/null @@ -1,66 +0,0 @@ -/area/awaymission/hiddeneclipse - name = "Strange Place" - icon_state = "red" - -/area/awaymission/hiddeneclipse/miningzonea - name = "Distant Mining Site" - -/area/awaymission/hiddeneclipse/miningzonea/depature - requires_power = 0 - -/area/awaymission/hiddeneclipse/miningzoneb - name = "Distant Mining Site" - -/area/awaymission/hiddeneclipse/eclipsecarrier - name = "Midnight Pantheon" - requires_power = 0 //someone bap me if I ever figure out to do rad collectors. - -/area/awaymission/hiddeneclipse/eclipsecarrier/kitchen - name = "Midnight Pantheon - Kitchen" - -/area/awaymission/hiddeneclipse/eclipsecarrier/cafe - name = "Midnight Pantheon - Cafe" - -/area/awaymission/hiddeneclipse/eclipsecarrier/armory - name = "Midnight Pantheon - Armory" - -/area/awaymission/hiddeneclipse/eclipsecarrier/engine - name = "Midnight Pantheon - Engine Room" - -/area/awaymission/hiddeneclipse/eclipsecarrier/prison - name = "Midnight Pantheon - Prison" - -/area/awaymission/hiddeneclipse/eclipsecarrier/dorms - name = "Midnight Pantheon - Dorm" - -/area/awaymission/hiddeneclipse/eclipsecarrier/cargobay - name = "Midnight Pantheon - Cargo Bay" - -/area/awaymission/hiddeneclipse/eclipsecarrier/helm - name = "Midnight Pantheon - Helm" - -/area/awaymission/hiddeneclipse/eclipsecarrier/camera - name = "Midnight Pantheon - Camera Room" - -/area/awaymission/hiddeneclipse/eclipsecarrier/science - name = "Midnight Pantheon - Research and Development" - -/area/awaymission/hiddeneclipse/eclipsecarrier/vipdefense - name = "Midnight Pantheon - VIP Guard" - -/area/awaymission/hiddeneclipse/eclipsecarrier/vipchamber - name = "Midnight Pantheon - VIP Chamber" - -/area/awaymission/hiddeneclipse/eclipsecarrier/enginemonitoring - name = "Midnight Pantheon - Enginering Monitoring" - -/area/awaymission/hiddeneclipse/eclipsecarrier/canon - name = "Midnight Pantheon - Cannon Control" - -/area/awaymission/hiddeneclipse/precursortemple - name = "Strange Temple" - requires_power = 0 - -/area/awaymission/hiddeneclipse/theabyss - name = "Strange Void" - requires_power = 0 \ No newline at end of file diff --git a/maps/southern_sun/submaps/gateway/hiddeneclipse.dmm b/maps/southern_sun/submaps/gateway/hiddeneclipse.dmm deleted file mode 100644 index fa831c7351..0000000000 --- a/maps/southern_sun/submaps/gateway/hiddeneclipse.dmm +++ /dev/null @@ -1,68790 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aj" = ( -/obj/structure/sign/warning/radioactive, -/turf/simulated/wall/r_lead, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"ak" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/lunar/ravanger, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"ao" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier/canon) -"as" = ( -/turf/simulated/floor/wood, -/area/awaymission/hiddeneclipse/eclipsecarrier/dorms) -"ax" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/bordercorner, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"aD" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/hiddeneclipse/miningzonea/depature) -"aT" = ( -/obj/structure/table/woodentable, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier/cafe) -"aX" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/bordercorner, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"ba" = ( -/obj/item/borg/upgrade/modkit/range, -/turf/simulated/floor/outdoors/lavaland/basalt{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse/miningzonea) -"bl" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/machinery/door/airlock/hatch, -/obj/machinery/door/blast/regular, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"bv" = ( -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse) -"by" = ( -/turf/simulated/mineral, -/area/awaymission/hiddeneclipse/precursortemple) -"bz" = ( -/turf/simulated/wall/r_lead, -/area/awaymission/hiddeneclipse/eclipsecarrier/enginemonitoring) -"bB" = ( -/obj/machinery/door/airlock/maintenance/cargo{ - name = "Airlock"; - req_one_access = null - }, -/turf/simulated/floor/wood, -/area/awaymission/hiddeneclipse/miningzoneb) -"bC" = ( -/obj/machinery/power/emitter, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzonea) -"bM" = ( -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier/vipdefense) -"bY" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier/cafe) -"cd" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"cf" = ( -/obj/effect/simple_portal/coords{ - tele_x = 182; - tele_y = 13; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alienplating/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"cl" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/old_tile/green, -/area/awaymission/hiddeneclipse/eclipsecarrier/kitchen) -"cn" = ( -/turf/simulated/shuttle/wall/alien/blue, -/area/awaymission/hiddeneclipse) -"cw" = ( -/mob/living/simple_mob/humanoid/eclipse/solar/cryomancer, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/cargobay) -"cx" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/hiddeneclipse/miningzoneb) -"cC" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"cK" = ( -/turf/simulated/wall/r_lead, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"cL" = ( -/obj/machinery/porta_turret/poi{ - faction = "eclipse" - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/hiddeneclipse/eclipsecarrier/dorms) -"cO" = ( -/obj/effect/simple_portal/coords{ - tele_x = 175; - tele_y = 231; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"cY" = ( -/obj/structure/table/rack, -/obj/item/syndie/c4explosive/heavy, -/obj/item/flame/lighter/zippo/c4detonator, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzoneb) -"da" = ( -/turf/space, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"dg" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"dq" = ( -/obj/structure/salvageable/computer_os, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzoneb) -"dr" = ( -/obj/effect/simple_portal/coords{ - tele_x = 8; - tele_y = 248; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alienplating/blue, -/area/awaymission/hiddeneclipse) -"dv" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"dx" = ( -/obj/structure/grille, -/obj/structure/window/titanium, -/obj/structure/window/titanium{ - dir = 8 - }, -/obj/structure/window/titanium{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"dz" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/old_tile/green, -/area/awaymission/hiddeneclipse/eclipsecarrier/kitchen) -"dD" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier/dorms) -"dL" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/borg/upgrade/modkit/cooldown/repeater, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzoneb) -"dN" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/tiled/old_tile/green, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"dQ" = ( -/obj/structure/table/rack, -/obj/item/circuitboard/shield_gen_ex, -/obj/item/perfect_tele/alien, -/obj/item/storage/belt/medical/alien, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/hiddeneclipse/theabyss) -"dR" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"eg" = ( -/turf/simulated/floor/gorefloor, -/area/awaymission/hiddeneclipse/theabyss) -"em" = ( -/turf/simulated/floor/outdoors/ironsand, -/area/awaymission/hiddeneclipse/theabyss) -"ez" = ( -/turf/simulated/wall/plastihull, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"eA" = ( -/turf/simulated/wall/plastihull, -/area/awaymission/hiddeneclipse/eclipsecarrier/dorms) -"eN" = ( -/obj/item/stock_parts/capacitor/hyper, -/turf/simulated/floor/outdoors/lavaland/basalt{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse/miningzonea) -"eX" = ( -/turf/simulated/wall/rthull, -/area/awaymission/hiddeneclipse/theabyss) -"eZ" = ( -/obj/structure/table/woodentable, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier/cafe) -"fq" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"fr" = ( -/turf/simulated/floor/outdoors/ice/dark_smooth, -/area/awaymission/hiddeneclipse/theabyss) -"fO" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/item/modular_computer/console{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/hiddeneclipse/eclipsecarrier/helm) -"gk" = ( -/obj/effect/simple_portal/coords{ - tele_x = 199; - tele_y = 219; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"gr" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier/cafe) -"gI" = ( -/obj/structure/grille, -/obj/structure/window/titanium, -/obj/structure/window/titanium{ - dir = 4 - }, -/obj/structure/window/titanium{ - dir = 1 - }, -/obj/machinery/door/blast/regular, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"gJ" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/item/mecha_parts/part/hades_left_arm, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"gS" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/item/slime_crystal, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"gU" = ( -/obj/machinery/door/airlock/hatch, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzoneb) -"gY" = ( -/turf/simulated/wall/plastihull, -/area/awaymission/hiddeneclipse/eclipsecarrier/vipdefense) -"ha" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/item/mecha_parts/chassis/hades, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"hi" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/dogbed, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"hj" = ( -/turf/space, -/area/awaymission/hiddeneclipse/theabyss) -"hl" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/old_tile/green, -/area/awaymission/hiddeneclipse/eclipsecarrier/kitchen) -"ho" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 3 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"hv" = ( -/obj/structure/table/steel, -/obj/item/archaeological_find, -/obj/item/archaeological_find, -/obj/item/archaeological_find, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzonea) -"hE" = ( -/obj/effect/simple_portal/coords{ - tele_x = 19; - tele_y = 200; - tele_z = 16 - }, -/turf/unsimulated/floor/dark, -/area/awaymission/hiddeneclipse/theabyss) -"hF" = ( -/obj/item/pickaxe/anamolous, -/turf/simulated/floor/outdoors/lavaland/basalt{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse/miningzonea) -"hK" = ( -/obj/machinery/door/airlock/maintenance/cargo{ - name = "Airlock"; - req_one_access = null - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzoneb) -"hM" = ( -/turf/simulated/floor/water/deep, -/area/awaymission/hiddeneclipse/theabyss) -"iE" = ( -/turf/simulated/shuttle/floor/alien, -/area/awaymission/hiddeneclipse/precursortemple) -"iN" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/solar/teslanoodle, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"iR" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/machinery/light, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"iU" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/gun/energy/kinetic_accelerator/premiumka, -/obj/item/borg/upgrade/modkit/resonator_blasts, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzoneb) -"jd" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/mob/living/simple_mob/humanoid/eclipse/solar/radiation, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"jj" = ( -/turf/simulated/floor/wood, -/area/awaymission/hiddeneclipse/miningzoneb) -"jp" = ( -/turf/simulated/mineral, -/area/awaymission/hiddeneclipse/miningzoneb) -"jy" = ( -/turf/simulated/wall, -/area/awaymission/hiddeneclipse/theabyss) -"jB" = ( -/mob/living/simple_mob/humanoid/eclipse/solar/teslanoodle, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/cargobay) -"jH" = ( -/obj/machinery/door/blast/puzzle, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzonea) -"jL" = ( -/obj/structure/flora/tree/jungle, -/turf/simulated/floor/grass, -/area/awaymission/hiddeneclipse/theabyss) -"jP" = ( -/obj/structure/fans/hardlight, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzonea) -"jQ" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/mob/living/simple_mob/humanoid/eclipse/solar/radiation, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/enginemonitoring) -"jY" = ( -/turf/simulated/floor/tiled/milspec, -/area/awaymission/hiddeneclipse/miningzonea/depature) -"kf" = ( -/turf/simulated/floor/outdoors/lavaland/basalt, -/area/awaymission/hiddeneclipse/miningzonea) -"kk" = ( -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier/vipdefense) -"ks" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/item/modular_computer/console{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/hiddeneclipse/eclipsecarrier/helm) -"kB" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/lunar/shotgunner, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"lg" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/item/modular_computer/console{ - dir = 4 - }, -/obj/structure/window/titanium{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/hiddeneclipse/eclipsecarrier/helm) -"lk" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/mob/living/simple_mob/humanoid/eclipse/head/security, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/hiddeneclipse/eclipsecarrier/helm) -"ln" = ( -/obj/effect/simple_portal/coords{ - tele_x = 181; - tele_y = 225; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"lF" = ( -/obj/effect/spider/stickyweb/dark, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"lG" = ( -/obj/structure/table/rack, -/obj/item/gun/energy/flamegun, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/hiddeneclipse/eclipsecarrier/armory) -"lJ" = ( -/obj/item/stock_parts/matter_bin/hyper, -/turf/simulated/floor/outdoors/lavaland/basalt{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse/miningzonea) -"mb" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"mc" = ( -/turf/simulated/mineral, -/area/awaymission/hiddeneclipse/miningzonea) -"me" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/gun/energy/kinetic_accelerator/premiumka, -/obj/item/borg/upgrade/modkit/cooldown/repeater, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzoneb) -"mn" = ( -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/wood, -/area/awaymission/hiddeneclipse/eclipsecarrier/dorms) -"mx" = ( -/obj/effect/simple_portal/coords{ - tele_x = 181; - tele_y = 237; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"mB" = ( -/obj/item/stock_parts/micro_laser/hyper, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzonea) -"mD" = ( -/turf/simulated/mineral/light, -/area/awaymission/hiddeneclipse/miningzonea) -"mI" = ( -/obj/machinery/crystal/lava, -/turf/simulated/floor/outdoors/lavaland/basalt{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse/miningzonea) -"mN" = ( -/turf/simulated/wall/plastihull, -/area/awaymission/hiddeneclipse/eclipsecarrier/helm) -"mP" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"mV" = ( -/obj/machinery/gateway, -/turf/simulated/floor/tiled/dark, -/area/awaymission/hiddeneclipse/miningzonea/depature) -"nc" = ( -/obj/effect/decal/cleanable/ash, -/turf/simulated/floor/lava, -/area/awaymission/hiddeneclipse/theabyss) -"nm" = ( -/obj/effect/simple_portal/coords{ - tele_x = 163; - tele_y = 225; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"nt" = ( -/obj/effect/simple_portal/coords{ - tele_x = 175; - tele_y = 225; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"nv" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/item/mecha_parts/part/hades_right_leg, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"ny" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/solar/firemoff, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"nD" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"nF" = ( -/turf/simulated/floor/lava, -/area/awaymission/hiddeneclipse/theabyss) -"nJ" = ( -/turf/space, -/area/awaymission/hiddeneclipse) -"nL" = ( -/obj/structure/fans/hardlight/colorable, -/turf/simulated/floor/water/deep, -/area/awaymission/hiddeneclipse/theabyss) -"nN" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/hiddeneclipse/eclipsecarrier/vipchamber) -"nS" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"nU" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/table/gold, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/enginemonitoring) -"ol" = ( -/obj/item/stool, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/mob/living/simple_mob/humanoid/eclipse/lunar/ravanger, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier/cafe) -"om" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/structure/bed/double/padded, -/obj/item/bedsheet/hosdouble, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange, -/turf/simulated/floor/tiled/old_tile/red, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"os" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"ox" = ( -/turf/simulated/floor/cult, -/area/awaymission/hiddeneclipse/theabyss) -"oy" = ( -/obj/item/stool, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier/cafe) -"oz" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/lunar/aeroblaster, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier/dorms) -"oF" = ( -/turf/simulated/shuttle/floor/alienplating/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"oI" = ( -/obj/machinery/atmospherics/unary/engine/bigger{ - dir = 1 - }, -/turf/space, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"oT" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"pf" = ( -/mob/living/simple_mob/slime/xenobio/sepia, -/turf/simulated/floor/reinforced, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"pl" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/mob/living/simple_mob/humanoid/eclipse/lunar/miner, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/enginemonitoring) -"pA" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/hiddeneclipse/eclipsecarrier/vipchamber) -"pE" = ( -/turf/simulated/shuttle/wall/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"pL" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"pO" = ( -/obj/item/circuitboard/pacman, -/turf/simulated/floor/outdoors/lavaland/basalt{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse/miningzonea) -"pQ" = ( -/obj/structure/fans/hardlight/colorable, -/turf/simulated/floor/cult, -/area/awaymission/hiddeneclipse/theabyss) -"pT" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/obj/structure/window/phoronreinforced, -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"qa" = ( -/obj/machinery/gateway{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/hiddeneclipse/miningzonea/depature) -"qd" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/structure/closet, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange, -/turf/simulated/floor/tiled/old_tile/red, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"qi" = ( -/obj/structure/table/darkglass, -/obj/machinery/button/remote/blast_door{ - id = "FindTheButton3" - }, -/turf/simulated/floor/concrete, -/area/awaymission/hiddeneclipse/theabyss) -"qj" = ( -/obj/item/stock_parts/micro_laser/hyper, -/turf/simulated/floor/outdoors/lavaland/basalt{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse/miningzonea) -"qL" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/table/gold, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/enginemonitoring) -"qQ" = ( -/obj/effect/forcefield/mime, -/turf/simulated/floor/cult, -/area/awaymission/hiddeneclipse/theabyss) -"qT" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/old_tile/green, -/area/awaymission/hiddeneclipse/eclipsecarrier/kitchen) -"rd" = ( -/obj/structure/fans/hardlight/colorable, -/turf/simulated/floor/concrete, -/area/awaymission/hiddeneclipse/theabyss) -"rf" = ( -/obj/effect/simple_portal/coords{ - tele_x = 175; - tele_y = 237; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"rn" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange, -/turf/simulated/floor/tiled/old_tile/red, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"rq" = ( -/obj/item/borg/upgrade/modkit/aoe/turfs/andmobs, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"rI" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/door/airlock/hatch, -/turf/simulated/floor/tiled/old_tile/red, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"rP" = ( -/obj/machinery/door/airlock/hatch, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/hiddeneclipse/eclipsecarrier/armory) -"rV" = ( -/obj/item/borg/upgrade/modkit/heater, -/turf/simulated/floor/outdoors/lavaland/basalt{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse/miningzonea) -"rY" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/structure/table/steel, -/obj/structure/window/titanium{ - dir = 8 - }, -/obj/structure/window/titanium, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/hiddeneclipse/eclipsecarrier/helm) -"sg" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/item/modular_computer/console{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/enginemonitoring) -"sq" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"sx" = ( -/obj/structure/table/rack, -/obj/item/clothing/glasses/material, -/obj/item/pickaxe/gold, -/obj/item/pickaxe/plasmacutter, -/obj/item/clothing/shoes/magboots, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzonea) -"sH" = ( -/obj/structure/fans/hardlight/colorable, -/obj/machinery/door/blast/puzzle{ - id = "FindTheButton3" - }, -/turf/simulated/floor/concrete, -/area/awaymission/hiddeneclipse/theabyss) -"sK" = ( -/obj/machinery/door/airlock/hatch, -/turf/simulated/floor/tiled/white, -/area/awaymission/hiddeneclipse/eclipsecarrier/dorms) -"sW" = ( -/obj/effect/simple_portal/coords{ - tele_x = 187; - tele_y = 225; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"tZ" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/item/mecha_parts/part/hades_torso, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"ua" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 3 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"um" = ( -/obj/effect/simple_portal/linked{ - portal_id = "GatewayPuzzle" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzoneb) -"uw" = ( -/obj/machinery/door/blast/puzzle{ - id = "FindTheButton1" - }, -/obj/structure/fans/hardlight/colorable, -/turf/simulated/floor/grass, -/area/awaymission/hiddeneclipse/theabyss) -"uz" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"uB" = ( -/obj/effect/simple_portal/coords{ - tele_x = 182; - tele_y = 13; - tele_z = 16 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/hiddeneclipse/theabyss) -"uC" = ( -/mob/living/simple_mob/animal/crystalbeast/snail, -/turf/simulated/mineral/floor/icey{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"uO" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"uT" = ( -/obj/item/stock_parts/scanning_module/hyper, -/turf/simulated/floor/outdoors/lavaland/basalt{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse/miningzonea) -"vg" = ( -/turf/simulated/mineral, -/area/awaymission/hiddeneclipse/eclipsecarrier/canon) -"vh" = ( -/obj/structure/table/rack, -/obj/item/stack/material/void_opal, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/hiddeneclipse/eclipsecarrier/armory) -"vk" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/item/mecha_parts/part/hades_right_arm, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"vn" = ( -/obj/effect/simple_portal/coords{ - tele_x = 187; - tele_y = 213; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"vx" = ( -/obj/item/pickaxe/anamolous, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"vF" = ( -/mob/living/simple_mob/mechanical/mining_drone{ - faction = "Possessed" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzonea) -"vG" = ( -/obj/machinery/crystal/ice, -/turf/simulated/floor/outdoors/ice/dark_smooth, -/area/awaymission/hiddeneclipse/theabyss) -"vK" = ( -/obj/item/bedsheet, -/obj/structure/bed, -/turf/simulated/floor/wood, -/area/awaymission/hiddeneclipse/miningzoneb) -"vT" = ( -/turf/simulated/mineral/crystal_shiny, -/area/awaymission/hiddeneclipse/precursortemple) -"wk" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzonea/depature) -"wm" = ( -/obj/structure/closet, -/turf/simulated/floor/wood/sif, -/area/awaymission/hiddeneclipse/eclipsecarrier/dorms) -"wD" = ( -/mob/living/simple_mob/vore/spacecritter/radcrab/supermattercrab{ - faction = "eclipse" - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"wJ" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"wN" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/old_tile/green, -/area/awaymission/hiddeneclipse/eclipsecarrier/kitchen) -"wO" = ( -/obj/item/borg/upgrade/modkit/indoors, -/turf/simulated/floor/outdoors/lavaland/basalt{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse/miningzonea) -"wQ" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/item/stack/material/void_opal, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"wR" = ( -/turf/simulated/floor/tiled/white, -/area/awaymission/hiddeneclipse/eclipsecarrier/dorms) -"wY" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzonea) -"xe" = ( -/mob/living/simple_mob/animal/giant_spider/nurse, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"xp" = ( -/obj/machinery/button/remote/blast_door{ - id = "FindTheButton4" - }, -/turf/simulated/floor/cult, -/area/awaymission/hiddeneclipse/theabyss) -"xq" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/table/gold, -/obj/structure/table/gold, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/enginemonitoring) -"xw" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/lunar/miner, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"xA" = ( -/obj/machinery/door/airlock/maintenance/cargo{ - name = "Airlock"; - req_one_access = null - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzonea) -"xF" = ( -/obj/structure/fans/hardlight/colorable, -/turf/simulated/shuttle/floor/alienplating/blue, -/area/awaymission/hiddeneclipse/theabyss) -"xG" = ( -/obj/random/multiple/large_corp_crate, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/cargobay) -"xJ" = ( -/obj/structure/inflatable, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse) -"xM" = ( -/obj/effect/simple_portal/coords{ - tele_x = 205; - tele_y = 219; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"xO" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier/cafe) -"xU" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"yd" = ( -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse/miningzonea) -"yg" = ( -/turf/simulated/shuttle/floor/alien, -/area/awaymission/hiddeneclipse/theabyss) -"yo" = ( -/obj/structure/fans/hardlight/colorable, -/obj/structure/inflatable, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/hiddeneclipse/theabyss) -"yp" = ( -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"yq" = ( -/obj/structure/fans/hardlight/colorable, -/turf/simulated/shuttle/floor/alien, -/area/awaymission/hiddeneclipse/theabyss) -"yx" = ( -/obj/structure/closet, -/obj/random/plushie, -/obj/random/mainttoyloot, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/wood, -/area/awaymission/hiddeneclipse/miningzoneb) -"yA" = ( -/turf/simulated/wall/plastihull, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"yD" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"yJ" = ( -/turf/simulated/floor/grass, -/area/awaymission/hiddeneclipse/theabyss) -"yN" = ( -/mob/living/simple_mob/humanoid/eclipse/head/shade, -/turf/simulated/floor/carpet/blue, -/area/awaymission/hiddeneclipse/theabyss) -"yT" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/solar/guardian, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"yX" = ( -/obj/effect/simple_portal/coords{ - tele_x = 182; - tele_y = 13; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"zp" = ( -/obj/item/stool, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier/cafe) -"zq" = ( -/obj/structure/table/steel, -/turf/simulated/floor/wood, -/area/awaymission/hiddeneclipse/miningzonea) -"zy" = ( -/turf/simulated/mineral/floor/icey{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"zA" = ( -/obj/structure/fans/hardlight/colorable, -/obj/machinery/door/blast/puzzle{ - id = "FindTheButton4" - }, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/hiddeneclipse/theabyss) -"zB" = ( -/obj/machinery/gateway/centeraway{ - calibrated = 0 - }, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/hiddeneclipse/miningzonea/depature) -"zD" = ( -/obj/effect/simple_portal/coords, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"zP" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"Ae" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"Aj" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/item/mecha_parts/part/hades_left_leg, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Al" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/machinery/gibber, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Ar" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/structure/table/steel, -/obj/structure/window/titanium{ - dir = 4 - }, -/obj/structure/window/titanium, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/hiddeneclipse/eclipsecarrier/helm) -"At" = ( -/turf/simulated/wall{ - can_open = 1 - }, -/area/awaymission/hiddeneclipse/theabyss) -"Au" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Av" = ( -/obj/structure/window/titanium, -/obj/structure/window/titanium{ - dir = 4 - }, -/obj/structure/window/titanium{ - dir = 8 - }, -/obj/structure/window/titanium{ - dir = 1 - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"AU" = ( -/obj/structure/fans/hardlight/colorable, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/hiddeneclipse/theabyss) -"AZ" = ( -/turf/simulated/mineral, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"Bf" = ( -/turf/simulated/floor/reinforced, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Bj" = ( -/obj/machinery/door/blast/puzzle{ - id = "FindTheButton4" - }, -/obj/structure/fans/hardlight/colorable, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/hiddeneclipse/theabyss) -"Bn" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Bo" = ( -/obj/structure/table/rack, -/obj/item/gun/energy/elementalray, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/hiddeneclipse/eclipsecarrier/armory) -"Bp" = ( -/obj/structure/table/darkglass, -/obj/machinery/button/remote/blast_door{ - id = "FindTheButton2" - }, -/turf/simulated/shuttle/floor/alien, -/area/awaymission/hiddeneclipse/theabyss) -"Bq" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/item/slime_extract/sapphire, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"BC" = ( -/obj/structure/grille, -/obj/structure/window/titanium{ - dir = 8 - }, -/obj/structure/window/titanium{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"BD" = ( -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/hiddeneclipse/eclipsecarrier/armory) -"BF" = ( -/obj/structure/reagent_dispensers/fueltank/high, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzoneb) -"BN" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/obj/structure/window/phoronreinforced, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"BU" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Ce" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/mob/living/simple_mob/humanoid/eclipse/lunar/pummler, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/enginemonitoring) -"Cf" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/solar/hellhound, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange, -/turf/simulated/floor/tiled/old_tile/red, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"Ch" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/mob/living/simple_mob/humanoid/eclipse/solar/hellhound, -/turf/simulated/floor/tiled/old_tile/green, -/area/awaymission/hiddeneclipse/eclipsecarrier/kitchen) -"Cj" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/structure/table/steel, -/obj/structure/window/titanium{ - dir = 4 - }, -/obj/structure/window/titanium{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/hiddeneclipse/eclipsecarrier/helm) -"Cl" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"Co" = ( -/obj/item/rig_module/vision/mining, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"Cy" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/machinery/autolathe, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"CD" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/lunar/aeroblaster, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"CF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/enginemonitoring) -"CG" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/machinery/light, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier/dorms) -"CT" = ( -/obj/structure/fans/hardlight/colorable, -/turf/simulated/floor/lava/harmless, -/area/awaymission/hiddeneclipse/theabyss) -"CX" = ( -/turf/simulated/shuttle/wall/alien, -/area/awaymission/hiddeneclipse/theabyss) -"Db" = ( -/obj/machinery/light, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/hiddeneclipse/eclipsecarrier/vipchamber) -"De" = ( -/obj/machinery/mining/drill, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzoneb) -"Di" = ( -/turf/simulated/shuttle/floor/alienplating/blue, -/area/awaymission/hiddeneclipse) -"Dt" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/lunar/pummler, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier/dorms) -"DF" = ( -/obj/structure/grille, -/obj/structure/window/titanium{ - dir = 1 - }, -/obj/structure/window/titanium{ - dir = 8 - }, -/obj/structure/window/titanium{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"DU" = ( -/obj/structure/shuttle/engine/heater, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/turf/simulated/wall/plastihull, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"DV" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Eu" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/item/stack/material/void_opal, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"EA" = ( -/turf/simulated/shuttle/plating/airless, -/area/awaymission/hiddeneclipse) -"EE" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"EG" = ( -/turf/unsimulated/wall{ - block_tele = 1; - blocks_nonghost_incorporeal = 1; - desc = "It's a strange, impenetrable darkness."; - icon = 'icons/turf/flooring/weird_vr.dmi'; - icon_state = "dark"; - name = "dark" - }, -/area/awaymission/hiddeneclipse/theabyss) -"EH" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/turf/unsimulated/wall{ - block_tele = 1; - blocks_nonghost_incorporeal = 1; - desc = "It's a strange, impenetrable darkness."; - icon = 'icons/turf/flooring/weird_vr.dmi'; - icon_state = "dark"; - name = "dark" - }, -/area/awaymission/hiddeneclipse/theabyss) -"EI" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/obj/structure/window/phoronreinforced, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"EJ" = ( -/obj/effect/simple_portal/coords{ - tele_x = 187; - tele_y = 237; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"EK" = ( -/mob/living/simple_mob/humanoid/possessed/industrial, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse/miningzonea) -"ER" = ( -/obj/effect/simple_portal/linked{ - portal_id = "GatewayPuzzle" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzonea) -"Fg" = ( -/obj/effect/floor_decal/corner/blue/diagonal, -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/tiled/old_tile/beige, -/area/awaymission/hiddeneclipse/eclipsecarrier/canon) -"Fk" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"Fq" = ( -/obj/machinery/door/airlock/hatch, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier/vipdefense) -"Fs" = ( -/obj/machinery/gateway{ - density = 0; - dir = 10 - }, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/hiddeneclipse/miningzonea/depature) -"Fu" = ( -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"Fw" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/item/slime_extract/gold, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Fx" = ( -/obj/structure/shuttle/engine/heater, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 8 - }, -/turf/simulated/wall/plastihull, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"Fz" = ( -/turf/simulated/wall/plastihull, -/area/awaymission/hiddeneclipse/eclipsecarrier/vipchamber) -"FB" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"FD" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/obj/structure/window/phoronreinforced, -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"FR" = ( -/obj/effect/landmark/gateway_scatter, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"FS" = ( -/turf/simulated/wall/plastihull, -/area/awaymission/hiddeneclipse/eclipsecarrier/armory) -"FZ" = ( -/obj/structure/bed, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"Gp" = ( -/obj/structure/grille, -/obj/structure/window/titanium, -/obj/structure/window/titanium{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Gu" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"GI" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/hiddeneclipse/eclipsecarrier/helm) -"GP" = ( -/obj/machinery/mining/brace, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzoneb) -"GT" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse) -"GU" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/maintenance/engineering, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/medical, -/obj/random/maintenance/misc, -/obj/random/maintenance/morestuff, -/obj/random/maintenance/research, -/obj/random/maintenance/security, -/obj/random/material, -/obj/random/material/precious, -/obj/random/material/refined, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/cargobay) -"GW" = ( -/obj/structure/table/borosilicate, -/turf/simulated/floor/wood, -/area/awaymission/hiddeneclipse/miningzoneb) -"Hb" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/mob/living/simple_mob/humanoid/eclipse/solar/cryomancer, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Hn" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/closet, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"HI" = ( -/obj/structure/table/marble, -/obj/random/cash, -/obj/random/contraband, -/turf/simulated/floor/wood, -/area/awaymission/hiddeneclipse/eclipsecarrier/dorms) -"HK" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"HL" = ( -/turf/simulated/floor/concrete, -/area/awaymission/hiddeneclipse/theabyss) -"HW" = ( -/obj/machinery/door/blast/puzzle{ - id = "FindTheButton3" - }, -/obj/structure/fans/hardlight/colorable, -/turf/simulated/floor/concrete, -/area/awaymission/hiddeneclipse/theabyss) -"Ik" = ( -/obj/structure/fans/hardlight, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzoneb) -"It" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/item/slime_extract/red, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Iu" = ( -/obj/machinery/button/remote/blast_door{ - id = "EclipseCarrierBD" - }, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/cargobay) -"IA" = ( -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"IH" = ( -/obj/item/bedsheet, -/obj/item/bedsheet/purple, -/obj/structure/bed/padded, -/turf/simulated/floor/wood, -/area/awaymission/hiddeneclipse/eclipsecarrier/dorms) -"IJ" = ( -/obj/structure/fans/hardlight/colorable, -/turf/simulated/floor/flock, -/area/awaymission/hiddeneclipse/theabyss) -"IO" = ( -/obj/effect/simple_portal/coords{ - tele_x = 193; - tele_y = 219; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"IS" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/item/modular_computer/console{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/hiddeneclipse/eclipsecarrier/helm) -"IW" = ( -/obj/item/gun/energy/kinetic_accelerator/premiumka, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/borg/upgrade/modkit/damage, -/obj/item/borg/upgrade/modkit/heater, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzonea) -"IX" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/kinetic_crusher/glaive, -/obj/item/borg/upgrade/modkit/range, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzoneb) -"Jg" = ( -/obj/structure/fans/hardlight/colorable, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/hiddeneclipse/theabyss) -"Jh" = ( -/obj/machinery/gateway{ - density = 0; - dir = 6 - }, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/hiddeneclipse/miningzonea/depature) -"Ji" = ( -/obj/structure/grille, -/obj/structure/window/titanium{ - dir = 1 - }, -/obj/structure/window/titanium{ - dir = 4 - }, -/obj/structure/window/titanium{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"Jj" = ( -/obj/structure/grille, -/obj/structure/window/titanium, -/obj/structure/window/titanium{ - dir = 4 - }, -/obj/structure/window/titanium{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"Jl" = ( -/obj/machinery/porta_turret/poi{ - faction = "eclipse" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier/vipdefense) -"Jn" = ( -/obj/effect/simple_portal/coords{ - tele_x = 187; - tele_y = 231; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"Jw" = ( -/mob/living/simple_mob/mechanical/mecha/combat/gygax/dark/advanced{ - pilot_type = /mob/living/simple_mob/humanoid/eclipse/head/captain - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"JI" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"JJ" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/item/modular_computer/console{ - dir = 8 - }, -/obj/structure/window/titanium{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/hiddeneclipse/eclipsecarrier/helm) -"JR" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/random/maintenance/foodstuff, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/green, -/area/awaymission/hiddeneclipse/eclipsecarrier/kitchen) -"Km" = ( -/turf/simulated/wall/rpshull, -/area/awaymission/hiddeneclipse/miningzonea) -"Kn" = ( -/turf/simulated/floor/outdoors/shelfice, -/area/awaymission/hiddeneclipse/theabyss) -"Kq" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzonea) -"KD" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange, -/turf/simulated/floor/tiled/old_tile/red, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"KF" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/machinery/light, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier/cafe) -"KG" = ( -/obj/structure/table/rack, -/obj/item/circuitboard/shield_gen_ex, -/obj/item/rcd/shipwright/loaded, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/hiddeneclipse/theabyss) -"KK" = ( -/obj/item/gun/energy/mininglaser, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"KU" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"KV" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Li" = ( -/obj/structure/closet/crate/secure/loot, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"Lp" = ( -/obj/machinery/porta_turret/poi{ - faction = "eclipse" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier/vipdefense) -"Lr" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/mob/living/simple_mob/humanoid/eclipse/solar/hellhound, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Lu" = ( -/turf/simulated/shuttle/floor/alienplating/blue, -/area/awaymission/hiddeneclipse/theabyss) -"Lw" = ( -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/simulated/floor/tiled/old_tile/beige, -/area/awaymission/hiddeneclipse/eclipsecarrier/canon) -"Ly" = ( -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"LF" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/item/modular_computer/console{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/hiddeneclipse/eclipsecarrier/helm) -"LQ" = ( -/obj/structure/fans/hardlight/colorable, -/turf/unsimulated/floor/dark, -/area/awaymission/hiddeneclipse/theabyss) -"LT" = ( -/mob/living/simple_mob/humanoid/possessed/industrial, -/turf/simulated/floor/outdoors/lavaland/basalt{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse/miningzonea) -"LZ" = ( -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/cargobay) -"Mu" = ( -/obj/machinery/door/blast/puzzle{ - id = "FindTheButton2" - }, -/obj/structure/fans/hardlight/colorable, -/turf/simulated/shuttle/floor/alien, -/area/awaymission/hiddeneclipse/theabyss) -"My" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"MD" = ( -/obj/random/outcrop, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse/miningzonea) -"MO" = ( -/turf/simulated/floor/tiled/dark, -/area/awaymission/hiddeneclipse/miningzonea/depature) -"MR" = ( -/obj/effect/simple_portal/coords{ - tele_x = 181; - tele_y = 213; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"MU" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/table/gold, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/enginemonitoring) -"MY" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"Ni" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/item/melee/baton/slime/loaded, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Nl" = ( -/obj/machinery/door/airlock/hatch, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"Nq" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/solar/froststalker, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"Nu" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Nv" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzoneb) -"NF" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/lunar/wheel, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"NK" = ( -/mob/living/simple_mob/humanoid/eclipse/lunar/aeroblaster, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/cargobay) -"NL" = ( -/obj/effect/simple_portal/coords{ - tele_x = 181; - tele_y = 219; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"NN" = ( -/obj/random/landmine, -/turf/simulated/floor/gorefloor, -/area/awaymission/hiddeneclipse/theabyss) -"NV" = ( -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/hiddeneclipse/theabyss) -"Oa" = ( -/turf/simulated/wall/plastihull, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Of" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/enginemonitoring) -"Og" = ( -/turf/simulated/wall/r_lead, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"Ok" = ( -/mob/living/simple_mob/humanoid/eclipse/lunar/shotgunner, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/cargobay) -"Ow" = ( -/turf/simulated/wall, -/area/awaymission/hiddeneclipse) -"Oz" = ( -/turf/simulated/floor/wood, -/area/awaymission/hiddeneclipse/miningzonea) -"OD" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"OF" = ( -/turf/simulated/floor/carpet/blue, -/area/awaymission/hiddeneclipse/theabyss) -"OU" = ( -/obj/random/outcrop, -/obj/effect/spider/stickyweb/dark, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"OV" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/mob/living/simple_mob/humanoid/eclipse/solar/guardian, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"OX" = ( -/mob/living/simple_mob/humanoid/eclipse/lunar/miner, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/cargobay) -"Pa" = ( -/turf/simulated/mineral/crystal_shiny, -/area/awaymission/hiddeneclipse) -"Pb" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/solar/teslanoodle, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange, -/turf/simulated/floor/tiled/old_tile/red, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"Pi" = ( -/turf/simulated/floor/lava/harmless, -/area/awaymission/hiddeneclipse/theabyss) -"Pk" = ( -/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle, -/turf/simulated/floor/wood, -/area/awaymission/hiddeneclipse/eclipsecarrier/dorms) -"Pq" = ( -/mob/living/simple_mob/animal/giant_spider/tunneler, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"Pr" = ( -/obj/effect/simple_portal/coords{ - tele_x = 66; - tele_y = 73; - tele_z = 10 - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"Pt" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"PG" = ( -/turf/unsimulated/floor/dark, -/area/awaymission/hiddeneclipse/theabyss) -"PN" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 7 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"PW" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier/cafe) -"Qa" = ( -/mob/living/simple_mob/mechanical/mecha/ripley/red_flames{ - faction = "Possessed" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzonea/depature) -"Qf" = ( -/obj/item/stack/material/phoron{ - amount = 15 - }, -/obj/structure/table/steel, -/turf/simulated/floor/wood, -/area/awaymission/hiddeneclipse/miningzonea) -"Qg" = ( -/obj/machinery/crystal/lava, -/turf/simulated/floor/lava, -/area/awaymission/hiddeneclipse/theabyss) -"Qi" = ( -/turf/simulated/floor/carpet/blue2, -/area/awaymission/hiddeneclipse/theabyss) -"Qt" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/enginemonitoring) -"Qv" = ( -/obj/structure/loot_pile/surface/bones, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"Qz" = ( -/mob/living/simple_mob/humanoid/eclipse/lunar/wheel, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/cargobay) -"QE" = ( -/obj/structure/table/rack, -/obj/item/plastique/seismic/locked, -/obj/item/plastique/seismic/locked, -/obj/item/plastique/seismic/locked, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzoneb) -"QI" = ( -/turf/simulated/mineral/light, -/area/awaymission/hiddeneclipse) -"QL" = ( -/turf/space, -/area/awaymission/hiddeneclipse/miningzonea) -"QV" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/machinery/smartfridge/secure/extract, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Ra" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange, -/turf/simulated/floor/tiled/old_tile/red, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"Re" = ( -/obj/structure/table/rack, -/obj/item/gun/energy/elementalray, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/hiddeneclipse/eclipsecarrier/armory) -"Ro" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/borg/upgrade/modkit/aoe, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzoneb) -"RG" = ( -/obj/item/stool, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/mob/living/simple_mob/humanoid/eclipse/solar/firemoff, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier/cafe) -"RN" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"RU" = ( -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"RZ" = ( -/mob/living/simple_mob/mechanical/mining_drone{ - faction = "Possessed" - }, -/turf/simulated/floor/outdoors/lavaland/basalt{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse/miningzonea) -"Sa" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Sb" = ( -/obj/structure/table/rack, -/obj/item/syndie/c4explosive/heavy/super_heavy, -/obj/item/flame/lighter/zippo/c4detonator, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzoneb) -"Sc" = ( -/turf/simulated/floor/outdoors/lavaland/basalt{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse/miningzonea) -"Sm" = ( -/obj/effect/simple_portal/coords{ - tele_x = 193; - tele_y = 213; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alien/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"Su" = ( -/obj/structure/inflatable, -/turf/simulated/shuttle/floor/alienplating/blue, -/area/awaymission/hiddeneclipse/precursortemple) -"SA" = ( -/mob/living/simple_mob/humanoid/possessed/industrial, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"SC" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/structure/window/phoronreinforced, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"SO" = ( -/turf/simulated/wall/plastihull, -/area/awaymission/hiddeneclipse/eclipsecarrier/canon) -"SQ" = ( -/obj/structure/fans/hardlight/colorable, -/turf/simulated/floor/gorefloor, -/area/awaymission/hiddeneclipse/theabyss) -"SX" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/hiddeneclipse/eclipsecarrier/helm) -"Tq" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/turf/simulated/floor/tiled/milspec, -/area/awaymission/hiddeneclipse/miningzonea/depature) -"Tu" = ( -/obj/effect/spider/stickyweb/dark, -/mob/living/simple_mob/animal/giant_spider/tunneler, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"TH" = ( -/turf/simulated/floor/wood/sif, -/area/awaymission/hiddeneclipse/eclipsecarrier/dorms) -"TI" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/mob/living/simple_mob/humanoid/eclipse/lunar/shotgunner, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"TQ" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/corner/mauve/bordercorner, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"TS" = ( -/obj/machinery/porta_turret/poi{ - faction = "eclipse" - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier/vipdefense) -"Uk" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/mob/living/simple_mob/humanoid/eclipse/lunar/silvernoodle, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/enginemonitoring) -"Ul" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"Up" = ( -/obj/effect/spider/stickyweb/dark, -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"Ut" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"UC" = ( -/turf/simulated/wall, -/area/awaymission/hiddeneclipse/miningzonea/depature) -"UM" = ( -/turf/simulated/mineral, -/area/awaymission/hiddeneclipse) -"US" = ( -/mob/living/simple_mob/humanoid/possessed/industrial, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzonea) -"UV" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/turf/space, -/area/awaymission/hiddeneclipse/theabyss) -"Vo" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/machinery/door/airlock/hatch, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Vp" = ( -/mob/living/simple_mob/vore/xeyakin, -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/hiddeneclipse/eclipsecarrier/vipchamber) -"Vs" = ( -/turf/simulated/wall/plastihull, -/area/awaymission/hiddeneclipse/eclipsecarrier/cafe) -"VM" = ( -/obj/machinery/power/rad_collector, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"VP" = ( -/obj/machinery/gateway{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/hiddeneclipse/miningzonea/depature) -"VT" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/mob/living/simple_mob/humanoid/eclipse/head/scientist, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"VU" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/structure/table/steel, -/obj/structure/window/titanium{ - dir = 8 - }, -/obj/structure/window/titanium{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/hiddeneclipse/eclipsecarrier/helm) -"VV" = ( -/obj/random/outcrop, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"VZ" = ( -/obj/structure/grille, -/obj/structure/window/titanium, -/obj/structure/window/titanium{ - dir = 8 - }, -/obj/structure/window/titanium{ - dir = 1 - }, -/obj/machinery/door/blast/regular, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Wj" = ( -/mob/living/simple_mob/humanoid/eclipse/lunar/wheel, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/hiddeneclipse/eclipsecarrier/armory) -"Wk" = ( -/turf/simulated/wall, -/area/awaymission/hiddeneclipse/miningzonea) -"Wt" = ( -/obj/structure/table/darkglass, -/obj/machinery/button/remote/blast_door{ - id = "FindTheButton1" - }, -/turf/simulated/floor/grass, -/area/awaymission/hiddeneclipse/theabyss) -"Wy" = ( -/turf/simulated/wall, -/area/awaymission/hiddeneclipse/miningzoneb) -"WB" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"WL" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/table/steel, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"WN" = ( -/turf/simulated/floor/water/contaminated, -/area/awaymission/hiddeneclipse/theabyss) -"WS" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/solar/froststalker, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier/dorms) -"WW" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/lunar/pummler, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange, -/turf/simulated/floor/tiled/old_tile/red, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"WY" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/structure/table/steel, -/obj/structure/window/titanium, -/obj/structure/window/titanium{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/hiddeneclipse/eclipsecarrier/helm) -"Xa" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"Xs" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/borg/upgrade/modkit/aoe/mobs, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzoneb) -"Xu" = ( -/turf/simulated/floor/flock, -/area/awaymission/hiddeneclipse/theabyss) -"XE" = ( -/turf/unsimulated/wall{ - block_tele = 1; - blocks_nonghost_incorporeal = 1; - desc = "It's a strange, impenetrable darkness."; - icon = 'icons/turf/flooring/weird_vr.dmi'; - icon_state = "dark"; - name = "dark" - }, -/area/awaymission/hiddeneclipse) -"XF" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/inflatable/door, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"XL" = ( -/obj/machinery/door/blast/regular{ - id = "EclipseCarrierBD" - }, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"XV" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/awaymission/hiddeneclipse/eclipsecarrier/vipchamber) -"Yn" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/button/remote/blast_door{ - id = "EclipseCarrierBD" - }, -/turf/simulated/floor/plating, -/area/awaymission/hiddeneclipse/eclipsecarrier/cargobay) -"Yp" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/dark, -/area/awaymission/hiddeneclipse/eclipsecarrier/science) -"Ys" = ( -/turf/simulated/floor/tiled/monotile, -/area/awaymission/hiddeneclipse/theabyss) -"YB" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"YF" = ( -/obj/structure/fans/hardlight/colorable, -/turf/simulated/floor/outdoors/shelfice, -/area/awaymission/hiddeneclipse/theabyss) -"YK" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/lunar/aeroblaster, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange, -/turf/simulated/floor/tiled/old_tile/red, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"YL" = ( -/obj/structure/fans/hardlight/colorable, -/obj/machinery/door/blast/puzzle{ - id = "FindTheButton2" - }, -/turf/simulated/shuttle/floor/alien, -/area/awaymission/hiddeneclipse/theabyss) -"YQ" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/lunar/bulletstorm, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) -"YV" = ( -/mob/living/simple_mob/animal/giant_spider/broodmother, -/turf/simulated/mineral/floor{ - temperature = 293.15 - }, -/area/awaymission/hiddeneclipse) -"YZ" = ( -/obj/item/stack/material/steel{ - amount = 25 - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzonea) -"Zh" = ( -/obj/effect/simple_portal/coords{ - tele_x = 205; - tele_y = 225; - tele_z = 16 - }, -/turf/simulated/shuttle/floor/alienplating/blue, -/area/awaymission/hiddeneclipse) -"Zk" = ( -/obj/structure/prop/lock/projectile, -/turf/simulated/floor/tiled/steel, -/area/awaymission/hiddeneclipse/miningzonea) -"Zm" = ( -/obj/machinery/gateway{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/hiddeneclipse/miningzonea/depature) -"Zn" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/machinery/door/airlock/sandstone, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/awaymission/hiddeneclipse/eclipsecarrier/engine) -"Zs" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/awaymission/hiddeneclipse/eclipsecarrier/prison) -"Zu" = ( -/obj/structure/table/rack, -/obj/item/circuitboard/paradoxrift, -/obj/item/clothing/glasses/omni, -/obj/item/storage/belt/utility/alien/full, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/hiddeneclipse/theabyss) -"ZK" = ( -/obj/structure/fans/hardlight/colorable, -/obj/machinery/door/blast/puzzle{ - id = "FindTheButton1" - }, -/turf/simulated/floor/grass, -/area/awaymission/hiddeneclipse/theabyss) -"ZP" = ( -/obj/item/stool, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/hiddeneclipse/eclipsecarrier/cafe) -"ZX" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/mob/living/simple_mob/humanoid/eclipse/solar/snipertesh, -/turf/simulated/floor/tiled/red, -/area/awaymission/hiddeneclipse/eclipsecarrier) - -(1,1,1) = {" -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -"} -(2,1,1) = {" -EG -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -EG -EG -qQ -ox -ox -ox -qQ -qQ -ox -ox -ox -qQ -ox -qQ -ox -ox -EG -EG -nF -nF -nF -nF -nF -jy -HL -qi -HL -HL -HL -HL -jy -HL -EG -EG -em -em -em -em -em -em -em -em -em -em -em -em -em -em -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(3,1,1) = {" -EG -yJ -yJ -yJ -jL -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -EG -EG -ox -ox -qQ -ox -ox -ox -qQ -qQ -ox -ox -ox -ox -ox -qQ -EG -EG -nF -nF -nF -nF -nF -jy -HL -HL -HL -HL -HL -HL -jy -HL -EG -EG -em -em -em -em -em -em -em -em -em -em -em -em -em -em -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(4,1,1) = {" -EG -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -jL -yJ -EG -EG -qQ -ox -ox -qQ -ox -ox -ox -ox -ox -qQ -qQ -qQ -ox -ox -EG -EG -HL -HL -jy -nF -nF -jy -jy -jy -jy -jy -HL -HL -jy -HL -EG -EG -em -em -em -em -em -em -em -em -em -em -em -em -em -em -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(5,1,1) = {" -EG -yJ -yJ -yJ -yJ -Wt -yJ -jL -yJ -yJ -yJ -yJ -yJ -yJ -yJ -EG -EG -ox -xp -ox -ox -qQ -ox -qQ -ox -qQ -ox -ox -ox -qQ -ox -EG -EG -HL -HL -jy -nF -nF -nF -nF -nF -nF -jy -HL -HL -jy -HL -EG -EG -em -em -em -em -em -em -eX -eX -eX -eX -em -em -em -em -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(6,1,1) = {" -EG -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -jL -yJ -yJ -yJ -yJ -EG -EG -ox -qQ -qQ -ox -qQ -ox -qQ -ox -ox -ox -qQ -ox -ox -ox -EG -EG -HL -HL -jy -nF -nF -nF -nF -nF -nF -jy -At -At -jy -HL -EG -EG -em -em -em -em -em -eX -eX -dQ -dQ -eX -eX -em -em -em -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(7,1,1) = {" -EG -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -EG -EG -qQ -ox -ox -ox -qQ -ox -ox -qQ -qQ -ox -ox -qQ -ox -qQ -EG -EG -HL -HL -jy -jy -jy -jy -jy -HL -HL -jy -HL -HL -jy -HL -EG -EG -em -em -em -em -em -eX -Zu -Ys -Ys -Zu -eX -em -em -em -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(8,1,1) = {" -EG -yJ -yJ -yJ -yJ -yJ -jL -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -EG -EG -ox -ox -qQ -ox -ox -qQ -ox -ox -ox -ox -qQ -ox -ox -ox -pQ -rd -HL -HL -At -HL -HL -HL -HL -HL -HL -HL -HL -HL -jy -HL -EG -EG -em -em -em -em -em -eX -uB -Ys -Ys -uB -eX -em -em -em -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(9,1,1) = {" -EG -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -EG -EG -qQ -qQ -ox -qQ -ox -ox -ox -ox -qQ -ox -ox -ox -qQ -ox -pQ -rd -HL -HL -At -HL -HL -HL -HL -HL -HL -HL -HL -HL -jy -HL -EG -EG -em -em -em -em -em -eX -KG -Ys -Ys -KG -eX -em -em -em -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(10,1,1) = {" -EG -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -jL -yJ -yJ -EG -EG -ox -ox -ox -ox -qQ -ox -qQ -ox -ox -qQ -ox -qQ -ox -qQ -EG -EG -HL -HL -jy -jy -jy -jy -jy -HL -HL -jy -HL -HL -jy -HL -EG -EG -em -em -em -em -em -eX -eX -Ys -Ys -eX -eX -em -em -em -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(11,1,1) = {" -EG -yJ -yJ -yJ -yJ -jL -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -EG -EG -ox -ox -qQ -ox -ox -ox -ox -qQ -ox -ox -qQ -ox -ox -ox -EG -EG -HL -HL -jy -nF -nF -nF -nF -nF -nF -jy -At -At -jy -HL -EG -EG -em -em -em -em -em -em -eX -Ys -Ys -eX -em -em -em -em -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(12,1,1) = {" -EG -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -EG -EG -ox -qQ -ox -ox -ox -qQ -qQ -ox -ox -qQ -ox -ox -ox -qQ -EG -EG -HL -HL -jy -nF -nF -nF -nF -nF -nF -jy -HL -HL -jy -HL -EG -EG -em -em -em -em -em -em -eX -Ys -Ys -eX -em -em -em -em -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(13,1,1) = {" -EG -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -jL -yJ -yJ -yJ -yJ -yJ -EG -EG -ox -ox -ox -qQ -ox -ox -ox -ox -ox -ox -ox -qQ -qQ -ox -EG -EG -HL -HL -jy -nF -nF -jy -jy -jy -jy -jy -HL -HL -jy -HL -EG -EG -em -em -em -em -em -em -eX -Ys -Ys -eX -em -em -em -em -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(14,1,1) = {" -EG -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -EG -EG -ox -qQ -ox -ox -qQ -ox -ox -qQ -qQ -ox -ox -ox -ox -ox -EG -EG -nF -nF -nF -nF -nF -jy -HL -HL -HL -HL -HL -HL -jy -HL -EG -EG -em -em -em -em -em -em -eX -Ys -Ys -eX -em -em -em -em -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(15,1,1) = {" -EG -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -yJ -EG -EG -ox -ox -qQ -ox -ox -ox -qQ -ox -ox -ox -qQ -ox -ox -qQ -EG -EG -nF -nF -nF -nF -nF -jy -HL -HL -HL -HL -HL -HL -jy -HL -EG -EG -em -em -em -em -em -em -eX -Ys -Ys -eX -em -em -em -em -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(16,1,1) = {" -EG -EG -EG -EG -EG -EG -EG -EG -uw -ZK -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -pQ -pQ -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -HW -sH -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -AU -AU -EG -EG -EG -EG -EG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(17,1,1) = {" -EG -EG -EG -EG -EG -EG -EG -EG -CT -CT -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -Mu -YL -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -Jg -Jg -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -yo -yo -EG -EG -EG -EG -EG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(18,1,1) = {" -EG -nF -nF -nF -nF -nF -nF -nF -Pi -Pi -nF -nF -nF -nF -nF -EG -EG -CX -yg -yg -yg -CX -yg -yg -yg -yg -CX -CX -yg -yg -yg -EG -EG -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -EG -EG -Qi -Qi -OF -OF -OF -OF -OF -OF -OF -OF -OF -OF -Qi -Qi -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -VV -IA -IA -IA -IA -IA -Pq -IA -IA -IA -IA -VV -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(19,1,1) = {" -EG -nF -nF -nF -nF -nc -nc -nF -Pi -Pi -nF -nF -nF -nF -nF -EG -EG -yg -yg -CX -yg -CX -yg -CX -yg -CX -yg -yg -yg -CX -yg -EG -EG -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -EG -EG -Qi -OF -OF -Qi -Qi -Qi -Qi -Qi -Qi -Qi -Qi -OF -OF -Qi -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -Ly -IA -VV -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(20,1,1) = {" -EG -nF -nF -nF -Qg -Pi -Pi -Pi -Pi -Pi -nc -nF -nF -nF -nF -EG -EG -yg -CX -yg -yg -yg -yg -CX -yg -yg -yg -CX -yg -yg -yg -EG -EG -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -EG -EG -OF -OF -Qi -Qi -OF -OF -OF -OF -OF -OF -Qi -Qi -OF -OF -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -VV -IA -IA -IA -IA -IA -UM -UM -UM -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(21,1,1) = {" -EG -nF -nF -nF -Qg -Pi -Pi -Pi -Pi -Pi -nc -nF -nF -nF -nF -EG -EG -yg -yg -yg -CX -yg -yg -yg -CX -CX -CX -yg -CX -CX -yg -EG -EG -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -EG -EG -OF -Qi -Qi -OF -OF -Qi -Qi -Qi -Qi -OF -OF -Qi -Qi -OF -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -VV -IA -UM -UM -UM -UM -UM -UM -UM -IA -lF -lF -lF -UM -UM -UM -Ly -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(22,1,1) = {" -EG -nF -nF -nF -nF -Pi -Pi -nF -Qg -Qg -nF -nF -nF -nF -nF -EG -EG -yg -CX -yg -yg -CX -CX -yg -yg -CX -yg -yg -yg -yg -yg -EG -EG -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -EG -EG -OF -Qi -OF -OF -Qi -Qi -OF -OF -Qi -Qi -OF -OF -Qi -OF -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -VV -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -lF -UM -UM -UM -UM -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(23,1,1) = {" -EG -nF -nF -nF -nF -Pi -Pi -nF -nF -nF -nc -nc -nF -nF -nF -EG -EG -CX -yg -yg -CX -yg -CX -yg -CX -yg -yg -CX -yg -CX -yg -EG -EG -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -EG -EG -OF -Qi -OF -Qi -Qi -OF -OF -OF -OF -Qi -Qi -OF -Qi -OF -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -UM -UM -UM -UM -UM -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(24,1,1) = {" -EG -nF -nF -nF -nc -Pi -Pi -Pi -Pi -Pi -Pi -Pi -Qg -nF -nF -EG -EG -yg -yg -CX -CX -yg -yg -yg -CX -yg -CX -yg -yg -CX -yg -EG -EG -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -EG -EG -OF -Qi -OF -Qi -OF -OF -Qi -Qi -OF -OF -Qi -OF -Qi -OF -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -VV -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Up -lF -UM -UM -UM -UM -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(25,1,1) = {" -EG -nF -nF -nF -nc -Pi -Pi -Pi -Pi -Pi -Pi -Pi -Qg -nF -nF -EG -EG -yg -CX -yg -yg -yg -CX -yg -CX -Bp -CX -yg -CX -yg -yg -EG -EG -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -EG -EG -OF -Qi -OF -Qi -OF -OF -Qi -Qi -OF -OF -Qi -OF -Qi -OF -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -UM -UM -UM -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(26,1,1) = {" -EG -nF -nF -nF -nF -Qg -Qg -nF -nF -nF -Pi -Pi -nF -nF -nF -EG -EG -yg -yg -yg -CX -yg -yg -CX -yg -CX -yg -yg -yg -yg -CX -EG -EG -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -EG -EG -OF -Qi -OF -Qi -Qi -OF -OF -OF -OF -Qi -Qi -OF -Qi -OF -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -VV -IA -Pq -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -lF -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(27,1,1) = {" -EG -nF -nF -nF -nF -nF -nF -nF -nc -nc -Pi -Pi -nF -nF -nF -EG -EG -yg -CX -yg -yg -CX -yg -yg -yg -yg -CX -yg -CX -yg -yg -EG -EG -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -EG -EG -OF -Qi -OF -OF -Qi -Qi -OF -yN -Qi -Qi -OF -OF -Qi -OF -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -VV -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -VV -IA -Pq -IA -VV -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(28,1,1) = {" -EG -nF -nF -nF -nF -nF -nF -Qg -Pi -Pi -Pi -Pi -nc -nF -nF -EG -EG -CX -yg -CX -yg -yg -yg -CX -yg -yg -yg -CX -yg -yg -CX -EG -EG -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -EG -EG -OF -Qi -Qi -OF -OF -Qi -Qi -Qi -Qi -OF -OF -Qi -Qi -OF -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -Qv -VV -IA -IA -VV -IA -IA -IA -lF -UM -UM -UM -UM -UM -UM -UM -lF -lF -lF -lF -UM -UM -UM -UM -UM -UM -IA -IA -IA -UM -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(29,1,1) = {" -EG -nF -nF -nF -nF -nF -nF -Qg -Pi -Pi -Pi -Pi -nc -nF -nF -EG -EG -yg -yg -CX -yg -CX -yg -yg -yg -CX -CX -yg -yg -CX -yg -EG -EG -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -EG -EG -OF -OF -Qi -Qi -OF -OF -OF -OF -OF -OF -Qi -Qi -OF -OF -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -VV -IA -IA -IA -Ly -IA -IA -IA -IA -IA -lF -lF -lF -lF -UM -UM -UM -lF -lF -lF -lF -lF -lF -UM -UM -UM -UM -UM -IA -IA -UM -UM -UM -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(30,1,1) = {" -EG -nF -nF -nF -nF -nF -nF -nF -Pi -Pi -Qg -Qg -nF -nF -nF -EG -EG -yg -CX -yg -yg -yg -CX -yg -CX -yg -yg -yg -CX -yg -yg -EG -EG -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -EG -EG -Qi -OF -OF -Qi -Qi -Qi -Qi -Qi -Qi -Qi -Qi -OF -OF -Qi -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Li -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -lF -lF -OU -lF -lF -lF -OU -lF -lF -lF -lF -OU -lF -lF -lF -UM -UM -UM -UM -IA -IA -UM -UM -UM -UM -UM -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(31,1,1) = {" -EG -nF -nF -nF -nF -nF -nF -nF -Pi -Pi -nF -nF -nF -nF -nF -EG -EG -yg -yg -yg -CX -yg -CX -yg -yg -yg -CX -yg -yg -yg -CX -EG -EG -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -NV -EG -EG -Qi -Qi -OF -OF -OF -OF -OF -OF -OF -OF -OF -OF -Qi -Qi -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -KK -Qv -IA -IA -IA -IA -IA -IA -IA -IA -IA -VV -lF -lF -lF -Tu -lF -lF -lF -Up -lF -lF -lF -lF -lF -lF -lF -lF -Tu -lF -IA -IA -VV -UM -UM -UM -UM -UM -UM -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(32,1,1) = {" -EG -EG -EG -EG -EG -EG -EG -EG -CT -CT -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -yq -yq -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -Bj -zA -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Li -IA -IA -xe -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -VV -IA -IA -IA -lF -lF -lF -lF -OU -lF -lF -lF -lF -OU -lF -lF -lF -lF -lF -lF -lF -lF -IA -IA -IA -IA -UM -UM -UM -UM -UM -lF -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(33,1,1) = {" -EG -EG -EG -EG -EG -EG -EG -EG -YF -YF -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -nL -nL -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -LQ -LQ -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Qv -IA -IA -IA -IA -IA -IA -IA -IA -rq -IA -IA -IA -IA -IA -IA -IA -IA -IA -lF -UM -UM -UM -UM -UM -lF -lF -lF -lF -lF -lF -Up -OU -lF -lF -lF -UM -UM -UM -IA -IA -IA -UM -UM -UM -UM -lF -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(34,1,1) = {" -EG -vG -fr -fr -fr -fr -fr -fr -Kn -Kn -fr -fr -fr -fr -fr -EG -EG -WN -WN -WN -WN -WN -WN -WN -hM -hM -WN -WN -WN -WN -WN -EG -EG -PG -PG -EG -PG -PG -EG -PG -PG -PG -EG -PG -PG -PG -EG -PG -PG -PG -EG -PG -PG -PG -PG -PG -PG -EG -PG -PG -PG -PG -EG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -Qv -IA -IA -xe -IA -IA -IA -IA -IA -IA -VV -IA -IA -Qv -IA -IA -UM -UM -UM -UM -UM -UM -lF -OU -lF -lF -lF -lF -lF -lF -lF -UM -UM -UM -UM -UM -UM -IA -Ly -UM -UM -UM -UM -lF -Up -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(35,1,1) = {" -EG -fr -fr -fr -fr -fr -vG -fr -fr -fr -fr -fr -vG -fr -fr -EG -EG -WN -WN -WN -WN -WN -WN -WN -hM -hM -hM -hM -hM -hM -hM -EG -EG -EG -PG -PG -PG -EG -PG -PG -EG -PG -PG -PG -EG -PG -PG -PG -EG -PG -PG -EG -EG -PG -EG -EG -PG -PG -EG -EG -PG -EG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -Qv -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -lF -lF -lF -lF -lF -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -UM -UM -UM -UM -lF -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(36,1,1) = {" -EG -fr -fr -vG -fr -fr -fr -fr -fr -fr -fr -fr -fr -fr -fr -EG -EG -WN -WN -WN -WN -WN -WN -WN -hM -hM -hM -hM -hM -hM -hM -EG -EG -EG -PG -PG -EG -PG -PG -PG -PG -PG -EG -EG -PG -PG -EG -PG -PG -PG -PG -PG -PG -PG -PG -EG -PG -PG -PG -EG -PG -PG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -YV -IA -IA -xe -vx -IA -IA -IA -KK -IA -IA -IA -VV -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -lF -OU -lF -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -Pq -IA -UM -UM -UM -OU -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(37,1,1) = {" -EG -fr -fr -fr -fr -fr -fr -fr -fr -fr -fr -fr -fr -fr -fr -EG -EG -WN -WN -WN -WN -WN -WN -WN -WN -WN -WN -WN -WN -WN -hM -EG -EG -PG -EG -PG -PG -PG -EG -PG -EG -PG -EG -PG -PG -EG -PG -PG -PG -EG -PG -PG -EG -EG -PG -EG -PG -EG -PG -PG -PG -EG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Qv -IA -IA -IA -IA -IA -IA -IA -IA -IA -Qv -IA -IA -IA -VV -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -IA -lF -lF -lF -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -UM -UM -UM -lF -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(38,1,1) = {" -EG -fr -vG -fr -fr -fr -fr -fr -fr -fr -fr -fr -fr -fr -vG -EG -EG -WN -WN -hM -hM -hM -hM -hM -hM -hM -hM -hM -WN -WN -hM -EG -EG -PG -PG -EG -PG -EG -PG -PG -EG -PG -PG -PG -EG -PG -PG -PG -EG -PG -PG -PG -PG -EG -PG -PG -EG -PG -PG -PG -PG -PG -EG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Li -IA -IA -IA -IA -IA -IA -xe -IA -IA -IA -IA -IA -IA -IA -IA -VV -UM -UM -UM -UM -UM -UM -UM -UM -IA -VV -IA -IA -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -VV -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(39,1,1) = {" -EG -fr -fr -fr -fr -fr -fr -fr -vG -vG -fr -fr -fr -fr -fr -EG -EG -WN -WN -hM -hM -hM -hM -hM -hM -hM -hM -hM -WN -WN -hM -EG -EG -EG -PG -PG -PG -PG -PG -EG -PG -PG -PG -EG -PG -PG -EG -PG -EG -PG -EG -PG -PG -PG -EG -PG -PG -PG -EG -EG -PG -PG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -Qv -IA -Co -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -OU -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -IA -IA -IA -IA -VV -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(40,1,1) = {" -EG -fr -fr -fr -fr -fr -fr -fr -fr -fr -fr -fr -fr -fr -fr -EG -EG -WN -WN -hM -hM -WN -WN -WN -WN -WN -hM -hM -WN -WN -hM -EG -EG -PG -PG -EG -PG -EG -EG -PG -PG -EG -PG -PG -PG -EG -PG -PG -PG -PG -PG -PG -EG -PG -PG -EG -EG -PG -PG -PG -EG -EG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -xe -Qv -IA -IA -IA -IA -IA -IA -Ly -VV -IA -IA -IA -UM -UM -UM -UM -IA -IA -IA -IA -IA -VV -IA -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -OU -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(41,1,1) = {" -EG -fr -fr -fr -fr -fr -fr -vG -fr -fr -fr -fr -fr -fr -fr -EG -EG -WN -WN -hM -hM -WN -WN -WN -WN -WN -hM -hM -hM -hM -hM -EG -EG -PG -EG -PG -PG -PG -PG -PG -EG -PG -EG -PG -PG -PG -PG -EG -PG -EG -PG -EG -PG -PG -PG -PG -PG -PG -EG -PG -PG -PG -EG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Li -IA -IA -IA -IA -IA -VV -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -IA -Ly -VV -IA -IA -IA -IA -IA -lF -lF -Up -UM -UM -UM -UM -UM -UM -UM -UM -lF -OU -lF -lF -UM -UM -IA -IA -VV -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(42,1,1) = {" -EG -fr -fr -fr -fr -fr -fr -fr -fr -fr -fr -vG -fr -fr -fr -EG -EG -WN -WN -hM -hM -WN -WN -WN -WN -WN -hM -hM -hM -hM -hM -EG -EG -PG -PG -PG -EG -PG -PG -EG -PG -PG -PG -EG -PG -EG -PG -PG -EG -PG -PG -PG -PG -EG -EG -PG -EG -PG -PG -EG -EG -PG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -Qv -KK -IA -UM -UM -UM -IA -IA -IA -Qv -IA -IA -VV -IA -IA -IA -IA -IA -IA -VV -IA -IA -lF -lF -lF -lF -lF -UM -UM -UM -UM -lF -lF -lF -lF -lF -UM -UM -UM -UM -IA -IA -IA -VV -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(43,1,1) = {" -EG -fr -fr -fr -fr -fr -vG -fr -fr -fr -fr -fr -fr -vG -fr -EG -EG -WN -WN -hM -hM -WN -WN -WN -WN -WN -WN -WN -WN -WN -WN -EG -EG -PG -PG -EG -PG -PG -PG -PG -EG -PG -EG -PG -PG -PG -PG -PG -PG -PG -EG -PG -EG -PG -PG -EG -PG -EG -PG -PG -PG -EG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -VV -IA -IA -VV -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -Tu -lF -lF -lF -lF -lF -Up -UM -UM -UM -UM -UM -UM -VV -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(44,1,1) = {" -EG -vG -fr -fr -fr -fr -fr -fr -fr -fr -fr -fr -vG -fr -fr -EG -EG -WN -WN -hM -hM -hM -hM -hM -hM -hM -WN -WN -WN -WN -WN -EG -EG -PG -EG -PG -PG -PG -EG -PG -EG -PG -EG -PG -EG -PG -PG -EG -PG -EG -PG -PG -EG -PG -PG -PG -PG -EG -EG -EG -EG -PG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -lF -lF -OU -lF -lF -UM -UM -UM -UM -UM -UM -UM -Pq -IA -VV -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(45,1,1) = {" -EG -fr -fr -vG -fr -fr -fr -fr -fr -vG -fr -fr -fr -fr -fr -EG -EG -WN -WN -hM -hM -hM -hM -hM -hM -hM -WN -WN -WN -WN -WN -EG -EG -PG -PG -PG -PG -EG -PG -PG -EG -PG -PG -PG -PG -PG -PG -PG -EG -PG -PG -EG -PG -PG -EG -EG -PG -PG -PG -EG -PG -PG -EG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -OU -lF -Tu -lF -lF -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(46,1,1) = {" -EG -fr -fr -fr -fr -vG -fr -vG -fr -fr -fr -fr -fr -fr -vG -EG -EG -WN -WN -WN -WN -WN -WN -WN -hM -hM -WN -WN -WN -WN -WN -EG -EG -EG -PG -EG -PG -PG -PG -PG -PG -EG -PG -EG -EG -PG -EG -PG -PG -EG -PG -PG -PG -PG -PG -PG -EG -EG -PG -PG -PG -EG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -VV -IA -IA -VV -IA -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(47,1,1) = {" -EG -fr -fr -fr -vG -fr -fr -fr -Kn -Kn -vG -fr -fr -fr -fr -EG -EG -WN -WN -WN -WN -WN -WN -WN -hM -hM -WN -WN -WN -WN -WN -EG -EG -PG -EG -PG -PG -PG -EG -PG -PG -EG -PG -PG -PG -EG -PG -EG -PG -EG -PG -PG -PG -EG -PG -PG -PG -PG -PG -PG -EG -PG -EG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(48,1,1) = {" -EG -EG -EG -EG -EG -EG -EG -EG -YF -YF -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -nL -nL -EG -EG -EG -EG -EG -EG -EG -PG -PG -EG -PG -EG -PG -EG -PG -PG -EG -PG -EG -PG -hE -EG -PG -PG -PG -EG -PG -PG -EG -PG -EG -PG -PG -EG -PG -PG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -OU -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -VV -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(49,1,1) = {" -EG -EG -EG -EG -EG -EG -EG -EG -SQ -SQ -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -xF -xF -EG -EG -EG -EG -EG -EG -EG -EG -PG -PG -PG -PG -PG -PG -EG -PG -PG -EG -PG -EG -PG -PG -EG -PG -PG -EG -PG -EG -PG -PG -PG -PG -EG -PG -PG -EG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -Up -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(50,1,1) = {" -EG -eg -eg -eg -eg -NN -eg -eg -eg -eg -eg -eg -NN -eg -eg -EG -EG -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Lu -Lu -Xu -Xu -Xu -Xu -Xu -EG -EG -PG -EG -PG -PG -EG -PG -EG -PG -PG -PG -PG -PG -PG -EG -PG -PG -PG -EG -PG -PG -PG -PG -EG -EG -PG -PG -PG -EG -EG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(51,1,1) = {" -EG -eg -eg -eg -NN -eg -eg -NN -NN -NN -NN -eg -eg -NN -eg -EG -EG -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Lu -Lu -Lu -Lu -Lu -Lu -Lu -EG -EG -PG -EG -PG -EG -PG -PG -PG -PG -EG -EG -EG -PG -PG -PG -EG -PG -EG -PG -PG -PG -PG -EG -PG -PG -PG -EG -PG -PG -PG -EG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -lF -UM -UM -UM -UM -UM -UM -UM -IA -Pq -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(52,1,1) = {" -EG -eg -eg -NN -eg -eg -NN -eg -eg -eg -eg -NN -eg -eg -NN -EG -EG -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Lu -Lu -Lu -Lu -Lu -Lu -Lu -EG -EG -PG -PG -PG -PG -PG -EG -PG -PG -PG -EG -EG -PG -EG -PG -PG -EG -PG -PG -PG -EG -PG -PG -PG -EG -PG -EG -PG -PG -EG -EG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -lF -UM -UM -UM -UM -UM -UM -UM -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(53,1,1) = {" -EG -eg -NN -eg -eg -NN -eg -eg -NN -NN -NN -NN -NN -eg -eg -EG -EG -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Lu -EG -EG -EG -PG -EG -PG -EG -PG -PG -EG -PG -PG -PG -PG -PG -EG -EG -PG -PG -EG -PG -PG -EG -PG -PG -PG -PG -PG -PG -EG -PG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -lF -lF -UM -UM -UM -UM -UM -UM -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(54,1,1) = {" -EG -eg -NN -eg -eg -NN -eg -NN -eg -eg -eg -eg -eg -NN -eg -EG -EG -Xu -Xu -Lu -Lu -Lu -Lu -Lu -Lu -Lu -Lu -Lu -Xu -Xu -Lu -EG -EG -PG -EG -PG -PG -EG -PG -EG -PG -EG -PG -EG -EG -PG -PG -PG -EG -EG -PG -PG -EG -PG -PG -PG -PG -EG -PG -PG -EG -PG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -OU -lF -lF -lF -UM -UM -UM -UM -UM -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(55,1,1) = {" -EG -eg -eg -NN -eg -eg -NN -NN -eg -NN -NN -NN -eg -eg -NN -EG -EG -Xu -Xu -Lu -Lu -Lu -Lu -Lu -Lu -Lu -Lu -Lu -Xu -Xu -Lu -EG -EG -PG -PG -PG -EG -PG -PG -EG -PG -EG -PG -PG -PG -EG -EG -PG -PG -PG -PG -PG -PG -PG -PG -EG -PG -PG -EG -PG -PG -EG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -IA -Ly -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(56,1,1) = {" -EG -eg -eg -eg -NN -eg -eg -NN -eg -eg -eg -eg -NN -eg -eg -SQ -IJ -Xu -Xu -Lu -Lu -Xu -Xu -Xu -Xu -Xu -Lu -Lu -Xu -Xu -Lu -EG -EG -EG -PG -EG -PG -PG -EG -PG -PG -EG -PG -EG -PG -PG -PG -EG -PG -PG -EG -PG -EG -PG -PG -PG -EG -PG -PG -PG -PG -PG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -UM -UM -IA -IA -IA -UM -UM -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(57,1,1) = {" -EG -eg -eg -NN -eg -eg -NN -eg -NN -NN -NN -eg -eg -NN -eg -SQ -IJ -Xu -Xu -Lu -Lu -Xu -Xu -Xu -Xu -Xu -Lu -Lu -Lu -Lu -Lu -EG -EG -PG -PG -PG -EG -PG -PG -PG -EG -PG -PG -EG -PG -PG -PG -PG -PG -EG -PG -PG -PG -PG -EG -PG -PG -EG -PG -PG -EG -PG -EG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -Pq -IA -UM -UM -UM -UM -UM -IA -Pq -VV -IA -VV -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(58,1,1) = {" -EG -eg -NN -eg -eg -NN -eg -eg -eg -eg -eg -NN -eg -NN -NN -EG -EG -Xu -Xu -Lu -Lu -Xu -Xu -Xu -Xu -Xu -Lu -Lu -Lu -Lu -Lu -EG -EG -PG -EG -PG -PG -EG -EG -EG -PG -PG -EG -EG -PG -EG -PG -EG -EG -PG -PG -EG -PG -PG -PG -EG -PG -PG -PG -EG -PG -EG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -VV -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(59,1,1) = {" -EG -NN -eg -eg -NN -eg -eg -eg -NN -NN -NN -eg -eg -NN -eg -EG -EG -Xu -Xu -Lu -Lu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Xu -EG -EG -PG -PG -PG -EG -PG -PG -PG -PG -EG -PG -PG -PG -PG -EG -PG -PG -PG -EG -PG -PG -EG -PG -PG -PG -PG -EG -PG -PG -PG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -VV -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(60,1,1) = {" -EG -NN -eg -eg -NN -eg -eg -NN -eg -eg -eg -eg -NN -eg -eg -EG -EG -Xu -Xu -Lu -Lu -Lu -Lu -Lu -Lu -Lu -Xu -Xu -Xu -Xu -Xu -EG -EG -EG -PG -PG -PG -EG -PG -PG -EG -PG -PG -EG -EG -PG -PG -PG -EG -EG -PG -PG -EG -PG -PG -EG -PG -EG -PG -PG -PG -EG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -VV -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(61,1,1) = {" -EG -eg -NN -eg -eg -NN -NN -eg -eg -NN -NN -NN -eg -eg -eg -EG -EG -Xu -Xu -Lu -Lu -Lu -Lu -Lu -Lu -Lu -Xu -Xu -Xu -Xu -Xu -EG -EG -PG -PG -EG -PG -PG -PG -EG -PG -EG -PG -PG -PG -EG -EG -PG -EG -PG -PG -EG -PG -EG -PG -EG -PG -PG -PG -EG -PG -EG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -lF -lF -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(62,1,1) = {" -EG -eg -eg -NN -eg -eg -eg -eg -NN -eg -eg -eg -eg -eg -eg -EG -EG -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Lu -Lu -Xu -Xu -Xu -Xu -Xu -EG -EG -PG -EG -PG -EG -PG -EG -PG -PG -PG -EG -PG -PG -PG -PG -EG -PG -PG -EG -PG -PG -PG -EG -PG -PG -EG -EG -PG -PG -PG -EG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -VV -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -lF -lF -lF -UM -UM -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(63,1,1) = {" -EG -eg -eg -eg -NN -eg -eg -NN -eg -eg -eg -eg -eg -eg -eg -EG -EG -Xu -Xu -Xu -Xu -Xu -Xu -Xu -Lu -Lu -Xu -Xu -Xu -Xu -Xu -EG -EG -PG -PG -PG -PG -EG -PG -EG -EG -PG -PG -PG -EG -EG -PG -EG -PG -PG -PG -EG -PG -PG -PG -PG -EG -PG -PG -PG -EG -PG -PG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -IA -IA -IA -IA -IA -IA -VV -IA -UM -UM -UM -UM -lF -Up -lF -UM -UM -UM -UM -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(64,1,1) = {" -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -lF -IA -IA -IA -IA -IA -Pq -IA -UM -UM -UM -UM -lF -lF -lF -UM -UM -UM -UM -UM -OU -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(65,1,1) = {" -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -lF -lF -UM -UM -UM -UM -IA -IA -IA -UM -UM -lF -OU -lF -UM -UM -UM -UM -UM -UM -lF -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(66,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -OU -lF -lF -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -lF -lF -UM -UM -UM -UM -UM -UM -lF -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(67,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Up -lF -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -lF -UM -UM -UM -UM -UM -lF -lF -OU -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(68,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -Tu -UM -UM -UM -UM -UM -UM -UM -VV -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -lF -Up -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(69,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -lF -UM -UM -UM -UM -UM -UM -UM -lF -lF -lF -VV -UM -UM -IA -IA -OU -lF -lF -lF -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(70,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -lF -lF -UM -UM -UM -UM -UM -UM -UM -Up -lF -lF -lF -UM -UM -UM -IA -IA -lF -Tu -lF -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(71,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -VV -IA -IA -IA -IA -IA -IA -VV -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -lF -lF -UM -UM -UM -UM -UM -UM -lF -lF -Tu -UM -UM -UM -UM -IA -IA -IA -lF -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(72,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -VV -VV -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -VV -lF -UM -UM -UM -UM -lF -lF -lF -lF -lF -UM -UM -UM -UM -IA -VV -IA -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(73,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -VV -IA -FR -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -Pq -IA -IA -IA -VV -lF -UM -UM -UM -UM -UM -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(74,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -VV -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -lF -lF -lF -lF -IA -IA -IA -IA -IA -IA -IA -IA -lF -UM -UM -UM -UM -UM -IA -IA -Ly -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(75,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -FR -IA -IA -IA -IA -IA -IA -VV -IA -IA -UM -UM -UM -UM -UM -UM -lF -lF -lF -lF -UM -UM -UM -UM -IA -VV -IA -IA -IA -UM -UM -UM -UM -IA -IA -VV -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(76,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -VV -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -lF -lF -lF -UM -UM -UM -UM -UM -UM -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(77,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -FR -IA -IA -VV -IA -UM -UM -UM -UM -UM -Up -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -UM -IA -Pq -VV -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(78,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -lF -UM -UM -UM -UM -UM -UM -UM -IA -IA -UM -UM -UM -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(79,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -FR -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -lF -lF -UM -UM -UM -UM -UM -UM -Pq -UM -UM -UM -UM -VV -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(80,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -VV -IA -IA -IA -VV -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -VV -IA -IA -UM -UM -UM -UM -UM -UM -lF -lF -lF -UM -UM -IA -IA -IA -UM -UM -UM -UM -lF -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(81,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -FR -IA -IA -IA -IA -IA -IA -IA -IA -VV -UM -UM -UM -UM -UM -lF -lF -lF -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(82,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -FR -IA -IA -IA -UM -UM -UM -UM -UM -IA -IA -IA -VV -IA -IA -IA -IA -IA -lF -lF -Up -lF -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(83,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -VV -IA -IA -IA -IA -IA -VV -IA -IA -IA -VV -IA -IA -VV -IA -IA -IA -VV -IA -IA -IA -IA -VV -IA -IA -IA -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -lF -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(84,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -FR -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -lF -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(85,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -VV -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -UM -UM -UM -UM -UM -IA -IA -IA -VV -IA -Pq -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(86,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -UM -UM -IA -IA -VV -IA -IA -IA -VV -IA -IA -IA -UM -lF -lF -UM -UM -UM -IA -IA -Ly -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(87,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -VV -IA -UM -UM -UM -UM -UM -UM -IA -IA -UM -IA -IA -IA -IA -UM -UM -UM -lF -lF -UM -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(88,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -XE -XE -XE -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -VV -IA -IA -IA -IA -VV -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -lF -lF -IA -UM -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(89,1,1) = {" -EG -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -hj -UV -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(90,1,1) = {" -EH -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -UV -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -QI -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -VV -IA -IA -IA -IA -VV -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(91,1,1) = {" -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EH -EG -EG -EG -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -QI -QI -QI -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -VV -IA -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(92,1,1) = {" -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -QI -QI -QI -QI -QI -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(93,1,1) = {" -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -QI -QI -QI -dr -QI -QI -QI -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -bv -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(94,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -QI -QI -QI -QI -QI -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -VV -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Di -Di -bv -UM -Di -Di -bv -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(95,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -QI -QI -QI -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -VV -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(96,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -QI -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(97,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -VV -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Di -bv -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(98,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -bv -Di -Di -UM -bv -Di -Di -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(99,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -VV -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -bv -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(100,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(101,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Di -bv -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -bv -Di -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(102,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -SA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Di -Di -Di -UM -bv -Di -Di -UM -bv -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(103,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -VV -IA -IA -VV -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(104,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(105,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -VV -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -bv -Di -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(106,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -bv -UM -Di -Di -Di -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(107,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -SA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(108,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(109,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -bv -Di -UM -Di -Di -Di -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(110,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(111,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(112,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(113,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -bv -Di -UM -Di -Di -Di -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(114,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -SA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -UM -UM -UM -UM -UM -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -bv -UM -Di -Di -Di -UM -Di -Di -Di -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(115,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -Di -Di -Di -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(116,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -VV -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(117,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -VV -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -VV -VV -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(118,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(119,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -UM -Km -Km -Km -Km -Km -Km -Km -mc -mc -mc -mc -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(120,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -Km -sx -Kq -Kq -Kq -sx -Km -mc -mc -mc -mc -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(121,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -IA -IA -IA -IA -IA -VV -IA -IA -IA -IA -IA -VV -IA -UM -UM -UM -UM -UM -UM -UM -Km -sx -Kq -Kq -Kq -sx -Km -mc -mc -mc -mc -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(122,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -UM -UM -Km -Km -Kq -Kq -Kq -Km -Km -mc -mc -mc -mc -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(123,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -IA -IA -IA -IA -IA -IA -IA -IA -UM -UM -UM -UM -Km -sx -Kq -Kq -Kq -sx -Km -mD -mc -mc -mc -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(124,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -yd -yd -MD -yd -yd -yd -yd -yd -mc -mc -mc -Km -sx -Kq -Kq -Kq -sx -Km -mD -mD -mc -mc -mc -mc -mc -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(125,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -yd -yd -yd -yd -EK -yd -yd -yd -mc -Km -Km -Kq -US -Kq -Km -Km -mD -mD -mc -mc -mc -mc -mc -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(126,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -yd -yd -yd -yd -yd -yd -yd -yd -jP -Kq -Kq -Kq -Kq -IW -Km -mD -mD -mD -mc -mc -mc -mc -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(127,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -yd -yd -yd -MD -yd -yd -yd -jP -Kq -Kq -Kq -Kq -IW -Km -mD -mD -mD -mD -mc -mc -mc -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(128,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -yd -yd -yd -yd -yd -yd -Km -Km -Kq -US -Kq -Km -Km -mD -Sc -Sc -Sc -mD -mc -mc -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(129,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mD -mD -Km -sx -Kq -Kq -Kq -sx -Km -Sc -hF -Sc -wO -Sc -mD -mc -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(130,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mD -mD -mD -mD -Km -sx -Kq -Kq -Kq -sx -Km -Sc -Sc -Sc -Sc -Sc -mD -mc -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(131,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -Km -Km -Kq -Kq -Kq -Km -Km -Sc -rV -Sc -ba -Sc -mD -mD -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(132,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Km -sx -Kq -Kq -Kq -sx -Km -mD -Sc -Sc -Sc -mD -mD -mD -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(133,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mc -mc -mc -mc -mc -mc -mD -mD -mD -mD -mD -mc -mc -mc -mc -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Km -sx -Kq -Kq -Kq -sx -Km -mD -mD -mD -mD -mD -mD -mD -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(134,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mc -mc -mc -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Km -Km -Km -Km -xA -Km -Km -Km -Km -mD -mD -mD -mD -mD -mD -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(135,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mc -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -kf -Kq -Kq -Kq -Kq -Kq -Kq -Kq -Sc -Sc -Sc -Sc -mD -mD -mD -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(136,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -mI -Sc -Sc -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -mI -Sc -kf -Kq -Kq -Kq -Kq -Kq -Kq -Kq -kf -Sc -Sc -Sc -Sc -mD -mD -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(137,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -mI -Sc -Sc -Sc -Sc -Sc -mI -Sc -Sc -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -Sc -kf -Kq -Kq -Kq -Kq -Kq -Kq -Kq -kf -Sc -mI -Sc -Sc -mD -mD -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(138,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -RZ -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -mD -Wk -Wk -Wk -Kq -vF -Kq -Wk -Wk -Wk -Sc -Sc -Sc -Sc -mD -mD -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(139,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -mI -Sc -Sc -Sc -LT -Sc -Sc -Sc -Sc -mI -Sc -Sc -mD -mD -mD -mD -Wk -Kq -Kq -Kq -Wk -mD -mD -Sc -Sc -Sc -Sc -mD -mD -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(140,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -Sc -mI -Sc -Sc -Sc -Sc -Sc -Sc -uT -Sc -mI -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -Wk -kf -kf -kf -Wk -mD -mD -Sc -Sc -Sc -mD -mD -mD -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(141,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -mI -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -Sc -Sc -uT -Sc -Sc -mD -Sc -Sc -Sc -Sc -mD -mD -mD -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(142,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -mI -Sc -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mc -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(143,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -eN -Sc -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -LT -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mc -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(144,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -mI -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -mc -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(145,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mD -mD -mD -mD -mD -mD -mD -mD -mI -Sc -Sc -Sc -Sc -mI -Sc -Sc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -mD -mD -mc -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(146,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mD -mD -mD -mD -mD -mD -mD -mD -Sc -RZ -Sc -Sc -RZ -Sc -Sc -mD -mD -mD -mD -mD -Km -Km -Km -Km -Km -Km -mD -mD -mD -mD -mD -mD -Sc -Sc -mI -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mc -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(147,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mD -mD -Km -Km -Km -Km -Km -Sc -Sc -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -Km -hv -Kq -Kq -Kq -Km -mD -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mc -mc -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(148,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mD -mD -Km -Kq -Kq -Kq -Km -Sc -Sc -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -Km -hv -Kq -Kq -Kq -Kq -Sc -Sc -Sc -RZ -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mc -mc -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(149,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mD -mD -Km -Kq -ER -Kq -jH -Sc -Sc -Sc -Sc -Sc -Sc -Zk -mD -mD -mD -mD -mD -mD -Km -hv -Kq -Kq -Sc -Sc -Sc -Sc -mI -Sc -Sc -mI -Sc -mD -mD -mD -mD -mD -mD -Km -Km -Km -Km -Km -Km -Km -mD -mc -mc -mc -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(150,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -by -vT -vT -vT -vT -vT -vT -pE -pE -pE -pE -pE -vT -vT -vT -vT -vT -vT -vT -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mD -Km -Kq -Kq -Kq -Km -Sc -Sc -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -Km -hv -Kq -Kq -Kq -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -mD -mD -Sc -mD -Km -wY -wY -wY -wY -wY -Km -mD -mc -mc -QL -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(151,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -by -vT -vT -vT -vT -vT -vT -pE -oF -oF -oF -pE -vT -vT -vT -vT -vT -vT -vT -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mD -Km -Km -Km -Km -Km -Sc -Sc -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -Km -hv -Kq -Kq -Kq -Km -mD -mD -Sc -Sc -Sc -Sc -LT -Sc -Sc -Sc -Sc -Sc -Sc -Km -Kq -Kq -Kq -bC -Kq -Km -mD -mc -mc -QL -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(152,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -by -vT -vT -vT -vT -vT -vT -pE -oF -cf -oF -pE -vT -vT -vT -vT -vT -vT -vT -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mD -mD -mD -mD -mD -mD -Sc -Sc -mI -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -Km -Km -Km -Km -Km -Km -mD -mD -mD -mD -Sc -Sc -Sc -mI -Sc -Sc -Sc -mI -Sc -qj -Sc -Sc -Sc -Kq -Kq -Km -mD -mc -mc -QL -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(153,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -vT -vT -vT -vT -vT -vT -vT -pE -oF -oF -oF -pE -vT -vT -vT -vT -vT -vT -vT -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Kq -Kq -Km -mD -mD -QL -QL -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(154,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -vT -vT -vT -vT -vT -vT -pE -pE -pE -Su -pE -pE -pE -vT -vT -vT -vT -vT -vT -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -LT -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -Kq -Kq -Km -mD -mD -QL -QL -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(155,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -Pa -vT -vT -vT -vT -vT -pE -pE -oF -oF -RU -oF -oF -pE -pE -vT -vT -vT -vT -vT -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -mI -Sc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Km -Kq -Kq -Kq -Kq -mB -Km -mD -mD -QL -QL -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(156,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -Pa -Pa -vT -vT -vT -vT -pE -pE -oF -oF -oF -RU -oF -oF -oF -pE -pE -vT -vT -vT -vT -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -lJ -Sc -mD -mD -mD -mD -mD -Km -wY -YZ -wY -wY -wY -Km -mD -mD -QL -QL -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(157,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -Pa -Pa -vT -vT -vT -pE -pE -oF -oF -oF -pE -Jw -pE -oF -oF -oF -pE -pE -vT -vT -vT -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -mI -eN -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -mI -Sc -Sc -Sc -Sc -Sc -Sc -Km -Km -Km -Km -Km -Km -Km -mD -mD -QL -QL -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(158,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -Pa -Pa -Pa -vT -vT -pE -pE -RU -oF -oF -pE -oF -RU -oF -pE -oF -oF -RU -pE -pE -vT -vT -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -RZ -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -mD -QL -QL -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(159,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -Pa -Pa -Pa -vT -pE -pE -oF -oF -RU -oF -oF -oF -RU -oF -oF -oF -RU -oF -oF -pE -pE -vT -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -uC -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -Sc -mI -Sc -mD -mD -mD -mD -Sc -Sc -Sc -Sc -LT -Sc -Sc -mD -mD -mD -mD -Sc -Sc -mI -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -QL -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(160,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -Pa -Pa -Pa -Pa -pE -pE -oF -oF -oF -oF -RU -oF -RU -oF -RU -oF -RU -oF -oF -oF -oF -pE -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -mI -Sc -Sc -Sc -Sc -Sc -mD -mD -Sc -Sc -Sc -mI -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -mI -Sc -mD -mD -mD -mD -mD -mD -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(161,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -Pa -Pa -Pa -Pa -pE -oF -oF -oF -pE -oF -oF -pE -oF -RU -oF -pE -oF -oF -pE -oF -oF -oF -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -Sc -RZ -Sc -Sc -Sc -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -pO -LT -Sc -Sc -Sc -mD -mD -mD -mD -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(162,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -Pa -Pa -pE -oF -oF -pE -oF -oF -RU -oF -RU -oF -RU -oF -RU -oF -oF -pE -oF -oF -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -mI -Sc -Sc -Sc -Sc -Sc -Sc -lJ -Sc -Sc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Sc -Sc -Sc -Sc -Sc -mD -mD -mD -QL -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(163,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -Pa -Pa -pE -RU -RU -RU -RU -RU -oF -RU -oF -RU -oF -RU -oF -RU -RU -RU -RU -RU -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Km -Sc -Sc -Sc -Sc -Km -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Wk -Kq -Kq -Kq -Wk -mD -QL -QL -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(164,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -pE -oF -oF -pE -oF -oF -RU -oF -RU -oF -RU -oF -RU -oF -oF -pE -oF -oF -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Km -Oz -Oz -Oz -Oz -Km -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mc -Wk -Kq -Kq -Kq -Wk -mD -QL -QL -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(165,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -pE -oF -oF -oF -pE -oF -oF -pE -oF -RU -oF -pE -oF -oF -pE -oF -oF -oF -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Km -Oz -Oz -Oz -Oz -Km -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mc -mc -Wk -Kq -Kq -Kq -Wk -QL -QL -QL -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(166,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -pE -pE -oF -oF -oF -oF -RU -oF -RU -oF -RU -oF -RU -oF -oF -oF -oF -pE -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Km -zq -zq -zq -Qf -Km -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mc -mc -mc -Wk -Kq -Kq -Kq -Wk -QL -QL -QL -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(167,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -vT -pE -pE -oF -oF -RU -oF -oF -oF -RU -oF -oF -oF -RU -oF -oF -pE -pE -vT -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mc -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -Km -Km -Km -Km -Km -Km -mc -mc -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mc -mc -mc -mc -Wk -Kq -Kq -Kq -Wk -QL -QL -QL -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(168,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -vT -vT -pE -pE -RU -oF -oF -pE -oF -RU -oF -pE -oF -oF -RU -pE -pE -vT -vT -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mc -mc -mc -mD -mD -mD -mD -mD -mD -mD -mD -mD -mD -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mD -mD -mD -mD -mc -mc -mc -mc -mc -QL -Wk -Kq -US -Kq -Wk -QL -QL -QL -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(169,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -vT -vT -vT -pE -pE -oF -oF -oF -pE -RU -pE -oF -oF -oF -pE -pE -vT -vT -vT -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -mc -mc -mc -mc -mc -mc -mc -mD -mD -mD -mD -mD -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -mc -QL -QL -Wk -Kq -Kq -Kq -Wk -QL -QL -QL -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(170,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -vT -vT -vT -vT -pE -pE -oF -oF -oF -RU -oF -oF -oF -pE -pE -vT -vT -vT -vT -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -mc -QL -QL -QL -QL -QL -Wk -Kq -Kq -Kq -Wk -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(171,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -vT -vT -vT -vT -vT -pE -pE -oF -oF -RU -oF -oF -pE -pE -vT -vT -vT -vT -vT -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -Pa -Pa -zy -zy -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -QL -QL -QL -QL -QL -QL -Wk -Kq -Kq -Kq -Wk -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(172,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -Pa -Pa -Pa -Pa -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -zy -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -QL -QL -QL -QL -QL -QL -Wk -Kq -Kq -Kq -Wk -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(173,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -Pa -pE -RU -oF -Pr -oF -RU -pE -RU -oF -Pr -oF -RU -pE -RU -oF -nm -oF -RU -pE -RU -oF -zD -oF -RU -pE -RU -oF -zD -oF -RU -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -QL -QL -QL -QL -QL -QL -Wk -Kq -Kq -Kq -Wk -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(174,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -Pa -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -iE -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UC -UC -UC -UC -UC -UC -wk -wk -wk -UC -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(175,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -Pa -pE -yX -iE -iE -iE -cO -pE -yX -iE -iE -iE -nt -pE -Pr -oF -iE -oF -Pr -pE -zD -oF -oF -oF -zD -pE -zD -oF -oF -oF -zD -pE -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UC -jY -MO -jY -MO -jY -wk -wk -wk -UC -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(176,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -Pa -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -iE -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UC -MO -Tq -qa -Fs -MO -wk -wk -wk -UC -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(177,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -Pa -pE -RU -oF -Pr -oF -RU -pE -RU -oF -Pr -oF -RU -pE -RU -oF -yX -oF -RU -pE -RU -oF -zD -oF -RU -pE -RU -oF -zD -oF -RU -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UC -jY -VP -zB -mV -jY -wk -Qa -wk -UC -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(178,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -Pa -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -nJ -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UC -MO -aD -Zm -Jh -MO -wk -wk -wk -UC -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(179,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -Pa -Pa -Pa -pE -RU -oF -rf -oF -RU -pE -RU -oF -zD -oF -RU -pE -RU -oF -yX -oF -RU -pE -RU -oF -Pr -oF -RU -pE -RU -oF -Pr -oF -RU -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UC -jY -MO -jY -MO -jY -wk -wk -wk -UC -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(180,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -Pa -Pa -Pa -pE -oF -oF -iE -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -iE -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UC -UC -UC -UC -UC -UC -wk -wk -wk -UC -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(181,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -Pa -Pa -Pa -pE -Pr -oF -iE -oF -Pr -pE -zD -oF -oF -oF -zD -pE -Pr -oF -iE -oF -Pr -pE -ln -iE -iE -iE -yX -pE -NL -iE -iE -iE -yX -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -Ow -GT -GT -GT -Ow -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(182,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -Pa -Pa -pE -oF -oF -iE -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -iE -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -Pa -Pa -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -Ow -xJ -xJ -xJ -Ow -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(183,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -Pa -Pa -pE -RU -oF -yX -oF -RU -pE -RU -oF -zD -oF -RU -pE -RU -oF -sW -oF -RU -pE -RU -oF -Pr -oF -RU -pE -RU -oF -Pr -oF -RU -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -Ow -EA -EA -nJ -Ow -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(184,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -Pa -Pa -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -Ow -EA -EA -EA -Ow -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(185,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -Pa -Pa -pE -RU -oF -mx -oF -RU -pE -RU -oF -Pr -oF -RU -pE -RU -oF -Pr -oF -RU -pE -RU -oF -zD -oF -RU -pE -RU -oF -MR -oF -RU -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -EA -EA -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(186,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -Pa -Pa -pE -oF -oF -iE -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -iE -oF -oF -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -EA -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(187,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -Pa -Pa -Pa -pE -Pr -oF -iE -oF -Pr -pE -EJ -iE -iE -iE -yX -pE -Jn -iE -iE -iE -yX -pE -zD -oF -oF -oF -zD -pE -Pr -oF -iE -oF -Pr -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(188,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -pE -oF -oF -iE -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -iE -oF -oF -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(189,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -pE -RU -oF -yX -oF -RU -pE -RU -oF -Pr -oF -RU -pE -RU -oF -Pr -oF -RU -pE -RU -oF -zD -oF -RU -pE -RU -oF -yX -oF -RU -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(190,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -Pa -Pa -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(191,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -Pa -Pa -pE -RU -oF -zD -oF -RU -pE -RU -oF -zD -oF -RU -pE -RU -oF -zD -oF -RU -pE -RU -oF -Pr -oF -RU -pE -RU -oF -vn -oF -RU -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(192,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -Pa -Pa -Pa -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -iE -oF -oF -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(193,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -Pa -Pa -Pa -pE -zD -oF -oF -oF -zD -pE -zD -oF -oF -oF -zD -pE -zD -oF -oF -oF -zD -pE -yX -iE -iE -iE -Sm -pE -Pr -oF -iE -oF -Pr -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -Pa -Pa -Pa -Pa -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(194,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -iE -oF -oF -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(195,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -pE -RU -oF -zD -oF -RU -pE -RU -oF -zD -oF -RU -pE -RU -oF -zD -oF -RU -pE -RU -oF -Pr -oF -RU -pE -RU -oF -yX -oF -RU -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -DU -da -oI -da -da -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(196,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -eA -eA -eA -eA -IH -HI -IH -HI -IH -HI -IH -eA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Fx -da -da -da -da -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(197,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -pE -RU -oF -zD -oF -RU -pE -RU -oF -zD -oF -RU -pE -RU -oF -zD -oF -RU -pE -RU -oF -IO -oF -RU -pE -RU -oF -zD -oF -RU -pE -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -yA -yA -yA -yA -yA -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -yA -hl -wN -wN -dz -dz -qT -dz -dz -dz -Vs -xO -xO -xO -PW -xO -xO -xO -xO -PW -xO -xO -xO -yA -yA -dD -dD -dD -mn -as -as -as -as -as -as -as -eA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -DU -da -oI -da -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(198,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -iE -oF -oF -pE -oF -oF -oF -oF -oF -pE -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -ez -FZ -Fu -FZ -ez -FZ -Fu -FZ -ez -FZ -Fu -FZ -ez -om -qd -Ra -Ul -Ra -qd -om -ez -FZ -Fu -FZ -ez -FZ -Fu -FZ -ez -FZ -Fu -FZ -ez -ez -yA -hl -wN -wN -wN -wN -wN -wN -wN -wN -Vs -xO -xO -xO -xO -xO -xO -xO -xO -xO -xO -xO -xO -yA -yA -dD -dD -dD -eA -IH -HI -IH -HI -IH -HI -IH -eA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Fx -da -da -da -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(199,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -pE -zD -oF -oF -oF -zD -pE -zD -oF -oF -oF -zD -pE -zD -oF -oF -oF -zD -pE -Pr -oF -iE -oF -Pr -pE -zD -oF -oF -oF -zD -pE -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -rn -rn -rn -rn -rn -rn -rn -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -ez -yA -hl -wN -wN -wN -wN -wN -wN -wN -wN -gr -xO -xO -ZP -eZ -eZ -ZP -xO -ZP -aT -eZ -ZP -xO -yA -yA -dD -dD -dD -eA -eA -eA -eA -eA -eA -eA -eA -eA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -DU -da -oI -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(200,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -iE -oF -oF -pE -oF -oF -oF -oF -oF -pE -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -uC -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -rn -Ra -Ra -Ra -Ra -Ra -rn -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -ez -yA -JR -wN -wN -hl -wN -wN -hl -wN -wN -gr -xO -xO -xO -eZ -eZ -xO -xO -xO -eZ -eZ -xO -KF -yA -yA -dD -dD -CG -eA -eA -eA -eA -eA -eA -eA -eA -eA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Fx -da -da -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(201,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -pE -RU -oF -zD -oF -RU -pE -RU -oF -zD -oF -RU -pE -RU -oF -zD -oF -RU -pE -RU -oF -yX -oF -RU -pE -RU -oF -zD -oF -RU -pE -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -da -da -da -da -da -da -da -da -da -da -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -rn -rn -rn -rn -rn -rn -rn -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -ez -yA -hl -wN -wN -hl -wN -wN -hl -wN -wN -gr -xO -xO -RG -eZ -eZ -ZP -xO -ZP -eZ -eZ -ZP -xO -yA -yA -dD -dD -dD -eA -IH -HI -IH -HI -IH -HI -IH -eA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -DU -da -oI -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(202,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -AZ -da -da -da -da -da -da -da -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -ez -Jj -Nl -Ji -ez -Jj -Nl -Ji -ez -Jj -Nl -Ji -ez -ez -BC -dx -rI -DF -BC -ez -ez -Jj -Nl -Ji -ez -Jj -Nl -Ji -ez -Jj -Nl -Ji -ez -ez -yA -hl -wN -wN -hl -wN -wN -hl -wN -wN -Vs -xO -xO -xO -eZ -eZ -xO -xO -xO -eZ -eZ -xO -xO -yA -yA -dD -dD -dD -mn -as -as -as -Pk -as -as -as -eA -yA -yA -Og -Og -Og -Og -Og -Og -Og -Og -Og -Og -yA -Fx -da -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(203,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -pE -RU -oF -zD -oF -RU -pE -RU -oF -zD -oF -RU -pE -RU -oF -Pr -oF -RU -pE -RU -oF -gk -oF -RU -pE -RU -oF -zD -oF -RU -pE -Pa -Pa -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -AZ -AZ -da -da -da -da -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -ez -rn -rn -rn -rn -rn -rn -rn -Zs -rn -rn -rn -rn -YK -rn -rn -rn -rn -rn -rn -rn -Pb -rn -rn -Zs -rn -rn -rn -rn -rn -rn -rn -ez -ez -yA -hl -wN -wN -hl -Ch -wN -hl -wN -wN -Vs -xO -xO -ZP -eZ -eZ -ZP -xO -ZP -eZ -eZ -ol -xO -yA -yA -dD -dD -dD -eA -IH -HI -IH -HI -IH -HI -IH -eA -yA -yA -Og -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Og -yA -yA -DU -da -oI -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(204,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -iE -oF -oF -pE -oF -oF -oF -oF -oF -pE -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -AZ -AZ -da -da -da -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -ez -rn -rn -rn -rn -rn -rn -rn -rn -rn -Cf -rn -rn -rn -rn -rn -rn -rn -rn -rn -rn -rn -rn -rn -rn -rn -WW -rn -rn -rn -rn -rn -ez -ez -yA -hl -wN -wN -hl -wN -wN -hl -wN -wN -Vs -xO -xO -xO -eZ -eZ -xO -xO -xO -eZ -eZ -xO -xO -yA -yA -dD -dD -CG -eA -eA -eA -eA -eA -eA -eA -eA -eA -yA -yA -Og -Pt -Fk -Fk -Fk -Fk -Fk -Fk -Pt -Og -yA -yA -Fx -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(205,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -Pa -Pa -Pa -pE -zD -oF -oF -oF -zD -pE -zD -oF -oF -oF -zD -pE -yX -iE -iE -iE -xM -pE -Pr -oF -iE -oF -Pr -pE -zD -oF -oF -oF -zD -pE -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -AZ -AZ -AZ -da -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -ez -Jj -Nl -Ji -ez -Jj -Nl -Ji -ez -Jj -Nl -Ji -ez -rn -rn -rn -rn -rn -KD -rn -ez -Jj -Nl -Ji -ez -Jj -Nl -Ji -ez -Jj -Nl -Ji -ez -ez -yA -hl -wN -wN -hl -wN -wN -hl -wN -wN -gr -xO -xO -ZP -eZ -eZ -ZP -xO -zp -eZ -eZ -ZP -xO -yA -yA -dD -dD -dD -eA -eA -eA -eA -eA -eA -eA -eA -eA -yA -yA -Og -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Og -yA -yA -yA -DU -da -oI -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(206,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -Pa -Pa -Pa -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -oF -oF -oF -pE -oF -oF -iE -oF -oF -pE -oF -oF -oF -oF -oF -pE -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -AZ -AZ -AZ -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -rn -rn -rn -rn -rn -rn -rn -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -ez -yA -JR -wN -wN -hl -wN -wN -hl -wN -wN -gr -xO -xO -xO -eZ -eZ -xO -xO -xO -eZ -eZ -xO -KF -yA -yA -dD -dD -dD -eA -IH -HI -IH -HI -IH -HI -IH -eA -yA -yA -Og -Pt -Fk -Fk -Fk -Fk -Fk -Fk -Pt -Og -yA -yA -yA -Fx -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(207,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -pE -RU -oF -zD -oF -RU -pE -RU -oF -zD -oF -RU -pE -RU -oF -Pr -oF -RU -pE -RU -oF -yX -oF -RU -pE -RU -oF -zD -oF -RU -pE -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -AZ -AZ -AZ -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -rn -rn -rn -rn -rn -rn -rn -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -Fu -Fu -Fu -ez -ez -yA -hl -wN -wN -wN -wN -wN -wN -wN -wN -gr -xO -xO -oy -eZ -eZ -ZP -xO -ZP -eZ -eZ -ZP -xO -yA -yA -oz -dD -dD -mn -as -as -as -as -as -as -as -eA -yA -yA -Og -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Og -yA -yA -yA -yA -DU -da -oI -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(208,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -pE -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -AZ -AZ -AZ -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -ez -FZ -Fu -FZ -ez -FZ -Fu -FZ -ez -FZ -Fu -FZ -ez -rn -rn -rn -rn -rn -rn -rn -ez -FZ -Fu -FZ -ez -FZ -Fu -FZ -ez -FZ -Fu -FZ -ez -ez -yA -hl -wN -wN -wN -wN -wN -wN -wN -wN -Vs -xO -xO -xO -xO -xO -xO -xO -xO -xO -xO -xO -xO -yA -yA -dD -dD -dD -eA -IH -HI -IH -HI -IH -HI -IH -eA -yA -yA -Og -Pt -Fk -Fk -Fk -Fk -Fk -Fk -Pt -Og -yA -yA -yA -yA -Fx -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(209,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -AZ -AZ -AZ -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -rn -rn -rn -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -ez -yA -hl -wN -wN -dz -dz -cl -dz -dz -dz -Vs -xO -xO -xO -bY -xO -xO -xO -xO -bY -xO -xO -xO -yA -yA -dD -dD -dD -eA -eA -eA -eA -eA -eA -eA -eA -eA -yA -yA -Og -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Og -yA -yA -yA -yA -yA -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(210,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Wy -Wy -Wy -Wy -Wy -Ik -Ik -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -jp -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -dR -Av -dR -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -dN -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -mb -mb -yA -yA -yA -yA -yA -yA -yA -dD -dD -dD -cK -cK -cK -cK -cK -cK -cK -cK -cK -cK -cK -Og -Og -Zn -Og -Og -Og -Og -Zn -Og -Og -Og -Og -Og -Og -yA -yA -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(211,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Wy -Nv -Nv -cx -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Wy -jp -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -AZ -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -JI -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -JI -MY -MY -MY -JI -MY -MY -MY -MY -MY -dD -dD -Dt -aj -MY -MY -MY -MY -MY -JI -MY -MY -MY -JI -Og -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -yA -yA -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(212,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Wy -Nv -Nv -cx -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Wy -jp -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -AZ -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -MY -zP -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -NF -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -ny -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -kB -MY -MY -MY -MY -MY -MY -MY -MY -dD -WS -dD -YB -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -HK -Pt -Pt -jd -Pt -Xa -pL -pL -os -os -Ae -Ae -BN -Pt -yA -DU -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(213,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Wy -Nv -Nv -cx -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Wy -jp -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -AZ -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -MY -MY -yT -MY -MY -MY -Cl -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -Cl -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -Cl -MY -MY -MY -Cl -MY -MY -MY -MY -MY -dD -dD -dD -aj -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -Og -Pt -Pt -Pt -Pt -SC -VM -VM -xU -EI -VM -VM -pT -Pt -yA -Fx -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(214,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -hK -hK -cx -cx -cx -cx -cx -hK -hK -cx -cx -cx -cx -cx -hK -hK -cx -cx -cx -Nv -Nv -Nv -Wy -jp -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -AZ -SO -SO -SO -SO -SO -SO -SO -SO -SO -SO -SO -SO -SO -SO -SO -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -MY -MY -MY -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -MY -MY -MY -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -eA -sK -eA -cK -cK -cK -cK -cK -cK -cK -MY -MY -MY -cK -Og -Pt -Pt -Pt -Pt -XF -Pt -wD -VM -VM -wD -Pt -XF -Pt -yA -yA -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(215,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -cn -cn -cn -cn -cn -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -cx -cx -cx -cx -cx -cx -cx -cx -dq -Nv -Nv -Nv -Nv -Xs -cx -BF -Nv -Nv -Nv -Nv -GP -cx -GP -Nv -Nv -Nv -Nv -BF -cx -Nv -Nv -Nv -Wy -jp -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -AZ -vg -vg -vg -vg -vg -Lw -Lw -Lw -Lw -Lw -SO -SO -SO -SO -SO -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -MY -MY -MY -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Ut -MY -MY -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -cL -wR -cL -yA -yA -yA -yA -yA -yA -cK -MY -MY -MY -cK -Og -Pt -Pt -dv -Pt -FD -VM -VM -Xa -BN -VM -VM -FD -Pt -yA -yA -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(216,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -cn -Di -Di -Di -cn -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -cx -cx -cY -Nv -Nv -Nv -cY -cx -dq -Nv -Nv -Nv -Nv -iU -cx -BF -Nv -Nv -Nv -Nv -De -cx -De -Nv -Nv -Nv -Nv -BF -cx -Nv -Nv -Nv -Wy -jp -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -AZ -vg -vg -vg -vg -vg -vg -Lw -Lw -Lw -Lw -Lw -SO -SO -SO -SO -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -MY -MY -MY -yA -yA -FS -FS -FS -FS -Re -FS -FS -FS -FS -mN -mN -mN -IS -IS -fO -IS -IS -IS -IS -fO -IS -IS -mN -mN -mN -mN -MY -MY -MY -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Fz -Fz -XV -XV -pA -XV -XV -Fz -Fz -yA -yA -cL -wR -cL -yA -yA -yA -yA -yA -bz -bz -bz -Qt -bz -bz -bz -bz -bz -bz -Pt -pT -VM -VM -xU -EI -VM -VM -pT -Pt -yA -yA -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(217,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -cn -Di -Zh -Di -Di -uC -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -cx -cx -cY -Nv -Nv -Nv -cY -cx -dq -Nv -Nv -Nv -Nv -Ro -cx -QE -Nv -Nv -Nv -Nv -GP -cx -GP -Nv -Nv -Nv -Nv -QE -cx -Nv -Nv -Nv -Wy -jp -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -AZ -vg -vg -vg -vg -vg -vg -vg -Lw -Lw -Lw -Lw -Lw -SO -SO -SO -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -MY -MY -iR -yA -yA -FS -FS -FS -FS -BD -FS -FS -FS -FS -mN -mN -GI -GI -GI -GI -GI -GI -GI -GI -GI -GI -GI -GI -mN -mN -mN -MY -MY -MY -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Fz -XV -XV -XV -XV -XV -XV -XV -Fz -yA -yA -eA -sK -eA -yA -yA -yA -yA -yA -bz -MU -xq -Of -MU -MU -qL -Of -sg -bz -Pt -XF -Pt -wD -VM -VM -wD -Pt -XF -Pt -yA -DU -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(218,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -cn -Di -Di -Di -cn -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -cx -cx -cx -cx -gU -cx -cx -cx -dq -Nv -Nv -Nv -Nv -IX -cx -QE -Nv -Nv -Nv -Nv -GP -cx -GP -Nv -Nv -Nv -Nv -QE -cx -Nv -Nv -Nv -Wy -Wy -Wy -Wy -Wy -AZ -AZ -AZ -AZ -AZ -AZ -vg -vg -vg -vg -vg -vg -vg -vg -Lw -Lw -Lw -Lw -SO -SO -SO -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -MY -MY -MY -yA -yA -FS -FS -FS -BD -BD -BD -FS -FS -FS -mN -GI -GI -GI -GI -GI -GI -GI -GI -GI -GI -GI -GI -GI -GI -mN -mN -MY -MY -MY -gY -gY -gY -kk -TS -kk -kk -Lp -kk -TS -kk -gY -gY -gY -XV -XV -XV -XV -XV -XV -XV -XV -XV -yA -yA -TH -TH -TH -TH -wm -yA -yA -yA -bz -MU -Of -Of -pl -Of -Of -Of -sg -CF -Pt -FD -VM -VM -Xa -BN -VM -VM -FD -Pt -yA -Fx -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(219,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -cn -cn -cn -cn -cn -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -cx -cx -Sb -Nv -Nv -Nv -Nv -gU -Nv -Nv -Nv -Nv -Nv -dL -cx -BF -Nv -Nv -Nv -Nv -De -cx -De -Nv -Nv -Nv -Nv -BF -cx -Nv -Nv -Nv -Wy -Nv -Nv -Nv -Wy -AZ -AZ -AZ -AZ -AZ -AZ -vg -vg -vg -vg -vg -vg -vg -vg -vg -Lw -Lw -Lw -Lw -SO -ao -MY -MY -MY -MY -MY -MY -MY -YQ -MY -MY -MY -MY -MY -MY -MY -MY -MY -yA -yA -FS -FS -BD -BD -BD -BD -BD -FS -FS -GI -GI -GI -Cj -JJ -JJ -Ar -GI -GI -Cj -JJ -JJ -WY -GI -GI -SX -GI -MY -MY -MY -gY -gY -gY -kk -kk -kk -kk -kk -kk -kk -kk -gY -gY -gY -XV -XV -XV -XV -XV -XV -XV -XV -XV -yA -yA -TH -TH -TH -TH -TH -yA -yA -yA -bz -MU -Of -Of -Of -Of -Of -Of -sg -CF -Pt -pT -VM -VM -xU -EI -VM -VM -pT -Pt -yA -yA -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(220,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -zy -zy -zy -zy -zy -zy -Pa -zy -zy -zy -zy -Pa -zy -zy -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -cx -cx -Sb -Nv -Nv -Nv -Nv -gU -Nv -Nv -Nv -Nv -Nv -iU -cx -BF -Nv -Nv -Nv -Nv -De -cx -De -Nv -Nv -Nv -Nv -BF -cx -Nv -Nv -Nv -Nv -Nv -um -Nv -Wy -AZ -AZ -AZ -AZ -AZ -AZ -vg -vg -vg -vg -vg -vg -vg -vg -vg -vg -Lw -Lw -Lw -Fg -ao -MY -MY -MY -MY -MY -MY -iN -MY -ak -MY -MY -MY -MY -MY -MY -MY -MY -yA -yA -lG -BD -BD -BD -vh -Wj -BD -BD -rP -GI -GI -GI -GI -GI -GI -GI -lk -GI -GI -GI -GI -GI -GI -GI -mN -mN -Ut -ZX -MY -bM -kk -Fq -kk -kk -kk -kk -kk -kk -kk -kk -Fq -kk -kk -XV -XV -XV -XV -Vp -XV -XV -XV -Db -yA -yA -TH -TH -TH -TH -TH -yA -yA -yA -bz -MU -Of -jQ -Of -Of -Uk -Of -sg -CF -Pt -XF -Pt -wD -VM -VM -wD -Pt -XF -Pt -yA -yA -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(221,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -cx -cx -cx -cx -gU -cx -cx -cx -dq -Nv -Nv -Nv -Nv -Ro -cx -QE -Nv -Nv -Nv -Nv -GP -cx -GP -Nv -Nv -Nv -Nv -QE -cx -Nv -Nv -Nv -Wy -Nv -Nv -Nv -Wy -AZ -AZ -AZ -AZ -AZ -AZ -vg -vg -vg -vg -vg -vg -vg -vg -vg -vg -vg -Lw -Lw -SO -ao -MY -MY -MY -MY -MY -MY -MY -xw -MY -MY -MY -MY -MY -MY -MY -MY -MY -yA -yA -FS -FS -BD -BD -BD -BD -BD -FS -FS -GI -GI -GI -VU -lg -lg -rY -GI -GI -VU -lg -lg -rY -GI -GI -SX -GI -MY -MY -MY -gY -gY -gY -kk -kk -kk -kk -kk -kk -kk -kk -gY -gY -gY -XV -XV -XV -XV -XV -XV -XV -XV -XV -yA -yA -TH -TH -TH -TH -TH -yA -yA -yA -bz -MU -Of -Of -Of -Of -Of -Of -sg -CF -Pt -FD -VM -VM -Xa -BN -VM -VM -FD -Pt -yA -yA -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(222,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -cx -cx -cY -Nv -Nv -Nv -cY -cx -dq -Nv -Nv -Nv -Nv -IX -cx -QE -Nv -Nv -Nv -Nv -GP -cx -GP -Nv -Nv -Nv -Nv -QE -cx -Nv -Nv -Nv -Wy -Wy -Wy -Wy -Wy -AZ -AZ -AZ -AZ -AZ -AZ -vg -vg -vg -vg -vg -vg -vg -vg -vg -vg -vg -vg -SO -SO -SO -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -MY -MY -MY -yA -yA -FS -FS -FS -BD -BD -BD -FS -FS -FS -mN -GI -GI -GI -GI -GI -GI -GI -GI -GI -GI -GI -GI -GI -GI -mN -mN -MY -MY -MY -gY -gY -gY -kk -TS -kk -kk -Jl -kk -TS -kk -gY -gY -gY -XV -XV -XV -XV -XV -XV -XV -XV -XV -yA -yA -TH -TH -TH -TH -wm -yA -yA -yA -bz -MU -Of -Of -Ce -Of -Of -Of -sg -CF -Pt -pT -VM -VM -xU -EI -VM -VM -pT -Pt -yA -DU -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(223,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -cx -cx -cY -Nv -Nv -Nv -cY -cx -dq -Nv -Nv -Nv -Nv -Xs -cx -BF -Nv -Nv -Nv -Nv -De -cx -De -Nv -Nv -Nv -Nv -BF -cx -Nv -Nv -Nv -Wy -jp -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -AZ -vg -vg -vg -vg -vg -vg -vg -vg -vg -vg -vg -vg -SO -SO -SO -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -MY -MY -iR -yA -yA -FS -FS -FS -FS -BD -FS -FS -FS -FS -mN -mN -GI -GI -GI -GI -GI -GI -GI -GI -GI -GI -GI -GI -mN -mN -mN -MY -MY -MY -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Fz -XV -XV -XV -XV -XV -XV -XV -Fz -yA -yA -eA -sK -eA -yA -yA -yA -yA -yA -bz -MU -nU -Of -MU -MU -nU -Of -sg -bz -Pt -XF -Pt -wD -VM -VM -wD -Pt -XF -Pt -yA -Fx -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(224,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -cx -cx -cx -cx -cx -cx -cx -cx -dq -Nv -Nv -Nv -Nv -me -cx -BF -Nv -Nv -Nv -Nv -GP -cx -GP -Nv -Nv -Nv -Nv -BF -cx -Nv -Nv -Nv -Wy -jp -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -AZ -vg -vg -vg -vg -vg -vg -vg -vg -vg -vg -vg -vg -SO -SO -SO -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -MY -MY -MY -yA -yA -FS -FS -FS -FS -Bo -FS -FS -FS -FS -mN -mN -mN -ks -ks -LF -ks -ks -ks -ks -LF -ks -ks -mN -mN -mN -mN -MY -MY -MY -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Fz -Fz -XV -XV -nN -XV -XV -Fz -Fz -yA -yA -cL -wR -cL -yA -yA -yA -yA -yA -bz -bz -bz -Of -bz -bz -bz -bz -bz -bz -Pt -FD -VM -VM -Xa -BN -VM -VM -FD -Pt -yA -yA -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(225,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -hK -hK -cx -cx -cx -cx -cx -hK -hK -cx -cx -cx -cx -cx -hK -hK -cx -cx -cx -Nv -Nv -Nv -Wy -jp -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -AZ -vg -vg -vg -vg -vg -vg -vg -vg -vg -vg -vg -vg -SO -SO -SO -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -MY -MY -MY -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Ut -MY -MY -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -cL -wR -cL -yA -yA -yA -yA -yA -yA -cK -MY -MY -MY -cK -Og -Pt -Pt -OD -Pt -pT -VM -VM -xU -EI -VM -VM -pT -Pt -yA -yA -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(226,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -Wy -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Wy -jp -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -AZ -vg -vg -vg -vg -vg -vg -vg -vg -vg -vg -vg -vg -SO -SO -SO -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -MY -MY -MY -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -MY -MY -MY -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -eA -sK -eA -cK -cK -cK -cK -cK -cK -cK -MY -MY -MY -cK -Og -Pt -Pt -Pt -Pt -XF -Pt -wD -VM -VM -wD -Pt -XF -Pt -yA -yA -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(227,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -Wy -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Wy -jp -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -MY -MY -CD -MY -MY -MY -JI -MY -MY -MY -MY -MY -MY -MY -MY -MY -JI -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -JI -MY -MY -MY -JI -MY -MY -MY -MY -JI -MY -MY -MY -JI -MY -MY -MY -MY -MY -MY -dD -dD -dD -aj -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -Og -Pt -Pt -Pt -Pt -FD -VM -VM -Xa -BN -VM -VM -FD -Pt -yA -DU -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(228,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -Wy -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Nv -Wy -jp -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -MY -ny -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -ak -MY -MY -MY -MY -MY -MY -MY -MY -Nq -MY -MY -MY -MY -MY -MY -MY -MY -yT -MY -MY -MY -MY -MY -MY -MY -MY -ZX -MY -MY -MY -MY -MY -MY -MY -MY -dD -WS -dD -YB -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -HK -Pt -Pt -jd -Pt -xU -pL -pL -WB -WB -pL -pL -EI -Pt -yA -Fx -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(229,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Pa -Pa -Pa -Pa -Pa -Pa -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Wy -bB -Wy -Wy -Wy -bB -Wy -Wy -Wy -bB -Wy -Wy -bB -Wy -Wy -Wy -bB -Wy -Wy -Wy -bB -Wy -Wy -bB -Wy -Wy -Wy -bB -Wy -Wy -Wy -bB -Wy -Wy -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -Cl -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -MY -Cl -MY -MY -MY -Cl -MY -MY -MY -MY -MY -MY -dD -dD -dD -aj -MY -MY -MY -MY -MY -Cl -MY -MY -MY -Cl -Og -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -yA -yA -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(230,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Wy -jj -yx -Wy -Wy -jj -yx -Wy -Wy -jj -yx -Wy -jj -yx -Wy -Wy -jj -yx -Wy -Wy -jj -yx -Wy -jj -yx -Wy -Wy -jj -yx -Wy -Wy -jj -yx -Wy -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -YB -Av -YB -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yp -yp -yp -yA -yA -yA -yA -yA -yA -yp -yp -yp -yA -yA -yA -yA -yA -yA -yA -dD -dD -dD -cK -cK -cK -cK -cK -cK -cK -cK -cK -cK -cK -Og -Og -Zn -Og -Og -Og -Og -Zn -Og -Og -Og -Og -Og -Og -yA -yA -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(231,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Wy -jj -GW -Wy -Wy -jj -GW -Wy -Wy -jj -GW -Wy -jj -GW -Wy -Wy -jj -GW -Wy -Wy -jj -GW -Wy -jj -GW -Wy -Wy -jj -GW -Wy -Wy -jj -GW -Wy -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -uO -oT -dg -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -yA -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -Yn -Iu -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -yA -yA -dD -dD -dD -eA -eA -eA -eA -eA -eA -eA -eA -eA -yA -yA -Og -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Og -yA -yA -yA -yA -yA -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(232,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Wy -jj -vK -Wy -Wy -jj -vK -Wy -Wy -jj -vK -Wy -jj -vK -Wy -Wy -jj -vK -Wy -Wy -jj -vK -Wy -jj -vK -Wy -Wy -jj -vK -Wy -Wy -jj -vK -Wy -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Oa -Bf -Bf -Bf -Bf -gI -EE -EE -EE -KU -EE -EE -dg -Oa -uO -oT -oT -oT -dg -Oa -uO -EE -EE -EE -EE -EE -EE -EE -EE -EE -EE -EE -dg -Oa -yA -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -yA -yA -dD -dD -dD -eA -IH -HI -IH -HI -IH -HI -IH -eA -yA -yA -Og -Pt -Fk -Fk -Fk -Fk -Fk -Fk -Pt -Og -yA -yA -yA -yA -DU -da -oI -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(233,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -Wy -jp -jp -jp -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Oa -Bf -pf -Bf -Bf -bl -oT -oT -oT -oT -oT -oT -Au -Gp -OV -oT -oT -oT -TI -Gp -wJ -Gu -Gu -Gu -Sa -oT -oT -oT -Sa -Sa -nv -Sa -sq -Oa -yA -LZ -LZ -GU -LZ -xG -LZ -LZ -GU -LZ -xG -LZ -GU -LZ -xG -LZ -GU -LZ -xG -LZ -GU -LZ -LZ -yA -yA -dD -dD -dD -mn -as -as -as -as -as -as -as -eA -yA -yA -Og -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Og -yA -yA -yA -yA -Fx -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(234,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Oa -Bf -Bf -Bf -Bf -VZ -oT -oT -Ni -oT -gS -oT -oT -Gp -oT -oT -oT -oT -oT -Gp -oT -oT -oT -oT -oT -oT -oT -oT -oT -oT -oT -oT -sq -Oa -yA -Qz -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -yA -yA -dD -dD -dD -eA -IH -HI -IH -HI -IH -HI -IH -eA -yA -yA -Og -Pt -Fk -Fk -Fk -Fk -Fk -Fk -Pt -Og -yA -yA -yA -DU -da -oI -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(235,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -AZ -AZ -AZ -AZ -AZ -AZ -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Oa -Oa -Oa -Oa -Oa -Oa -oT -oT -Bq -oT -wQ -oT -oT -Gp -oT -oT -oT -oT -oT -Gp -oT -oT -oT -oT -oT -oT -oT -oT -oT -oT -VT -oT -sq -Oa -yA -LZ -LZ -xG -LZ -GU -LZ -LZ -OX -LZ -GU -LZ -LZ -LZ -GU -LZ -LZ -LZ -GU -NK -LZ -LZ -LZ -yA -yA -dD -dD -dD -eA -eA -eA -eA -eA -eA -eA -eA -eA -yA -yA -Og -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Og -yA -yA -yA -Fx -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(236,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -AZ -AZ -AZ -AZ -AZ -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Oa -Bf -Bf -Bf -Bf -gI -oT -oT -gS -oT -nS -oT -aX -Gp -Bn -oT -oT -oT -aX -Gp -Bn -Sa -tZ -Sa -Sa -oT -oT -oT -Sa -Sa -Sa -Sa -sq -Oa -yA -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -yA -yA -dD -dD -CG -eA -eA -eA -eA -eA -eA -eA -eA -eA -yA -yA -Og -Pt -Fk -Fk -Fk -Fk -Fk -Fk -Pt -Og -yA -yA -DU -da -oI -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(237,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -AZ -AZ -AZ -AZ -da -da -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Oa -Bf -pf -Bf -Bf -bl -oT -oT -QV -oT -Al -oT -ua -Oa -Nu -FB -My -FB -BU -Oa -Nu -FB -FB -TQ -FB -FB -FB -yD -FB -FB -TQ -FB -BU -Oa -yA -LZ -LZ -GU -LZ -xG -LZ -LZ -GU -LZ -xG -LZ -GU -LZ -xG -LZ -GU -LZ -xG -LZ -GU -LZ -LZ -yA -yA -dD -dD -dD -eA -IH -HI -IH -HI -IH -HI -IH -eA -yA -yA -Og -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Pt -Og -yA -yA -Fx -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(238,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -AZ -AZ -AZ -da -da -da -da -da -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Oa -Bf -Bf -Bf -Bf -VZ -oT -oT -nS -oT -It -oT -ho -Oa -Oa -Oa -mP -Oa -Oa -Oa -Oa -Oa -Oa -mP -Oa -Oa -Oa -Oa -Oa -Oa -Vo -Oa -Oa -Oa -yA -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -yA -yA -dD -dD -dD -mn -as -as -as -as -as -as -as -eA -yA -yA -Og -Og -Og -Og -Og -Og -Og -Og -Og -Og -yA -DU -da -oI -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(239,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -AZ -AZ -da -da -da -da -da -da -da -da -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Oa -Oa -Oa -Oa -Oa -Oa -oT -oT -gS -oT -Ni -oT -ho -Oa -uO -EE -RN -dg -Yp -Yp -Yp -Yp -uO -DV -EE -EE -dg -Oa -uO -EE -RN -EE -dg -Oa -yA -LZ -LZ -xG -LZ -GU -LZ -LZ -xG -LZ -GU -LZ -cw -LZ -GU -LZ -xG -LZ -GU -LZ -xG -LZ -LZ -yA -yA -dD -dD -dD -eA -IH -HI -IH -HI -IH -HI -IH -eA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Fx -da -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(240,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -AZ -AZ -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Oa -Bf -Bf -Bf -Bf -gI -oT -oT -Fw -oT -gS -oT -ho -Oa -fq -oT -oT -oT -EE -EE -EE -EE -oT -oT -oT -oT -PN -Oa -fq -nS -nS -nS -ho -Oa -yA -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -Ok -LZ -LZ -LZ -LZ -LZ -yA -yA -dD -dD -CG -eA -eA -eA -eA -eA -eA -eA -eA -eA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -DU -da -oI -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(241,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -AZ -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Oa -Bf -pf -Bf -Bf -bl -oT -oT -oT -oT -oT -oT -ax -mP -cC -Lr -oT -oT -oT -oT -oT -oT -oT -Hb -oT -oT -PN -Oa -fq -oT -oT -oT -ho -Oa -yA -LZ -LZ -GU -LZ -xG -LZ -GU -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -GU -LZ -LZ -LZ -GU -LZ -LZ -yA -yA -dD -dD -dD -eA -eA -eA -eA -eA -eA -eA -eA -eA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Fx -da -da -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(242,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -AZ -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -Oa -Bf -Bf -Bf -Bf -VZ -FB -FB -FB -yD -FB -FB -BU -Oa -nD -WL -WL -WL -vk -Cy -Cy -WL -Aj -Eu -WL -gJ -cd -Oa -uz -ha -KV -Hn -hi -Oa -yA -LZ -LZ -LZ -jB -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -yA -yA -dD -dD -dD -eA -IH -HI -IH -HI -IH -HI -IH -eA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -DU -da -oI -da -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(243,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -AZ -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -yA -yA -yA -yA -yA -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -Oa -yA -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -LZ -yA -yA -dD -dD -dD -mn -as -as -as -as -as -as -as -eA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Fx -da -da -da -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(244,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -XL -XL -XL -XL -XL -XL -XL -XL -yA -yA -yA -yA -yA -yA -yA -yA -yA -eA -eA -eA -eA -IH -HI -IH -HI -IH -HI -IH -eA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -DU -da -oI -da -da -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(245,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -XL -XL -XL -XL -XL -XL -XL -XL -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -Fx -da -da -da -da -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(246,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(247,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -da -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(248,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -UM -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(249,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -UM -UM -UM -UM -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(250,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(251,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(252,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(253,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(254,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(255,1,1) = {" -XE -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -nJ -XE -"} -(256,1,1) = {" -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -XE -"} diff --git a/maps/southern_sun/submaps/gateway/maddnesslab.dm b/maps/southern_sun/submaps/gateway/maddnesslab.dm deleted file mode 100644 index 058ddd64fa..0000000000 --- a/maps/southern_sun/submaps/gateway/maddnesslab.dm +++ /dev/null @@ -1,148 +0,0 @@ -/area/awaymission/mol - name = "Strange Place" - icon_state = "red" - base_turf = /turf/simulated/floor/outdoors/dirt - outdoors = 0 - requires_power = 0 - -/area/awaymission/mol/outside - dynamic_lighting = 1 - outdoors = 1 - -/area/awaymission/mol/entrancetunnel - -/area/awaymission/mol/security - name = "Delta Vault" - -/area/awaymission/mol/medical - name = "Delta Checkpoint" - -/area/awaymission/mol/vr - name = "Delta Checkpoint" - -/area/awaymission/mol/vr/observation - name = "Delta Checkpoint" - -/area/awaymission/mol/vr/shattered - name = "Delta Checkpoint" - -/area/awaymission/mol/vr/observationroom - name = "Vistor Processing" - -/area/awaymission/mol/vistortunnel - name = "Vistor Processing" - -/area/awaymission/mol/vistortunnel/red - name = "Vistor Room Red" - -/area/awaymission/mol/vistortunnel/blue - name = "Vistor Room Blue" - -/area/awaymission/mol/vistortunnel/yellow - name = "Vistor Room Yellow" - -/area/awaymission/mol/vistortunnel/orange - name = "Vistor Room Orange" - -/area/awaymission/mol/vistortunnel/green - name = "Vistor Room Green" - -/area/awaymission/mol/vistortunnel/purple - name = "Vistor Purple" - -/area/awaymission/mol/scraptunnels - name = "Scrap Tunnels" - -/area/awaymission/mol/scraptunnels/room1 - name = "Junk Sorting" - -/area/awaymission/mol/scraptunnels/room2 - name = "Collection Zone" - -/area/awaymission/mol/scraptunnels/room3 - name = "Shuttle Landing Zone" - -/area/awaymission/mol/scraptunnels/room4 - name = "Mech Smeltery" - -/area/awaymission/mol/kitchen - name = "Kitchen Hallways" - -/area/awaymission/mol/kitchen/chamberA - name = "Delta Kitchen Chamber A" - -/area/awaymission/mol/kitchen/chamberB - name = "Delta Kitchen Chamber B" - -/area/awaymission/mol/kitchen/chamberC - name = "Delta Kitchen Chamber C" - -/area/awaymission/mol/kitchen/ChamberD - name = "Delta Kitchen Chamber D" - -/area/awaymission/mol/mines - name = "Delta Mines" - -/area/awaymission/mol/realitycore - name = "Void" - -/area/awaymission/mol/audiotorium - name = "Audiotorium" - -/area/awaymission/mol/conveyorcontrol - name = "Beta Control Room" - -/area/awaymission/mol/dorm - name = "Dorm" - -/area/awaymission/mol/serverroom - name = "Server Room" - -/area/awaymission/mol/securitycheckpoint - name = "Security Checkpoint" - -/area/awaymission/mol/engi - name = "Lab Enginering" - -/area/awaymission/mol/hardlightentrance - name = "Hardlight Zone Entrance" - -/area/awaymission/mol/dorms - name = "Delta Lab Dorms" - -/area/awaymission/mol/headdorms - name = "Delta Lab Head Dorms" - -/area/awaymission/mol/themaze - name = "Delta Maze" - -/area/awaymission/mol/crumblingmaze - name = "Delta Breaking Maze" - -/obj/structure/prop/blackbox/maddnesslab - catalogue_data = list(/datum/category_item/catalogue/information/blackbox/maddnesslab) - -/datum/category_item/catalogue/information/blackbox/maddnesslab - name = "Black Box Data - Farewell" - desc = {"Testing, testing.
- Well, this is awkward.
- Lab is finally closed.
- Everyone but boss man is gone.
- Which I mean dead, quit, fired, or some combination of them.
- And well the labs are a mess, and boss man well...that strange place did things to him.
- So, I took charge and did things. I locked boss up firmly in that sphere he so fondly likes.
- Locked the armory and hid the switches within the chassis we made.
, - If someone goes looky for boss, they'll need to clear up the carnage we made
- Nothing is getting out of there. Except Ashy, they're the one sane thing left.
- Not really sure what else to do for my confession.
- We did some really messed up stuff man, and planned on doing worse.
- I think boss believes themselves to be god.
- And with that strange mecha, I don't blame them. Not sure the experimental janus designs I've seen
- surpass it.
- Soo uhhh, yeah we messed up. Imma walk off aimlessly into the desert
- Or maybe go home myself if I can bypass my own security measures
- Didn't want anyone coming in or out of the teleporter but couldn't break it
- So locked it behind a buttons in our research wings
- And hey if you're hearing this, take care of my drake please.
- Ashy is a good one.
- "} \ No newline at end of file diff --git a/maps/southern_sun/submaps/gateway/maddnesslab.dmm b/maps/southern_sun/submaps/gateway/maddnesslab.dmm deleted file mode 100644 index 4d3b20780c..0000000000 --- a/maps/southern_sun/submaps/gateway/maddnesslab.dmm +++ /dev/null @@ -1,74329 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/item/aliencoin{ - name = "Very useful Collectable"; - desc = "It will make a nice collection number go up, increasing your completion percentage." - }, -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"ac" = ( -/obj/structure/flora/ausbushes/leafybush, -/mob/living/simple_mob/vr/glitch, -/turf/simulated/floor/grass2{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"ae" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/random/trash_pile, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"ah" = ( -/obj/machinery/door/airlock, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"ai" = ( -/mob/living/simple_mob/vore/candy/peppermint, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"aj" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/themaze) -"an" = ( -/obj/structure/table/hardwoodtable, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/carpet/brown, -/area/awaymission/mol/vistortunnel/orange) -"ap" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"aq" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/mol/kitchen/chamberA) -"ar" = ( -/obj/structure/table/steel, -/obj/item/paper{ - name = "Help Me"; - info = "It won't get out of my head. It won't let me leave. I changed the blast doors to try and seal it away, but it refuses to let me make it unreachable. No matter how many barriers I try, if it gets the hint of being sealed permeantly, it makes me undo it. Please, if you read this. just leave. Just go. Don't try to kill it, you'll just be claimed too." - }, -/turf/simulated/floor, -/area/awaymission/mol/headdorms) -"at" = ( -/obj/machinery/honey_extractor, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberB) -"az" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberB) -"aA" = ( -/turf/simulated/floor/grass{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"aB" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/carpet/oracarpet, -/area/awaymission/mol/mines) -"aC" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor, -/area/awaymission/mol/themaze) -"aF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"aI" = ( -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"aJ" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"aK" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/purple, -/area/awaymission/mol/vistortunnel/purple) -"aL" = ( -/mob/living/simple_mob/vore/candy/marshmellowserpent, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"aO" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/stolenpackage, -/turf/simulated/floor/carpet/brown, -/area/awaymission/mol/vistortunnel/orange) -"aS" = ( -/obj/structure/table/darkglass, -/obj/item/gun/magic/firestaff/vrwizard/lighting, -/turf/simulated/mineral/floor/icey{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/mol/vr/shattered) -"aU" = ( -/mob/living/simple_mob/vr/firewiz, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observation) -"aW" = ( -/obj/structure/table/standard, -/obj/random/maintenance/research, -/obj/machinery/light, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observation) -"aX" = ( -/mob/living/simple_mob/vore/candy/purplecabold, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberB) -"aY" = ( -/obj/machinery/door/blast/puzzle{ - id = "SuperBossGate" - }, -/turf/simulated/floor/wood, -/area/awaymission/mol/realitycore) -"bb" = ( -/obj/item/paper{ - name = "Dev Notes Secert"; - info = "I promised my nephew to put his level into this game. If you found it, uhh congrats. Didn't test it." - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/shattered) -"be" = ( -/obj/effect/floor_decal/stairs/wood_stairs{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"bf" = ( -/obj/item/bedsheet, -/obj/structure/bed, -/obj/machinery/light, -/turf/simulated/floor/wood/sif, -/area/awaymission/mol/dorms) -"bg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/mob/living/simple_mob/vore/candy/peppermint, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"bh" = ( -/obj/item/aliencoin{ - name = "Very useful Collectable"; - desc = "It will make a nice collection number go up, increasing your completion percentage." - }, -/turf/simulated/floor/grass2{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"bi" = ( -/mob/living/simple_mob/mechanical/mecha/vistor/vistorblue/shielded, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/vistortunnel/blue) -"bk" = ( -/obj/machinery/appliance/mixer/cereal, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"bl" = ( -/turf/simulated/floor/lava/harmless, -/area/awaymission/mol/vr/shattered) -"bn" = ( -/mob/living/simple_mob/mechanical/cyber_horror/grey, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"bo" = ( -/mob/living/simple_mob/vr/firewiz, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"bu" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberA) -"bv" = ( -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/vending/blood, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"bw" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room1) -"bC" = ( -/obj/random/maintenance, -/turf/simulated/floor, -/area/awaymission/mol/vistortunnel) -"bF" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/steel, -/obj/structure/curtain, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"bH" = ( -/mob/living/simple_mob/vore/candy/yellowcabold, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"bI" = ( -/mob/living/simple_mob/vr/frostwiz, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observation) -"bM" = ( -/obj/machinery/door/blast/puzzle{ - id = "VistorGreen" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"bO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/headdorms) -"bR" = ( -/obj/structure/disposalpipe/segment, -/obj/item/slime_extract/amber, -/obj/item/slime_extract/amber, -/obj/item/slime_extract/amber, -/obj/item/slime_extract/amber, -/obj/item/slime_extract/amber, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/kafel_full/gray, -/area/awaymission/mol/kitchen/ChamberD) -"bS" = ( -/obj/structure/table/marble, -/obj/random/meat, -/obj/random/meat, -/obj/random/meat, -/turf/simulated/floor/tiled/kafel_full/red, -/area/awaymission/mol/kitchen/chamberC) -"bU" = ( -/mob/living/simple_mob/vr/glitch, -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"bY" = ( -/obj/structure/table/marble, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"bZ" = ( -/mob/living/simple_mob/vore/candy/redcabold, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"cc" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"cd" = ( -/obj/structure/safe, -/obj/item/encryptionkey/omni, -/obj/item/clothing/glasses/omni, -/obj/item/ammo_casing/microbattery/medical/omni3, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"ce" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"ch" = ( -/turf/simulated/floor/outdoors/dirt{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"cj" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate2" - }, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/kitchen) -"ck" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/machinery/door/airlock, -/obj/machinery/door/blast/puzzle{ - id = "MadMedicalA" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"cl" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor, -/area/awaymission/mol/mines) -"cr" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"ct" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/mob/living/bot/cleanbot{ - name = "Reality Destroyer" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"cy" = ( -/obj/effect/spider/stickyweb/dark, -/obj/effect/spider/eggcluster/royal, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/headdorms) -"cz" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/stolenpackage, -/turf/simulated/floor/carpet/bcarpet, -/area/awaymission/mol/vistortunnel/yellow) -"cE" = ( -/mob/living/simple_mob/mechanical/cyber_horror/tajaran, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"cH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/themaze) -"cI" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/spider/stickyweb/dark, -/turf/simulated/floor, -/area/awaymission/mol/headdorms) -"cK" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"cL" = ( -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/vistortunnel/blue) -"cM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/scraptunnels/room2) -"cN" = ( -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberA) -"cO" = ( -/obj/structure/closet/jcloset, -/obj/item/soap/rainbow_soap, -/turf/simulated/floor/wood/sif, -/area/awaymission/mol/dorms) -"cQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/crumblingmaze) -"cS" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"cW" = ( -/turf/simulated/floor/water{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/vr/shattered) -"da" = ( -/obj/machinery/door/blast/regular{ - id = "MoLockB" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/securitycheckpoint) -"db" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"dc" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"df" = ( -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/shattered) -"dg" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"di" = ( -/obj/structure/table/standard, -/obj/item/paper{ - name = "Notes"; - info = "We just pulled a cultist from the void. They were sleeping so we just nudge them into their room and prayed." - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/random/maintenance/research, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"dj" = ( -/obj/structure/closet/crate, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/turf/simulated/floor, -/area/awaymission/mol/hardlightentrance) -"dk" = ( -/mob/living/simple_mob/vore/candy/redcabold, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberB) -"dl" = ( -/turf/simulated/wall/sifwood, -/area/awaymission/mol/vr/shattered) -"dm" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/mines) -"ds" = ( -/obj/structure/table/borosilicate, -/obj/machinery/button/remote/blast_door{ - id = "VistorGreen" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"dw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"dy" = ( -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"dB" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"dH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"dI" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"dJ" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/armor/combat/imperial, -/obj/item/clothing/gloves/arm_guard/combat/imperial, -/obj/item/clothing/head/helmet/combat/imperial, -/obj/item/clothing/shoes/leg_guard/combat/imperial, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"dK" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/themaze) -"dO" = ( -/obj/structure/closet/jcloset, -/obj/item/soap/rainbow_soap, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"dP" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"dQ" = ( -/turf/unsimulated/ai_visible, -/area/awaymission/mol/vr/observation) -"dR" = ( -/obj/machinery/door/airlock/security, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/conveyorcontrol) -"dT" = ( -/obj/structure/cliff/automatic{ - dir = 2 - }, -/turf/simulated/floor/outdoors/dirt{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"dY" = ( -/obj/structure/inflatable, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"dZ" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"ea" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/stolenpackage, -/turf/simulated/floor/carpet/purple, -/area/awaymission/mol/vistortunnel/purple) -"eb" = ( -/obj/structure/bed/chair/office{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/mol/audiotorium) -"ed" = ( -/mob/living/simple_mob/vore/candy/purplecabold, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"ee" = ( -/obj/structure/table/reinforced, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"ef" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"ei" = ( -/obj/structure/bonfire/permanent, -/obj/item/material/sword, -/turf/simulated/floor/outdoors/dirt{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"em" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"eo" = ( -/mob/living/simple_mob/vore/candy/yellowcabold, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/mol/kitchen/chamberB) -"ep" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"eq" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/dorms) -"et" = ( -/obj/effect/map_helper/no_phaseshift/area, -/turf/simulated/floor/carpet/green, -/area/awaymission/mol/vistortunnel/green) -"ex" = ( -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/carpet/green, -/area/awaymission/mol/vistortunnel/green) -"ey" = ( -/obj/machinery/crystal/ice, -/turf/simulated/floor/outdoors/dirt{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"eB" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"eC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"eD" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/mol/security) -"eF" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/wood/sif, -/area/awaymission/mol/dorms) -"eL" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/mob/living/simple_mob/mechanical/cyber_horror/ling_cyber_horror, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"eR" = ( -/mob/living/simple_mob/vore/candy/orangecabold, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"fa" = ( -/obj/item/stool/padded, -/mob/living/simple_mob/vore/candy/orangecabold, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"fb" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"fe" = ( -/mob/living/simple_mob/vore/candy/purplecabold, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberA) -"fg" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/structure/table/rack/shelf, -/obj/item/gun/projectile/revolver/saa, -/obj/item/gun/projectile/revolver/judge, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"fi" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels) -"fk" = ( -/obj/structure/table/marble, -/obj/item/flashlight/slime, -/obj/item/reagent_containers/food/snacks/slime, -/obj/item/reagent_containers/food/snacks/slime, -/obj/item/reagent_containers/food/snacks/slime, -/turf/simulated/floor/tiled/kafel_full/gray, -/area/awaymission/mol/kitchen/ChamberD) -"fm" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"fp" = ( -/obj/machinery/door/airlock/hatch, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observationroom) -"fq" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/crumblingmaze) -"fr" = ( -/turf/simulated/floor/carpet/brown, -/area/awaymission/mol/vistortunnel/orange) -"ft" = ( -/obj/machinery/door/blast/puzzle{ - id = "VistorYellow" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"fu" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/mob/living/simple_mob/mechanical/cyber_horror/tajaran, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"fy" = ( -/obj/structure/grille, -/obj/effect/floor_decal/corner/yellow/border, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"fz" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"fB" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberA) -"fD" = ( -/obj/structure/table/standard, -/obj/item/paper{ - name = "Notes"; - info = "Vistor Purple has the capability to manpulate light, turning itself seemingly invisible to the naked eye." - }, -/obj/random/maintenance/research, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"fJ" = ( -/mob/living/simple_mob/vr/poisonwiz, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observation) -"fN" = ( -/obj/effect/map_helper/no_phaseshift/area, -/turf/simulated/floor/carpet/bcarpet, -/area/awaymission/mol/vistortunnel/yellow) -"fQ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/steel, -/obj/machinery/button/remote/blast_door{ - id = "FinaleGate4" - }, -/obj/item/toy/plushie/fluff/lemonplush, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"fR" = ( -/mob/living/simple_mob/vr/glitch, -/turf/unsimulated/ai_visible, -/area/awaymission/mol/vr/observationroom) -"fS" = ( -/obj/random/outcrop, -/obj/random/outcrop, -/turf/simulated/floor/outdoors/dirt{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"fT" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/themaze) -"fY" = ( -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/mol/vistortunnel/red) -"fZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"ga" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/vr/observation) -"gh" = ( -/obj/effect/map_helper/no_phaseshift/area, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"gn" = ( -/obj/machinery/conveyor, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"gr" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/headdorms) -"gy" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"gA" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/loot_pile/surface/bones, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"gB" = ( -/mob/living/simple_mob/vore/candy/orangecabold, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/mol/kitchen/chamberB) -"gD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/loot_pile/surface/bones, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"gE" = ( -/turf/simulated/floor/dungeon, -/area/awaymission/mol/vr/shattered) -"gG" = ( -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"gH" = ( -/obj/machinery/seed_extractor, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberB) -"gJ" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/carpet/oracarpet, -/area/awaymission/mol/mines) -"gK" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/wall{ - can_open = 1 - }, -/area/awaymission/mol/crumblingmaze) -"gN" = ( -/obj/random/obstruction, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"gO" = ( -/obj/machinery/gibber, -/turf/simulated/floor/tiled/kafel_full/red, -/area/awaymission/mol/kitchen/chamberC) -"gR" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"gU" = ( -/obj/structure/table/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"gW" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/mob/living/simple_mob/mechanical/cyber_horror/cat_cyber_horror, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"gX" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/marble, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room1) -"gY" = ( -/obj/machinery/door/airlock, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observationroom) -"ha" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/mol/hardlightentrance) -"hd" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/turf/simulated/floor/carpet/bcarpet, -/area/awaymission/mol/vistortunnel/yellow) -"he" = ( -/obj/machinery/door/airlock, -/obj/machinery/door/blast/regular/open{ - id = "MoLockC" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/securitycheckpoint) -"hf" = ( -/obj/structure/table/standard, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/incendiary, -/obj/item/grenade/chem_grenade/incendiary, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/soap/rainbow_soap, -/obj/machinery/button/remote/blast_door{ - id = "FinaleGate1" - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"hg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/crumblingmaze) -"hh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/awaymission/mol/themaze) -"hp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"hq" = ( -/obj/structure/table/standard, -/obj/random/maintenance/research, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observation) -"hs" = ( -/mob/living/simple_mob/vore/candy/yellowcabold, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberB) -"ht" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/vistortunnel/blue) -"hw" = ( -/mob/living/simple_mob/vore/candy/greencabold, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberB) -"hx" = ( -/obj/effect/decal/mecha_wreckage/durand, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"hz" = ( -/obj/item/paper{ - name = "Good Bye"; - info = "We have fallen. The ash fills our view. We can hear the creatures scurring in the dark. Dave has already given up, and while I try to keep him moving with promises of salvation, I know he's right. We're both dead down here. Once we fell off the lift, we were goners." - }, -/turf/simulated/floor/outdoors/grass/smokestar, -/area/awaymission/mol/mines) -"hA" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 6 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/button/remote/blast_door{ - id = "MadMedicalB" - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"hD" = ( -/mob/living/simple_mob/mechanical/cyber_horror/tajaran, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"hE" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"hG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/mol/themaze) -"hI" = ( -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/carpet/bcarpet, -/area/awaymission/mol/vistortunnel/yellow) -"hJ" = ( -/obj/effect/map_helper/no_phaseshift/area, -/turf/simulated/floor/weird_things/dark, -/area/awaymission/mol/realitycore) -"hL" = ( -/obj/random/obstruction, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"hM" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/themaze) -"hN" = ( -/obj/machinery/gibber, -/turf/simulated/floor/tiled/kafel_full/gray, -/area/awaymission/mol/kitchen/ChamberD) -"hO" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"hQ" = ( -/turf/simulated/floor/outdoors/grass/smokestar, -/area/awaymission/mol/mines) -"hS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"hU" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"hY" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"hZ" = ( -/mob/living/simple_mob/vore/candy/greencabold, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberA) -"ia" = ( -/obj/effect/floor_decal/corner/yellow/border, -/obj/item/defib_kit/compact/combat/loaded, -/obj/item/defib_kit/compact/combat/loaded, -/obj/structure/table/standard, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"ie" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberA) -"ig" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/awaymission/mol/themaze) -"ii" = ( -/obj/structure/table/marble, -/obj/machinery/microwave, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"il" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"im" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"io" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/map_helper/no_phaseshift/area, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room1) -"ip" = ( -/obj/machinery/conveyor{ - id = "Candy Zone" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"ir" = ( -/mob/living/simple_mob/vr/glitch, -/turf/simulated/floor/dungeon, -/area/awaymission/mol/vr/shattered) -"is" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/kitchen) -"it" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/structure/table/rack/shelf, -/obj/item/material/twohanded/fireaxe/scythe, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"iz" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/conveyorcontrol) -"iA" = ( -/turf/simulated/wall/dungeon, -/area/awaymission/mol/security) -"iE" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"iF" = ( -/obj/machinery/light, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/mol/vistortunnel/red) -"iG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/crumblingmaze) -"iH" = ( -/obj/machinery/honey_extractor, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberA) -"iI" = ( -/obj/random/trash_pile, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"iL" = ( -/mob/living/simple_mob/vr/frostwiz, -/turf/simulated/floor/water{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/vr/shattered) -"iM" = ( -/obj/random/obstruction, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"iN" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/stolenpackage, -/turf/simulated/floor/carpet/bcarpet, -/area/awaymission/mol/vistortunnel/yellow) -"iP" = ( -/obj/structure/grille, -/obj/effect/floor_decal/corner/yellow/border, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"iR" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 10 - }, -/obj/machinery/oxygen_pump/mobile/anesthetic, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"iS" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/stolenpackage, -/turf/simulated/floor/carpet/green, -/area/awaymission/mol/vistortunnel/green) -"iT" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/random/medical/pillbottle, -/turf/simulated/floor/wood/sif{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"iV" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/vr/shattered) -"iW" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 3 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"jb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/crumblingmaze) -"jc" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/structure/table/rack/shelf, -/obj/item/gun/projectile/revolver/saa, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"jd" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/vr/shattered) -"jf" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/dorms) -"jg" = ( -/mob/living/simple_mob/mechanical/mecha/vistor/vistorpurple, -/turf/simulated/floor/carpet/purple, -/area/awaymission/mol/vistortunnel/purple) -"ji" = ( -/mob/living/simple_mob/vore/candy/ouroboros, -/turf/simulated/floor/tiled/kafel_full/gray, -/area/awaymission/mol/kitchen/ChamberD) -"jj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"jo" = ( -/obj/machinery/gateway{ - density = 0; - dir = 10 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"jp" = ( -/obj/structure/grille, -/turf/unsimulated/ai_visible, -/area/awaymission/mol/vr/shattered) -"jt" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate3" - }, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/dorms) -"jv" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"jw" = ( -/mob/living/simple_mob/vore/candy/bluecabold, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"jx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/mol/themaze) -"jy" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"jz" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/vistortunnel) -"jB" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate3" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"jI" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"jM" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"jQ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room1) -"jT" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/structure/table/rack/shelf, -/obj/item/storage/firstaid/experimental, -/obj/item/storage/firstaid/clotting, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"jW" = ( -/obj/structure/table/marble, -/obj/random/meat, -/obj/random/meat, -/turf/simulated/floor/tiled/kafel_full/red, -/area/awaymission/mol/kitchen/chamberC) -"jY" = ( -/obj/machinery/gateway, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"jZ" = ( -/obj/machinery/appliance/cooker/grill, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"kd" = ( -/turf/simulated/wall/r_wall{ - can_open = 1 - }, -/area/awaymission/mol/kitchen) -"kf" = ( -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/floor/carpet/green, -/area/awaymission/mol/vistortunnel/green) -"kg" = ( -/obj/structure/table/marble, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/meat, -/obj/random/meat, -/obj/random/meat, -/turf/simulated/floor/tiled/kafel_full/red, -/area/awaymission/mol/kitchen/chamberC) -"kh" = ( -/obj/structure/salvageable/server, -/obj/structure/salvageable/server, -/turf/simulated/floor/bluegrid, -/area/awaymission/mol/serverroom) -"kj" = ( -/turf/simulated/floor/weird_things/dark, -/area/awaymission/mol/realitycore) -"kk" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate2" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"kl" = ( -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"km" = ( -/mob/living/simple_mob/vr/lightingwiz, -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"ko" = ( -/obj/effect/simple_portal/linked{ - portal_id = "MoLBossHidden" - }, -/turf/simulated/floor/grass2{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"kp" = ( -/obj/effect/simple_portal/linked{ - portal_id = "MoLSpoiler" - }, -/turf/simulated/floor/outdoors/grass/smokestar, -/area/awaymission/mol/mines) -"kq" = ( -/turf/simulated/wall/dungeon{ - blocks_nonghost_incorporeal = 1 - }, -/area/awaymission/mol/entrancetunnel) -"kr" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"ks" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"kt" = ( -/obj/structure/table/darkglass, -/obj/item/gun/magic/firestaff/vrwizard/frost, -/turf/simulated/mineral/floor/icey{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/mol/vr/shattered) -"ky" = ( -/obj/structure/railing, -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"kA" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberB) -"kC" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/structure/table/rack/shelf, -/obj/item/gun/energy/vepr/plasma, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"kF" = ( -/obj/effect/map_helper/no_phaseshift/area, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/securitycheckpoint) -"kH" = ( -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"kJ" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/kitchen) -"kL" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"kN" = ( -/mob/living/simple_mob/vore/candy/bluecabold, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/mol/kitchen/chamberB) -"kP" = ( -/obj/machinery/crystal/ice, -/obj/machinery/crystal/ice, -/turf/simulated/floor/outdoors/ice/dark{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"kR" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels/room1) -"kS" = ( -/obj/machinery/conveyor_switch{ - id = "Candy Zone" - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/conveyorcontrol) -"kU" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"kV" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"kX" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"kZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels/room2) -"ld" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/crumblingmaze) -"le" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room1) -"lf" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"lh" = ( -/turf/simulated/floor/carpet/oracarpet, -/area/awaymission/mol/mines) -"lj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/themaze) -"ll" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/mol/audiotorium) -"lm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/seed_extractor, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberA) -"ln" = ( -/turf/simulated/floor/outdoors/dirt{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/vr/observation) -"lo" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"lr" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/crumblingmaze) -"ls" = ( -/mob/living/simple_mob/vore/candy/bluecabold, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"lt" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/item/reagent_containers/glass/beaker/bluespace, -/turf/simulated/floor/wood/sif{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"lx" = ( -/mob/living/simple_mob/vore/candy/marshmellowserpent, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"lz" = ( -/obj/structure/table/marble, -/obj/machinery/button/remote/blast_door{ - id = "FinaleGate2" - }, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"lC" = ( -/obj/structure/table/standard, -/obj/random/maintenance/research, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observationroom) -"lD" = ( -/turf/simulated/floor/carpet/bcarpet, -/area/awaymission/mol/vistortunnel/yellow) -"lF" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/machinery/light, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"lH" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/random/trash, -/turf/simulated/wall{ - can_open = 1 - }, -/area/awaymission/mol/crumblingmaze) -"lJ" = ( -/obj/effect/spider/stickyweb/dark, -/obj/structure/table/hardwoodtable, -/obj/random/maintenance/morestuff, -/obj/random/maintenance/research, -/turf/simulated/floor/carpet/tealcarpet, -/area/awaymission/mol/headdorms) -"lK" = ( -/obj/structure/ghost_pod/manual/lost_drone, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"lL" = ( -/obj/machinery/appliance/cooker/oven, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"lM" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/structure/table/rack/shelf, -/obj/item/material/twohanded/fireaxe/scythe, -/obj/item/melee/energy/sword/imperial, -/obj/item/shield/energy/imperial, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"lO" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/scraptunnels) -"lU" = ( -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/grass2{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"lV" = ( -/obj/structure/railing, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"lW" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/mob/living/simple_mob/mechanical/cyber_horror/grey, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"lZ" = ( -/obj/effect/map_helper/no_phaseshift/area, -/turf/simulated/floor/carpet/brown, -/area/awaymission/mol/vistortunnel/orange) -"ma" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"md" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/outdoors/desert_planet/deep_sand{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/mol/outside) -"mg" = ( -/obj/structure/door_assembly/door_assembly_hatch, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/serverroom) -"mi" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/door/airlock, -/obj/machinery/door/blast/puzzle{ - id = "MadMedicalA" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"mj" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"mk" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"ml" = ( -/obj/structure/ghost_pod/manual/lost_drone, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"mo" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/structure/table/rack/shelf, -/obj/item/gun/energy/vepr/plasma, -/obj/item/gun/energy/imperial, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"mq" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"mt" = ( -/obj/structure/table/standard, -/obj/random/maintenance/research, -/obj/item/clothing/head/vrwizard, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observation) -"mx" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/engi) -"my" = ( -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"mz" = ( -/mob/living/simple_mob/vore/candy/bluecabold, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"mA" = ( -/obj/effect/fake_sun/warm, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/mines) -"mB" = ( -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"mC" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"mD" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/shattered) -"mE" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/mol/serverroom) -"mF" = ( -/mob/living/simple_mob/vr/alchemistbee, -/turf/simulated/floor/wood/sif{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"mI" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/mol/realitycore) -"mL" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"mP" = ( -/obj/structure/table/standard, -/obj/random/maintenance/research, -/obj/machinery/light{ - dir = 1 - }, -/turf/unsimulated/ai_visible, -/area/awaymission/mol/vr/observationroom) -"mQ" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"mR" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/machinery/door/airlock, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"mS" = ( -/obj/item/paper{ - name = "Dev Notes 6"; - info = "We would have a boss here but we're a very low budget team. 1,000 k thalers barely let us set up shop. Jim is living out of his shuttle craft." - }, -/turf/simulated/floor/dungeon, -/area/awaymission/mol/vr/shattered) -"mV" = ( -/obj/effect/spider/stickyweb/dark, -/mob/living/simple_mob/animal/passive/mouse, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/headdorms) -"mX" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"mY" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels) -"mZ" = ( -/obj/structure/table/standard, -/obj/random/maintenance/research, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observationroom) -"nd" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/crumblingmaze) -"ng" = ( -/obj/item/material/barbedwire{ - anchored = 1; - icon_state = "barbedwire-out" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"nh" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"ni" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "Candy Zone" - }, -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"nj" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"no" = ( -/turf/simulated/wall{ - can_open = 1 - }, -/area/awaymission/mol/vistortunnel) -"np" = ( -/obj/structure/table/hardwoodtable, -/obj/effect/spider/stickyweb/dark, -/turf/simulated/floor/carpet/tealcarpet, -/area/awaymission/mol/headdorms) -"nq" = ( -/obj/structure/table/gold, -/obj/item/paper{ - name = "Just Stop"; - info = "Boss man is gone. I sent a syndi distress signal, and I hope they tear this place apart before anyone finds it. And if you get past them, and all our mistakes, you're not going to be able to use it. Just give up and go home." - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"nu" = ( -/obj/structure/salvageable/server, -/turf/simulated/floor/bluegrid, -/area/awaymission/mol/serverroom) -"nx" = ( -/mob/living/simple_mob/vore/candy/redcabold, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"nA" = ( -/obj/structure/table/marble, -/obj/machinery/light{ - dir = 1 - }, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"nL" = ( -/obj/structure/table/standard, -/obj/random/maintenance/research, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observation) -"nN" = ( -/obj/effect/decal/mecha_wreckage/gygax/adv, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"nO" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/random/trash_pile, -/obj/random/trash_pile, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"nP" = ( -/obj/structure/railing, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberB) -"nS" = ( -/obj/structure/railing, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberB) -"nT" = ( -/obj/machinery/door/blast/regular{ - id = "MolFluffV1" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"nX" = ( -/obj/structure/table/steel_reinforced, -/obj/structure/disposalpipe/segment, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberB) -"nY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/mol/mines) -"nZ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/mob/living/simple_mob/mechanical/cyber_horror/plasma_cyber_horror, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"oa" = ( -/obj/machinery/door/blast/puzzle{ - id = "SuperBossGate" - }, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"ob" = ( -/mob/living/simple_mob/vore/candy/bluecabold, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"oe" = ( -/mob/living/simple_mob/vr/glitch, -/turf/simulated/floor/grass2{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"of" = ( -/turf/simulated/wall/dungeon{ - blocks_nonghost_incorporeal = 1 - }, -/area/awaymission/mol/vr/shattered) -"og" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"oi" = ( -/obj/effect/spider/stickyweb/dark, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/headdorms) -"oj" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/airlock, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"ok" = ( -/mob/living/simple_mob/vore/candy/yellowcabold, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"on" = ( -/obj/effect/map_helper/no_phaseshift/area, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"oo" = ( -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/mol/serverroom) -"ov" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"ow" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/gun/energy/lasertag/blue, -/obj/item/gun/energy/lasertag/blue, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"oz" = ( -/mob/living/simple_mob/vr/frostwiz, -/turf/simulated/floor/grass{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"oE" = ( -/obj/structure/table/gold, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"oG" = ( -/mob/living/simple_mob/vore/candy/marshmellowserpent, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"oH" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"oI" = ( -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberA) -"oK" = ( -/obj/effect/floor_decal/corner/red/bordercorner, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"oM" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate3" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"oN" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/vistortunnel/green) -"oO" = ( -/obj/machinery/door/airlock/hatch, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/serverroom) -"oP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/themaze) -"oR" = ( -/mob/living/simple_mob/vr/poisonwiz, -/turf/simulated/floor/flock, -/area/awaymission/mol/vr/shattered) -"oS" = ( -/obj/effect/spider/stickyweb/dark, -/obj/effect/spider/eggcluster/royal, -/turf/simulated/floor/carpet/tealcarpet, -/area/awaymission/mol/headdorms) -"oV" = ( -/obj/machinery/door/blast/puzzle{ - id = "VistorBlue" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"oX" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberA) -"oZ" = ( -/obj/random/maintenance/engineering, -/turf/simulated/floor, -/area/awaymission/mol/vistortunnel) -"pc" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 9 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"pd" = ( -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"pi" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels) -"pl" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/steel, -/obj/random/maintenance, -/obj/machinery/light, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"pn" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 4; - pixel_x = 5 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"po" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/themaze) -"pr" = ( -/obj/structure/table/rack/shelf, -/obj/item/melee/energy/sword/imperial, -/obj/item/shield/energy/imperial, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"ps" = ( -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/vistortunnel/blue) -"pu" = ( -/mob/living/simple_mob/mechanical/mecha/imperion/phase1, -/turf/simulated/floor/weird_things/dark, -/area/awaymission/mol/realitycore) -"pw" = ( -/obj/machinery/light, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/vistortunnel/blue) -"px" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/mol/themaze) -"pB" = ( -/obj/effect/decal/mecha_wreckage/marauder, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"pD" = ( -/turf/simulated/floor/wood/sif{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"pE" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/grass{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"pF" = ( -/obj/structure/table/steel_reinforced, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/mol/kitchen/chamberB) -"pI" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/kitchen/ChamberD) -"pJ" = ( -/obj/structure/closet, -/obj/random/maintenance, -/obj/random/maintenance/morestuff, -/obj/random/maintenance/misc, -/obj/random/maintenance/security, -/obj/random/maintenance/research, -/obj/random/maintenance/engineering, -/turf/simulated/floor/wood/sif, -/area/awaymission/mol/dorms) -"pK" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/mol/scraptunnels/room2) -"pN" = ( -/obj/random/obstruction, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"pT" = ( -/obj/machinery/sleeper/survival_pod{ - dir = 5 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"pV" = ( -/obj/machinery/light, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/engi) -"pW" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/door/airlock, -/obj/machinery/door/blast/puzzle{ - id = "MadMedicalB" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"pY" = ( -/obj/structure/catwalk, -/turf/simulated/floor/lava, -/area/awaymission/mol/vr/shattered) -"qb" = ( -/turf/simulated/floor/tiled/kafel_full/red, -/area/awaymission/mol/kitchen/chamberC) -"qc" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"qd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"qf" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/headdorms) -"qg" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/slime, -/obj/item/reagent_containers/food/snacks/slime, -/obj/item/reagent_containers/food/snacks/slime, -/turf/simulated/floor/tiled/kafel_full/gray, -/area/awaymission/mol/kitchen/ChamberD) -"qj" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels/room2) -"ql" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberB) -"qn" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels) -"qo" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/headdorms) -"qp" = ( -/obj/effect/map_helper/no_phaseshift/area, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/mines) -"qq" = ( -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"qu" = ( -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/carpet/brown, -/area/awaymission/mol/vistortunnel/orange) -"qv" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels) -"qz" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor, -/area/awaymission/mol/themaze) -"qA" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/steel, -/obj/random/maintenance, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels/room2) -"qC" = ( -/obj/structure/disposaloutlet, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"qE" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room1) -"qF" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"qG" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/vistortunnel/blue) -"qJ" = ( -/obj/structure/bookcase, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"qL" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/steel, -/obj/structure/table/steel, -/obj/random/maintenance, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"qN" = ( -/obj/structure/table/borosilicate, -/obj/machinery/button/remote/blast_door{ - id = "VistorYellow" - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"qO" = ( -/obj/machinery/conveyor{ - id = "Candy Zone"; - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"qP" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/suit/armor/combat/imperial, -/obj/item/clothing/gloves/arm_guard/combat/imperial, -/obj/item/clothing/head/helmet/combat/imperial, -/obj/item/clothing/shoes/leg_guard/combat/imperial, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"qS" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberA) -"qT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"qV" = ( -/obj/effect/map_helper/no_phaseshift, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"qW" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/gun/energy/lasertag/blue, -/obj/item/gun/energy/lasertag/blue, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"qZ" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"ra" = ( -/mob/living/simple_mob/vore/candy/purplecabold, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberB) -"rb" = ( -/obj/item/stool/padded, -/mob/living/simple_mob/vore/candy/yellowcabold, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"rd" = ( -/turf/simulated/wall/dungeon, -/area/awaymission/mol/vistortunnel) -"rf" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"rh" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/security) -"ri" = ( -/obj/machinery/chemical_dispenser/xenoflora/full, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberA) -"rk" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room1) -"rl" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/mob/living/simple_mob/mechanical/cyber_horror/cat_cyber_horror, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"rm" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Candy Zone" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"rn" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"rt" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"ry" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate2" - }, -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"rA" = ( -/obj/machinery/door/blast/puzzle{ - id = "VistorPurple" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"rD" = ( -/mob/living/simple_mob/vore/candy/greencabold, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"rE" = ( -/obj/structure/table/darkglass, -/obj/item/bluespace_harpoon, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/shattered) -"rK" = ( -/obj/structure/table/steel, -/obj/structure/curtain, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"rL" = ( -/obj/machinery/conveyor{ - id = "Candy Zone" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"rM" = ( -/mob/living/simple_mob/vr/frostwiz, -/turf/simulated/floor/flock, -/area/awaymission/mol/vr/shattered) -"rO" = ( -/obj/structure/table/steel, -/turf/simulated/floor, -/area/awaymission/mol/headdorms) -"rP" = ( -/obj/machinery/crystal/lava, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"rQ" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"rS" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"rU" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/kafel_full/red, -/area/awaymission/mol/kitchen/chamberC) -"rW" = ( -/obj/item/paper{ - name = "Dev Notes 4"; - info = "Now you see, the sea level is a tad harder then the forsest, but you also have less of the next area to clear. Unless you want to full clear but who wants to do that." - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/shattered) -"rX" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"rZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/mines) -"sc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"sd" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"sf" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/steel, -/obj/structure/table/steel, -/obj/random/maintenance, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"sg" = ( -/obj/effect/decal/mecha_wreckage/mauler, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"sh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/mol/kitchen/chamberB) -"sk" = ( -/turf/simulated/floor, -/area/awaymission/mol/headdorms) -"so" = ( -/obj/item/slime_extract/amber, -/obj/item/slime_extract/amber, -/obj/item/slime_extract/amber, -/obj/item/slime_extract/amber, -/obj/item/slime_extract/amber, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/kafel_full/gray, -/area/awaymission/mol/kitchen/ChamberD) -"sq" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/vr/observation) -"ss" = ( -/obj/effect/map_helper/no_phaseshift/area, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/conveyorcontrol) -"sz" = ( -/obj/structure/janitorialcart, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 3 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"sB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberB) -"sI" = ( -/mob/living/simple_mob/vr/poisonwiz, -/turf/simulated/floor/dungeon, -/area/awaymission/mol/vr/shattered) -"sK" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberB) -"sM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/awaymission/mol/themaze) -"sN" = ( -/turf/simulated/wall/dungeon{ - blocks_nonghost_incorporeal = 1 - }, -/area/awaymission/mol/mines) -"sQ" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/mol/mines) -"sS" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"sU" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"sY" = ( -/obj/item/material/barbedwire{ - anchored = 1; - icon_state = "barbedwire-out" - }, -/obj/item/material/barbedwire{ - anchored = 1; - icon_state = "barbedwire-out" - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"tb" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/turf/simulated/floor, -/area/awaymission/mol/headdorms) -"tf" = ( -/mob/living/simple_mob/vore/candy/peppermint, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"tg" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"tl" = ( -/obj/machinery/biogenerator, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberB) -"tn" = ( -/obj/structure/ghost_pod/manual/corgi, -/obj/item/stack/animalhide/corgi, -/turf/simulated/floor/outdoors/dirt{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"tp" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/machinery/shower{ - dir = 4; - pixel_x = 5 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"tu" = ( -/obj/structure/table/hardwoodtable, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/carpet/bcarpet, -/area/awaymission/mol/vistortunnel/yellow) -"ty" = ( -/mob/living/simple_mob/vore/candy/bluecabold, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"tA" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/beaker/bluespace, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"tB" = ( -/obj/item/aliencoin{ - name = "Very useful Collectable"; - desc = "It will make a nice collection number go up, increasing your completion percentage." - }, -/turf/unsimulated/ai_visible, -/area/awaymission/mol/vr/shattered) -"tD" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/item/aliencoin{ - name = "Very useful Collectable"; - desc = "It will make a nice collection number go up, increasing your completion percentage." - }, -/turf/simulated/floor/grass2{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"tG" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/mines) -"tH" = ( -/obj/item/stool/padded, -/mob/living/simple_mob/vore/candy/marshmellowserpent, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"tI" = ( -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"tK" = ( -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/wood/sif, -/area/awaymission/mol/dorms) -"tL" = ( -/obj/random/outcrop, -/turf/simulated/floor/outdoors/dirt{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"tN" = ( -/obj/machinery/conveyor{ - id = "Candy Zone" - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"tP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/securitycheckpoint) -"tR" = ( -/obj/machinery/light, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/securitycheckpoint) -"tS" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing, -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"tT" = ( -/obj/machinery/door/blast/puzzle{ - id = "VistorGreen" - }, -/turf/simulated/floor/carpet/green, -/area/awaymission/mol/vistortunnel/green) -"tU" = ( -/mob/living/simple_mob/vr/glitch, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/shattered) -"tW" = ( -/obj/structure/table/borosilicate, -/obj/machinery/button/remote/blast_door{ - id = "VistorBlue" - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"tX" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/audiotorium) -"tY" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate3" - }, -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"tZ" = ( -/mob/living/simple_mob/vr/frostwiz, -/mob/living/simple_mob/vr/firewiz, -/turf/simulated/floor/water{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/vr/shattered) -"uc" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels/room3) -"ud" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"uf" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/light, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"ug" = ( -/obj/structure/loot_pile/surface/bones, -/obj/machinery/conveyor_switch{ - id = "Candy Zone" - }, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"uh" = ( -/obj/effect/map_helper/no_phaseshift/area, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"ui" = ( -/obj/effect/map_helper/no_tele, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/mines) -"uk" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/mob/living/simple_mob/mechanical/cyber_horror/corgi, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"ul" = ( -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/mines) -"um" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberB) -"uo" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/conveyorcontrol) -"up" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_soft/full, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"uq" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/dorms) -"uu" = ( -/mob/living/simple_mob/vr/firewiz, -/turf/simulated/floor/dungeon, -/area/awaymission/mol/vr/shattered) -"uv" = ( -/turf/unsimulated/ai_visible, -/area/awaymission/mol/vr/observationroom) -"uz" = ( -/mob/living/simple_mob/vr/poisonwiz, -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"uA" = ( -/obj/effect/floor_decal/corner/yellow/bordercorner, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"uD" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"uE" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/crumblingmaze) -"uH" = ( -/mob/living/simple_mob/vore/candy/peppermint, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"uJ" = ( -/turf/simulated/mineral/crystal_shiny, -/area/awaymission/mol/vr/shattered) -"uM" = ( -/obj/machinery/conveyor_switch{ - id = "Candy Zone" - }, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"uN" = ( -/obj/machinery/door/blast/regular{ - id = "MolFluffV2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"uQ" = ( -/obj/structure/door_assembly/door_assembly_hatch, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observation) -"uR" = ( -/obj/item/beartrap/hunting{ - anchored = 1; - deployed = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"uS" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/map_helper/no_phaseshift, -/obj/structure/table/marble, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room1) -"uU" = ( -/obj/effect/decal/mecha_wreckage/mauler, -/obj/effect/floor_decal/corner/black/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"uY" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels/room2) -"va" = ( -/obj/effect/map_helper/no_phaseshift, -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/floor/carpet/purple, -/area/awaymission/mol/vistortunnel/purple) -"vb" = ( -/obj/effect/decal/mecha_wreckage/phazon, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"vc" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/wall{ - can_open = 1 - }, -/area/awaymission/mol/crumblingmaze) -"vd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"ve" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/map_helper/no_phaseshift/area, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"vh" = ( -/mob/living/simple_mob/vore/candy/marshmellowserpent, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberB) -"vr" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"vw" = ( -/obj/item/modular_computer/console/preset/civilian, -/turf/unsimulated/ai_visible, -/area/awaymission/mol/vr/observationroom) -"vy" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"vz" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/mol/engi) -"vF" = ( -/obj/structure/table/standard, -/obj/random/maintenance/research, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"vG" = ( -/obj/machinery/door/airlock/angled_bay/double, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"vH" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"vJ" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate4" - }, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/dorms) -"vM" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/hardlightentrance) -"vO" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"vP" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"vQ" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"vR" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 10 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/button/remote/blast_door{ - id = "MadMedicalA" - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"vS" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"vU" = ( -/obj/structure/curtain, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"vX" = ( -/obj/structure/table/standard, -/obj/machinery/light, -/obj/random/maintenance/research, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"wa" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels/room1) -"wb" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/kafel_full/gray, -/area/awaymission/mol/kitchen/ChamberD) -"wc" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"we" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"wf" = ( -/obj/machinery/appliance/cooker/fryer, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"wk" = ( -/obj/machinery/appliance/mixer/candy, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"wl" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"wm" = ( -/obj/effect/map_helper/no_phaseshift/area, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observation) -"wn" = ( -/obj/machinery/autolathe, -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"wq" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observation) -"wr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/red, -/area/awaymission/mol/kitchen/chamberC) -"wv" = ( -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"wx" = ( -/obj/machinery/light, -/turf/simulated/floor/carpet/bcarpet, -/area/awaymission/mol/vistortunnel/yellow) -"wz" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/stolenpackage, -/turf/simulated/floor/carpet/purple, -/area/awaymission/mol/vistortunnel/purple) -"wB" = ( -/turf/simulated/wall/dungeon, -/area/awaymission/mol/entrancetunnel) -"wF" = ( -/obj/machinery/door/airlock/gold, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/engi) -"wI" = ( -/obj/structure/janitorialcart, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"wK" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberB) -"wM" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - dir = 8; - pixel_x = -5 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"wN" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"wO" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"wP" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"wQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels/room2) -"wS" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"wW" = ( -/obj/machinery/door/airlock/medical, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"wY" = ( -/obj/effect/map_helper/no_phaseshift/area, -/turf/simulated/floor/carpet/purple, -/area/awaymission/mol/vistortunnel/purple) -"xd" = ( -/turf/unsimulated/ai_visible, -/area/awaymission/mol/vr/shattered) -"xe" = ( -/obj/machinery/disposal, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"xg" = ( -/obj/machinery/chemical_dispenser/xenoflora/full, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/mol/kitchen/chamberB) -"xh" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"xi" = ( -/obj/structure/closet/toolcloset, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/electrical, -/obj/item/clothing/gloves/yellow, -/obj/machinery/light, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/engi) -"xj" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/random/obstruction, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"xl" = ( -/obj/structure/table/steel, -/obj/structure/curtain, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"xm" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"xo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/kitchen/ChamberD) -"xp" = ( -/obj/machinery/gateway{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"xq" = ( -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"xr" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/mol/audiotorium) -"xs" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/machinery/chem_master, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"xt" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 5 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"xu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/random/trash, -/turf/simulated/wall{ - can_open = 1 - }, -/area/awaymission/mol/crumblingmaze) -"xv" = ( -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/floor/carpet/brown, -/area/awaymission/mol/vistortunnel/orange) -"xw" = ( -/obj/structure/table/borosilicate, -/obj/machinery/button/remote/blast_door{ - id = "VistorRed" - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"xx" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/marble, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room1) -"xy" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"xA" = ( -/obj/structure/table/steel_reinforced, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberA) -"xB" = ( -/turf/simulated/floor/outdoors/ice/dark{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"xC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/entrancetunnel) -"xJ" = ( -/obj/structure/table/hardwoodtable, -/obj/effect/spider/stickyweb/dark, -/obj/item/card/id/syndicate_command, -/turf/simulated/floor/carpet/tealcarpet, -/area/awaymission/mol/headdorms) -"xM" = ( -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/light, -/obj/machinery/body_scanconsole, -/obj/machinery/body_scanconsole, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"xQ" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/mol/headdorms) -"xW" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"xX" = ( -/obj/structure/table/hardwoodtable, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/carpet/purple, -/area/awaymission/mol/vistortunnel/purple) -"ya" = ( -/obj/item/bedsheet, -/obj/structure/bed, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood/sif, -/area/awaymission/mol/dorms) -"yb" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"ye" = ( -/obj/effect/floor_decal/corner/yellow/border, -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/sterilizine, -/obj/item/reagent_containers/spray/sterilizine, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"yf" = ( -/obj/effect/simple_portal/linked{ - portal_id = "MoLBossRoom" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/shattered) -"yi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/loot_pile/surface/bones, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"yj" = ( -/mob/living/simple_mob/vore/candy/bluecabold, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"yl" = ( -/mob/living/simple_mob/vr/firewiz, -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"yo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/crumblingmaze) -"yp" = ( -/mob/living/simple_mob/vore/candy/redcabold, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"yu" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/mol/vr/shattered) -"yx" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/awaymission/mol/themaze) -"yz" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate3" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"yA" = ( -/obj/effect/decal/mecha_wreckage/janus, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"yB" = ( -/obj/machinery/door/blast/regular{ - id = "MoLockA" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/securitycheckpoint) -"yE" = ( -/mob/living/simple_mob/vore/candy/purplecabold, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"yH" = ( -/obj/effect/map_helper/no_phaseshift/area, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"yI" = ( -/mob/living/simple_mob/vore/candy/marshmellowserpent, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"yK" = ( -/obj/structure/table/rack/shelf, -/obj/item/gun/energy/imperial, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"yL" = ( -/obj/structure/table/marble, -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"yN" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall{ - can_open = 1 - }, -/area/awaymission/mol/crumblingmaze) -"yO" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"yP" = ( -/obj/effect/decal/mecha_wreckage/gygax, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"yQ" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 1 - }, -/obj/random/maintenance/research, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"yV" = ( -/obj/effect/decal/mecha_wreckage/gygax/medgax, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"yW" = ( -/obj/structure/table/borosilicate, -/obj/machinery/button/remote/blast_door{ - id = "VistorPurple" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"yY" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/steel, -/obj/random/maintenance, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"zd" = ( -/mob/living/simple_mob/vore/candy/peppermint, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"ze" = ( -/obj/structure/bed/chair/office{ - dir = 1 - }, -/mob/living/simple_mob/mechanical/mecha/combat/gygax/dark/advanced, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/mol/audiotorium) -"zf" = ( -/obj/structure/inflatable, -/turf/simulated/floor, -/area/awaymission/mol/mines) -"zg" = ( -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"zj" = ( -/obj/vehicle/bike/built, -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"zl" = ( -/obj/machinery/conveyor{ - id = "Candy Zone" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"zm" = ( -/turf/simulated/floor/tiled/neutral, -/area/awaymission/mol/audiotorium) -"zo" = ( -/turf/simulated/floor/outdoors/shelfice{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15; - outdoors = -1 - }, -/area/awaymission/mol/vr/shattered) -"zq" = ( -/mob/living/simple_mob/vore/candy/orangecabold, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"zr" = ( -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observationroom) -"zs" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/steel, -/obj/random/maintenance, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"zu" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/steel, -/obj/random/maintenance, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"zv" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels) -"zx" = ( -/obj/structure/barricade/planks, -/obj/item/tape/police, -/turf/simulated/floor, -/area/awaymission/mol/vistortunnel) -"zB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "MoLockC" - }, -/turf/simulated/floor, -/area/awaymission/mol/securitycheckpoint) -"zC" = ( -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"zE" = ( -/obj/machinery/chemical_dispenser/biochemistry/full, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/mol/kitchen/chamberB) -"zF" = ( -/obj/structure/table/hardwoodtable, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/carpet/green, -/area/awaymission/mol/vistortunnel/green) -"zJ" = ( -/obj/machinery/gateway{ - density = 0; - dir = 6 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"zL" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/mob/living/simple_mob/mechanical/cyber_horror/grey, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"zO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/crumblingmaze) -"zR" = ( -/obj/structure/prop/blackbox/maddnesslab, -/turf/simulated/floor/carpet/oracarpet, -/area/awaymission/mol/mines) -"zS" = ( -/turf/simulated/mineral, -/area/awaymission/mol/mines) -"zT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall{ - can_open = 1 - }, -/area/awaymission/mol/crumblingmaze) -"zX" = ( -/obj/effect/decal/mecha_wreckage/gorilla, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"zZ" = ( -/obj/machinery/door/airlock/security, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/securitycheckpoint) -"Aa" = ( -/mob/living/simple_mob/vr/lightingwiz, -/turf/simulated/floor/beach/sand, -/area/awaymission/mol/vr/shattered) -"Ab" = ( -/obj/structure/table/marble, -/obj/machinery/button/remote/blast_door{ - id = "MolFluffV1" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/mol/vistortunnel) -"Ac" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"Ad" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberA) -"Ae" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/entrancetunnel) -"Af" = ( -/obj/machinery/button/remote/blast_door{ - id = "FinaleGate3" - }, -/obj/structure/table/standard, -/turf/simulated/floor/bluegrid, -/area/awaymission/mol/serverroom) -"Ag" = ( -/mob/living/simple_mob/vore/candy/redcabold, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberB) -"Ah" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass2{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"Aj" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels) -"Ak" = ( -/obj/machinery/door/blast/puzzle{ - id = "VistorOrange" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"An" = ( -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"At" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"Av" = ( -/turf/simulated/floor/tiled/kafel_full/gray, -/area/awaymission/mol/kitchen/ChamberD) -"Aw" = ( -/obj/structure/table/marble, -/obj/machinery/light, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"Ax" = ( -/turf/simulated/wall{ - can_open = 1 - }, -/area/awaymission/mol/crumblingmaze) -"AC" = ( -/obj/random/trash_pile, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"AD" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/mob/living/simple_mob/mechanical/cyber_horror/plasma_cyber_horror, -/mob/living/simple_mob/mechanical/cyber_horror/grey, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"AE" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"AG" = ( -/obj/structure/bed, -/obj/item/bedsheet/captain, -/turf/simulated/floor/carpet/oracarpet, -/area/awaymission/mol/mines) -"AI" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/crumblingmaze) -"AK" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"AQ" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberA) -"AW" = ( -/obj/machinery/crystal/ice, -/turf/simulated/floor/outdoors/ice/dark{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"AX" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "Candy Zone" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"Bc" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/map_helper/no_phaseshift/area, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"Bf" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/engi) -"Bh" = ( -/mob/living/simple_mob/vr/firewiz, -/turf/simulated/floor/water{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/vr/shattered) -"Bi" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"Bj" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"Bm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"Bn" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate3" - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"Bo" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"Bp" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate4" - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"Br" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/shattered) -"Bs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"Bt" = ( -/obj/item/clothing/accessory/poncho/roles/cloak/security, -/obj/item/gun/projectile/gyropistol, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/clothing/glasses/sunglasses/sechud/tactical, -/obj/structure/closet/secure_closet/guncabinet{ - name = "security cabinet" - }, -/obj/item/melee/baton, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/conveyorcontrol) -"Bu" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"Bw" = ( -/mob/living/simple_mob/vore/candy/redcabold, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"Bx" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels) -"Bz" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"BA" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/vistortunnel/red) -"BB" = ( -/obj/structure/table/steel_reinforced, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/mol/kitchen/chamberA) -"BF" = ( -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/light, -/obj/machinery/sleep_console{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"BG" = ( -/turf/simulated/floor/carpet/green, -/area/awaymission/mol/vistortunnel/green) -"BH" = ( -/obj/structure/closet/crate/secure/loot, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"BI" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/kafel_full/gray, -/area/awaymission/mol/kitchen/ChamberD) -"BJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"BL" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/crumblingmaze) -"BR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"BZ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/steel, -/obj/random/maintenance, -/obj/machinery/light, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"Cc" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/mob/living/simple_mob/mechanical/cyber_horror/tajaran, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"Cd" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/mol/dorms) -"Cf" = ( -/obj/structure/table/rack/shelf, -/obj/item/gun/projectile/revolver/judge, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"Ch" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"Cl" = ( -/obj/item/clothing/suit/storage/hooded/wintercoat/cosmic, -/obj/structure/closet/wardrobe, -/turf/simulated/floor/carpet/oracarpet, -/area/awaymission/mol/mines) -"Cm" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"Co" = ( -/obj/structure/table/hardwoodtable, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/vistortunnel/blue) -"Cr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/wall{ - can_open = 1 - }, -/area/awaymission/mol/crumblingmaze) -"Cs" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "ammo cabinet" - }, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/conveyorcontrol) -"Cw" = ( -/obj/structure/disposalpipe/segment, -/obj/random/trash, -/turf/simulated/wall{ - can_open = 1 - }, -/area/awaymission/mol/crumblingmaze) -"Cx" = ( -/obj/structure/barricade/planks, -/obj/item/tape/police, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"Cy" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels/room2) -"CC" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/storage/firstaid/regular, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"CE" = ( -/obj/machinery/door/airlock, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"CF" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"CH" = ( -/mob/living/simple_mob/vore/candy/peppermint, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"CL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"CO" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate2" - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"CR" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"CS" = ( -/obj/machinery/chemical_dispenser/biochemistry/full, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberA) -"CW" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/light, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"CY" = ( -/obj/item/beartrap/hunting{ - anchored = 1; - deployed = 1 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"CZ" = ( -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"Da" = ( -/mob/living/simple_mob/vore/candy/greencabold, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/mol/kitchen/chamberA) -"Dc" = ( -/obj/item/modular_computer/console{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/conveyorcontrol) -"Dh" = ( -/obj/structure/table/reinforced, -/obj/structure/disposalpipe/segment, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"Di" = ( -/obj/random/obstruction, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"Dj" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/item/material/barbedwire{ - anchored = 1; - icon_state = "barbedwire-out" - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"Dl" = ( -/mob/living/simple_mob/vr/glitch, -/turf/simulated/mineral/floor/icey{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/mol/vr/shattered) -"Dm" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/awaymission/mol/themaze) -"Do" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"Dp" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/machinery/shower{ - dir = 8; - pixel_x = -5 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"Dq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/mines) -"Ds" = ( -/obj/random/obstruction, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"Du" = ( -/obj/machinery/porta_turret/poi{ - faction = "syndicate"; - check_weapons = 1; - installation = /obj/item/gun/energy/lasershotgun - }, -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/securitycheckpoint) -"Dv" = ( -/obj/structure/table/marble, -/obj/machinery/recharger, -/obj/effect/map_helper/no_phaseshift/area, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"Dw" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"DE" = ( -/turf/simulated/shuttle/wall/alien, -/area/awaymission/mol/realitycore) -"DF" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/shattered) -"DG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/mol/mines) -"DI" = ( -/mob/living/simple_mob/vr/glitch, -/turf/simulated/floor/water{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/vr/shattered) -"DL" = ( -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"DM" = ( -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/engi) -"DN" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/grass2{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"DO" = ( -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/carpet/oracarpet, -/area/awaymission/mol/mines) -"DP" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/firstaid/bonemed, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"DQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/crumblingmaze) -"DR" = ( -/obj/structure/table/standard, -/obj/item/paper{ - name = "Notes"; - info = "I feel I may be drugged after seeing vistor orange." - }, -/obj/machinery/light, -/obj/random/maintenance/research, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"DS" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"DU" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/mol/audiotorium) -"DV" = ( -/obj/machinery/light, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"DW" = ( -/mob/living/simple_mob/vr/frostwiz, -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"DY" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/gun/energy/lasertag/red, -/obj/item/gun/energy/lasertag/red, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"DZ" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/vistortunnel/purple) -"Eb" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberB) -"Ee" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/crumblingmaze) -"Ei" = ( -/obj/structure/cliff/automatic{ - dir = 6 - }, -/turf/simulated/floor/outdoors/dirt{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"Ej" = ( -/obj/machinery/gateway/centeraway{ - calibrated = 0 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"Ek" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observation) -"En" = ( -/obj/structure/table/standard, -/obj/random/maintenance/research, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observation) -"Eo" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"Eq" = ( -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/mol/vistortunnel/red) -"Er" = ( -/obj/structure/loot_pile/surface/bones, -/turf/simulated/floor/tiled/kafel_full/red, -/area/awaymission/mol/kitchen/chamberC) -"Et" = ( -/obj/random/obstruction, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"Ez" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/stolenpackage, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/vistortunnel/blue) -"EA" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observationroom) -"EB" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/machinery/shower{ - dir = 4; - pixel_x = 5 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"EH" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/mol/themaze) -"EL" = ( -/mob/living/simple_mob/vore/candy/yellowcabold, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"EM" = ( -/obj/effect/map_helper/no_phaseshift/area, -/turf/simulated/floor/reinforced, -/area/awaymission/mol/audiotorium) -"EO" = ( -/obj/structure/closet/jcloset, -/obj/item/soap/rainbow_soap, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"EP" = ( -/obj/item/material/barbedwire{ - anchored = 1; - icon_state = "barbedwire-out" - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"ET" = ( -/obj/random/obstruction, -/obj/random/obstruction, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"EU" = ( -/mob/living/simple_mob/mechanical/mecha/vistor/vistorgreen, -/turf/simulated/floor/carpet/green, -/area/awaymission/mol/vistortunnel/green) -"EW" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate1" - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/light, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"EY" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/brown, -/area/awaymission/mol/vistortunnel/orange) -"EZ" = ( -/obj/item/modular_computer/console{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/conveyorcontrol) -"Fa" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberB) -"Fb" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate1" - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"Fd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"Fe" = ( -/obj/machinery/crystal/ice, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"Fg" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/themaze) -"Fh" = ( -/obj/structure/closet/crate/secure/loot, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"Fi" = ( -/turf/simulated/wall/titanium, -/area/awaymission/mol/audiotorium) -"Fj" = ( -/obj/effect/simple_portal/linked{ - portal_id = "MoLBossRoom" - }, -/turf/simulated/floor/wood/sif{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"Fk" = ( -/obj/effect/floor_decal/corner/red/bordercorner, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"Fl" = ( -/mob/living/simple_mob/vore/candy/yellowcabold, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"Fn" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/machinery/shower{ - dir = 8; - pixel_x = -5 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"Fp" = ( -/obj/machinery/door/airlock/security, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"Fq" = ( -/turf/simulated/wall/dungeon, -/area/awaymission/mol/medical) -"Fr" = ( -/mob/living/simple_mob/vore/candy/bluecabold, -/turf/simulated/floor/tiled/kafel_full/red, -/area/awaymission/mol/kitchen/chamberC) -"Fs" = ( -/mob/living/simple_mob/vore/candy/greencabold, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"Ft" = ( -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"Fu" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/vistortunnel/orange) -"Fv" = ( -/mob/living/simple_mob/vore/candy/purplecabold, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"Fx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/themaze) -"Fz" = ( -/mob/living/simple_mob/vr/lightingwiz, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"FA" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/marble, -/obj/structure/table/marble, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room1) -"FB" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels) -"FG" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/light{ - dir = 8 - }, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/mol/vistortunnel/red) -"FH" = ( -/obj/effect/decal/mecha_wreckage/odysseus, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"FQ" = ( -/obj/machinery/light, -/obj/item/beartrap/hunting{ - anchored = 1; - deployed = 1 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"FS" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate1" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"FV" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/beaker/bluespace, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"Gc" = ( -/obj/structure/flora/ausbushes/ppflowers, -/mob/living/simple_mob/vr/glitch, -/turf/simulated/floor/grass2{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"Gf" = ( -/obj/random/obstruction, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"Gi" = ( -/obj/item/flame/candle/everburn, -/turf/simulated/floor/outdoors/dirt{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"Gj" = ( -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observationroom) -"Gm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"Gn" = ( -/obj/effect/floor_decal/corner/yellow/border, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"Go" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/engi) -"Gp" = ( -/mob/living/simple_mob/humanoid/cultist/magus/rift, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/mol/vistortunnel/red) -"Gq" = ( -/obj/effect/landmark/gateway_scatter, -/turf/simulated/floor/outdoors/desert_planet/deep_sand{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/mol/outside) -"Gr" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/themaze) -"Gy" = ( -/obj/structure/table/marble, -/obj/machinery/button/remote/blast_door{ - id = "MolFluffV2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/mol/vistortunnel) -"GA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/themaze) -"GB" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"GC" = ( -/obj/structure/ghost_pod/manual/cursedblade, -/turf/simulated/floor/outdoors/dirt{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"GD" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberB) -"GG" = ( -/obj/structure/railing, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberB) -"GH" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/wood{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"GI" = ( -/obj/machinery/light, -/turf/simulated/floor/carpet/purple, -/area/awaymission/mol/vistortunnel/purple) -"GJ" = ( -/obj/item/stool/padded, -/mob/living/simple_mob/vore/candy/purplecabold, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"GL" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/hardlightentrance) -"GP" = ( -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/dorms) -"GQ" = ( -/obj/machinery/door/blast/puzzle{ - id = "VistorRed" - }, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/mol/vistortunnel/red) -"GR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels/room2) -"GS" = ( -/obj/machinery/chem_master/condimaster, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"GU" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"GX" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/marble, -/obj/item/paper{ - name = "Farewell"; - info = "Farewell our strange form of garbage collection. No idea why we used metal eating beetles, and robot spiders that dragged the gear back out, but heh. Have fun with my slime plush and the button to boss." - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room1) -"GY" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"GZ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"Ha" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"Hc" = ( -/turf/simulated/floor/outdoors/ice/dark_smooth{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/mol/vr/shattered) -"Hd" = ( -/obj/machinery/door/blast/puzzle{ - id = "VistorPurple" - }, -/turf/simulated/floor/carpet/purple, -/area/awaymission/mol/vistortunnel/purple) -"He" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/wood/sif, -/area/awaymission/mol/dorms) -"Hl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"Ho" = ( -/obj/structure/table/hardwoodtable, -/obj/item/flashlight/lamp/green, -/turf/simulated/floor/wood/sif, -/area/awaymission/mol/dorms) -"Hr" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"Hs" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"Ht" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"Hw" = ( -/obj/machinery/door/blast/puzzle{ - id = "VistorYellow" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/awaymission/mol/vistortunnel/yellow) -"Hx" = ( -/obj/effect/decal/mecha_wreckage/gygax/dark, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"HA" = ( -/obj/effect/map_helper/no_phaseshift/area, -/turf/simulated/floor/outdoors/desert_planet/deep_sand{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/mol/outside) -"HF" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels) -"HG" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberB) -"HH" = ( -/turf/simulated/floor, -/area/awaymission/mol/themaze) -"HI" = ( -/turf/simulated/floor/reinforced, -/area/awaymission/mol/audiotorium) -"HK" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"HP" = ( -/obj/structure/closet/crate/secure/loot, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"HS" = ( -/obj/structure/table/darkglass, -/obj/item/telecube/randomized{ - name = "McGuffin" - }, -/obj/item/paper{ - name = "Dev Notes 7"; - info = "And at the end of the dungeon, we would have an epic boss fight, the main plot would kick off with the discovery of this item. Oh and you unlock the massive multli player open world bit. Please fund us." - }, -/turf/unsimulated/ai_visible, -/area/awaymission/mol/vr/shattered) -"HW" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"HX" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"HY" = ( -/obj/effect/simple_portal/linked{ - portal_id = "MoLSpoiler" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"HZ" = ( -/obj/machinery/door/blast/regular/open{ - id = "MolFluffV2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"Ib" = ( -/turf/simulated/floor/outdoors/desert_planet/deep_sand{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/mol/outside) -"Ie" = ( -/obj/machinery/gateway{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"If" = ( -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"Ii" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"Ij" = ( -/mob/living/simple_mob/vore/candy/purplecabold, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"Ik" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"Il" = ( -/obj/random/multiple/corp_crate, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"Im" = ( -/turf/simulated/floor/bmarble, -/area/awaymission/mol/securitycheckpoint) -"In" = ( -/obj/machinery/door/blast/regular{ - id = "MoLockB" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/securitycheckpoint) -"Io" = ( -/obj/structure/table/marble, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"Is" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"Iy" = ( -/obj/effect/spider/stickyweb/dark, -/obj/machinery/door/airlock, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/headdorms) -"Iz" = ( -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"IA" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/airlock, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room1) -"IC" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/random/obstruction, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"ID" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/wood/sif, -/area/awaymission/mol/dorms) -"IJ" = ( -/obj/structure/table/steel, -/obj/item/gun/projectile/revolver/webley, -/turf/simulated/floor, -/area/awaymission/mol/headdorms) -"IK" = ( -/obj/structure/table/standard, -/obj/random/maintenance/research, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observationroom) -"IM" = ( -/obj/structure/flora/desert_planet/barrelcacti, -/turf/simulated/floor/outdoors/desert_planet/deep_sand{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/mol/outside) -"IO" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberB) -"IR" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"IT" = ( -/obj/structure/safe, -/obj/item/gun/energy/vepr/plasma, -/obj/item/stack/material/supermatter, -/obj/item/perfect_tele/alien, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"IV" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels/room2) -"IX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"IY" = ( -/mob/living/simple_mob/vore/candy/orangecabold, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"IZ" = ( -/obj/machinery/conveyor, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"Ja" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/mines) -"Jb" = ( -/turf/simulated/floor/beach/sand, -/area/awaymission/mol/vr/shattered) -"Jc" = ( -/obj/machinery/door/airlock/gold, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"Jg" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"Jh" = ( -/obj/item/flame/candle/everburn, -/obj/item/flame/candle/everburn, -/turf/simulated/floor/outdoors/dirt{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"Ji" = ( -/mob/living/simple_mob/vr/lightingwiz, -/turf/simulated/floor/grass2{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"Jn" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/door/airlock/gold, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"Jo" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberA) -"Js" = ( -/obj/structure/table/borosilicate, -/obj/machinery/button/remote/blast_door{ - id = "VistorOrange" - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"Jw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels/room2) -"JA" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"JB" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate1" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"JF" = ( -/obj/effect/spider/stickyweb/dark, -/obj/structure/table/hardwoodtable, -/obj/random/maintenance/morestuff, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/turf/simulated/floor/carpet/tealcarpet, -/area/awaymission/mol/headdorms) -"JJ" = ( -/mob/living/simple_mob/vore/candy/peppermint, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"JL" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"JM" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/stolenpackage, -/turf/simulated/floor/carpet/green, -/area/awaymission/mol/vistortunnel/green) -"JO" = ( -/mob/living/simple_mob/vore/candy/yellowcabold, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberA) -"JR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"JW" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/autolathe, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"JZ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/random/trash_pile, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"Kc" = ( -/obj/item/stool/padded, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"Ke" = ( -/obj/structure/table/marble, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"Kh" = ( -/obj/structure/kitchenspike, -/turf/simulated/floor/tiled/kafel_full/red, -/area/awaymission/mol/kitchen/chamberC) -"Kk" = ( -/turf/simulated/mineral/floor/icey{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/mol/vr/shattered) -"Kl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"Km" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"Kp" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"Kz" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberA) -"KE" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/scraptunnels) -"KG" = ( -/obj/item/beartrap/hunting{ - anchored = 1; - deployed = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"KJ" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"KK" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate1" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"KN" = ( -/obj/effect/map_helper/no_phaseshift/area, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observationroom) -"KP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"KT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels/room1) -"KU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/kitchen) -"KV" = ( -/obj/structure/fireaxecabinet{ - locked = 0 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels/room1) -"KW" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"KY" = ( -/obj/structure/table/marble, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"Lb" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/serverroom) -"Lc" = ( -/turf/simulated/floor, -/area/awaymission/mol/hardlightentrance) -"Le" = ( -/mob/living/simple_mob/mechanical/mecha/vistor/vistororange, -/turf/simulated/floor/carpet/brown, -/area/awaymission/mol/vistortunnel/orange) -"Lg" = ( -/obj/structure/table/standard, -/obj/random/maintenance/research, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observation) -"Li" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/gun/energy/lasertag/red, -/obj/item/gun/energy/lasertag/red, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"Lj" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/mob/living/simple_mob/mechanical/cyber_horror/corgi, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"Ll" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/structure/table/rack/shelf, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/storage/firstaid/bonemed, -/obj/item/storage/firstaid/experimental, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"Lm" = ( -/obj/effect/map_helper/no_phaseshift/area, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/mol/vistortunnel/red) -"Lq" = ( -/obj/structure/cryofeed{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"Lx" = ( -/mob/living/simple_mob/vr/frostwiz, -/turf/simulated/floor/dungeon, -/area/awaymission/mol/vr/shattered) -"Lz" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/mol/vr/observation) -"LA" = ( -/mob/living/simple_mob/mechanical/cyber_horror/tajaran, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"LB" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"LH" = ( -/mob/living/simple_mob/vr/poisonwiz, -/turf/simulated/floor/grass2{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"LJ" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/serverroom) -"LK" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/mol/vistortunnel/red) -"LM" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate3" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"LO" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Candy Zone" - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"LP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/mines) -"LQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/hardlightentrance) -"LR" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"LS" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"LV" = ( -/obj/item/paper{ - name = "Dev Notes 5"; - info = "After dealing with fog and limited vision, you're brought to this cavern with limited movement and vision. But don't worry, this is the best and maybe only entrance you can use to get all the goodies." - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/shattered) -"LW" = ( -/obj/machinery/light, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"LY" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/firstaid/clotting, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"Mb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/inflatable, -/turf/simulated/floor, -/area/awaymission/mol/themaze) -"Mc" = ( -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/mol/kitchen/chamberA) -"Md" = ( -/mob/living/simple_mob/vore/candy/greencabold, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"Me" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/mob/living/simple_mob/vore/candy/peppermint, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"Mf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/loot_pile/surface/bones, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"Mg" = ( -/mob/living/simple_mob/mechanical/mecha/vistor/vistoryellow, -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/floor/carpet/bcarpet, -/area/awaymission/mol/vistortunnel/yellow) -"Mi" = ( -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/carpet/purple, -/area/awaymission/mol/vistortunnel/purple) -"Mj" = ( -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"Mk" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light, -/obj/machinery/light, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room1) -"Mr" = ( -/mob/living/simple_mob/vore/candy/purplecabold, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"Mw" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberA) -"Mx" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/dungeon{ - blocks_nonghost_incorporeal = 1 - }, -/area/awaymission/mol/vr/shattered) -"My" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/scraptunnels) -"Mz" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"MC" = ( -/obj/structure/table/standard, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/incendiary, -/obj/item/grenade/chem_grenade/incendiary, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/soap/rainbow_soap, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"ME" = ( -/obj/machinery/door/blast/puzzle{ - id = "VistorOrange" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel/orange) -"MI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"MO" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "Candy Zone" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"MP" = ( -/obj/structure/closet/crate/secure/loot, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"MQ" = ( -/mob/living/simple_mob/vore/ashy, -/turf/simulated/floor/carpet/oracarpet, -/area/awaymission/mol/mines) -"MT" = ( -/turf/simulated/floor/water{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"MW" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/steel, -/obj/random/maintenance, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"MX" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"Nb" = ( -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"Nc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/vr/observation) -"Nd" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"Nf" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor, -/area/awaymission/mol/themaze) -"Ng" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/themaze) -"Nh" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/mol/mines) -"Ni" = ( -/turf/simulated/floor/bmarble, -/area/awaymission/mol/engi) -"Nj" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"Nl" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/conveyorcontrol) -"Nn" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"No" = ( -/mob/living/simple_mob/vore/candy/orangecabold, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"Nq" = ( -/obj/machinery/door/blast/puzzle{ - id = "VistorBlue" - }, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/vistortunnel/blue) -"Ns" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"Nv" = ( -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/mol/audiotorium) -"Nx" = ( -/obj/machinery/door/airlock, -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate3" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/dorms) -"Ny" = ( -/obj/structure/closet/toolcloset, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/electrical, -/obj/item/clothing/gloves/yellow, -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/engi) -"Nz" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/storage/firstaid/adv, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"NB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/mines) -"NG" = ( -/obj/structure/inflatable, -/turf/simulated/floor, -/area/awaymission/mol/themaze) -"NL" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room1) -"NM" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"NN" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate4" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"NP" = ( -/obj/item/paper{ - name = "Dev Notes 1"; - info = "Alright, so we are running out of budget, hence this papers instead of proper NPCs, or more interactive voice acted way. But here we start the player with a bit of story and a choice of four weapons." - }, -/turf/simulated/mineral/floor/icey{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/mol/vr/shattered) -"NQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"NR" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/airlock, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"NY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/scraptunnels) -"Oa" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/item/reagent_containers/pill/cyanide, -/obj/random/medical/pillbottle, -/turf/simulated/floor/wood/sif{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"Od" = ( -/obj/structure/table/darkglass, -/obj/item/gun/magic/firestaff/vrwizard/fire, -/turf/simulated/mineral/floor/icey{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/mol/vr/shattered) -"Ok" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/steel, -/obj/random/maintenance, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels/room2) -"Ol" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/machinery/chemical_dispenser/full, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"Om" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/mol/hardlightentrance) -"Oo" = ( -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"Op" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/headdorms) -"Os" = ( -/turf/simulated/floor/bmarble, -/area/awaymission/mol/audiotorium) -"Ot" = ( -/obj/structure/cryofeed, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"Ou" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"Ov" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberA) -"Oy" = ( -/mob/living/simple_mob/vore/candy/bluecabold, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"Oz" = ( -/obj/item/paper{ - name = "Dev Notes 3"; - info = "Now here we give the player a choice, head to some islands, or a forest. Each with their own mechanics. Head to the forest and you need to deal with hefty foliage. Head to the sea and you need to be careful about waves and shifting tides. They also have their own side quests. Well on the planning board they do." - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/shattered) -"OD" = ( -/obj/machinery/crystal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"OE" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/dorms) -"OI" = ( -/obj/structure/cliff/automatic, -/turf/simulated/floor/outdoors/dirt{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"OJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/headdorms) -"OM" = ( -/obj/effect/spider/stickyweb/dark, -/mob/living/simple_mob/animal/passive/mouse, -/turf/simulated/floor/carpet/tealcarpet, -/area/awaymission/mol/headdorms) -"ON" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"OO" = ( -/obj/machinery/crystal/ice, -/turf/simulated/floor/outdoors/ice/dark_smooth{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/mol/vr/shattered) -"OP" = ( -/turf/simulated/floor/lava, -/area/awaymission/mol/vr/shattered) -"OS" = ( -/obj/machinery/power/emitter, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"OT" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/vistortunnel/blue) -"OW" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/mol/crumblingmaze) -"OZ" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"Pc" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/stolenpackage, -/turf/simulated/floor/carpet/brown, -/area/awaymission/mol/vistortunnel/orange) -"Pf" = ( -/obj/structure/table/darkglass, -/obj/item/gun/magic/firestaff/vrwizard/poison, -/turf/simulated/mineral/floor/icey{ - nitrogen = 82.1472; - oxygen = 21.8366; - temperature = 293.15 - }, -/area/awaymission/mol/vr/shattered) -"Pg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/trash, -/turf/simulated/wall{ - can_open = 1 - }, -/area/awaymission/mol/crumblingmaze) -"Ph" = ( -/obj/structure/table/standard, -/obj/random/maintenance/research, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observationroom) -"Pl" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass2{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"Pm" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"Pq" = ( -/mob/living/simple_mob/vr/poisonwiz, -/turf/simulated/floor/grass{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"Pr" = ( -/obj/effect/landmark/loot_spawn, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"Pu" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"Pw" = ( -/obj/effect/floor_decal/stairs/wood_stairs{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"PA" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/mol/vistortunnel/red) -"PC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/crumblingmaze) -"PD" = ( -/obj/structure/flora/ausbushes/grassybush, -/mob/living/simple_mob/vr/glitch, -/turf/simulated/floor/grass2{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"PE" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Candy Zone" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"PF" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"PG" = ( -/turf/simulated/floor, -/area/awaymission/mol/vistortunnel) -"PH" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"PI" = ( -/mob/living/simple_mob/vore/candy/yellowcabold, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberB) -"PJ" = ( -/obj/machinery/porta_turret/poi{ - faction = "syndicate"; - check_weapons = 1; - installation = /obj/item/gun/energy/lasershotgun - }, -/obj/machinery/light, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/securitycheckpoint) -"PM" = ( -/mob/living/simple_mob/vr/lightingwiz, -/turf/simulated/floor/water{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/vr/shattered) -"PQ" = ( -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/bodyscanner, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"PR" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"PV" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observationroom) -"PW" = ( -/obj/machinery/seed_extractor, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberA) -"PX" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"PZ" = ( -/turf/simulated/wall{ - can_open = 1 - }, -/area/awaymission/mol/vr/observation) -"Qc" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 5 - }, -/obj/structure/table/standard, -/obj/item/reagent_containers/dropper, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"Qd" = ( -/obj/structure/loot_pile/surface/bones, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"Qe" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberB) -"Qf" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels) -"Qh" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"Qk" = ( -/mob/living/simple_mob/vr/lightingwiz, -/turf/simulated/floor/dungeon, -/area/awaymission/mol/vr/shattered) -"Qm" = ( -/obj/structure/closet/toolcloset, -/obj/item/storage/toolbox/brass, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/engi) -"Qs" = ( -/obj/structure/table/marble, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"Qu" = ( -/obj/item/paper{ - name = "Dev Notes 2"; - info = "Now we start off the game with some story and a thrilling encounter. Due to time restraints and budget no cut scenes yet. But later, we promise." - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/shattered) -"QA" = ( -/obj/effect/decal/mecha_wreckage/gygax/serenity, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"QE" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate1" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"QF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/outdoors/dirt{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"QG" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/mol/kitchen/chamberA) -"QH" = ( -/mob/living/simple_mob/vore/candy/redcabold, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberA) -"QI" = ( -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"QP" = ( -/mob/living/simple_mob/vore/candy/redcabold, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"QR" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"QS" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "Candy Zone" - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"QU" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/crumblingmaze) -"QV" = ( -/mob/living/simple_mob/vr/doomknight, -/turf/simulated/floor/dungeon, -/area/awaymission/mol/vr/shattered) -"QX" = ( -/mob/living/simple_mob/vr/glitch, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observationroom) -"QY" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/mol/themaze) -"Rc" = ( -/mob/living/simple_mob/vore/candy/marshmellowserpent, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"Rh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/themaze) -"Ri" = ( -/obj/item/modular_computer/console/preset/civilian, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observationroom) -"Rj" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"Ro" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 6 - }, -/obj/machinery/oxygen_pump/mobile/anesthetic, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"Ry" = ( -/obj/machinery/power/rtg/advanced, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/engi) -"Rz" = ( -/obj/structure/table/marble, -/obj/item/slime_crystal, -/obj/item/reagent_containers/food/snacks/slime, -/obj/item/reagent_containers/food/snacks/slime, -/obj/item/reagent_containers/food/snacks/slime, -/turf/simulated/floor/tiled/kafel_full/gray, -/area/awaymission/mol/kitchen/ChamberD) -"RB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/machinery/door/blast/regular/open{ - id = "MoLockC" - }, -/turf/simulated/floor, -/area/awaymission/mol/securitycheckpoint) -"RC" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate2" - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"RE" = ( -/obj/structure/table/marble, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"RF" = ( -/obj/machinery/door/blast/puzzle{ - id = "VistorRed" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"RG" = ( -/mob/living/simple_mob/mechanical/mecha/forgotten, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"RH" = ( -/obj/machinery/conveyor{ - id = "Candy Zone"; - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"RN" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/scraptunnels/room2) -"RO" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"RP" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberA) -"RQ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels) -"RT" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/light{ - dir = 4 - }, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/mol/vistortunnel/red) -"RU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/gray, -/area/awaymission/mol/kitchen/ChamberD) -"RW" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/steel, -/obj/structure/table/steel, -/obj/structure/curtain, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"RZ" = ( -/mob/living/simple_mob/vore/candy/yellowcabold, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"Sc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/headdorms) -"Sd" = ( -/mob/living/simple_mob/vore/candy/greencabold, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"Se" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"Sk" = ( -/obj/structure/fans/hardlight, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"Sl" = ( -/obj/structure/mopbucket, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop/advanced, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 6 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"Sn" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"Ss" = ( -/obj/machinery/gateway{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"Sv" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/conveyorcontrol) -"Sx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/kitchen/chamberB) -"Sy" = ( -/obj/structure/table/standard, -/obj/item/paper{ - name = "Notes"; - info = "Vistor from the green specturem is higly toxic, creating spores that create a mess in a large area." - }, -/obj/random/maintenance/research, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"Sz" = ( -/turf/simulated/wall{ - can_open = 1 - }, -/area/awaymission/mol/scraptunnels) -"SA" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"SB" = ( -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberB) -"SC" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/green, -/area/awaymission/mol/vistortunnel/green) -"SG" = ( -/mob/living/simple_mob/vr/glitch, -/turf/simulated/floor/beach/sand, -/area/awaymission/mol/vr/shattered) -"SH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"SJ" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/turf/simulated/floor/carpet/brown, -/area/awaymission/mol/vistortunnel/orange) -"SK" = ( -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"SL" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/kitchen/chamberC) -"SU" = ( -/obj/structure/flora/tree/palm, -/turf/simulated/floor/beach/sand, -/area/awaymission/mol/vr/shattered) -"SV" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"Ta" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels/room3) -"Tb" = ( -/turf/simulated/floor/wood/sif, -/area/awaymission/mol/dorms) -"Td" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/awaymission/mol/themaze) -"Tf" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/door/airlock/gold, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"Tg" = ( -/mob/living/simple_mob/vr/lightingwiz, -/turf/simulated/floor/flock, -/area/awaymission/mol/vr/shattered) -"Tk" = ( -/turf/simulated/mineral/floor/icey, -/area/awaymission/mol/vr/shattered) -"Tm" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor, -/area/awaymission/mol/hardlightentrance) -"Tn" = ( -/mob/living/simple_mob/vr/glitch, -/turf/unsimulated/ai_visible, -/area/awaymission/mol/vr/shattered) -"To" = ( -/obj/machinery/door/blast/regular{ - id = "MoLockA" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/securitycheckpoint) -"Ts" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"Tw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular/open{ - id = "MoLockC" - }, -/turf/simulated/floor, -/area/awaymission/mol/securitycheckpoint) -"Tx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"Ty" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"TA" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "MoLockC" - }, -/obj/machinery/light, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/securitycheckpoint) -"TD" = ( -/turf/simulated/wall/solidrock{ - blocks_nonghost_incorporeal = 1 - }, -/area/awaymission/mol/realitycore) -"TE" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/mol/headdorms) -"TF" = ( -/mob/living/simple_mob/vr/firewiz, -/turf/simulated/floor/flock, -/area/awaymission/mol/vr/shattered) -"TG" = ( -/obj/effect/map_helper/base_turf{ - baseturf = /turf/simulated/floor/outdoors/dirt/sif/planetuse - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/mines) -"TJ" = ( -/obj/machinery/door/airlock, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/kitchen) -"TL" = ( -/obj/structure/table/standard, -/obj/random/maintenance/research, -/obj/item/clothing/suit/vrwizard, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observationroom) -"TM" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/turf/simulated/floor/carpet/purple, -/area/awaymission/mol/vistortunnel/purple) -"TN" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/map_helper/no_phaseshift/area, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels) -"TO" = ( -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"TR" = ( -/obj/machinery/sleeper/survival_pod, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"TS" = ( -/obj/machinery/light, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/dorms) -"TU" = ( -/mob/living/simple_mob/vore/candy/redcabold, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"TV" = ( -/mob/living/simple_mob/vore/candy/marshmellowserpent, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"TW" = ( -/obj/structure/prop/fantasy/throne, -/turf/simulated/floor/weird_things/dark, -/area/awaymission/mol/realitycore) -"TZ" = ( -/turf/simulated/floor/grass2{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"Ua" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"Ub" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"Uc" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate3" - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"Ui" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/mines) -"Uk" = ( -/obj/structure/flora/tree/bigtree, -/turf/simulated/floor/grass2{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"Ul" = ( -/obj/effect/map_helper/no_phaseshift, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observationroom) -"Um" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"Ur" = ( -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/mol/serverroom) -"Us" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 3 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 3 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"Ut" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"Uu" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/awaymission/mol/vistortunnel/yellow) -"Uw" = ( -/obj/item/card/id/silver{ - access = list(200) - }, -/turf/simulated/floor, -/area/awaymission/mol/mines) -"Ux" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate1" - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"UA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"UB" = ( -/obj/structure/railing, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberB) -"UC" = ( -/obj/effect/decal/mecha_wreckage/odysseus/murdysseus, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"UD" = ( -/mob/living/simple_mob/vr/lightingwiz, -/turf/simulated/floor/grass{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"UE" = ( -/obj/structure/table/marble, -/obj/machinery/button/remote/blast_door{ - id = "MoLockB" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/securitycheckpoint) -"UF" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/themaze) -"UH" = ( -/mob/living/simple_mob/vr/firewiz, -/turf/simulated/floor/lava/harmless, -/area/awaymission/mol/vr/shattered) -"UI" = ( -/obj/structure/table/steel_reinforced, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/awaymission/mol/kitchen/chamberB) -"UM" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/machinery/shower{ - dir = 4; - pixel_x = 5 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"UN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"UO" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/mol/kitchen/chamberA) -"UT" = ( -/obj/structure/table/reinforced, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/securitycheckpoint) -"UU" = ( -/obj/structure/table/hardwoodtable, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/mol/vistortunnel/red) -"UZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/wall{ - can_open = 1 - }, -/area/awaymission/mol/crumblingmaze) -"Va" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/mines) -"Vc" = ( -/obj/item/aliencoin{ - name = "Very useful Collectable"; - desc = "It will make a nice collection number go up, increasing your completion percentage." - }, -/turf/simulated/floor/flock, -/area/awaymission/mol/vr/shattered) -"Vd" = ( -/obj/machinery/conveyor{ - id = "Candy Zone"; - dir = 8 - }, -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"Ve" = ( -/obj/structure/cliff/automatic{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt{ - oxygen = 21.8366; - nitrogen = 82.1472; - temperature = 293.15 - }, -/area/awaymission/mol/mines) -"Vf" = ( -/obj/effect/spider/stickyweb/dark, -/turf/simulated/floor/carpet/tealcarpet, -/area/awaymission/mol/headdorms) -"Vh" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/structure/table/rack/shelf, -/obj/item/storage/firstaid/experimental, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"Vj" = ( -/mob/living/simple_mob/vore/candy/greencabold, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"Vn" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/themaze) -"Vo" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate2" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"Vp" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"Vs" = ( -/obj/effect/simple_portal/linked{ - portal_id = "MoLBossHidden" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/shattered) -"Vt" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"Vu" = ( -/obj/machinery/biogenerator, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberA) -"Vx" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate4" - }, -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"Vz" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 9 - }, -/obj/structure/table/standard, -/obj/item/reagent_containers/dropper, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"VD" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/vistortunnel/yellow) -"VF" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"VG" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/kitchen/chamberB) -"VH" = ( -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/vistortunnel/blue) -"VI" = ( -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/securitycheckpoint) -"VJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/mines) -"VK" = ( -/obj/structure/table/gold, -/obj/machinery/button/remote/blast_door{ - id = "SuperBossGate"; - req_access = list(200) - }, -/turf/simulated/floor/wood, -/area/awaymission/mol/audiotorium) -"VL" = ( -/obj/item/stool/padded, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"VN" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/stolenpackage, -/turf/simulated/floor/carpet/blue, -/area/awaymission/mol/vistortunnel/blue) -"VO" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/turf/simulated/floor/carpet/green, -/area/awaymission/mol/vistortunnel/green) -"VP" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"VV" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/mol/serverroom) -"VW" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"VX" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "ammo cabinet" - }, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/item/ammo_magazine/m75, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/conveyorcontrol) -"Wa" = ( -/obj/structure/table/marble, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/securitycheckpoint) -"We" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate4" - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"Wf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/themaze) -"Wh" = ( -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/optable, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"Wi" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/mol/audiotorium) -"Wj" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"Wk" = ( -/obj/structure/table/marble, -/obj/machinery/light{ - dir = 1 - }, -/obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"Wo" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room1) -"Wp" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/securitycheckpoint) -"Wu" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/machinery/door/airlock, -/obj/machinery/door/blast/puzzle{ - id = "MadMedicalB" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"Wv" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "MoLockA" - }, -/obj/machinery/light, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/securitycheckpoint) -"Wx" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"Wz" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor, -/area/awaymission/mol/themaze) -"WB" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/storage/firstaid/regular, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"WD" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate4" - }, -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/machinery/light, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"WH" = ( -/turf/simulated/floor/flock, -/area/awaymission/mol/vr/shattered) -"WM" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/machinery/chem_master, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"WN" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/themaze) -"WO" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"WQ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room1) -"WR" = ( -/obj/structure/loot_pile/surface/bones, -/turf/simulated/floor/tiled/kafel_full/yellow, -/area/awaymission/mol/kitchen/chamberC) -"WU" = ( -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/floor/carpet/retro_red, -/area/awaymission/mol/vistortunnel/red) -"WV" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"WW" = ( -/turf/simulated/wall/dungeon{ - blocks_nonghost_incorporeal = 1 - }, -/area/awaymission/mol/audiotorium) -"WZ" = ( -/obj/structure/table/marble, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"Xa" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"Xb" = ( -/obj/item/aliencoin{ - name = "Very useful Collectable"; - desc = "It will make a nice collection number go up, increasing your completion percentage." - }, -/turf/simulated/floor/beach/sand, -/area/awaymission/mol/vr/shattered) -"Xd" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberB) -"Xg" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/hardlightentrance) -"Xj" = ( -/mob/living/simple_mob/vr/firewiz, -/turf/simulated/floor/grass{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"Xk" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"Xn" = ( -/obj/item/stool/padded, -/mob/living/simple_mob/vore/candy/redcabold, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"Xo" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/themaze) -"Xr" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"Xw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/scraptunnels) -"Xx" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor, -/area/awaymission/mol/themaze) -"Xy" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"XC" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/machinery/chemical_dispenser/biochemistry/full, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"XD" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"XE" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/grass2{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"XF" = ( -/obj/machinery/door/blast/regular/open{ - id = "MolFluffV1" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"XG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/scraptunnels) -"XH" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/awaymission/mol/crumblingmaze) -"XK" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/light, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"XM" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/mol/vr/observationroom) -"XN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/crumblingmaze) -"XP" = ( -/obj/machinery/light, -/turf/simulated/floor/carpet/brown, -/area/awaymission/mol/vistortunnel/orange) -"XQ" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen) -"XR" = ( -/obj/item/material/barbedwire{ - anchored = 1; - icon_state = "barbedwire-out" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) -"XV" = ( -/turf/simulated/wall{ - can_open = 1 - }, -/area/awaymission/mol/mines) -"XW" = ( -/obj/structure/table/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/random/maintenance/foodstuff, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/kafel_full/white, -/area/awaymission/mol/kitchen/ChamberD) -"XX" = ( -/obj/effect/floor_decal/corner/yellow/border, -/obj/item/storage/firstaid/surgery, -/obj/structure/table/standard, -/obj/item/clothing/gloves/sterile, -/obj/item/clothing/gloves/sterile, -/obj/item/storage/box/masks, -/obj/item/storage/box/masks, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"Yb" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/conveyorcontrol) -"Yc" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/light{ - dir = 1; - layer = 3 - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels) -"Yd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/loot_pile/surface/bones, -/turf/simulated/floor/tiled/kafel_full/red, -/area/awaymission/mol/kitchen/chamberC) -"Ye" = ( -/turf/simulated/wall/solidrock, -/area/awaymission/mol/scraptunnels) -"Yf" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/structure/table/rack/shelf, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"Yj" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"Yl" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"Yp" = ( -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observation) -"Yq" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/conveyorcontrol) -"Yr" = ( -/obj/structure/table/standard, -/obj/item/paper{ - name = "Notes"; - info = "The vistor from the blue region is quite spooked, and highly defensive. All projectile weaponry seems ineffective, however Bob was able to grab it and drag it into containment. Bob is currently undergoing medical treatment." - }, -/obj/random/maintenance/research, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/vistortunnel) -"Yv" = ( -/obj/structure/flora/ausbushes/fernybush, -/turf/simulated/floor/grass{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"Yy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/mines) -"Yz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/themaze) -"YA" = ( -/obj/machinery/light, -/turf/simulated/floor/carpet/green, -/area/awaymission/mol/vistortunnel/green) -"YG" = ( -/turf/simulated/floor, -/area/awaymission/mol/mines) -"YJ" = ( -/turf/simulated/wall/solidrock{ - blocks_nonghost_incorporeal = 1 - }, -/area/awaymission/mol/mines) -"YK" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate4" - }, -/turf/simulated/floor/wood/sif, -/area/awaymission/mol/dorms) -"YL" = ( -/obj/item/stack/material/wood{ - amount = 3 - }, -/turf/simulated/floor, -/area/awaymission/mol/vistortunnel) -"YQ" = ( -/obj/effect/map_helper/no_phaseshift, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observation) -"YT" = ( -/obj/effect/floor_decal/corner/orange/diagonal, -/obj/structure/table/rack/shelf, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/gun/energy/vepr/plasma, -/obj/item/gun/energy/imperial, -/turf/simulated/floor/tiled/red, -/area/awaymission/mol/security) -"YW" = ( -/turf/simulated/floor/tiled/asteroid_steel{ - temperature = 293.15; - oxygen = 21.8366; - nitrogen = 82.1472 - }, -/area/awaymission/mol/entrancetunnel) -"YX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/mines) -"YY" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate4" - }, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"Zc" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room3) -"Zd" = ( -/obj/effect/decal/mecha_wreckage/phazon/scree, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/mines) -"Zf" = ( -/obj/structure/flora/ausbushes/genericbush, -/turf/simulated/floor/grass{ - outdoors = 1 - }, -/area/awaymission/mol/vr/shattered) -"Zg" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/medical) -"Zk" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"Zl" = ( -/obj/machinery/door/blast/puzzle{ - id = "FinaleGate3" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/dorms) -"Zm" = ( -/obj/structure/closet/toolcloset, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/electrical, -/obj/item/clothing/gloves/yellow, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/engi) -"Zn" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/effect/map_helper/no_phaseshift/area, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/serverroom) -"Zo" = ( -/turf/simulated/floor/tiled/kafel_full/beige, -/area/awaymission/mol/kitchen/chamberB) -"Zq" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"Zs" = ( -/obj/machinery/honey_extractor, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/corner/green/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/awaymission/mol/kitchen/chamberA) -"Zv" = ( -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/storage/firstaid/adv, -/turf/simulated/floor/wmarble, -/area/awaymission/mol/medical) -"Zx" = ( -/turf/simulated/floor/carpet/purple, -/area/awaymission/mol/vistortunnel/purple) -"ZB" = ( -/mob/living/simple_mob/vore/candy/greencabold, -/turf/simulated/floor/tiled/kafel_full/purple, -/area/awaymission/mol/kitchen/chamberC) -"ZE" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/milspec/raised, -/area/awaymission/mol/serverroom) -"ZG" = ( -/mob/living/simple_mob/vr/lightingwiz, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vr/observation) -"ZH" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/serverroom) -"ZJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/wall/solidrock, -/area/awaymission/mol/crumblingmaze) -"ZL" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"ZN" = ( -/obj/structure/mopbucket, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop/advanced, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 3 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/vistortunnel) -"ZR" = ( -/mob/living/simple_mob/mechanical/cyber_horror/grey, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"ZU" = ( -/turf/simulated/floor/bmarble, -/area/awaymission/mol/scraptunnels/room2) -"ZW" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/awaymission/mol/crumblingmaze) -"ZY" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/bmarble, -/area/awaymission/mol/entrancetunnel) - -(1,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ul -"} -(2,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TG -"} -(3,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -sN -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ui -"} -(4,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -yu -of -iT -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -iT -of -yu -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -mA -"} -(5,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -of -gE -gE -gE -gE -gE -gE -bl -bl -bl -bl -bl -bl -bl -bl -bl -gE -gE -gE -bl -bl -bl -bl -bl -bl -of -gE -gE -gE -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -of -yu -of -pD -iT -pD -pD -pD -pD -lt -pD -pD -pD -pD -Oa -pD -of -yu -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(6,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -of -gE -gE -Qk -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -bl -bl -bl -bl -bl -bl -of -gE -gE -gE -gE -gE -Tn -xd -xd -xd -xd -xd -xd -tB -xd -xd -of -yu -of -pD -pD -dl -pD -pD -pD -pD -pD -pD -pD -dl -pD -pD -of -yu -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(7,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -gE -gE -gE -bl -UH -bl -bl -UH -bl -gE -gE -gE -of -gE -gE -gE -gE -sI -gE -gE -gE -uu -gE -gE -gE -Lx -gE -gE -gE -QV -gE -bl -bl -bl -bl -bl -bl -of -gE -gE -gE -gE -gE -gE -gE -gE -xd -xd -xd -xd -xd -xd -xd -of -yu -of -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -of -yu -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(8,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -gE -gE -gE -bl -bl -bl -bl -bl -bl -gE -gE -gE -gE -gE -gE -bl -bl -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -of -gE -gE -gE -gE -gE -gE -gE -gE -xd -xd -Tn -xd -xd -xd -xd -of -yu -of -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -of -yu -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(9,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -uu -bl -bl -gE -gE -bl -bl -bl -bl -bl -bl -bl -bl -bl -gE -gE -gE -gE -gE -gE -gE -gE -QV -gE -gE -gE -ir -gE -gE -ir -gE -gE -xd -xd -xd -xd -xd -xd -xd -of -yu -of -pD -pD -pD -pD -pD -dl -pD -dl -pD -pD -pD -pD -pD -of -yu -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(10,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -gE -gE -gE -Lx -gE -Qk -Qk -gE -Lx -gE -gE -gE -QV -gE -gE -bl -bl -gE -gE -bl -bl -bl -bl -bl -bl -bl -bl -bl -gE -gE -gE -gE -gE -gE -gE -gE -QV -gE -gE -gE -ir -gE -gE -gE -xd -xd -xd -xd -xd -Tn -xd -xd -xd -of -yu -of -pD -lt -pD -mF -pD -pD -Fj -pD -pD -pD -pD -lt -pD -of -yu -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(11,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -uu -bl -bl -gE -gE -bl -bl -bl -bl -bl -bl -bl -bl -bl -gE -gE -gE -gE -gE -gE -gE -gE -QV -gE -gE -gE -gE -gE -gE -xd -xd -xd -Tn -xd -xd -xd -Tn -xd -xd -of -yu -of -pD -pD -pD -pD -pD -dl -pD -dl -pD -pD -pD -pD -pD -of -yu -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(12,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -gE -gE -gE -bl -bl -bl -bl -bl -bl -gE -gE -gE -gE -gE -gE -bl -bl -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -of -gE -gE -gE -xd -xd -xd -xd -xd -Tn -xd -xd -Tn -xd -xd -xd -of -yu -of -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -of -yu -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Yy -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -VJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(13,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -gE -gE -gE -bl -UH -bl -bl -UH -bl -gE -gE -gE -of -gE -gE -gE -gE -sI -gE -gE -gE -uu -gE -gE -gE -Lx -gE -gE -gE -gE -gE -bl -bl -bl -bl -bl -bl -of -gE -xd -xd -Tn -xd -xd -xd -Tn -xd -xd -xd -Tn -xd -xd -xd -of -yu -of -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -of -yu -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(14,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -of -gE -gE -Qk -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -QV -gE -bl -bl -bl -bl -bl -bl -of -xd -xd -xd -Tn -xd -xd -xd -xd -xd -xd -Tn -xd -xd -xd -xd -of -yu -of -pD -pD -dl -pD -pD -pD -pD -pD -pD -pD -dl -pD -pD -of -yu -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -zS -ch -ch -ch -Nh -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(15,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -of -gE -gE -gE -gE -gE -gE -bl -bl -bl -bl -bl -bl -bl -bl -bl -gE -gE -gE -bl -bl -bl -bl -bl -bl -of -xd -xd -xd -xd -xd -xd -xd -xd -xd -Tn -Tn -xd -xd -xd -xd -of -yu -of -pD -iT -pD -pD -pD -pD -lt -pD -pD -pD -pD -iT -pD -of -yu -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -zS -zS -zS -ch -Nh -Nh -Nh -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Yy -dm -dm -dm -YX -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -VJ -rZ -VJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(16,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -of -of -of -gE -mS -gE -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -xd -xd -xd -xd -xd -xd -xd -xd -Tn -xd -xd -xd -xd -xd -xd -xd -Tn -xd -of -yu -of -iT -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -pD -iT -of -yu -Nh -Nh -ch -ch -ch -QF -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -VJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -zS -zS -zS -zS -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -NB -Yy -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -VJ -Nh -Nh -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(17,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -zo -zo -WH -WH -WH -WH -WH -WH -WH -zo -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -of -yu -yu -yu -yu -yu -yu -of -gE -gE -gE -gE -gE -xd -xd -xd -xd -xd -xd -xd -xd -Tn -xd -xd -xd -xd -xd -xd -xd -xd -xd -Tn -xd -of -yu -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -yu -Lz -Lz -ln -ln -ln -ga -Lz -Lz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -zS -zS -zS -zS -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Yy -dm -dm -YX -Dq -dm -dm -dm -dm -dm -VJ -Nh -Nh -Nh -Nh -NB -Nh -Nh -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(18,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -uJ -uJ -zo -WH -WH -Tg -WH -WH -WH -WH -zo -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -of -yu -yu -yu -yu -yu -yu -of -gE -gE -gE -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -Tn -xd -xd -xd -xd -xd -xd -xd -xd -xd -Tn -xd -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -jd -sq -sq -PZ -PZ -PZ -Nc -sq -sq -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -zS -zS -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -NB -Nh -Nh -NB -NB -Nh -Nh -Nh -Yy -dm -YX -dm -dm -dm -dm -Dq -dm -Va -LP -Va -LP -Va -VJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(19,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -uJ -uJ -uJ -zo -WH -WH -WH -WH -WH -rM -WH -zo -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -of -yu -yu -yu -yu -yu -yu -of -gE -gE -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -Tn -Tn -xd -xd -xd -xd -xd -xd -xd -xd -Tn -xd -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -jd -En -En -En -nL -En -wq -En -sq -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Yy -dm -BL -nd -nd -nd -fq -uE -yo -nd -fq -iG -iG -PC -nd -fq -iG -AI -iG -AI -AI -AI -Nh -NB -Yy -Va -DG -cl -nY -tG -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(20,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -uJ -uJ -uJ -zo -WH -WH -WH -WH -WH -WH -WH -WH -zo -uJ -uJ -uJ -uJ -uJ -uJ -uJ -of -yu -yu -yu -yu -yu -yu -of -gE -xd -xd -xd -xd -xd -xd -xd -Tn -Tn -Tn -xd -xd -xd -xd -xd -xd -Tn -xd -xd -xd -xd -xd -Tn -xd -of -yu -yu -yu -yu -yu -yu -yu -of -of -of -of -of -of -of -of -of -jd -En -aU -Ek -Ek -Ek -fJ -En -sq -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Yy -BL -nd -sS -tI -kU -tI -Nd -AI -Nd -hp -kU -hp -cS -ZW -Nd -tI -kU -tI -cS -nd -VJ -NB -NB -tG -nY -Uw -nY -tG -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(21,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -uJ -uJ -uJ -zo -WH -WH -WH -oR -WH -WH -WH -WH -WH -zo -uJ -uJ -uJ -uJ -uJ -uJ -of -yu -yu -yu -yu -yu -yu -of -xd -xd -tB -xd -xd -xd -xd -Tn -xd -xd -xd -xd -xd -xd -xd -xd -xd -Tn -xd -Tn -xd -xd -Tn -xd -xd -of -of -of -of -of -of -of -of -of -xd -xd -xd -xd -xd -xd -xd -xd -jd -Lg -Ek -aU -Ek -fJ -Ek -aW -sq -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -NB -jb -nd -KW -KW -KW -Ch -tI -PC -KW -Kl -KW -Kl -KW -fq -tI -tI -tI -tI -tI -PC -YX -YX -Ja -tG -nY -zf -nY -tG -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(22,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -uJ -uJ -zo -WH -WH -WH -WH -WH -WH -WH -WH -WH -WH -WH -zo -uJ -uJ -uJ -uJ -uJ -of -yu -yu -yu -yu -yu -yu -of -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -Tn -Tn -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -of -of -xd -xd -xd -xd -Tn -xd -xd -xd -jp -Ek -Ek -Ek -Ek -Ek -Ek -Ek -sq -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -ch -ch -ch -ch -ch -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -NB -cQ -PC -Jg -tI -dY -SA -Bi -iG -Um -XH -dY -hp -mX -XN -Jg -tI -dY -tI -mX -ZW -NB -NB -Nh -tG -nY -YG -nY -tG -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(23,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -uJ -uJ -zo -WH -WH -oR -WH -WH -WH -WH -WH -Tg -WH -WH -WH -zo -uJ -uJ -uJ -uJ -of -yu -yu -yu -yu -yu -yu -of -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -Tn -xd -xd -xd -xd -xd -xd -xd -xd -xd -Tn -Tn -xd -Tn -xd -xd -Tn -xd -xd -xd -xd -xd -xd -xd -xd -xd -Tn -xd -xd -jp -dQ -Ek -Ek -En -Ek -Ek -Ek -sq -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -ch -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -tG -tG -tG -tG -tG -tG -tG -XV -XV -XV -tG -tG -tG -tG -tG -tG -tG -tG -tG -tG -tG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -NB -cQ -uE -KW -KW -KW -KW -KW -hg -tI -tI -tI -hp -tI -iG -tI -tI -tI -tI -tI -AI -NB -NB -Nh -tG -nY -YG -nY -tG -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(24,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -uJ -zo -WH -WH -WH -WH -WH -WH -WH -WH -WH -WH -WH -WH -WH -WH -zo -zo -uJ -uJ -of -yu -yu -yu -yu -yu -yu -of -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -Tn -Tn -xd -xd -xd -Tn -Tn -xd -xd -xd -xd -Tn -xd -HS -Tn -xd -xd -jp -dQ -Ek -Ek -mt -Ek -Ek -Ek -sq -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -ch -ch -Gi -ch -Gi -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -em -em -UC -em -em -em -em -em -em -vb -em -em -em -yV -em -em -pB -em -em -em -tG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -NB -cQ -PC -sS -tI -XD -tI -cS -DQ -PF -tI -XD -hp -cS -ZW -PF -tI -XD -SH -sS -AI -NB -NB -Nh -tG -nY -YG -nY -tG -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(25,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -zo -WH -WH -WH -zo -zo -zo -zo -WH -WH -WH -WH -WH -WH -WH -WH -WH -WH -zo -uJ -of -yu -yu -yu -yu -yu -yu -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -xd -jp -dQ -Ek -Ek -En -Ek -Ek -Ek -sq -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -ch -Jh -ch -ch -ch -ch -ch -Jh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -em -em -em -yA -em -FH -em -em -sg -em -em -yP -pB -em -em -em -em -em -em -yP -tG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -NB -cQ -uE -nd -nd -QU -fq -AI -iG -UZ -lH -UZ -vc -Ax -AI -uE -nd -Ee -zO -nd -nd -YX -Ja -Nh -tG -nY -sQ -nY -tG -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(26,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -WH -WH -WH -zo -uJ -uJ -uJ -uJ -zo -WH -WH -WH -rM -WH -WH -WH -WH -WH -WH -zo -of -of -of -of -of -of -of -of -Jb -Jb -Jb -Jb -Jb -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -Jb -Jb -Jb -Jb -Jb -Jb -Jb -Jb -of -of -of -of -of -of -of -of -of -xd -xd -Tn -xd -xd -Tn -xd -xd -jp -Ek -Ek -Ek -Ek -Ek -wm -Ek -sq -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -ch -ch -ch -ch -Jh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -em -Zd -em -FH -em -hx -em -em -zX -em -UC -em -em -UC -hx -uU -vb -em -em -em -tG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -NB -cQ -PC -sS -tI -kU -hp -xe -vc -cS -BJ -IR -SH -sS -Ax -PF -tI -xm -tI -PF -AI -NB -Nh -Nh -tG -Ui -Ui -Ui -tG -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(27,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -WH -oR -WH -zo -uJ -uJ -uJ -uJ -zo -zo -WH -WH -WH -WH -WH -WH -WH -WH -WH -WH -df -df -df -tU -df -df -df -df -Jb -Jb -Jb -Jb -Jb -Jb -cW -cW -cW -cW -cW -cW -cW -cW -Bh -cW -cW -cW -Jb -Jb -Jb -Jb -Jb -Jb -Jb -of -yu -yu -yu -yu -yu -yu -yu -of -xd -xd -xd -xd -xd -xd -xd -xd -jd -Lg -Ek -bI -Ek -ZG -Ek -aW -sq -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Fd -Gi -ch -ch -Gi -ch -Gi -ch -ch -Gi -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -em -em -yA -em -em -sg -nN -em -em -pB -em -yV -em -yA -em -em -em -yP -em -em -tG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -NB -cQ -uE -KW -KW -KW -XH -tI -Cr -KW -BJ -KW -Kl -KW -Cw -XH -SH -XH -SH -XH -AI -NB -Nh -Nh -Nh -NB -NB -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(28,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -WH -WH -WH -zo -uJ -uJ -uJ -uJ -uJ -uJ -zo -zo -WH -WH -WH -oR -WH -WH -WH -WH -df -df -df -tU -df -df -df -df -Jb -Jb -Jb -Jb -Jb -qZ -qZ -qZ -qZ -qZ -qZ -qZ -wP -cW -cW -cW -cW -cW -cW -Jb -Jb -Jb -Xb -Jb -Jb -of -yu -yu -yu -yu -yu -yu -yu -of -of -of -of -of -of -of -of -of -jd -En -bI -Ek -Ek -Ek -ZG -En -sq -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Fd -ch -ch -Gi -ch -tn -ch -Jh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -em -vb -em -UC -em -yP -em -Hx -em -yP -Hx -em -em -nN -Hx -em -nN -em -pB -em -tG -tG -tG -tG -tG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -NB -cQ -PC -Jg -tI -dY -tI -mX -vc -qC -hp -tI -hp -VP -Cr -Jg -hp -dY -hp -mX -nd -Dq -VJ -Nh -Nh -NB -NB -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(29,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -WH -WH -WH -zo -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -zo -WH -WH -WH -WH -WH -rM -WH -df -df -df -tU -rW -df -df -df -Jb -Jb -Jb -Jb -Jb -aI -aI -aI -aI -aI -bU -aI -ky -cW -cW -cW -cW -PM -cW -cW -Jb -Jb -Jb -Jb -Jb -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -jd -En -En -En -hq -En -Ek -En -sq -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Fd -Jh -ch -ch -Gi -ch -Gi -ch -ch -Jh -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -em -FH -em -nN -em -em -em -em -em -Zd -em -yP -FH -em -em -Zd -em -Hx -em -em -XV -em -em -em -tG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -NB -cQ -iG -tI -tI -tI -tI -tI -xu -KW -BJ -KW -Kl -Kl -vc -tI -hp -SH -XH -tI -AI -NB -NB -Nh -Nh -NB -NB -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(30,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -WH -Tg -WH -zo -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -zo -WH -WH -WH -WH -WH -WH -df -df -df -tU -df -df -df -df -Jb -Jb -Jb -Jb -Jb -GH -GH -GH -GH -GH -aI -aI -ky -cW -cW -cW -cW -cW -cW -cW -cW -Bz -aI -ky -cW -of -yu -yu -of -of -of -of -of -of -of -of -of -of -of -of -of -yu -jd -sq -sq -sq -sq -sq -uQ -sq -sq -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Fd -ch -ch -ch -ch -Gi -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -em -em -hx -em -Hx -em -em -UC -pB -em -em -em -sg -em -sg -em -em -UC -zX -em -XV -em -em -em -tG -tG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -NB -cQ -uE -sS -tI -xW -Ch -cS -vc -cS -BJ -LR -hp -Nd -Cr -sS -hp -mL -SH -sS -AI -NB -NB -Nh -Nh -NB -NB -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(31,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -WH -WH -WH -WH -zo -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -zo -WH -WH -WH -Vc -WH -WH -df -df -df -tU -df -df -df -df -Jb -Jb -Aa -Jb -Jb -Jb -cW -cW -cW -cW -Bz -aI -ky -cW -cW -cW -cW -cW -cW -cW -cW -Bz -aI -ky -cW -of -yu -yu -of -Hc -Hc -df -df -df -df -df -df -df -Hc -Hc -of -yu -yu -Nh -Nh -Nh -sq -Yp -Yp -Yp -sq -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -ch -Gi -ch -ch -ch -ch -ch -Gi -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -em -em -Zd -em -QA -em -hx -em -yA -RG -yV -em -nN -em -em -em -yP -em -hx -em -XV -em -em -em -wN -Va -dm -dm -dm -dm -dm -VJ -Nh -Nh -Nh -NB -NB -cQ -AI -AI -PC -nd -yo -nd -nd -gK -zT -Cr -Pg -yN -ld -nd -ld -nd -ld -nd -nd -Ja -NB -Nh -Nh -NB -NB -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(32,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -WH -Vc -WH -WH -WH -zo -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -zo -WH -WH -WH -WH -WH -of -of -of -of -of -of -of -of -Jb -Jb -Jb -Jb -Jb -cW -cW -cW -cW -cW -Bz -aI -aI -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -aI -aI -ky -cW -of -yu -yu -of -OO -Hc -Hc -df -df -yf -df -df -Hc -Hc -Hc -of -yu -yu -Nh -Nh -Nh -sq -Yp -YQ -Yp -sq -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -ch -ch -ch -Gi -ch -Jh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -em -em -FH -em -em -nN -em -FH -qc -vb -em -em -em -zX -FH -em -em -vb -em -em -XV -em -em -em -tG -tG -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -NB -NB -ZJ -nd -sS -hp -xm -SA -sS -AI -Nd -hp -kU -hp -PF -iG -xe -hp -cr -XH -cS -nd -dm -Ja -Nh -Nh -NB -NB -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(33,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -WH -WH -oR -WH -WH -zo -zo -uJ -uJ -uJ -uJ -uJ -uJ -uJ -zo -WH -WH -Tg -WH -WH -of -yu -yu -yu -yu -yu -yu -of -Jb -Jb -Jb -Jb -cW -cW -cW -tZ -cW -cW -Bz -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bU -km -ky -cW -of -yu -yu -of -Hc -OO -Hc -Hc -df -df -df -Hc -OO -Hc -Hc -of -yu -yu -Nh -Nh -Nh -sq -Yp -Yp -Yp -sq -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -em -nN -em -sg -vb -em -Zd -em -nN -em -em -vb -em -FH -em -em -UC -em -em -em -XV -em -em -em -tG -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -NB -NB -OW -AI -tI -hp -SA -Ch -tI -PC -KW -XH -tI -hp -SA -ld -KW -XH -tI -tI -tI -AI -Nh -Nh -Nh -Nh -NB -NB -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(34,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -WH -WH -WH -WH -WH -WH -WH -zo -uJ -uJ -uJ -uJ -uJ -uJ -zo -WH -WH -WH -WH -WH -of -yu -yu -yu -yu -yu -yu -of -Jb -Jb -cW -cW -cW -cW -cW -cW -cW -cW -Bz -aI -aI -GH -GH -GH -GH -GH -GH -GH -GH -GH -GH -tS -cW -of -yu -yu -of -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -of -yu -yu -Nh -Lb -Lb -Lb -Lb -mg -Lb -Lb -Lb -Lb -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -em -em -em -zX -em -em -em -yV -em -hx -yA -sg -em -Hx -em -pB -em -em -Hx -em -tG -tG -tG -tG -tG -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -NB -rZ -BL -nd -Jg -hp -dY -hp -mX -lr -qC -tI -dY -hp -VP -uE -Jg -tI -dY -tI -mX -nd -dm -dm -dm -dm -YX -Dq -YX -dm -Ja -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(35,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -WH -WH -WH -WH -WH -WH -WH -WH -zo -uJ -uJ -uJ -uJ -uJ -zo -WH -WH -WH -WH -WH -of -yu -yu -yu -yu -yu -yu -of -cW -cW -cW -cW -ks -qZ -qZ -qZ -qZ -qZ -aI -aI -ky -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -of -yu -yu -of -Hc -Hc -OO -Hc -Hc -OO -Hc -Hc -Hc -Hc -OO -of -yu -yu -Nh -Lb -oo -oo -ZE -oo -ZE -oo -oo -Lb -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -em -vb -em -em -em -pB -QA -em -em -em -vb -em -UC -em -yP -em -em -vb -em -hx -tG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -NB -Nh -OW -AI -tI -hp -tI -SA -Ch -iG -tI -tI -tI -hp -SA -nd -Ch -tI -tI -tI -tI -AI -Nh -Nh -Nh -Nh -NB -NB -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(36,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -zo -WH -WH -WH -WH -Tg -WH -WH -WH -zo -uJ -uJ -uJ -uJ -zo -WH -WH -WH -WH -oR -of -yu -yu -yu -yu -yu -yu -of -cW -cW -cW -cW -Bz -yl -aI -aI -aI -aI -aI -DW -ky -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -of -yu -yu -of -OO -Hc -Hc -Hc -Hc -Hc -Hc -OO -Hc -Hc -Hc -of -yu -yu -Nh -Lb -oo -nu -ZH -nu -ZH -nu -oo -Lb -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -em -em -Zd -FH -em -yV -em -em -yP -em -em -em -nN -sg -em -em -em -em -em -em -tG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -NB -Nh -OW -AI -PF -SA -LR -tI -Nd -uE -sS -tI -XD -hp -PF -AI -Nd -tI -XD -tI -cS -fq -Nh -Nh -Nh -Nh -NB -NB -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(37,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -uJ -zo -zo -zo -WH -WH -WH -WH -WH -WH -zo -uJ -uJ -uJ -zo -WH -WH -WH -WH -WH -of -yu -yu -yu -yu -yu -yu -of -cW -cW -cW -cW -Bz -aI -aI -GH -GH -GH -GH -GH -ep -cW -cW -iL -cW -cW -cW -cW -cW -cW -cW -cW -cW -of -yu -yu -of -Hc -Hc -Hc -Hc -OO -Hc -Hc -Hc -Hc -Hc -Hc -of -yu -yu -Nh -Lb -Ur -nu -LJ -nu -ZH -nu -VV -Lb -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -em -yV -sg -em -nN -vb -em -pB -em -sg -em -QA -em -em -hx -vb -Hx -em -em -em -tG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -rZ -dm -BL -nd -ZW -AI -AI -AI -AI -AI -AI -AI -iG -iG -iG -AI -AI -AI -uE -nd -nd -ld -dm -dm -dm -dm -Ja -NB -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(38,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -uJ -uJ -uJ -uJ -zo -WH -WH -WH -rM -WH -WH -zo -uJ -zo -WH -oR -oR -WH -WH -zo -of -yu -yu -yu -yu -yu -yu -of -cW -cW -cW -cW -Bz -aI -ky -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -iL -cW -cW -cW -cW -cW -of -yu -yu -of -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -OO -Hc -of -yu -yu -Nh -Lb -oo -nu -ZH -nu -ZH -nu -oo -Lb -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -em -em -em -em -em -em -FH -em -Zd -nN -em -em -em -em -em -em -sg -em -em -yP -tG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -NB -NB -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -NB -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(39,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -uJ -uJ -uJ -uJ -uJ -zo -WH -WH -WH -WH -WH -zo -zo -WH -WH -WH -WH -WH -zo -uJ -of -yu -yu -yu -yu -yu -yu -of -cW -cW -cW -cW -Bz -aI -ky -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -Bh -cW -cW -cW -cW -DI -cW -cW -of -yu -yu -of -Hc -OO -Hc -OO -Hc -OO -Hc -Hc -Hc -Hc -Hc -of -yu -yu -Nh -Lb -oo -nu -ZH -Af -Zn -nu -oo -Lb -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -em -em -em -yV -em -em -em -zX -em -em -UC -em -em -em -QA -em -em -em -em -em -tG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -rZ -YX -Dq -dm -dm -dm -dm -dm -dm -Ja -Nh -Nh -Nh -Nh -Nh -NB -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(40,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -uJ -uJ -uJ -uJ -uJ -zo -WH -WH -WH -oR -WH -WH -WH -WH -WH -WH -WH -zo -uJ -uJ -of -yu -yu -yu -yu -yu -yu -of -cW -cW -cW -cW -Bz -aI -ky -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -of -yu -yu -of -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -of -yu -yu -Nh -Lb -oo -nu -ZH -nu -ZH -nu -oo -Lb -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -Sz -Sz -Sz -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(41,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -uJ -uJ -uJ -uJ -uJ -uJ -zo -WH -WH -WH -WH -WH -WH -WH -WH -WH -zo -uJ -uJ -uJ -of -yu -yu -yu -yu -yu -yu -of -Jb -cW -PM -cW -Bz -aI -aI -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -qZ -vH -cW -cW -cW -Jb -of -yu -yu -of -Hc -Hc -Hc -Hc -Hc -Hc -Hc -OO -Hc -Hc -Hc -of -yu -yu -Nh -Lb -Ur -nu -ZH -nu -ZH -nu -VV -Lb -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -qv -zv -zv -zv -qv -zv -zv -zv -qv -zv -zv -zv -qv -zv -zv -zv -qv -zv -zv -zv -qv -zv -zv -zv -qv -zv -zv -zv -qv -zv -zv -zv -qv -zv -zv -zv -HF -Nh -Nh -Nh -rZ -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -Ja -rZ -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -Dq -Ja -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(42,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -uJ -uJ -uJ -uJ -uJ -uJ -zo -WH -WH -rM -WH -zo -WH -WH -WH -zo -uJ -uJ -uJ -uJ -of -yu -yu -yu -yu -yu -yu -of -Jb -cW -cW -cW -Bz -aI -aI -aI -bU -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -uz -ky -cW -cW -Bh -Jb -of -yu -yu -of -Hc -Hc -OO -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -of -yu -yu -Nh -Lb -oo -nu -ZH -kh -ZH -nu -oo -Lb -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(43,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -uJ -uJ -uJ -uJ -uJ -uJ -uJ -zo -WH -WH -zo -uJ -zo -WH -zo -uJ -uJ -uJ -uJ -uJ -of -yu -yu -yu -yu -yu -yu -of -Jb -Jb -cW -cW -Bz -aI -aI -GH -GH -GH -GH -GH -GH -GH -GH -GH -GH -GH -aI -aI -ky -cW -cW -Jb -Jb -of -yu -yu -of -OO -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -OO -Hc -of -yu -yu -Nh -Lb -oo -oo -mE -oo -mE -oo -oo -Lb -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -FB -zv -zv -zv -FB -zv -zv -zv -FB -zv -zv -zv -FB -zv -zv -zv -FB -zv -mY -zv -FB -zv -zv -zv -FB -zv -zv -zv -FB -zv -zv -zv -FB -zv -zv -zv -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(44,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -uJ -uJ -uJ -uJ -uJ -uJ -uJ -zo -WH -zo -uJ -uJ -zo -WH -zo -uJ -uJ -uJ -uJ -uJ -of -yu -yu -yu -yu -yu -yu -of -Jb -Jb -cW -cW -Bz -aI -ky -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -aI -aI -aI -Jb -Jb -Jb -Jb -of -yu -yu -of -Hc -OO -Hc -Hc -OO -Hc -Hc -Hc -Hc -Hc -Hc -of -yu -yu -Nh -Lb -Lb -Lb -Lb -oO -Lb -Lb -Lb -Lb -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -Yc -zv -RQ -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(45,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -uJ -uJ -uJ -uJ -uJ -uJ -uJ -zo -WH -zo -uJ -zo -WH -WH -WH -zo -uJ -uJ -uJ -uJ -of -yu -yu -yu -yu -yu -yu -of -Jb -Jb -Jb -cW -Bz -aI -ky -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -cW -aI -aa -aI -Jb -Jb -SU -Jb -of -yu -yu -of -Hc -Hc -Hc -Hc -Hc -Hc -OO -Hc -Hc -Hc -OO -of -yu -yu -Nh -Nh -Nh -jd -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(46,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -uJ -uJ -uJ -uJ -uJ -uJ -uJ -zo -WH -WH -zo -WH -WH -WH -WH -WH -zo -uJ -uJ -uJ -of -yu -yu -yu -yu -yu -yu -of -Jb -Jb -Jb -Jb -aI -aI -aI -Jb -cW -cW -cW -cW -cW -cW -iL -cW -cW -cW -aI -aI -aI -Jb -Jb -Jb -Jb -of -yu -yu -of -Hc -Hc -Hc -OO -Hc -Hc -Hc -Hc -OO -Hc -Hc -of -yu -yu -Nh -Nh -Nh -jd -Gj -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -uc -iI -iI -Mj -hL -Mj -Mj -Mj -iI -Mj -hL -hL -hL -hL -iI -hL -hL -hD -Mj -Mj -Mj -Mj -hL -iI -uc -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(47,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -zo -zo -uJ -uJ -uJ -uJ -uJ -zo -WH -Tg -WH -WH -rM -WH -oR -WH -WH -zo -uJ -uJ -of -yu -yu -yu -yu -yu -yu -of -Jb -Jb -Aa -Jb -Jb -Jb -Jb -Jb -Jb -cW -cW -cW -cW -cW -cW -cW -cW -cW -Jb -Jb -Jb -Jb -Jb -Jb -Jb -of -yu -yu -of -OO -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -of -yu -yu -Nh -Nh -Nh -jd -Gj -Gj -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -uc -hL -Mj -hL -Mj -hL -Mj -Mj -Mj -Mj -Mj -bn -hL -hL -hL -Mj -Mj -Mj -Mj -Mj -Mj -hL -hL -hL -uc -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(48,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -WH -Vc -zo -uJ -uJ -uJ -zo -WH -WH -WH -WH -WH -WH -WH -WH -WH -WH -WH -zo -uJ -of -yu -yu -yu -yu -yu -yu -of -Jb -Jb -Jb -Jb -Jb -Jb -Jb -Jb -Jb -Jb -Jb -cW -cW -cW -DI -cW -cW -Jb -Jb -Jb -Jb -Jb -Jb -Jb -Jb -of -yu -yu -of -Hc -OO -Hc -Hc -Hc -OO -Hc -Hc -Hc -OO -Hc -of -yu -yu -Nh -Nh -Nh -jd -Gj -Gj -Gj -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -uc -Mj -hL -Mj -Mj -Mj -Mj -Mj -hL -Mj -Mj -Mj -hL -hL -hL -bn -Mj -Mj -iI -Mj -Mj -Mj -iI -hL -uc -uc -uc -uc -HF -Yc -zv -RQ -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(49,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -WH -WH -WH -zo -zo -zo -WH -oR -WH -WH -zo -zo -zo -WH -WH -WH -WH -WH -WH -zo -of -yu -yu -yu -yu -yu -yu -of -Jb -Jb -Jb -Xb -Jb -Jb -Jb -Jb -Jb -Jb -SG -Jb -Jb -cW -cW -cW -cW -Jb -Jb -SU -Jb -Jb -Jb -Jb -Jb -of -yu -yu -of -Hc -Hc -OO -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -of -yu -yu -Nh -Nh -Nh -jd -Gj -Gj -Gj -XM -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -uc -uc -uc -uc -hL -Mj -Mj -Mj -Mj -iI -Mj -Mj -Mj -Mj -iI -Mj -hL -iI -Mj -Mj -hL -hL -Mj -Mj -iI -Mj -Mj -Mj -HX -nO -HX -zv -zv -zv -zv -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(50,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -WH -TF -WH -WH -WH -WH -WH -WH -zo -zo -uJ -uJ -uJ -zo -zo -WH -WH -WH -WH -WH -of -yu -yu -yu -yu -yu -yu -of -Jb -Jb -Jb -Jb -Jb -Jb -Jb -Jb -Jb -Jb -Jb -Jb -Jb -Jb -cW -cW -cW -Jb -Jb -Jb -Jb -Jb -Jb -Jb -Jb -of -yu -yu -of -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -of -yu -yu -Nh -Nh -Nh -jd -Gj -Gj -Gj -XM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Fd -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -zv -HX -HX -HX -hL -hL -hL -Mj -Mj -Mj -Mj -hL -hL -Mj -Mj -hL -Mj -iI -Mj -Mj -iI -hL -hL -hL -Mj -Mj -Mj -Mj -Mj -IC -IC -HX -zv -zv -zv -zv -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(51,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -WH -WH -WH -WH -WH -WH -WH -zo -uJ -uJ -uJ -uJ -uJ -uJ -zo -WH -WH -WH -WH -WH -of -yu -yu -yu -yu -yu -yu -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -df -df -df -of -yu -yu -of -Hc -OO -Hc -Hc -Hc -Hc -OO -Hc -Hc -Hc -Hc -of -yu -jd -jd -jd -jd -jd -XM -fp -XM -XM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -Fd -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -zv -HX -JZ -HX -Mj -iI -Mj -Mj -Mj -iI -Mj -Mj -hL -Mj -iI -Mj -Mj -Mj -Mj -Mj -Mj -Mj -iI -Mj -Mj -Mj -Mj -iI -uc -uc -uc -uc -HF -Yc -zv -RQ -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(52,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -df -df -df -df -df -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -of -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -of -yu -jd -Ph -Ph -Ph -lC -EA -EA -KN -XM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -Fd -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -uc -uc -uc -uc -Mj -Mj -Mj -iI -hL -Mj -hL -Mj -bn -Mj -Mj -Mj -Mj -bn -Mj -Mj -Mj -Mj -Mj -iI -Mj -Mj -hL -uc -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(53,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -df -df -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -of -OO -Hc -Hc -OO -Hc -Hc -Hc -Hc -Hc -OO -Hc -of -yu -jd -Ph -EA -EA -EA -EA -EA -QX -XM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Fd -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -uc -hL -Mj -hL -hD -Mj -Mj -Mj -Mj -Mj -Mj -Mj -Mj -iI -Mj -Mj -Mj -Mj -Mj -Mj -Mj -Mj -hL -hL -uc -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(54,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -LV -df -df -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -of -Hc -Hc -Hc -Hc -Hc -Hc -Hc -OO -Hc -Hc -Hc -of -yu -jd -mZ -EA -EA -QX -EA -EA -EA -XM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -uc -Mj -Mj -Mj -hL -Mj -Mj -iI -Mj -vy -ml -Mj -Mj -hL -vy -Mj -Mj -iI -hD -Mj -Mj -Mj -hL -iI -uc -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(55,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -tU -tU -tU -tU -tU -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -of -OO -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -of -yu -jd -Ri -EA -EA -EA -Ul -QX -PV -XM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -uc -uc -uc -bF -bF -uc -bF -bF -bF -Ta -uc -bF -bF -uc -Ta -bF -bF -RW -uc -bF -bF -bF -uc -uc -uc -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Yy -dm -dm -Ja -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(56,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -df -df -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -of -Hc -Hc -Hc -Hc -OO -Hc -Hc -Hc -Hc -Hc -OO -of -yu -jd -vw -QX -EA -Ph -Ph -EA -EA -XM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -Nh -Nh -Nh -uc -Nj -HX -HX -HX -HX -HX -HX -vP -Ta -HX -HX -HX -HX -Ta -vP -HX -HX -HX -vP -HX -HX -HX -HX -uc -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(57,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -df -df -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -tU -tU -tU -of -yu -yu -of -Hc -OO -Hc -Hc -Hc -Hc -Hc -OO -Hc -Hc -Hc -of -yu -jd -vw -uv -EA -Ph -Ph -EA -EA -XM -tG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -uc -HX -zu -HX -HX -zu -HX -HX -zu -Ta -HX -sf -zu -HX -Ta -zu -HX -HX -HX -zu -HX -HX -zu -HX -uc -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(58,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -df -df -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -of -Hc -Hc -OO -Hc -Hc -OO -Hc -Hc -OO -Hc -Hc -of -yu -jd -vw -uv -EA -TL -Ph -EA -EA -zr -Va -dm -dm -dm -VJ -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -uc -HX -zu -HX -HX -zu -HX -HX -zu -Ta -HX -zu -zu -HX -Ta -zu -HX -HX -HX -zu -HX -HX -zu -HX -uc -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(59,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -of -of -of -of -of -df -df -df -df -df -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -of -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -of -yu -jd -vw -fR -EA -Ph -Ph -EA -EA -XM -tG -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -Nh -Nh -Nh -uc -vO -zu -HX -HX -zu -HX -HX -pl -Ta -HX -zu -zu -HX -Ta -MW -HX -HX -HX -zu -HX -HX -zu -AK -uc -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(60,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -Uk -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -Ah -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -of -OO -Hc -Hc -OO -Hc -Hc -OO -Hc -Hc -OO -Hc -of -yu -jd -vw -uv -EA -Ph -Ph -EA -QX -XM -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -uc -Cc -zu -HX -Lj -zu -HX -HX -zu -Ta -HX -zu -zu -HX -Ta -zu -Cc -HX -HX -zu -HX -HX -zu -HX -uc -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Yy -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -Dq -dm -VJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(61,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -TZ -TZ -lU -TZ -bh -DN -TZ -TZ -TZ -DN -TZ -TZ -TZ -ac -TZ -TZ -TZ -XE -TZ -TZ -DN -TZ -TZ -TZ -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -of -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -of -yu -jd -vw -EA -QX -EA -EA -EA -PV -XM -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -uc -HX -zu -HX -HX -zu -nZ -HX -zu -Ta -HX -zu -zu -rl -Ta -zu -HX -HX -nZ -zu -HX -Lj -zu -HX -uc -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(62,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -TZ -Uk -TZ -TZ -TZ -TZ -TZ -TZ -oe -TZ -TZ -TZ -Ah -TZ -TZ -TZ -TZ -TZ -Uk -TZ -TZ -TZ -TZ -TZ -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -of -Hc -Hc -Hc -Hc -df -df -df -Hc -Hc -Hc -Hc -of -yu -jd -mP -EA -EA -EA -QX -EA -EA -XM -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -HF -Yc -zv -RQ -HF -Nh -Nh -Nh -uc -HX -zu -HX -HX -zu -HX -HX -zu -Ta -HX -zu -zu -HX -Ta -zu -HX -HX -HX -zu -HX -HX -zu -HX -uc -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Yy -dm -dm -VJ -Nh -Nh -Nh -Nh -Nh -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(63,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -TZ -DN -TZ -TZ -TZ -TZ -TZ -Uk -TZ -TZ -TZ -TZ -TZ -TZ -TZ -DN -TZ -TZ -lU -TZ -TZ -TZ -TZ -TZ -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -of -Hc -Hc -Hc -df -df -Vs -df -df -Hc -Hc -Hc -of -yu -jd -Ph -EA -EA -EA -EA -EA -EA -XM -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -HF -zv -zv -zv -HF -Nh -Nh -Nh -uc -HX -zu -HX -HX -zu -HX -HX -zu -Ta -HX -zu -zu -mq -Ta -zu -HX -HX -Lj -zu -HX -HX -zu -HX -uc -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Yy -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -YX -dm -dm -VJ -Nh -Nh -Nh -NB -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(64,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -TZ -TZ -TZ -lU -TZ -TZ -Ah -Ah -TZ -DN -TZ -XE -TZ -Uk -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -Uk -lU -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -of -Hc -Hc -df -df -df -bb -df -df -df -Hc -Hc -of -yu -jd -Ph -Ph -Ph -IK -EA -EA -EA -XM -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -HF -zv -zv -zv -HF -Nh -Nh -Nh -uc -HX -zu -HX -HX -zu -HX -lW -zu -Ta -HX -zu -zu -HX -Ta -zu -HX -HX -HX -zu -HX -HX -zu -HX -uc -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -NB -Nh -Nh -Nh -Yy -dm -dm -dm -dm -dm -dm -dm -dm -dm -YX -dm -dm -YX -dm -dm -dm -YX -dm -dm -YX -dm -dm -dm -dm -VJ -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(65,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -lU -TZ -TZ -TZ -LH -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -XE -TZ -XE -TZ -TZ -TZ -Ah -TZ -TZ -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -df -df -df -of -yu -yu -of -of -of -of -of -of -of -of -of -of -of -of -of -yu -jd -XM -XM -XM -XM -XM -gY -XM -XM -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -HF -zv -zv -zv -HF -Nh -Nh -Nh -uc -HX -zu -HX -HX -zu -HX -HX -zu -Ta -rl -fQ -zu -HX -Ta -zu -HX -HX -HX -zu -HX -HX -zu -HX -uc -uc -uc -uc -HF -Yc -zv -RQ -HF -NY -Wf -Vn -aj -aj -Yz -aj -aj -Fx -dK -UF -dK -dK -dK -dK -Wf -dK -dK -Wf -dK -UF -dK -Wf -dK -Vn -Yz -aj -aj -aj -aj -NB -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(66,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -TZ -TZ -TZ -TZ -TZ -DN -TZ -TZ -Ah -TZ -Uk -TZ -TZ -lU -TZ -Ji -TZ -TZ -TZ -TZ -TZ -Ah -TZ -TZ -df -df -df -df -df -df -df -tU -df -df -df -df -df -df -df -df -df -df -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -uc -uc -uc -uc -vO -zu -HX -HX -zu -HX -HX -pl -Ta -HX -zu -zu -HX -Ta -MW -Lj -HX -HX -zu -HX -HX -zu -AK -Zc -HX -HX -HX -zv -zv -zv -zv -HF -XG -Yz -Wz -HH -HH -qz -HH -HH -Wz -aj -px -aj -QY -HH -HH -qz -HH -HH -Wz -aj -px -aj -Wz -HH -hG -qz -HH -HH -Wz -aj -NB -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(67,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -TZ -lU -TZ -TZ -TZ -Uk -TZ -ac -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -DN -TZ -Uk -TZ -TZ -TZ -df -df -df -df -df -df -df -tU -df -df -df -df -df -df -df -df -Oz -df -of -yu -yu -yu -yu -yu -yu -of -of -of -of -of -of -of -of -of -of -of -yu -yu -yu -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -zv -HX -HX -HX -Zc -HX -zu -HX -HX -zu -HX -HX -zu -Ta -HX -zu -zu -HX -Ta -zu -HX -HX -HX -zu -HX -ve -zu -HX -Zc -HX -HX -HX -zv -zv -zv -zv -HF -XG -Yz -HH -HH -HH -HH -hh -Td -Td -dK -UF -dK -sM -Td -Td -Td -Dm -hh -Td -dK -UF -Vn -HH -HH -hG -HH -HH -HH -HH -aj -NB -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(68,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -TZ -Uk -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -DN -TZ -TZ -Uk -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -df -df -df -df -df -df -df -tU -df -df -df -df -df -df -df -df -df -df -of -yu -yu -yu -yu -yu -yu -of -OP -OP -OP -OP -OP -OP -df -Br -DF -Mx -iV -iV -iV -GL -Bo -Bo -Bo -GL -dm -dm -dm -dm -Ja -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -zv -HX -HX -HX -Zc -HX -zu -HX -HX -zu -HX -HX -zu -Ta -HX -zu -zu -rl -Ta -zu -HX -HX -HX -zu -HX -HX -zu -HX -uc -uc -uc -uc -HF -Yc -zv -RQ -HF -XG -Yz -HH -HH -HH -HH -hG -HH -HH -aj -px -aj -yx -Td -Dm -HH -yx -sM -Td -dK -UF -Rh -Td -Dm -hG -HH -HH -HH -HH -aj -NB -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(69,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -TZ -TZ -TZ -DN -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -lU -TZ -TZ -TZ -TZ -TZ -TZ -DN -TZ -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -df -df -df -of -yu -yu -yu -yu -yu -yu -of -OP -OP -OP -OP -OP -OP -df -df -df -of -yu -yu -yu -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -uc -uc -uc -uc -vO -zu -eL -HX -zu -HX -Cc -pl -Ta -rl -zu -zu -HX -Ta -MW -HX -eL -HX -zu -HX -AD -zu -AK -uc -Nh -Nh -Nh -HF -zv -zv -zv -HF -XG -Fg -Nf -HH -HH -NG -hG -HH -Xx -Vn -cH -dK -Nf -HH -hG -NG -HH -hG -Xx -aj -px -Fg -Nf -hG -hG -NG -HH -HH -Xx -dK -Dq -Dq -dm -Ja -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(70,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -TZ -TZ -XE -TZ -TZ -TZ -lU -lU -TZ -LH -TZ -oe -TZ -TZ -TZ -TZ -Uk -TZ -Ah -Ah -Ah -TZ -TZ -TZ -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -yu -yu -yu -yu -of -OP -OP -OP -OP -OP -OP -df -df -df -of -yu -yu -yu -vM -wS -Do -mj -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -uc -HX -zu -HX -HX -zu -HX -HX -zu -Ta -HX -zu -zu -HX -Ta -zu -HX -HX -HX -zu -HX -HX -zu -HX -uc -Nh -Nh -Nh -HF -zv -zv -zv -HF -XG -aj -HH -HH -HH -HH -hG -HH -HH -Yz -lj -Fx -Td -Td -jx -Td -Td -jx -Td -Vn -px -aj -HH -hG -hG -HH -HH -HH -HH -aj -NB -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(71,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -lU -TZ -TZ -XE -TZ -TZ -TZ -Uk -lU -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -Uk -TZ -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -yu -yu -yu -yu -of -df -df -df -OP -OP -OP -OP -pY -OP -of -yu -yu -yu -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -uc -HX -zu -HX -HX -zu -HX -HX -zu -Ta -HX -zu -zu -HX -Ta -zu -HX -HX -HX -zu -Cc -HX -zu -HX -uc -Nh -Nh -Nh -HF -zv -zv -zv -HF -XG -aj -HH -HH -HH -HH -hG -HH -HH -Yz -lj -Yz -HH -HH -hG -HH -HH -yx -Td -Rh -UF -dK -Td -jx -sM -Td -Td -Td -Td -dK -Dq -Dq -dm -VJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(72,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -TZ -TZ -TZ -lU -oe -TZ -TZ -TZ -TZ -TZ -TZ -TZ -lU -TZ -TZ -TZ -DN -TZ -TZ -TZ -TZ -TZ -TZ -TZ -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -yu -yu -yu -yu -of -df -rE -df -OP -OP -OP -OP -pY -OP -of -yu -yu -yu -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -uc -HX -HX -HX -HX -HX -HX -HX -HX -Ta -HX -lW -Cc -HX -Ta -HX -HX -HX -HX -HX -HX -HX -HX -HX -uc -Nh -Nh -Nh -HF -zv -zv -zv -HF -XG -aj -QY -HH -HH -EH -hG -HH -QY -Yz -lj -Yz -QY -HH -hG -EH -HH -HH -QY -Yz -px -aj -QY -hG -hG -EH -HH -HH -QY -aj -NB -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(73,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -Ah -Uk -Ah -TZ -TZ -TZ -TZ -DN -DN -TZ -Ah -TZ -TZ -TZ -TZ -TZ -TZ -TZ -Uk -TZ -TZ -TZ -TZ -TZ -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -yu -yu -yu -yu -of -df -df -df -OP -OP -OP -OP -pY -OP -of -yu -yu -yu -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -Nh -Nh -Nh -Cy -Cy -Cy -Cy -Cy -Cy -Cy -Cy -Cy -Jw -Cy -Cy -Cy -Cy -Jw -Cy -Cy -Cy -Cy -Cy -Cy -Cy -Cy -Cy -tG -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -XG -aj -Yz -aj -aj -Fg -fT -aj -Fg -Rh -GA -fT -Fg -Vn -Yz -Fg -Vn -aj -Fg -Wf -WN -Fx -fT -Yz -Yz -Yz -aj -aj -Fg -dK -Ja -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(74,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -Ah -TZ -TZ -TZ -TZ -Ah -TZ -TZ -TZ -TZ -TZ -Uk -TZ -bh -TZ -TZ -TZ -TZ -TZ -TZ -DN -TZ -XE -TZ -of -yu -yu -yu -yu -yu -yu -yu -of -of -of -of -of -of -of -df -df -df -of -of -of -of -of -of -of -of -OP -OP -OP -OP -OP -OP -df -df -df -of -yu -yu -yu -vM -Do -Fz -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -Cy -Nn -dc -dc -dc -dc -dc -dc -jy -Jw -dc -fu -zL -dc -Jw -IV -dc -dc -dc -dc -dc -dc -dc -Cy -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -XG -px -hM -UF -UF -UF -UF -WN -px -hM -GA -UF -WN -lj -lj -px -lj -px -px -lj -lj -lj -cH -oP -oP -Gr -px -px -px -px -Nh -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(75,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -Ah -TZ -DN -TZ -Uk -Ah -TZ -TZ -TZ -TZ -TZ -TZ -lU -TZ -XE -TZ -TZ -Ah -TZ -TZ -TZ -TZ -TZ -TZ -of -yu -yu -yu -yu -yu -yu -yu -of -Xj -aA -aA -QR -Xj -aA -aA -aA -aA -aA -UD -aA -aA -aA -UD -of -of -OP -OP -OP -OP -OP -OP -df -df -df -of -yu -yu -yu -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -Cy -dc -zs -dc -dc -zs -dc -dc -zs -Jw -dc -qL -zs -dc -Jw -Ok -dc -dc -zs -dc -dc -zs -dc -Cy -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -XG -aj -aj -aj -aj -Fx -Vn -Yz -Fx -dK -GA -Vn -Yz -Yz -Yz -aj -Fg -dK -Vn -Yz -hM -Wf -Wf -Wf -Wf -Vn -aj -Fx -Vn -aj -Nh -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(76,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -bh -XE -Ah -TZ -of -yu -yu -yu -yu -yu -yu -yu -of -aA -aA -aA -aA -aA -aA -Yv -aA -aA -QR -aA -aA -aA -pE -aA -of -of -OP -OP -OP -OP -OP -OP -df -df -mD -Mx -iV -iV -iV -GL -Bo -Bo -Bo -GL -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -Dq -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -Aj -Qf -Qf -Qf -Aj -RN -RN -RN -qj -og -yY -og -og -yY -og -og -yY -GR -og -yY -yY -og -kZ -Ok -dc -dc -zs -dc -dc -zs -dc -Cy -pK -pK -pK -pK -HF -zv -zv -zv -HF -XG -aj -Wz -HH -HH -qz -hG -hG -Wz -aj -lj -Yz -Wz -hG -hG -qz -HH -HH -Wz -Fg -WN -Yz -Wz -hG -hG -qz -HH -hG -Wz -aj -Nh -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(77,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -of -of -TZ -TZ -TZ -TZ -TZ -TZ -Ah -Pl -TZ -Uk -TZ -lU -TZ -TZ -TZ -TZ -TZ -DN -TZ -lU -TZ -XE -TZ -TZ -TZ -of -yu -yu -yu -yu -yu -yu -yu -of -aA -wl -aA -aA -aA -aA -aA -aA -aA -aA -aA -Vp -Vp -aA -aA -of -of -of -of -of -of -of -of -of -of -of -of -yu -yu -yu -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -Cy -Cy -Cy -Cy -Ht -zs -uk -dc -zs -dc -dc -BZ -Jw -dc -zs -zs -dc -Cy -qA -dc -dc -zs -uk -dc -zs -GZ -Cy -Cy -Cy -Cy -Cy -HF -Yc -Bx -fi -Aj -My -dK -Td -Td -Td -Td -jx -jx -Td -dK -GA -Wf -Td -jx -jx -Td -Td -Td -Td -dK -oP -Rh -Td -jx -jx -Td -Td -jx -Td -dK -VJ -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(78,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -of -TZ -TZ -TZ -lU -TZ -lU -TZ -oe -TZ -TZ -TZ -TZ -TZ -oe -oe -oe -TZ -Uk -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -of -yu -yu -yu -yu -yu -yu -yu -of -Xj -aA -aA -aA -aA -aA -aA -aA -Vp -Vp -aA -aA -Vp -aA -aA -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -zv -dc -dc -dc -NR -dc -zs -dc -dc -zs -dc -dc -zs -Jw -dc -zs -zs -gW -Cy -Ok -dc -dc -zs -dc -dc -zs -dc -NR -dc -dc -dc -dc -zv -zv -pi -zv -HF -XG -aj -HH -HH -HH -HH -yx -sM -Td -dK -GA -Rh -Td -jx -sM -Td -Td -Td -Td -Vn -lj -Yz -HH -yx -sM -Td -Td -ig -HH -aj -NB -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(79,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -of -ko -TZ -TZ -Uk -TZ -TZ -lU -TZ -TZ -Ah -TZ -XE -LH -oe -PD -oe -TZ -TZ -Ah -TZ -Ji -TZ -TZ -DN -TZ -Uk -of -yu -yu -yu -yu -yu -yu -yu -of -aA -aA -aA -aA -Yv -aA -aA -Vp -Vp -aA -aA -aA -Yv -aA -UD -of -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -vM -wS -Do -mj -vM -ha -ha -ha -ha -ha -ha -ha -vM -vM -vM -LQ -vM -vM -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -zv -dc -dc -dc -NR -dc -zs -dc -dc -zs -dc -dc -zs -Jw -dc -zs -zs -dc -Cy -Ok -dc -dc -zs -dc -dc -zs -dc -oj -dc -dc -dc -Nn -zv -zv -pi -zv -HF -lO -dK -Nf -HH -HH -NG -HH -hG -Xx -aj -lj -Fg -Nf -yx -sM -Mb -Dm -HH -Xx -Yz -hM -Rh -Nf -HH -yx -Mb -Dm -HH -Xx -dK -Ja -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(80,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -of -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -Ji -TZ -TZ -XE -TZ -TZ -TZ -Ah -TZ -TZ -TZ -TZ -TZ -XE -TZ -TZ -TZ -TZ -of -yu -yu -yu -yu -yu -yu -yu -of -QR -aA -aA -aA -aA -aA -aA -Zf -aA -aA -wl -aA -aA -aA -aA -of -of -of -of -of -of -of -of -of -of -of -of -yu -yu -yu -vM -Do -Do -Do -vM -ha -ha -ha -ha -ha -ha -ha -vM -dj -Lc -Tm -Lc -dj -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -Cy -Cy -Cy -Cy -dc -zs -dc -dc -zs -dc -dc -zs -Jw -gW -zs -zs -dc -Cy -Ok -dc -dc -zs -dc -dc -zs -dc -Cy -Cy -Cy -Cy -Cy -HF -Yc -pi -RQ -HF -Ye -aj -HH -HH -HH -HH -HH -hG -HH -Fx -GA -dK -Td -Td -jx -Td -jx -Td -Td -Wf -UF -Rh -Td -Td -Dm -HH -hG -HH -HH -aj -Nh -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(81,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -of -of -Ah -TZ -TZ -DN -TZ -TZ -XE -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -oe -TZ -TZ -TZ -TZ -TZ -TZ -oe -TZ -TZ -of -yu -yu -yu -yu -yu -yu -yu -of -aA -aA -QR -Vp -aA -aA -aA -aA -aA -wl -wl -aA -QR -aA -aA -df -df -df -df -df -df -df -df -df -df -df -of -yu -yu -yu -vM -Do -Do -Do -vM -ha -ha -ha -ha -ha -ha -ha -vM -dj -Lc -Lc -Lc -dj -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -pK -pK -pK -Cy -dc -zs -dc -dc -zs -dc -dc -zs -Jw -dc -zs -zs -dc -Cy -Ok -dc -dc -zs -dc -dc -zs -dc -Cy -pK -pK -pK -pK -HF -zv -pi -zv -HF -Ye -aj -HH -HH -HH -HH -HH -hG -HH -Yz -lj -aj -HH -HH -yx -Td -jx -Dm -HH -Yz -px -Yz -HH -HH -hG -HH -hG -HH -HH -aj -Nh -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(82,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -Gc -TZ -TZ -TZ -Uk -TZ -TZ -TZ -DN -TZ -Uk -lU -TZ -TZ -TZ -DN -TZ -Uk -TZ -DN -TZ -TZ -TZ -TZ -of -yu -yu -yu -yu -yu -yu -yu -of -aA -aA -aA -aA -aA -wl -aA -aA -pE -aA -aA -aA -aA -aA -aA -Qu -df -df -df -df -df -df -df -df -df -df -of -yu -yu -yu -vM -Do -Do -Do -vM -ha -ha -ha -ha -ha -ha -ha -vM -dj -Lc -Lc -Lc -dj -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -Cy -Ht -zs -dc -dc -zs -dc -dc -BZ -Jw -dc -zs -zs -dc -Cy -qA -dc -dc -zs -dc -dc -zs -GZ -Cy -Nh -Nh -Nh -Nh -HF -zv -pi -zv -HF -Ye -aj -QY -HH -HH -EH -HH -hG -QY -Yz -lj -aj -QY -HH -HH -EH -hG -hG -QY -Yz -px -Yz -QY -HH -hG -EH -hG -HH -QY -aj -Nh -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(83,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -TZ -TZ -TZ -TZ -TZ -lU -TZ -TZ -Ah -TZ -TZ -TZ -tD -TZ -TZ -TZ -TZ -TZ -lU -TZ -TZ -lU -lU -TZ -of -yu -yu -yu -yu -yu -yu -yu -of -QR -aA -aA -aA -QR -aA -Vp -Yv -aA -aA -aA -aA -aA -aA -aA -df -df -df -df -df -df -df -df -df -df -df -of -yu -yu -yu -vM -Do -Do -Do -vM -ha -ha -ha -ha -ha -ha -ha -vM -dj -Lc -Lc -Lc -dj -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -Cy -fu -zs -dc -dc -zs -dc -dc -zs -Jw -dc -zs -zs -dc -Cy -Ok -dc -zL -zs -dc -dc -zs -dc -Cy -Nh -Nh -Nh -Nh -HF -zv -pi -zv -HF -Ye -aj -Fg -Vn -Fx -fT -aj -Yz -Fg -fT -lj -Fx -fT -Fx -dK -fT -Yz -Yz -Yz -Yz -px -Yz -Fg -dK -Rh -fT -Yz -Fx -fT -aj -Nh -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(84,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -oe -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -TZ -of -yu -yu -yu -yu -yu -yu -yu -of -aA -aA -aA -pE -aA -aA -aA -aA -aA -aA -aA -Vp -aA -aA -QR -of -of -of -of -of -of -of -of -df -df -df -of -yu -yu -yu -vM -Do -Do -Do -vM -ha -ha -ha -ha -ha -ha -ha -vM -dj -Lc -Om -Lc -dj -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -Nh -Nh -Nh -Cy -dc -zs -dc -dc -zs -uk -dc -zs -Jw -dc -zs -zs -gW -Cy -Ok -dc -dc -zs -uk -dc -zs -dc -Cy -Nh -Nh -Nh -Nh -HF -Yc -pi -RQ -HF -Ye -px -px -lj -lj -px -px -lj -cH -UF -GA -oP -UF -Gr -px -px -lj -lj -hM -Gr -px -lj -px -cH -GA -UF -GA -Gr -px -px -Nh -NB -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(85,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -yu -yu -yu -yu -yu -yu -yu -of -oz -aA -aA -aA -aA -Vp -Vp -Vp -aA -wl -aA -Vp -aA -aA -Pq -of -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -yu -vM -Do -Do -Do -vM -ha -ha -ha -ha -ha -ha -ha -vM -vM -vM -LQ -vM -vM -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -Cy -Ht -zs -dc -dc -zs -dc -dc -BZ -Jw -gW -zs -zs -dc -Cy -qA -dc -dc -zs -dc -dc -zs -GZ -Cy -Nh -Nh -Nh -Nh -HF -zv -qn -Qf -Aj -KE -dK -Vn -Yz -Yz -Fx -dK -Wf -Rh -dK -GA -Wf -Vn -aj -Fx -Vn -Yz -Yz -Fx -dK -UF -Rh -dK -fT -Yz -Fx -fT -aj -Fx -dK -dm -Dq -VJ -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(86,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -aA -Yv -aA -QR -aA -wl -aA -Vp -aA -aA -aA -aA -Zf -aA -Yv -of -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -yu -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -rZ -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -Aj -Qf -Qf -Qf -Aj -dm -dm -dm -qj -og -yY -og -og -yY -og -og -yY -kZ -dc -zs -zs -dc -Cy -Ok -dc -dc -zs -dc -dc -zs -dc -Cy -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Ye -aj -Wz -hG -hG -qz -HH -hG -Wz -aj -lj -Yz -Wz -HH -hG -qz -hG -hG -Wz -aj -px -Yz -Wz -HH -hG -qz -HH -HH -Wz -aj -Nh -NB -NB -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(87,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -aA -aA -aA -aA -aA -aA -aA -aA -aA -Yv -aA -aA -aA -aA -aA -of -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -yu -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Nh -Nh -Cy -dc -zs -dc -dc -zs -dc -dc -zs -Cy -dc -zs -zs -dc -Cy -Ok -dc -dc -zs -dc -dc -zs -fu -Cy -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -NY -dK -Td -jx -sM -Td -Td -jx -Td -dK -GA -Wf -Td -Td -ig -HH -hG -hG -HH -aj -px -Yz -HH -HH -hG -HH -HH -HH -HH -aj -Nh -NB -NB -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(88,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -aA -aA -aA -aA -Zf -aA -QR -aA -aA -Yv -aA -aA -QR -aA -aA -of -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -yu -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -Nh -Nh -Nh -Cy -dc -dc -dc -dc -dc -dc -dc -dc -Cy -GB -dc -dc -Rj -Cy -uY -dc -dc -dc -dc -dc -dc -dc -Cy -Nh -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -XG -Fx -Td -jx -sM -Td -Td -ig -HH -aj -lj -Fg -Td -Td -Td -Td -jx -sM -Td -dK -UF -Rh -Td -Td -sM -Td -Td -Dm -HH -aj -Nh -NB -NB -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(89,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -oz -aA -aA -aA -oz -aA -aA -aA -aA -aA -Pq -aA -aA -aA -Pq -of -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -yu -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -Yy -dm -qj -qj -qj -rK -rK -qj -rK -rK -rK -wQ -Cy -xl -xl -Cy -Cy -xl -xl -xl -Cy -xl -xl -Cy -Cy -Cy -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -XG -Fg -Nf -hG -hG -NG -HH -HH -Xx -aj -lj -aj -Nf -HH -HH -NG -hG -hG -Xx -Vn -px -Fg -Nf -HH -hG -NG -HH -hG -Xx -aj -Nh -NB -rZ -Ja -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(90,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -of -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -yu -vM -wS -Do -mj -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -NB -Nh -Cy -ZU -LA -pN -AC -ZU -AC -ZU -pN -hU -ZU -ZU -ET -AC -CR -ZU -AC -ZU -AC -ZU -ZU -ZU -AC -Cy -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -XG -Fx -Td -jx -sM -Td -Td -Td -Td -dK -GA -dK -Td -Td -Dm -HH -hG -hG -HH -Fg -UF -dK -Td -Dm -hG -HH -HH -hG -HH -aj -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(91,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -df -df -df -of -yu -yu -yu -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -pK -cM -pK -Cy -ZU -ZU -pN -AC -ZU -ZU -pN -pN -ZU -ZU -ZU -ET -pN -Se -ZU -ZU -pN -pN -ZU -ZU -ZU -ZU -Cy -pK -pK -pK -pK -HF -zv -zv -zv -HF -XG -Yz -HH -hG -hG -HH -HH -HH -HH -aj -lj -aj -HH -HH -hG -HH -hG -hG -HH -aj -px -aj -HH -hG -hG -HH -HH -hG -HH -aj -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(92,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -of -of -of -df -df -df -of -of -of -of -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -Cy -Jw -Cy -Cy -ZU -AC -pN -ZU -ZU -ET -ZU -ZU -ZU -ZU -ZU -ZU -ZR -gN -ZU -pN -pN -pN -ZU -ZU -ZU -ZU -Cy -Cy -Cy -Cy -Cy -HF -Yc -zv -RQ -HF -XG -Yz -QY -hG -hG -EH -HH -HH -QY -aj -lj -aj -QY -HH -hG -EH -hG -hG -QY -aj -px -aj -QY -hG -hG -EH -HH -hG -QY -aj -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(93,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -Kk -Kk -Kk -Kk -Dl -Kk -Kk -Kk -Kk -of -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -zv -dc -ae -dc -pN -ZU -pN -AC -ZU -AC -ZU -ZU -ZU -pN -ZU -ZU -ZU -AC -Gf -Km -cE -Di -Km -Di -Km -Km -Km -Et -iM -dc -dc -dc -zv -zv -zv -zv -HF -XG -Fg -fT -Yz -Yz -Fg -dK -Vn -Fg -dK -GA -Vn -aj -aj -Fg -fT -Yz -Yz -Yz -Fx -UF -dK -fT -Fg -Rh -dK -dK -Rh -fT -aj -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(94,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -Kk -Od -Kk -Kk -Kk -Kk -Kk -aS -Kk -of -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -zv -dc -Ds -xj -AC -ZU -ZU -ZU -pN -ZU -AC -ZU -ZU -ZU -pN -ZU -AC -pN -pN -yH -pN -ZU -ZU -pN -AC -ZU -pN -gN -iM -dc -dc -Nn -zv -zv -zv -zv -HF -XG -px -cH -oP -Gr -px -px -lj -px -px -lj -lj -px -px -px -px -lj -lj -hM -GA -UF -Ng -Xo -WN -lj -cH -UF -Gr -px -px -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(95,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -Kk -Kk -Kk -Kk -NP -Kk -Kk -Kk -Kk -of -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -Yc -zv -RQ -HF -Cy -Jw -Cy -Cy -ZU -ZU -AC -ZU -ZU -ET -ZU -ET -AC -pN -pN -pN -pN -pN -AC -ZU -ZU -ZU -AC -ZU -ZU -pN -Jw -Cy -Cy -Cy -Cy -HF -Yc -zv -RQ -HF -XG -aj -Yz -Fg -dK -Vn -aj -Fg -dK -dK -GA -Wf -Vn -aj -aj -Fx -Wf -Wf -dK -fT -px -Yz -Yz -Yz -Yz -Yz -aj -aj -Fx -dK -dm -Ja -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(96,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -Kk -kt -Kk -Kk -Kk -Kk -Kk -Pf -Kk -of -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -pK -cM -pK -Cy -ZU -ZU -ZU -AC -ZU -pN -ZU -ZU -ZU -ZU -AC -pN -pN -AC -ZU -ZU -ZU -ZU -ZU -ZU -ZU -pN -Jw -pK -pK -pK -pK -HF -zv -zv -zv -HF -XG -aj -Wz -HH -HH -qz -HH -HH -aC -dK -Gr -Yz -Wz -HH -HH -qz -hG -hG -Wz -aj -px -Yz -Wz -hG -hG -qz -HH -HH -Wz -aj -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(97,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -Kk -Kk -Kk -Kk -Kk -Kk -Kk -Kk -Kk -of -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -NB -Nh -Cy -ZU -ZU -ZU -ZU -ZU -ZU -AC -ZU -ZU -ZU -pN -pN -pN -ZU -ZU -ZU -ZU -AC -ZU -ZU -pN -AC -Jw -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -XG -aj -HH -HH -HH -HH -HH -HH -HH -po -UF -Rh -Td -Td -Td -Td -jx -ig -HH -Fx -UF -fT -HH -hG -hG -HH -HH -HH -HH -aj -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(98,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -of -of -of -of -Tk -Tk -Tk -of -of -of -of -vM -wS -Do -mj -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -Nh -NB -Nh -Cy -lK -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZR -AC -ZU -ZU -ZU -ZU -ZU -AC -ZU -ZU -ZU -pN -AC -pN -Jw -Nh -Nh -Nh -Nh -HF -zv -zv -zv -HF -XG -aj -HH -HH -HH -HH -HH -HH -HH -Yz -px -Yz -HH -HH -HH -HH -hG -HH -HH -Yz -px -Fx -Td -jx -ig -HH -HH -HH -HH -aj -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(99,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -yu -vM -vM -vM -Sk -Sk -Sk -vM -vM -vM -vM -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -wa -wa -IA -wa -wa -wa -KT -wa -wa -wa -wa -wa -wa -wa -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -Xw -HF -HF -HF -HF -HF -Yc -zv -RQ -HF -XG -Fx -Nf -HH -HH -NG -HH -HH -Xx -fT -px -Fg -Nf -HH -HH -NG -hG -HH -Xx -fT -px -Fg -Nf -hG -HH -NG -HH -HH -Xx -Vn -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(100,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -vM -If -jv -If -If -If -jv -If -If -jv -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -wa -WQ -WQ -le -WQ -WQ -NL -le -WQ -WQ -le -WQ -WQ -wa -zv -zv -zv -qv -zv -zv -zv -qv -zv -zv -zv -TN -zv -zv -zv -qv -zv -pi -zv -qv -zv -zv -zv -zv -zv -zv -HF -XG -Yz -HH -HH -HH -HH -HH -HH -HH -aj -px -aj -HH -hh -Td -Td -sM -Td -Td -dK -UF -dK -Td -sM -Td -Td -Td -Td -Td -fT -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(101,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -vM -If -If -If -If -If -If -If -If -If -Pm -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -wa -WQ -WQ -WQ -WQ -WQ -NL -WQ -WQ -WQ -WQ -WQ -WQ -IA -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -zv -pi -zv -zv -zv -zv -zv -zv -zv -zv -HF -XG -Fg -Td -Td -Td -Td -Td -Td -Td -dK -UF -dK -Td -jx -Td -Td -sM -Td -Td -dK -UF -dK -Td -sM -Td -Td -Td -Td -Td -Vn -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(102,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -vM -qW -qW -If -If -If -pT -pT -pT -If -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -wa -jQ -WQ -WQ -WQ -WQ -NL -WQ -WQ -WQ -WQ -WQ -Mk -wa -zv -zv -zv -FB -zv -zv -zv -FB -zv -zv -zv -FB -zv -zv -zv -FB -zv -pi -zv -FB -zv -zv -zv -FB -zv -zv -HF -XG -aj -QY -HH -HH -EH -HH -HH -QY -aj -px -aj -QY -hG -HH -EH -hG -HH -QY -aj -px -aj -QY -hG -HH -EH -HH -HH -QY -Yz -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(103,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -vM -ow -ow -If -If -If -Ot -Ot -Ot -DV -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -KV -WQ -WQ -WQ -xx -xx -gX -xx -xx -xx -WQ -WQ -WQ -wa -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -HF -Xw -HF -HF -HF -HF -HF -HF -HF -HF -HF -XG -aj -Yz -aj -aj -Yz -aj -aj -Yz -aj -px -aj -Fg -fT -aj -Fg -fT -aj -Yz -aj -px -aj -aj -Fg -dK -fT -aj -aj -Fg -fT -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(104,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -vM -If -If -If -If -If -If -If -If -If -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -wa -jQ -WQ -WQ -xx -xx -gX -xx -xx -xx -WQ -WQ -qE -wa -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -NB -Nh -Nh -NB -Nh -Nh -rZ -dm -dm -dm -dm -dm -dm -dm -dm -dm -Ja -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(105,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -vM -DY -DY -If -If -If -Lq -Lq -Lq -DV -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -KV -WQ -WQ -WQ -xx -xx -uS -GX -xx -FA -WQ -WQ -WQ -wa -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -rZ -dm -Ja -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -IM -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(106,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -vM -Li -Li -If -If -If -TR -TR -TR -If -vM -wS -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -wa -jQ -WQ -WQ -WQ -WQ -NL -WQ -WQ -io -WQ -WQ -qE -wa -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(107,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -vM -If -If -If -If -If -If -If -If -If -vM -Do -bo -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -wa -WQ -WQ -WQ -WQ -WQ -NL -WQ -WQ -WQ -WQ -WQ -WQ -wa -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -NB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(108,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -mI -mI -mI -mI -mI -mI -mI -mI -DE -mI -mI -mI -mI -mI -mI -mI -mI -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -vM -If -Xg -If -If -If -Xg -If -If -Xg -vM -Do -Do -Do -vM -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -wa -WQ -WQ -Wo -WQ -WQ -NL -Wo -WQ -WQ -Wo -WQ -bw -kR -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -Dq -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -dm -Ja -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -IM -Ib -Ib -Ib -Ib -Nh -"} -(109,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -mI -mI -mI -mI -mI -DE -DE -DE -kj -DE -DE -DE -mI -mI -mI -mI -mI -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -yO -Ae -Ae -Ae -Ae -Ae -Ae -Nh -Nh -vz -mx -mx -mx -mx -mx -mx -mx -mx -mx -mx -mx -mx -Ae -Ae -Ae -Ae -wa -wa -rk -wa -wa -wa -wa -wa -wa -wa -wa -wa -wa -wa -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -xC -Ae -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(110,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -mI -mI -DE -DE -DE -kj -kj -kj -kj -kj -kj -kj -DE -DE -DE -mI -mI -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -rt -kL -rt -rt -rt -rt -rt -kL -rt -rt -rt -rt -rt -kL -rt -rt -rt -rt -rt -rt -kL -rt -rt -rt -rt -rt -kL -rt -rt -rt -rt -rt -rt -EP -Ae -Nh -Nh -mx -mx -Zm -Qm -Zm -mx -mx -Ni -Ni -Bf -Ni -Ni -mx -Ae -EP -KP -lo -lo -lo -lo -lo -lo -lo -VW -rt -EP -rt -rt -rt -rt -rt -rt -rt -gh -rt -rt -rt -EP -rt -rt -rt -rt -rt -rt -rt -rt -EP -rt -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(111,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -mI -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -mI -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -EP -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -Ae -Nh -Nh -mx -Zm -Ni -Ni -Ni -Zm -mx -Ry -Ni -Ry -Ni -Ry -mx -Ae -rt -dH -rt -CY -rt -rt -EP -rt -rt -rt -rt -rt -rt -CY -rt -rt -rt -rt -rt -rt -EP -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -dH -FQ -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -IM -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(112,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -oH -rt -rt -ZY -rt -rt -rt -rt -rt -ZY -rt -rt -rt -rt -rt -ZY -rt -rt -sY -rt -rt -rt -ZY -rt -rt -rt -rt -rt -ZY -rt -rt -rt -rt -rt -rt -rt -Ae -Nh -Nh -mx -Ny -Ni -Ni -Ni -xi -mx -DM -Ni -Ni -Ni -pV -mx -Ae -rt -dH -rt -ZY -rt -rt -rt -rt -rt -EP -rt -rt -rt -rt -EP -rt -rt -rt -ZY -rt -rt -rt -rt -rt -rt -rt -rt -EP -rt -rt -rt -rt -ZY -rt -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -IM -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(113,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -DE -kj -kj -kj -kj -DE -kj -kj -kj -kj -kj -DE -kj -kj -kj -kj -DE -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -oH -rt -Qh -Ae -Nh -Nh -mx -Zm -Ni -Ni -Ni -Zm -mx -Ry -Ni -Ry -Ni -Ry -mx -Ae -oH -uR -Qh -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -rt -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(114,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -DE -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -DE -Nh -Nh -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Nh -Nh -mx -mx -Ni -Ni -pV -mx -mx -Ni -Ni -Ni -Ni -Ni -mx -Ae -rt -dH -EP -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -ng -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(115,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -DE -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -DE -TD -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -sN -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Nh -Nh -mx -Zm -Ni -Ni -Ni -Zm -mx -Ry -Ni -Ry -Ni -Ry -mx -Ae -rt -uR -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(116,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tX -zm -zm -zm -zm -zm -zm -xr -zm -zm -zm -zm -xr -zm -zm -zm -zm -xr -zm -zm -zm -zm -xr -zm -zm -zm -zm -xr -zm -zm -zm -zm -xr -zm -zm -zm -zm -tX -sN -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -iA -iA -iA -kC -iA -iA -iA -iA -iA -iA -iA -it -iA -iA -iA -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Nh -Nh -mx -Ny -Ni -Ni -Ni -xi -mx -DM -Ni -Ni -Ni -pV -mx -Ae -rt -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Fq -Fq -Fq -Fq -Fq -Fq -Fq -Fq -Fq -Fq -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(117,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -DE -kj -kj -kj -kj -kj -kj -kj -DE -kj -DE -kj -DE -kj -kj -kj -kj -kj -kj -kj -DE -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tX -zm -zm -zm -zm -zm -zm -eb -Fi -HI -Fi -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -tX -sN -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -Qh -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -iA -dJ -dP -Yj -dP -dJ -iA -iA -iA -dJ -dP -Yj -dP -dJ -iA -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Nh -Nh -mx -Zm -Ni -Ni -Ni -Zm -mx -Ry -Ni -Ry -Ni -Ry -mx -Ae -rt -uR -rt -Ae -Nh -Nh -Nh -Nh -Nh -Fq -Vz -FV -xs -Pu -Nz -WB -Zq -vR -Fq -Fq -Fq -Fq -Fq -Fq -Fq -Fq -Fq -Fq -Nh -Nh -Nh -Nh -Ae -rt -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -Ae -Ae -Ae -Ae -Nh -Ae -Ae -Ae -Ae -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(118,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -DE -kj -kj -kj -kj -kj -kj -kj -kj -DE -kj -DE -kj -kj -kj -kj -kj -kj -kj -kj -DE -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tX -zm -zm -zm -zm -zm -zm -Fi -Fi -HI -Fi -Fi -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -tX -sN -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -iA -iA -Yj -Yj -Yj -iA -iA -iA -iA -iA -Yj -Yj -Yj -iA -iA -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Nh -Nh -mx -mx -Ni -Ni -Ni -mx -mx -Ni -Ni -Go -Ni -Ni -mx -Ae -EP -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Fq -Ol -BR -kl -kl -kl -kl -kl -Gn -Fq -pc -Vt -Vt -Vt -ma -Vt -Vt -iR -Fq -Nh -Nh -Nh -Nh -Ae -CY -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -HK -Hs -KJ -Ae -Nh -Ae -HK -Hs -Ou -Ae -qp -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(119,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -mI -mI -mI -mI -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tX -Pw -Pw -gy -zm -zm -zm -HI -HI -HI -HI -HI -ze -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -tX -sN -Nh -Nh -Nh -Nh -Ae -Ae -Ae -rt -rt -rt -Ae -Ae -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -iA -yK -Yj -Yj -Yj -yK -iA -iA -iA -pr -Yj -Yj -Yj -pr -iA -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Nh -Nh -mx -mx -mx -wF -mx -mx -mx -wF -mx -mx -mx -wF -mx -Ae -rt -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Fq -XC -kl -kl -kl -kl -kl -kl -Gn -wW -wc -Wj -Iz -Wj -Iz -Wj -Iz -Wh -Fq -Nh -Nh -Nh -Nh -Ae -rt -dH -EP -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -kX -zj -Us -Ae -Nh -Ae -kX -zj -Oo -Ae -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(120,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -DE -DE -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -DE -DE -mI -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tX -tX -tX -tX -tX -TO -TO -lV -zm -zm -zm -Fi -Fi -HI -Fi -Fi -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -tX -sN -Nh -Nh -Nh -Nh -Ae -BH -LM -rt -rt -rt -NN -BH -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -iA -iA -LS -Yj -LS -iA -iA -iA -iA -iA -LS -Yj -LS -iA -iA -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Nh -Nh -Nh -mx -Ni -Ni -Ni -Bf -Ni -Ni -Ni -Bf -Ni -Ni -Ni -Ae -rt -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Fq -dZ -IX -IX -IX -IX -IX -IX -iP -Fq -wc -Wj -Iz -Wj -Iz -Wj -Iz -XX -Fq -Nh -Nh -Nh -Nh -Ae -rt -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -kX -YW -iW -Ae -Nh -Ae -kX -YW -Oo -Ae -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -IM -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -IM -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(121,1,1) = {" -Nh -Nh -Nh -Nh -Nh -DE -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -kj -DE -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -tX -Pr -MP -cd -tX -Dw -TO -lV -zm -zm -zm -Wi -Fi -HI -Fi -zm -Wi -zm -zm -zm -zm -Wi -zm -zm -zm -zm -Wi -zm -zm -zm -zm -Wi -zm -zm -zm -zm -Wi -zm -zm -zm -zm -tX -sN -Nh -Nh -Nh -Nh -Ae -Ae -Ae -oH -rt -rt -Ae -Ae -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -iA -iA -iA -CO -iA -iA -iA -iA -iA -iA -iA -Fb -iA -iA -iA -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Nh -Nh -Nh -mx -Ni -Ni -Ni -Ni -Ni -Ni -Ni -Ni -Ni -Ni -Ni -Jc -rt -dH -CY -Ae -Nh -Nh -Nh -Nh -Nh -Fq -wc -Iz -Iz -Iz -Iz -Iz -Iz -qq -ck -DL -Wj -Iz -Wj -Iz -Wj -Iz -ye -Fq -Nh -Nh -Nh -Nh -Ae -rt -dH -Qh -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -ef -YW -iW -Ae -Ae -Ae -kX -YW -Oo -Ae -Ae -Ae -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -HA -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Gq -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -IM -Ib -Ib -Ib -Ib -Nh -"} -(122,1,1) = {" -Nh -Nh -DE -DE -DE -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -mI -DE -DE -DE -mI -mI -tX -tX -tX -tX -tX -tX -Il -Pr -Fh -tX -TO -TO -lV -zm -zm -zm -tX -ll -zm -zm -DU -tX -ll -zm -zm -DU -tX -ll -zm -zm -DU -tX -ll -zm -zm -DU -tX -ll -zm -zm -DU -tX -ll -zm -zm -DU -tX -sN -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -eD -iA -iA -iA -iA -iA -eD -eD -iA -iA -iA -iA -iA -ry -iA -iA -iA -iA -iA -iA -iA -EW -iA -iA -iA -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Nh -Nh -Nh -mx -Ni -Ni -Ni -Go -Ni -Ni -Ni -Go -Ni -Ni -Ni -Ae -rt -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Fq -xt -PH -PH -PH -PH -PH -PH -PH -mi -PH -PH -PH -PH -gG -Iz -Iz -bv -Fq -Nh -Nh -Nh -Nh -Ae -rt -dH -rt -Ae -EB -Ua -UM -Ae -HK -JL -Ua -JL -An -YW -wv -JL -Ua -JL -An -YW -wv -JL -yb -Ae -md -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Gq -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(123,1,1) = {" -Nh -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -DE -tX -qJ -qJ -qJ -qJ -tX -Dw -TO -TO -vU -TO -TO -lV -zm -zm -zm -xr -zm -zm -zm -zm -xr -Fi -HI -Fi -zm -xr -zm -zm -zm -zm -xr -zm -zm -zm -zm -xr -zm -zm -zm -zm -xr -zm -zm -zm -zm -WW -kq -kq -kq -kq -kq -kq -kq -kq -rt -rt -rt -Ae -iA -iA -lM -YT -mo -iA -iA -iA -iA -Ke -wn -Ke -iA -CO -iA -WZ -WZ -iA -WZ -WZ -iA -Fb -iA -iA -iA -Ae -Ae -Ae -Ae -oH -rt -Qh -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -oH -dH -Qh -Ae -Ae -Ae -wB -wB -wB -Fq -oM -oM -Fq -Fq -Vx -YY -Fq -Fq -Fq -hO -PR -PR -Zk -wc -Wj -Iz -BF -Fq -Nh -Nh -Nh -Nh -Ae -rt -dH -rt -Jn -kH -YW -oK -Jn -Ft -YW -Fk -mQ -my -YW -YW -YW -YW -YW -YW -YW -YW -YW -wv -vG -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(124,1,1) = {" -Nh -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -aY -aY -oa -oE -TO -TO -TO -tX -TO -TO -TO -vU -TO -TO -lV -zm -zm -zm -eb -zm -zm -zm -zm -Fi -Fi -HI -Fi -Fi -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -Os -NN -NN -LM -LM -kk -kk -FS -FS -rt -rt -rt -Ae -iA -lM -Yj -Yj -Yj -JB -Bp -RC -yz -Yj -Yj -Yj -Yj -Yj -Yj -Yj -Yj -fZ -Yj -Yj -Yj -Yj -Yj -Yj -rh -rt -rt -rt -kL -rt -rt -rt -kL -rt -EP -rt -rt -rt -rt -rt -kL -rt -rt -rt -rt -rt -rt -rt -kL -rt -dH -EP -rt -rt -rt -rt -rt -rt -MX -rn -rn -rn -rn -rn -on -rn -rn -Fq -LB -Ss -jo -CZ -wc -Wj -Iz -zg -Fq -Nh -Nh -Nh -Nh -Ae -EP -dH -rt -Ae -Fn -NQ -Dp -Ae -kX -YW -Oo -Ae -kX -YW -YW -YW -YW -YW -YW -YW -YW -YW -Fk -mQ -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -HA -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(125,1,1) = {" -Nh -DE -kj -TW -pu -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -aY -aY -oa -nq -TO -TO -TO -nh -TO -TO -TO -vU -TO -TO -lV -zm -zm -zm -eb -zm -zm -zm -zm -HI -HI -HI -HI -EM -ze -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -Os -NN -NN -LM -LM -kk -kk -FS -FS -rt -rt -Qh -Ae -iA -Yf -Yj -Yj -Yj -Ux -Bp -RC -Uc -Yj -Yj -Yj -Yj -Yj -Yj -Yj -Yj -Yj -Yj -Yj -Yj -Yj -Yj -Yj -rh -rt -rt -rt -rt -rt -KP -lo -lo -lo -lo -lo -lo -lo -lo -lo -XR -lo -lo -lo -lo -lo -lo -lo -lo -lo -VW -rt -rt -rt -rt -rt -rt -rt -rn -rn -rn -rn -rn -rn -rn -rn -Zg -Fq -xp -Ej -jY -CZ -wc -Wj -Iz -ia -Fq -Nh -Nh -Nh -Nh -Ae -rt -uR -Qh -Ae -Ae -Ae -Ae -Ae -Ts -YW -Oo -Ae -kX -YW -YW -YW -YW -YW -YW -YW -YW -YW -Oo -Ae -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Gq -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(126,1,1) = {" -Nh -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -aY -aY -oa -VK -TO -TO -TO -tX -TO -TO -TO -vU -TO -TO -lV -zm -zm -zm -eb -zm -zm -zm -zm -Fi -Fi -HI -Fi -Fi -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -Os -NN -NN -LM -LM -kk -kk -FS -FS -rt -rt -rt -Ae -iA -fg -Yj -Yj -Yj -QE -Bp -RC -jB -Yj -Yj -Yj -Yj -Yj -Yj -Yj -Yj -Ii -Yj -Yj -Yj -Yj -Yj -Yj -rh -rt -rt -rt -ZY -rt -dH -rt -rt -rt -rt -rt -rt -rt -rt -rt -ZY -rt -rt -rt -rt -EP -rt -rt -ZY -rt -rt -rt -rt -rt -rt -EP -rt -rt -Xr -rn -rn -rn -rn -rn -rn -rn -rn -Fq -Kp -Ie -zJ -CZ -wc -Wj -Iz -PQ -Fq -Nh -Nh -Nh -Nh -Ae -rt -dH -rt -Ae -EB -Ua -tp -Ae -kX -YW -Oo -Ae -kX -YW -YW -YW -YW -YW -YW -YW -YW -YW -wv -vG -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(127,1,1) = {" -Nh -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -DE -tX -qJ -qJ -qJ -qJ -tX -Dw -TO -TO -vU -TO -TO -lV -zm -zm -zm -Wi -zm -zm -zm -zm -Wi -Fi -HI -Fi -zm -Wi -zm -zm -zm -zm -Wi -zm -zm -zm -zm -Wi -zm -zm -zm -zm -Wi -zm -zm -zm -zm -WW -kq -kq -kq -kq -kq -kq -kq -kq -rt -rt -rt -Ae -iA -iA -fg -Ll -jT -iA -iA -iA -iA -Ke -JW -Ke -iA -Bn -iA -WZ -WZ -iA -Dv -WZ -iA -We -iA -iA -iA -Ae -Ae -Ae -Ae -oH -dH -Qh -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -oH -rt -Qh -Ae -Ae -Ae -wB -wB -wB -Fq -Vo -Vo -Fq -Fq -KK -KK -Fq -Fq -Fq -dg -PX -PX -OZ -wc -Wj -Iz -xM -Fq -Nh -Nh -Nh -Nh -Ae -rt -dH -rt -Jn -kH -YW -oK -Tf -Ft -YW -wv -JL -An -YW -YW -YW -YW -YW -YW -YW -YW -YW -Fk -mQ -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Gq -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(128,1,1) = {" -Nh -Nh -DE -DE -DE -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -mI -DE -DE -DE -mI -mI -tX -tX -tX -tX -tX -tX -Pr -Pr -Il -tX -TO -TO -lV -zm -zm -zm -tX -ll -zm -zm -DU -tX -ll -zm -zm -DU -tX -ll -zm -zm -DU -tX -ll -zm -zm -DU -tX -ll -zm -zm -DU -tX -ll -zm -zm -DU -tX -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -eD -iA -iA -iA -iA -iA -eD -eD -iA -iA -iA -iA -iA -tY -iA -iA -iA -iA -iA -iA -iA -WD -iA -iA -iA -Nh -Nh -Nh -Ae -sY -dH -rt -Ae -Nh -Nh -Nh -uo -Sv -Yb -Sv -Sv -Sv -Yb -Sv -Sv -Sv -Sv -Sv -Ae -rt -rt -EP -Ae -Nh -Nh -Nh -Nh -Nh -Fq -pc -Vt -Vt -Vt -Vt -Vt -Vt -Vt -pW -Vt -Vt -Vt -Vt -DL -Iz -Iz -bv -Fq -Nh -Nh -Nh -Nh -Ae -rt -dH -CY -Ae -Fn -NQ -Dp -Ae -Ut -mQ -NQ -mQ -my -YW -Fk -mQ -NQ -mQ -my -YW -Fk -mQ -fb -Ae -md -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(129,1,1) = {" -Nh -Nh -Nh -Nh -Nh -DE -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -kj -DE -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tX -Fh -HP -IT -tX -Dw -TO -lV -zm -zm -zm -xr -Fi -HI -Fi -zm -xr -zm -zm -zm -zm -xr -zm -zm -zm -zm -xr -zm -zm -zm -zm -xr -zm -zm -zm -zm -xr -zm -zm -zm -zm -tX -YJ -Nh -Nh -Nh -Nh -Ae -Ae -Ae -oH -rt -rt -Ae -Ae -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -iA -iA -iA -Bn -iA -iA -iA -iA -iA -iA -iA -We -iA -iA -iA -Nh -Nh -Nh -Ae -rt -dH -rt -Ae -Nh -Nh -Nh -uo -Sv -Sv -Sv -Sv -Sv -Sv -Sv -Sv -Sv -Sv -Sv -Fp -rt -rt -rt -Ae -Nh -Nh -Nh -Nh -Nh -Fq -wc -Iz -Iz -Iz -Iz -Iz -Iz -uA -Wu -gG -Wj -Iz -Wj -Iz -Wj -Iz -ye -Fq -Nh -Nh -Nh -Nh -Ae -rt -ng -Qh -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -kX -YW -iW -Ae -Ae -Ae -kX -YW -Oo -Ae -Ae -Ae -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Gq -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(130,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -DE -DE -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -DE -DE -mI -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tX -tX -tX -tX -tX -TO -TO -lV -zm -zm -zm -Fi -Fi -HI -Fi -Fi -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -tX -YJ -Nh -Nh -Nh -Nh -Ae -BH -kk -rt -rt -rt -FS -BH -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -iA -iA -dP -Yj -dP -iA -iA -iA -iA -iA -dP -Yj -dP -iA -iA -Nh -Nh -Nh -Ae -rt -dH -rt -Ae -Nh -Nh -Nh -uo -Sv -Sv -Sv -Sv -Sv -iz -Sv -Sv -Sv -Sv -Sv -Ae -rt -CY -rt -Ae -Nh -Nh -Nh -Nh -Nh -Fq -Is -IX -IX -IX -IX -IX -IX -fy -Fq -wc -Wj -Iz -Wj -Iz -Wj -Iz -XX -Fq -Nh -Nh -Nh -Nh -Ae -rt -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -kX -YW -iW -Ae -Nh -Ae -kX -YW -Oo -Ae -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(131,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -mI -mI -mI -mI -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -mI -tX -be -be -dB -zm -zm -zm -HI -HI -HI -HI -HI -ze -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -tX -YJ -Nh -Nh -Nh -Nh -Ae -Ae -Ae -rt -rt -rt -Ae -Ae -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -iA -LY -Yj -Yj -Yj -DP -iA -iA -iA -Cf -Yj -Yj -Yj -Cf -iA -Nh -Nh -Nh -Ae -rt -dH -rt -Ae -Nh -Nh -uo -uo -Nl -Sv -Yq -uo -uo -uo -uo -uo -uo -dR -uo -Ae -EP -rt -rt -Ae -Nh -Nh -Nh -Nh -Nh -Fq -XC -kl -kl -kl -kl -kl -kl -Gn -wW -wc -Wj -Iz -Wj -Iz -Wj -Iz -Wh -Fq -Nh -Nh -Nh -Nh -Ae -rt -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -kX -zj -iW -Ae -Nh -Ae -kX -zj -Oo -Ae -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -IM -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Gq -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(132,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -DE -kj -kj -kj -kj -kj -kj -kj -kj -DE -kj -DE -kj -kj -kj -kj -kj -kj -kj -kj -DE -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tX -zm -zm -zm -zm -zm -zm -Fi -Fi -HI -Fi -Fi -eb -zm -zm -zm -zm -eb -zm -zm -Nv -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -tX -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -iA -iA -Yj -Yj -Yj -iA -iA -iA -iA -iA -Yj -Yj -Yj -iA -iA -Nh -Nh -Nh -Ae -rt -ng -rt -Ae -Nh -Nh -uo -Bt -Sv -Sv -Sv -Bt -uo -Dc -Dc -Yb -Sv -Sv -Sv -Ae -rt -rt -rt -Ae -Nh -Nh -Nh -Nh -Nh -Fq -Ol -BR -kl -kl -kl -kl -kl -Gn -Fq -xt -PH -PH -PH -fm -PH -PH -Ro -Fq -Nh -Nh -Nh -Nh -Ae -rt -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -Ut -RO -tg -Ae -Nh -Ae -Ut -RO -tg -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -IM -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(133,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -DE -kj -kj -kj -kj -kj -kj -kj -DE -kj -DE -kj -DE -kj -kj -kj -kj -kj -kj -kj -DE -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tX -zm -zm -zm -zm -zm -zm -eb -Fi -HI -Fi -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -eb -zm -zm -zm -zm -tX -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -Qh -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -iA -dJ -LS -Yj -LS -dJ -iA -iA -iA -qP -LS -Yj -LS -qP -iA -Nh -Nh -Nh -Ae -rt -dH -rt -Ae -Nh -Nh -uo -Bt -Sv -Sv -Sv -Bt -uo -Sv -Sv -Sv -Sv -Sv -Sv -Ae -rt -rt -rt -Ae -Nh -Nh -Nh -Nh -Nh -Fq -Qc -tA -WM -Sn -Zv -CC -mC -hA -Fq -Fq -Fq -Fq -Fq -Fq -Fq -Fq -Fq -Fq -Nh -Nh -Nh -Nh -Ae -rt -dH -sY -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -Ae -Ae -Ae -Ae -Nh -Ae -Ae -Ae -Ae -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(134,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tX -zm -zm -zm -zm -zm -zm -Wi -zm -zm -zm -zm -Wi -zm -zm -zm -zm -Wi -zm -zm -zm -zm -Wi -zm -zm -zm -zm -Wi -zm -zm -zm -zm -Wi -zm -zm -zm -zm -tX -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -iA -iA -iA -Vh -iA -iA -iA -iA -iA -iA -iA -jc -iA -iA -iA -Nh -Nh -Nh -Ae -rt -dH -rt -Ae -Nh -Nh -uo -Bt -Sv -Sv -Sv -Bt -uo -Sv -Sv -Sv -Sv -Sv -Sv -Ae -rt -rt -EP -Ae -Nh -Nh -Nh -Nh -Nh -Fq -Fq -Fq -Fq -Fq -Fq -Fq -Fq -Fq -Fq -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -uR -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(135,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -DE -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -DE -TD -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -tX -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -Nh -Nh -Nh -Ae -rt -dH -rt -Ae -Nh -Nh -uo -uo -Nl -Sv -Yq -uo -uo -EZ -EZ -Sv -Sv -Sv -Sv -Ae -rt -rt -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -EP -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(136,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -DE -kj -kj -kj -DE -kj -kj -kj -kj -kj -kj -kj -DE -kj -kj -kj -DE -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -dH -rt -Ae -Nh -Nh -uo -Cs -Sv -Sv -Sv -Cs -uo -Dc -Dc -Sv -Sv -EZ -EZ -Ae -rt -CY -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(137,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -DE -kj -kj -kj -kj -DE -kj -kj -kj -kj -kj -DE -kj -kj -kj -kj -DE -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -rt -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -oH -dH -Qh -Ae -Nh -Nh -uo -Cs -Sv -Sv -Sv -Cs -uo -Sv -Sv -Sv -Sv -Dc -Dc -Ae -oH -rt -Qh -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -rt -ng -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -IM -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(138,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -DE -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Ae -oH -rt -rt -kL -rt -rt -rt -rt -rt -kL -rt -rt -rt -rt -rt -rt -rt -kL -rt -rt -rt -rt -kL -rt -rt -rt -rt -rt -rt -rt -EP -rt -rt -rt -dH -rt -Ae -Nh -Nh -uo -Cs -Sv -Sv -Sv -Cs -uo -Sv -Sv -Sv -Sv -Sv -Sv -Ae -rt -rt -rt -kL -rt -rt -rt -CY -rt -rt -EP -rt -rt -rt -rt -rt -EP -rt -kL -CY -rt -rt -rt -rt -rt -rt -CY -rt -EP -rt -rt -rt -Dj -rt -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(139,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -mI -DE -kj -hJ -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -kj -DE -mI -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -EP -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -dH -rt -Ae -Nh -Nh -uo -uo -Cs -VX -Cs -uo -uo -kS -ss -Sv -Sv -Sv -Sv -Ae -rt -rt -rt -CY -rt -KP -lo -lo -lo -lo -lo -KG -lo -KG -lo -lo -lo -lo -qV -lo -KG -lo -XR -lo -KG -lo -lo -lo -lo -KG -KG -lo -lo -lo -VW -Qh -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(140,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -mI -mI -DE -DE -DE -kj -kj -kj -kj -kj -kj -kj -DE -DE -DE -mI -mI -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Ae -rt -rt -rt -ZY -rt -rt -rt -rt -rt -ZY -rt -rt -rt -rt -rt -rt -rt -ZY -rt -rt -rt -EP -ZY -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -rt -dH -rt -Ae -Nh -Nh -uo -uo -uo -uo -uo -uo -uo -Sv -Sv -Sv -iz -EZ -EZ -Ae -rt -EP -rt -rt -rt -dH -EP -rt -rt -rt -rt -rt -rt -EP -rt -rt -CY -rt -EP -rt -rt -rt -rt -rt -rt -sY -rt -CY -rt -rt -rt -EP -rt -CY -rt -EP -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(141,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -mI -mI -mI -mI -mI -DE -DE -DE -kj -DE -DE -DE -mI -mI -mI -mI -mI -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -jf -jf -jf -jf -jf -jf -jf -Zl -Nx -Zl -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -TJ -is -is -is -is -is -is -is -is -Nh -Nh -uo -uo -dR -uo -uo -uo -uo -uo -uo -uo -uo -Ae -Ae -ah -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -IM -Ib -Ib -Ib -Ib -Nh -"} -(142,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -mI -mI -mI -mI -mI -mI -mI -mI -DE -mI -mI -mI -mI -mI -mI -mI -mI -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -jf -tK -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -tK -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -Zs -Vu -lm -PW -Kz -Kz -Mw -Kz -Kz -PW -lm -Vu -iH -is -tN -tN -ip -tN -zl -tN -tN -tN -zl -QS -is -Nh -Nh -uo -Sv -Sv -Sv -Sv -Sv -Yb -Sv -Sv -Sv -Sv -Ae -rt -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(143,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -jf -Ho -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -He -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -fB -Jo -Jo -Jo -Jo -Jo -Jo -Jo -Jo -Jo -Jo -Jo -oX -is -RH -Ub -Bs -wO -wO -wO -wO -Md -aJ -QS -is -Nh -Nh -uo -Nl -Sv -Sv -Sv -Sv -Sv -Sv -Sv -Sv -Yq -Ae -dy -dH -Qh -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(144,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -jf -ya -Tb -Tb -Tb -Tb -ID -GP -GP -GP -ID -Tb -Tb -Tb -Tb -bf -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -fB -Ad -Jo -Ad -Jo -Ad -Jo -Ad -Jo -Ad -Jo -Ad -oX -is -RH -lf -yp -Xa -Xa -Xa -Xa -cc -jI -QS -is -Nh -Nh -uo -Sv -Sv -Sv -Sv -Sv -iz -Sv -Sv -Sv -Sv -Ae -rt -dH -rt -Ae -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(145,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -jf -eF -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -Ho -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -fB -Jo -Jo -Jo -Jo -Jo -Jo -Jo -Jo -Jo -Jo -Jo -oX -is -RH -XQ -dI -dI -dI -dI -fz -CL -jI -QS -is -Nh -Nh -uo -uo -uo -uo -uo -uo -uo -Wp -Wp -zZ -Wp -Wp -Wp -he -Wp -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -IM -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(146,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -tK -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -tK -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -cN -Ad -Jo -Ad -Jo -Ad -Jo -Ad -Jo -Ad -Jo -Ad -bu -is -RH -LO -LO -LO -rm -LO -lf -CL -jI -QS -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Im -Im -Im -Wp -Im -tP -Im -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(147,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -jf -jf -jf -jf -jf -jf -eq -GP -TS -jf -jf -jf -jf -jf -jf -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -ie -RP -RP -RP -RP -qS -qS -qS -RP -RP -RP -RP -Ov -is -is -is -is -is -is -qO -lf -CL -jI -QS -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Im -Im -Im -Tw -Im -tP -Im -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(148,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ul -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -tK -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -tK -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -Mc -aq -Mc -Mc -Mc -is -RH -eR -CL -bH -QS -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Im -Im -Im -RB -Im -tP -tR -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(149,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -Ho -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -He -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -CS -oI -JO -oI -oI -oI -hZ -oI -fe -oI -oI -oI -oI -QH -oI -oI -oI -oI -is -RH -lf -CL -jI -QS -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Im -Im -Im -zB -Im -tP -Im -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(150,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -ya -Tb -Tb -Tb -Tb -ID -GP -GP -GP -ID -Tb -Tb -Tb -Tb -bf -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -QG -Mc -Mc -Mc -BB -Mc -Mc -BB -Mc -Mc -Da -BB -Mc -Mc -BB -Mc -Mc -Mc -xq -RH -lf -CL -jI -QS -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Im -Im -UT -Wp -Im -tP -Im -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Ib -Nh -"} -(151,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -eF -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -Ho -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -AQ -oI -oI -oI -xA -JO -oI -xA -oI -oI -oI -xA -hZ -oI -xA -oI -oI -oI -xq -RH -lf -CL -jI -QS -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -VI -Im -Wv -kF -yB -To -yB -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -zS -zS -zS -zS -zS -Nh -Nh -Nh -Nh -Nh -Nh -"} -(152,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -tK -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -tK -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -QG -Mc -Mc -Mc -BB -Mc -Mc -BB -Mc -Mc -Mc -BB -Mc -Mc -BB -Mc -Mc -Mc -xq -RH -lf -CL -jI -QS -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Im -Im -UT -Wp -Du -tP -PJ -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -OI -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -zS -zS -zS -zS -zS -Nh -Nh -Nh -Nh -Nh -Nh -"} -(153,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -qp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -jf -jf -jf -jf -jf -jf -eq -GP -TS -jf -jf -jf -jf -jf -jf -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -ri -oI -oI -fe -oI -oI -hZ -oI -oI -oI -fe -oI -JO -oI -oI -QH -oI -oI -is -RH -lf -CL -jI -QS -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Im -Im -Wa -Tw -Im -tP -Im -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -ch -ch -ch -ch -OI -ch -ch -ch -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -tG -tG -tG -gJ -tG -tG -tG -Nh -Nh -Nh -Nh -Nh -"} -(154,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -tK -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -tK -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -Mc -Mc -Mc -UO -Mc -Mc -Mc -UO -Mc -Mc -UO -Mc -Mc -Mc -UO -Mc -Mc -Mc -is -RH -lf -CL -jI -QS -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Im -Im -Wa -RB -Im -tP -Im -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ey -ch -ch -ch -ch -OI -ch -ch -ch -tL -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -tG -Cl -lh -lh -lh -zR -tG -Nh -Nh -Nh -Nh -Nh -"} -(155,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -Ho -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -He -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -qO -jw -CL -jI -QS -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Im -Im -UE -RB -Im -tP -Im -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -ch -ch -ch -ch -tL -ch -OI -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -tG -aB -lh -lh -lh -lh -tG -Nh -Nh -Nh -Nh -Nh -"} -(156,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -ya -Tb -Tb -Tb -Tb -ID -GP -GP -GP -ID -Tb -Tb -Tb -Tb -bf -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -tN -tN -tN -zl -tN -tN -tN -zl -tN -tN -zl -tN -tN -tN -zl -tN -tN -tN -zl -RH -lf -CL -jI -QS -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Im -Im -Wa -zB -Im -tP -Im -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -OI -ch -ch -ch -ch -ch -ch -ch -ch -ch -tL -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -tG -DO -lh -lh -lh -lh -tG -Nh -Nh -Nh -Nh -Nh -"} -(157,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -eF -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -Ho -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -Ub -wO -wO -wO -wO -wO -wO -wO -wO -wO -wO -wO -wO -wO -wO -wO -wO -wO -wO -ud -CL -Oy -QS -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Im -Im -UT -Wp -Du -tP -PJ -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -OI -ch -ch -tL -ch -ch -ch -tL -ch -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -ch -ch -tL -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -DO -lh -MQ -lh -lh -tG -Nh -Nh -Nh -Nh -Nh -"} -(158,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -tK -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -tK -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -lf -CF -CF -CF -CF -CF -CF -CF -CF -CF -CF -CF -CF -CF -CF -CF -CF -CF -CF -CF -CL -jI -QS -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -VI -Im -TA -Wp -In -da -In -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ey -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -AG -lh -lh -lh -lh -tG -Nh -Nh -Nh -Nh -Nh -"} -(159,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -jf -jf -jf -jf -jf -jf -eq -GP -TS -jf -jf -jf -jf -jf -jf -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -lf -CF -Ns -dI -dI -dI -dI -dI -dI -dI -dI -dI -dI -dI -dI -dI -dI -dI -dI -dI -Hl -AE -QS -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Im -Im -UT -Wp -Im -tP -Im -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -tL -ch -ch -ch -ch -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tG -tG -tG -tG -tG -tG -tG -Nh -Nh -Nh -Nh -Nh -"} -(160,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -tK -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -tK -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -lf -CF -jI -QS -rm -LO -LO -LO -LO -LO -LO -LO -LO -LO -LO -LO -LO -LO -LO -LO -PE -LO -LO -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Im -Im -Im -Tw -Im -tP -Im -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ey -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -tL -ch -ch -ch -tL -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(161,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -Ho -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -He -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -Vd -lf -CF -jI -ni -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -KU -is -is -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Im -Im -Im -RB -Im -tP -tR -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -tL -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -tL -ch -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(162,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -ya -Tb -Tb -Tb -Tb -ID -GP -GP -GP -ID -Tb -Tb -Tb -Tb -bf -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -lf -CF -jI -QS -is -Zo -kN -Zo -Zo -Zo -Zo -Zo -Zo -Zo -gB -Zo -Zo -Zo -Zo -eo -sh -Zo -zE -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Im -Im -Im -zB -Im -tP -Im -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -tL -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(163,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -eF -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -Ho -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -sc -Xa -Bm -MO -kJ -Eb -Eb -Eb -Eb -nX -Eb -Eb -Eb -nX -Eb -Eb -Eb -nX -Eb -Eb -um -SB -UI -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Im -Im -Im -Wp -Im -tP -Im -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -ch -ch -ey -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(164,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -tK -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -tK -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -jI -QS -xq -Zo -Zo -Zo -kN -pF -Zo -Zo -Zo -pF -Zo -Zo -gB -pF -Zo -Zo -Zo -Zo -pF -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Wp -Wp -Wp -Wp -Wp -he -Wp -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -tL -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -tL -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(165,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -jf -jf -jf -jf -jf -jf -eq -GP -TS -jf -jf -jf -jf -jf -jf -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -jI -QS -oG -SB -SB -SB -SB -SB -SB -SB -SB -SB -SB -SB -SB -SB -SB -SB -SB -vh -UI -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Im -tP -Im -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(166,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -tK -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -tK -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -jI -QS -xq -Zo -Zo -Zo -kN -pF -Zo -Zo -Zo -pF -Zo -Zo -gB -pF -Zo -Zo -Zo -Zo -pF -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -VI -tP -tR -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -tL -tL -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(167,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -Ho -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -He -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -jI -QS -is -SB -SB -SB -SB -UI -SB -SB -SB -UI -SB -SB -SB -UI -SB -SB -SB -SB -UI -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Wp -Im -tP -Im -Wp -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -Nh -ch -ch -ch -ch -ch -ch -tL -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(168,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -ya -Tb -Tb -Tb -Tb -ID -GP -GP -GP -ID -Tb -Tb -Tb -Tb -bf -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -jI -QS -is -Zo -kN -Zo -Zo -Zo -Zo -Zo -Zo -Zo -gB -Zo -Zo -Zo -Zo -Zo -Zo -Zo -xg -is -Fu -Fu -Fu -Fu -Fu -Fu -Fu -jz -jz -jz -jz -jz -jz -jz -jz -mR -jz -jz -jz -jz -jz -jz -jz -jz -qG -qG -qG -qG -qG -qG -qG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -ch -ch -tL -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(169,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -eF -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -Ho -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -Vd -TV -CF -Rc -ni -is -VG -VG -VG -VG -VG -VG -VG -VG -VG -VG -VG -VG -VG -SB -dk -dk -dk -SB -is -Fu -SJ -an -aO -qu -SJ -Fu -we -we -we -vS -we -we -we -we -SV -Xk -Xk -Xk -Xk -JA -Xk -Xk -Xk -qG -OT -VH -Ez -Co -OT -qG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -ch -ch -ch -ch -ch -ch -tL -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(170,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -tK -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -tK -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -jI -QS -is -at -sK -kA -sK -kA -sK -kA -sK -kA -sK -kA -sK -GG -Zo -Zo -Zo -Zo -Zo -is -Fu -fr -fr -fr -fr -fr -Fu -we -we -we -we -we -we -we -we -SV -Xk -Xk -Xk -Xk -Xk -Xk -Xk -Xk -qG -ps -ps -ps -ps -ps -qG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -AW -xB -xB -ch -ch -tL -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(171,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -jf -jf -jf -jf -jf -jf -eq -GP -TS -jf -jf -jf -jf -jf -jf -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -jI -QS -is -Xd -wK -wK -wK -wK -wK -wK -wK -wK -wK -wK -wK -UB -hw -SB -PI -SB -aX -is -Fu -fr -fr -fr -fr -fr -ME -we -we -we -we -we -we -we -we -SV -Xk -Xk -Xk -Xk -Xk -Xk -Xk -Xk -Nq -ps -ps -ps -ps -ps -qG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -AW -xB -xB -xB -xB -xB -xB -xB -ch -ch -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(172,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ul -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -tK -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -tK -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -jI -QS -is -gH -wK -HG -wK -HG -wK -HG -wK -HG -wK -HG -wK -GD -Zo -Zo -Zo -Zo -Zo -is -Fu -EY -fr -Le -fr -XP -Fu -Js -we -we -we -we -we -we -we -SV -Xk -Xk -Xk -Xk -Xk -Xk -Xk -tW -qG -ht -ps -bi -ps -pw -qG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -tL -ch -ch -ch -ey -ch -ch -ch -ch -tL -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -xB -xB -xB -xB -xB -xB -xB -xB -xB -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(173,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -Ho -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -He -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -jI -QS -is -Xd -wK -wK -wK -wK -sB -Fa -Fa -Fa -Fa -Fa -Fa -nP -ra -Eb -hs -SB -hw -is -Fu -fr -fr -xv -lZ -fr -ME -we -we -we -we -we -we -we -we -SV -Xk -Xk -Xk -Xk -Xk -Xk -Xk -Xk -Nq -ps -ps -cL -ps -ps -qG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -xB -xB -xB -xB -xB -Nh -Nh -xB -xB -xB -ch -ch -tL -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(174,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -ya -Tb -Tb -Tb -Tb -ID -GP -GP -GP -ID -Tb -Tb -Tb -Tb -bf -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -jI -QS -is -tl -Qe -IO -Qe -IO -ql -IO -Qe -IO -Qe -IO -Qe -nS -Zo -Zo -sh -Zo -Zo -is -Fu -fr -fr -fr -fr -fr -Fu -we -we -we -we -we -we -we -we -SV -Xk -Xk -Xk -Xk -Xk -Xk -Xk -Xk -qG -ps -ps -ps -ps -ps -qG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(175,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -jf -eF -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -Ho -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -Vd -hS -CF -jI -ni -is -VG -VG -VG -VG -VG -Sx -VG -VG -VG -VG -VG -VG -VG -SB -dk -Ag -dk -SB -is -Fu -SJ -an -Pc -qu -SJ -Fu -we -we -we -we -we -we -we -we -SV -Xk -Xk -Xk -Xk -Xk -Xk -Xk -Xk -qG -OT -VH -VN -Co -OT -qG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -ch -ch -ch -ch -ch -ch -ch -tL -ch -ei -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(176,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -jf -tK -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -tK -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -jI -QS -is -Zo -kN -Zo -Zo -Zo -sh -Zo -Zo -Zo -gB -Zo -Zo -Zo -Zo -Zo -sh -Zo -xg -is -Fu -Fu -Fu -Fu -Fu -Fu -Fu -ov -Bc -we -we -lF -jz -jz -jz -CE -jz -jz -jz -Ik -Xk -Xk -Xk -ZL -qG -qG -qG -qG -qG -qG -qG -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -AW -xB -xB -AW -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -xB -xB -AW -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(177,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -jf -jf -jf -jf -jf -jf -jf -eq -GP -TS -jf -jf -jf -jf -jf -jf -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -TV -CF -Rc -QS -is -SB -SB -SB -SB -UI -az -SB -SB -UI -SB -SB -SB -UI -SB -SB -az -SB -UI -is -Nh -Nh -Nh -Nh -Nh -Nh -jz -we -we -we -we -we -jz -vF -vF -Tx -fD -vF -jz -Xk -Xk -Xk -Xk -Xk -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -xB -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(178,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -jf -tK -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -tK -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -jI -QS -xq -Zo -Zo -Zo -kN -pF -sh -Zo -Zo -pF -Zo -Zo -gB -pF -Zo -Zo -sh -Zo -pF -is -Nh -Nh -Nh -Nh -Nh -Nh -jz -we -we -we -we -we -jz -yQ -QI -Tx -QI -vX -jz -Xk -Xk -Xk -Xk -Xk -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -AW -xB -xB -xB -ch -ey -ch -ch -ch -tL -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(179,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -jf -Ho -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -He -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -jI -QS -oG -SB -SB -SB -SB -SB -az -SB -SB -SB -SB -SB -SB -SB -SB -SB -az -vh -UI -is -Nh -Nh -Nh -Nh -Nh -Nh -jz -we -we -we -we -lF -jz -Yr -QI -Tx -QI -vF -jz -Ik -Xk -Xk -Xk -Xk -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -xB -xB -AW -xB -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -xB -xB -xB -xB -AW -Nh -Nh -xB -xB -xB -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(180,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -jf -ya -Tb -Tb -Tb -Tb -ID -GP -GP -GP -ID -Tb -Tb -Tb -Tb -bf -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -jI -QS -xq -Zo -Zo -Zo -kN -pF -sh -Zo -Zo -pF -Zo -Zo -gB -pF -Zo -Zo -sh -Zo -pF -is -jz -jz -jz -jz -jz -jz -jz -we -we -we -we -we -jz -QI -QI -Tx -QI -QI -jz -Xk -Xk -Xk -Xk -Xk -jz -jz -jz -jz -jz -jz -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -xB -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -xB -xB -xB -xB -xB -xB -xB -xB -xB -AW -xB -xB -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(181,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -jf -eF -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -Ho -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -jI -QS -is -SB -SB -SB -SB -UI -az -SB -SB -UI -SB -SB -SB -UI -SB -SB -az -SB -UI -is -jz -PG -PG -PG -PG -PG -jz -we -we -we -we -we -jz -QI -QI -Tx -QI -QI -jz -Xk -Xk -Xk -Xk -Xk -jz -oZ -PG -PG -PG -PG -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -xB -AW -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -Nh -xB -xB -xB -xB -xB -xB -xB -xB -xB -xB -xB -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(182,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -jf -tK -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -tK -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -jI -QS -is -Zo -kN -Zo -Zo -Zo -sh -Zo -Zo -Zo -gB -Zo -Zo -Zo -Zo -eo -sh -Zo -zE -is -jz -bC -PG -PG -oZ -PG -jz -ov -we -we -we -lF -jz -vF -QI -Tx -QI -Sy -jz -Ik -Xk -Xk -Xk -ZL -jz -PG -PG -PG -bC -PG -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -AW -xB -xB -xB -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ey -Nh -Nh -Nh -xB -xB -xB -xB -xB -xB -xB -xB -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(183,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -jf -jf -jf -jf -jf -jf -jf -eq -GP -TS -jf -jf -jf -jf -jf -jf -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -Vd -hS -CF -jI -ni -is -is -is -is -is -is -KU -is -is -is -is -is -is -is -is -is -KU -is -is -is -jz -PG -oZ -PG -PG -PG -zx -we -we -we -we -we -jz -yQ -QI -Tx -QI -vX -jz -Xk -Xk -Xk -Xk -Xk -zx -PG -PG -bC -YL -PG -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -kP -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ey -ch -ch -ch -ch -tL -ch -Nh -Nh -Nh -Nh -Nh -xB -xB -AW -xB -xB -xB -xB -Nh -Nh -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(184,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -jf -tK -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -tK -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -jI -tN -zl -tN -tN -tN -zl -tN -ip -tN -zl -tN -tN -tN -zl -tN -tN -tN -rL -tN -QS -is -jz -PG -PG -PG -bC -YL -jz -we -we -we -we -we -jz -vF -vF -Tx -vF -vF -jz -Xk -Xk -Xk -Xk -Xk -jz -PG -PG -PG -PG -PG -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -xB -xB -ch -ch -Nh -Nh -Nh -ch -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(185,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -jf -Ho -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -He -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -vQ -wO -wO -wO -wO -wO -wO -wO -Bs -wO -wO -wO -wO -wO -wO -wO -wO -wO -Bs -aJ -QS -is -jz -PG -YL -PG -PG -PG -zx -gR -gR -gR -gR -XK -jz -jz -jz -HZ -jz -jz -jz -Cm -nj -nj -nj -nj -zx -PG -PG -PG -oZ -PG -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -fS -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -ch -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(186,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -jf -ya -Tb -Tb -Tb -Tb -ID -GP -GP -GP -ID -Tb -Tb -Tb -Tb -bf -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -hS -CF -CF -CF -CF -CF -CF -CF -CF -CF -CL -tf -CF -CF -CF -CF -CF -CF -CF -CF -CL -jI -QS -is -jz -PG -PG -bC -YL -PG -jz -il -gR -gR -gR -gR -jz -pn -pn -Tx -pn -pn -jz -nj -nj -nj -nj -Ty -jz -PG -YL -bC -PG -PG -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -xB -AW -xB -xB -xB -AW -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -ch -ch -tL -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(187,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -jf -eF -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -Ho -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -vd -dI -dI -dI -dI -dI -dI -dI -dI -dI -Hl -dI -dI -dI -dI -dI -dI -dI -dI -fz -CL -jI -QS -is -jz -PG -PG -PG -PG -PG -jz -gR -gR -gR -gR -gR -jz -QI -QI -Xy -QI -QI -jz -nj -nj -nj -nj -nj -jz -PG -PG -PG -PG -YL -jz -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -xB -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(188,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -tK -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -tK -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -RH -PE -LO -LO -LO -LO -LO -LO -LO -LO -LO -PE -LO -LO -LO -LO -LO -LO -rm -LO -lf -CL -jI -QS -is -jz -jz -jz -jz -jz -jz -jz -gR -gR -gR -gR -XK -jz -QI -LW -Gy -ce -QI -jz -Cm -nj -nj -nj -nj -jz -jz -jz -jz -jz -jz -jz -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(189,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -jf -jf -jf -jf -jf -jf -eq -GP -TS -jf -jf -jf -jf -jf -jf -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -is -KU -is -is -is -is -is -is -is -is -is -KU -is -is -is -is -is -is -is -qO -lf -CL -jI -QS -is -Nh -Nh -Nh -Nh -Nh -Nh -jz -gR -gR -gR -gR -gR -jz -QI -QI -Ha -QI -QI -jz -nj -nj -nj -nj -nj -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -tL -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -tL -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(190,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -tK -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -tK -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -zC -qT -zC -zC -zC -zC -zC -Qd -zC -zC -zC -qT -zC -zC -zC -zC -zC -zC -is -RH -lf -CL -jI -QS -is -Nh -Nh -Nh -Nh -Nh -Nh -jz -gR -gR -gR -gR -gR -jz -wM -wM -Tx -wM -wM -jz -nj -nj -nj -nj -nj -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -dT -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(191,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -Ho -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -He -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -zC -wr -qb -Kh -bS -bS -bS -Kh -qb -qb -Kh -kg -bS -bS -Kh -qb -Er -zC -is -RH -lf -CL -jI -QS -is -Nh -Nh -Nh -Nh -Nh -Nh -jz -gR -gR -gR -gR -XK -jz -jz -jz -uN -jz -jz -jz -Cm -nj -nj -nj -nj -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -tL -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -dT -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(192,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -ya -Tb -Tb -Tb -Tb -ID -GP -GP -GP -ID -Tb -Tb -Tb -Tb -bf -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -zC -wr -Qd -zC -zC -zC -zC -zC -zC -zC -Qd -qT -zC -zC -zC -zC -qb -zC -Cx -RH -lf -CL -jI -QS -is -BA -BA -BA -BA -BA -BA -BA -il -gR -gR -gR -gR -im -MI -jM -JR -jM -ON -im -nj -nj -nj -nj -Ty -oN -oN -oN -oN -oN -oN -oN -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ey -ch -ch -ch -ch -dT -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(193,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -Nh -Nh -jf -eF -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -Ho -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -zC -wr -zC -Kh -bS -bS -bS -Kh -qb -qb -Kh -kg -bS -bS -Kh -zC -qb -zC -Cx -RH -lf -bg -jI -QS -is -BA -LK -UU -FG -Eq -LK -BA -gR -gR -gR -gR -gR -xh -Gm -QI -Tx -QI -mk -xh -nj -nj -nj -nj -nj -oN -VO -ex -iS -zF -VO -oN -Nh -Nh -Nh -Nh -Nh -ch -tL -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -dT -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(194,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -YJ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -tK -Tb -Tb -Tb -pJ -jf -GP -GP -GP -jf -pJ -Tb -Tb -Tb -tK -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -zC -rU -qF -qF -qF -qF -qF -qF -yi -qF -qF -Bu -zC -zC -zC -Qd -qb -zC -Cx -RH -lf -CL -jI -QS -is -BA -fY -fY -fY -WU -fY -BA -gR -gR -gR -gR -gR -xh -Gm -QI -Fe -QI -mk -xh -nj -nj -nj -nj -nj -oN -BG -BG -kf -BG -BG -oN -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -dT -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(195,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jf -jf -jf -jf -jf -jf -jf -jt -jt -jt -jf -jf -jf -jf -jf -jf -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -zC -qb -qb -Kh -bS -bS -bS -Kh -qb -qb -Kh -bS -bS -bS -Kh -qb -qb -zC -is -RH -lf -CL -jI -QS -is -BA -fY -fY -fY -fY -fY -GQ -gR -gR -gR -gR -gR -xh -Gm -QI -Tx -QI -uh -xh -nj -nj -nj -nj -nj -tT -BG -BG -BG -BG -BG -oN -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Ve -Ve -Ve -Ve -Ve -Ei -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(196,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Cd -Cd -Cd -Cd -Cd -Cd -jf -GP -GP -GP -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -zC -zC -Qd -zC -zC -Qd -zC -zC -zC -zC -zC -zC -Qd -zC -zC -zC -zC -zC -is -RH -lf -CL -jI -QS -is -BA -PA -fY -Gp -fY -iF -BA -xw -gR -gR -gR -gR -xh -OS -QI -OD -QI -HY -xh -nj -nj -nj -nj -ds -oN -SC -BG -EU -BG -YA -oN -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -tL -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -tL -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(197,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Cd -Cd -Cd -Cd -Cd -Cd -jf -GP -GP -GP -jf -Cd -Cd -Cd -Cd -Cd -Cd -Cd -Cd -Cd -Cd -Cd -Cd -Cd -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -qO -lf -CL -jI -QS -is -BA -fY -fY -Lm -fY -fY -GQ -gR -gR -gR -gR -gR -xh -Gm -QI -Tx -QI -mk -xh -nj -nj -nj -nj -nj -tT -BG -BG -et -BG -BG -oN -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -tL -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(198,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Cd -Cd -jf -jf -jf -jf -jf -GP -GP -GP -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -is -gn -gn -gn -IZ -gn -gn -IZ -gn -gn -gn -IZ -gn -gn -gn -IZ -gn -gn -gn -IZ -RH -lf -CL -jI -QS -is -BA -fY -fY -fY -fY -fY -BA -gR -gR -gR -gR -gR -xh -Gm -QI -rP -QI -mk -xh -nj -nj -nj -nj -nj -oN -BG -BG -BG -BG -BG -oN -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -tL -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(199,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Cd -Cd -jf -cO -Tb -Tb -YK -GP -GP -GP -uq -GP -GP -GP -GP -GP -GP -uq -GP -GP -GP -uq -GP -GP -cj -RH -Ub -wO -wO -wO -wO -wO -wO -wO -wO -wO -wO -wO -wO -wO -wO -wO -wO -wO -wO -ud -CL -jI -QS -is -BA -LK -UU -RT -Eq -LK -BA -gR -gR -gR -gR -gR -xh -Gm -QI -Tx -QI -mk -xh -nj -nj -nj -nj -nj -oN -VO -ex -JM -zF -VO -oN -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(200,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Cd -Cd -jf -cO -Tb -Tb -YK -GP -GP -GP -GP -GP -GP -GP -GP -GP -GP -GP -GP -GP -GP -GP -GP -GP -cj -RH -lf -qd -Xa -Xa -Xa -Xa -Xa -Xa -Xa -Xa -Xa -Xa -Xa -Xa -Xa -Xa -Xa -Xa -Xa -Xa -hE -jI -QS -is -BA -BA -BA -BA -BA -BA -BA -il -gR -gR -gR -gR -HW -UA -vr -Ac -vr -jj -HW -nj -nj -nj -nj -Ty -oN -oN -oN -oN -oN -oN -oN -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(201,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hz -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Cd -Cd -jf -cO -Tb -Tb -YK -GP -GP -GP -OE -GP -GP -GP -GP -GP -GP -OE -GP -GP -GP -OE -GP -GP -cj -RH -lf -CL -Ns -dI -dI -dI -dI -dI -dI -dI -dI -dI -dI -dI -dI -dI -dI -dI -dI -dI -dI -AE -QS -is -Nh -Nh -Nh -Nh -Nh -Nh -jz -gR -gR -gR -gR -XK -jz -jz -jz -nT -jz -jz -jz -Cm -nj -nj -nj -nj -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ey -ch -ch -tL -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(202,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Cd -Cd -jf -jf -jf -jf -jf -vJ -vJ -vJ -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -jf -is -RH -lf -JJ -jI -QS -rm -LO -LO -LO -rm -LO -LO -LO -rm -LO -LO -LO -rm -LO -LO -rm -LO -LO -LO -is -Nh -Nh -Nh -Nh -Nh -Nh -jz -gR -gR -gR -gR -gR -jz -pn -pn -Tx -pn -pn -jz -nj -nj -nj -nj -nj -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ey -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(203,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -TE -Op -oi -oi -oi -Op -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -qO -lf -CL -jI -ni -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -Nh -Nh -Nh -Nh -Nh -Nh -jz -gR -gR -gR -gR -gR -jz -QI -QI -Xy -QI -QI -jz -nj -nj -nj -nj -nj -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(204,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -TE -Op -oi -oi -oi -Op -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -RH -lf -CL -jI -QS -is -zC -zC -Qd -uD -zC -zC -zC -Ij -Qd -zC -uD -zC -zC -IY -uD -zC -Qd -zC -is -jz -jz -jz -jz -jz -jz -jz -gR -gR -gR -gR -XK -jz -QI -LW -Ab -ce -QI -jz -Cm -nj -nj -nj -nj -jz -jz -jz -jz -jz -jz -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -tL -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(205,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Op -Op -Op -Op -Op -Op -Op -oi -oi -oi -Op -Op -Op -Op -Op -Op -Op -TE -TE -TE -TE -TE -TE -TE -is -RH -lf -CL -jI -QS -is -zC -qb -qb -gO -jW -jW -Kh -Kh -qb -qb -Kh -Kh -jW -jW -gO -qb -qb -zC -is -jz -PG -PG -PG -PG -PG -jz -gR -gR -gR -gR -gR -jz -QI -QI -Ha -QI -QI -jz -nj -nj -nj -nj -nj -jz -PG -PG -PG -YL -PG -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(206,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Op -JF -Vf -Vf -Vf -JF -Op -oi -oi -oi -Op -lJ -Vf -Vf -Vf -JF -Op -TE -TE -TE -TE -TE -TE -TE -is -RH -lf -CL -jI -QS -xq -QP -Fr -zC -zC -Qd -zC -zC -lx -zC -ok -zC -Qd -zC -ZB -zC -zC -qb -Yl -is -jz -PG -PG -bC -PG -PG -jz -il -gR -gR -gR -gR -jz -wM -wM -Tx -wM -wM -jz -nj -nj -nj -nj -Ty -jz -PG -bC -PG -PG -PG -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -tL -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -ch -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(207,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Op -JF -Vf -Vf -Vf -JF -Op -oi -mV -oi -Op -JF -Vf -Vf -Vf -JF -Op -TE -TE -TE -TE -TE -TE -TE -is -RH -lf -GY -Bm -MO -db -qF -Yd -zd -gO -jW -jW -Kh -Kh -qb -qb -Kh -Kh -jW -jW -gO -uH -qb -zC -is -jz -PG -oZ -PG -YL -PG -zx -gR -gR -gR -gR -XK -jz -jz -jz -XF -jz -jz -jz -Cm -nj -nj -nj -nj -zx -PG -PG -PG -bC -PG -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ey -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ey -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(208,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Op -JF -OM -oS -OM -Vf -Iy -oi -cy -oi -Iy -Vf -OM -oS -OM -JF -Op -TE -TE -TE -TE -TE -TE -TE -is -RH -lf -CF -jI -QS -xq -QP -qb -qT -zC -zC -zC -IY -zC -zC -Qd -mz -zC -zC -zC -zC -zC -qb -Qd -is -jz -PG -PG -PG -PG -PG -jz -At -At -At -At -At -jz -vF -vF -Tx -vF -vF -jz -Hr -Hr -Hr -Hr -Hr -jz -YL -PG -oZ -PG -PG -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -tL -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(209,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Op -JF -Vf -Vf -Vf -JF -Op -oi -mV -oi -Op -JF -Vf -Vf -Vf -JF -Op -TE -TE -TE -TE -TE -TE -TE -is -RH -lf -CF -jI -QS -is -zC -qb -wr -gO -jW -jW -Kh -Kh -qb -qb -Kh -Kh -jW -jW -gO -qb -qb -Yl -is -jz -YL -bC -PG -PG -bC -zx -At -At -At -At -At -jz -di -QI -Tx -QI -vX -jz -Hr -Hr -Hr -Hr -Hr -zx -PG -PG -PG -oZ -PG -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -ch -tL -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -tL -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(210,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Op -JF -Vf -Vf -Vf -JF -Op -oi -oi -oi -Op -JF -Vf -Vf -Vf -JF -Op -TE -TE -TE -TE -TE -TE -TE -is -RH -lf -CF -jI -QS -is -zC -zC -gD -zC -zC -ed -zC -ZB -hY -zC -zC -zC -Qd -zC -hY -zC -zC -zC -is -jz -PG -PG -oZ -YL -PG -jz -Bj -At -At -At -At -jz -vF -QI -Tx -QI -vF -jz -Hr -Hr -Hr -Hr -rf -jz -PG -bC -PG -PG -PG -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -tL -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -tL -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -tL -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(211,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Op -Op -Op -Op -Op -Op -Op -oi -oi -oi -Op -Op -Op -Op -Op -Op -Op -TE -TE -TE -TE -TE -TE -TE -is -qO -lf -CF -jI -AX -is -SL -SL -dw -uM -Nb -SL -SL -SL -SL -Nb -ug -Nb -SL -SL -is -kd -kd -kd -is -jz -PG -PG -PG -PG -PG -jz -At -At -At -At -uf -jz -QI -QI -Tx -QI -QI -jz -Mz -Hr -Hr -Hr -Hr -jz -oZ -PG -PG -YL -PG -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(212,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -TE -Op -oi -oi -oi -Op -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -RH -lf -CF -jI -QS -is -KY -Nb -nx -Nb -Nb -Wx -WR -Nb -ty -Nb -Nb -TU -Nb -KY -is -Av -Av -Av -is -jz -jz -jz -jz -jz -jz -jz -At -At -At -At -At -jz -QI -QI -WO -QI -QI -jz -Hr -Hr -Hr -Hr -Hr -jz -jz -jz -jz -jz -jz -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(213,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -TE -Op -oi -oi -oi -Op -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -RH -lf -CF -jI -QS -is -KY -Nb -xy -Sd -eB -eB -Fl -Mr -eB -eB -eB -eB -Mf -bY -is -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -jz -At -At -At -At -At -jz -QI -QI -QI -QI -QI -jz -Hr -Hr -Hr -Hr -Hr -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -Nh -Nh -Nh -ch -ch -ch -ey -Nh -Nh -Nh -Nh -tL -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(214,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -TE -Op -oi -oi -oi -Op -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -RH -lf -Me -jI -QS -is -Wk -Nb -jZ -lL -GS -ii -wk -bk -wf -up -rQ -sd -Nb -RE -is -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -jz -At -At -At -At -uf -jz -vF -QI -QI -QI -vF -jz -Mz -Hr -Hr -Hr -Hr -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(215,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -kp -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Op -Op -Op -Op -Op -Op -Op -oi -oi -oi -Op -Op -Op -Op -Op -Op -Op -TE -TE -TE -TE -TE -TE -TE -is -RH -lf -CF -jI -QS -is -lz -ai -WR -Nb -No -Nb -Nb -aL -Nb -Nb -No -Nb -ai -Qs -is -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -jz -At -At -At -At -At -jz -yQ -QI -QI -QI -DR -jz -Hr -Hr -Hr -Hr -Hr -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -AW -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(216,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Op -JF -Vf -Vf -Vf -JF -Op -oi -oi -oi -Op -JF -Vf -Vf -Vf -JF -Op -TE -TE -TE -TE -TE -TE -TE -is -qO -lf -CF -jI -AX -is -Wk -Nb -sd -rQ -up -wf -bk -wk -ii -GS -lL -jZ -Nb -RE -is -Av -Av -Av -is -DZ -DZ -DZ -DZ -DZ -DZ -DZ -Bj -At -At -At -At -jz -vF -vF -QI -vF -vF -jz -Hr -Hr -Hr -Hr -rf -VD -VD -VD -VD -VD -VD -VD -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -xB -AW -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -MT -MT -MT -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(217,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Op -JF -Vf -Vf -Vf -JF -Op -oi -mV -oi -Op -JF -Vf -Vf -Vf -JF -Op -TE -TE -TE -TE -TE -TE -TE -is -RH -XQ -dI -AE -QS -is -KY -Nb -Nb -RZ -Nb -Nb -Nb -Nb -Nb -yE -Nb -rD -Nb -Qs -is -Av -Av -Av -is -DZ -TM -xX -ea -Mi -TM -DZ -At -At -At -At -uf -jz -jz -jz -ap -jz -jz -jz -Mz -Hr -Hr -Hr -Hr -VD -hd -hI -cz -tu -hd -VD -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -MT -MT -MT -MT -MT -MT -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -tL -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(218,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Op -JF -OM -oS -OM -Vf -Iy -oi -cy -oi -Iy -Vf -OM -oS -OM -JF -Op -TE -TE -TE -TE -TE -TE -TE -is -RH -LO -LO -LO -LO -is -KY -WR -Nb -Nb -Nb -Nb -ob -gA -Nb -Nb -WR -Nb -Nb -Qs -is -Av -Av -Av -is -DZ -Zx -Zx -Zx -Zx -Zx -DZ -At -At -At -At -At -At -At -At -kr -Hr -Hr -Hr -Hr -Hr -Hr -Hr -Hr -VD -lD -lD -lD -lD -lD -VD -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -AW -xB -xB -AW -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -MT -MT -ch -ch -ch -MT -MT -MT -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(219,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Op -JF -Vf -Vf -Vf -JF -Op -oi -mV -oi -Op -JF -Vf -Vf -Vf -JF -Op -TE -TE -TE -TE -TE -TE -TE -is -is -DS -DS -DS -is -is -is -is -nA -Io -Io -Aw -is -is -yL -Io -Io -Aw -is -KU -is -Av -Av -Av -is -DZ -Zx -Zx -Zx -va -Zx -Hd -At -At -At -At -At -At -kV -At -kr -Hr -Hr -Hr -Hr -Hr -Hr -Hr -Hr -Hw -lD -lD -lD -lD -lD -VD -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -MT -MT -ch -ch -ch -ch -MT -MT -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(220,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Op -JF -Vf -Vf -Vf -JF -Op -oi -oi -oi -Op -JF -Vf -Vf -Vf -JF -Op -TE -TE -TE -TE -TE -TE -TE -is -Eo -Eo -CH -Eo -Eo -Bw -Eo -Eo -Vj -Eo -Eo -Eo -WV -WV -Eo -Fv -Eo -Eo -WV -aF -pI -Av -Av -Av -is -DZ -aK -wY -jg -Zx -GI -DZ -yW -At -At -At -At -At -At -At -kr -Hr -Hr -Hr -Hr -Hr -Hr -Hr -qN -VD -Uu -lD -Mg -lD -wx -VD -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -xB -AW -xB -xB -xB -AW -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -MT -MT -ch -ch -GC -ch -ch -MT -MT -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(221,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Op -Op -Op -Op -Op -Op -Op -Op -Iy -Op -Op -Op -Op -Op -Op -Op -Op -TE -TE -TE -TE -TE -TE -TE -is -Eo -Eo -Eo -yj -Eo -Eo -Eo -Eo -Eo -Eo -Eo -Eo -Eo -EL -Eo -Eo -Eo -Eo -Eo -Fs -pI -Av -Av -Av -is -DZ -Zx -Zx -Zx -Zx -Zx -Hd -At -At -At -At -At -At -At -At -kr -Hr -Hr -Hr -Hr -Hr -Hr -Hr -Hr -Hw -lD -lD -lD -lD -lD -VD -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -MT -MT -ch -ch -ch -ch -MT -MT -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(222,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -Op -np -np -Vf -np -np -Op -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -rS -Eo -Kc -Kc -Kc -Kc -Kc -Kc -Kc -Kc -Kc -Kc -Kc -Kc -Kc -Kc -Kc -Kc -Eo -aF -pI -Av -Av -Av -is -DZ -Zx -Zx -Zx -Zx -Zx -DZ -At -At -At -At -At -At -At -At -kr -Hr -Hr -Hr -Hr -Hr -Hr -Hr -Hr -VD -lD -fN -lD -lD -lD -VD -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -MT -MT -ch -ch -ch -MT -MT -ch -ch -tL -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(223,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -Op -xJ -Vf -OM -Vf -np -Op -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -Fv -Eo -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -zq -aF -pI -Av -Av -Av -is -DZ -TM -xX -wz -Mi -TM -DZ -At -At -NM -At -At -At -At -At -sU -Hr -Hr -Hr -Hr -Hr -rX -Hr -Hr -VD -hd -hI -iN -tu -hd -VD -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -xB -xB -AW -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -MT -MT -MT -MT -MT -MT -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(224,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -hQ -hQ -hQ -hQ -hQ -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -Op -np -OM -oS -OM -np -Op -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -Eo -Eo -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -Eo -eC -pI -Av -Av -Av -is -DZ -DZ -DZ -DZ -DZ -DZ -DZ -jz -jz -jz -jz -jz -jz -rd -rd -GU -rd -rd -jz -jz -no -no -no -jz -VD -VD -VD -VD -VD -VD -VD -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -MT -MT -MT -MT -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(225,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -Op -np -Vf -OM -Vf -np -Op -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -Eo -yj -Kc -Kc -Kc -fa -Kc -Kc -rb -Kc -Kc -Kc -Kc -Kc -Kc -Xn -Kc -Kc -Eo -aF -pI -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -rd -oV -oV -oV -rd -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(226,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -Op -np -np -cI -np -np -Op -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -rS -Eo -Eo -Vj -Eo -CH -Eo -Eo -Eo -Eo -Eo -Vj -Eo -Eo -CH -Eo -yj -Eo -Eo -aF -pI -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -rd -bM -bM -bM -rd -Nh -Nh -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -tL -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(227,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -Op -Op -Op -OJ -Op -Op -Op -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -Eo -bZ -Kc -Kc -Kc -Kc -Kc -fa -Kc -rb -Kc -Kc -Kc -tH -Kc -Kc -Kc -Kc -Fv -aF -pI -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -rd -ft -ft -ft -rd -Nh -Nh -Nh -ch -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -AW -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(228,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -TE -TE -TE -Sc -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -Eo -Eo -ee -XW -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -iE -CW -pI -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -rd -Ak -Ak -Ak -rd -Nh -Nh -Nh -tL -ch -ch -ch -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -AW -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -tL -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(229,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -TE -TE -TE -Sc -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -Eo -Eo -ee -gU -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -Eo -yj -pI -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -rd -RF -RF -RF -rd -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -AW -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(230,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -TE -TE -bO -gr -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -ls -Eo -Kc -VL -Kc -Kc -Kc -Kc -Kc -Kc -Kc -Kc -GJ -Kc -Kc -Kc -Kc -Kc -Eo -Eo -pI -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -rd -rA -rA -rA -rd -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -tL -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -ey -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(231,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -Op -Op -OJ -Op -Op -Op -Op -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -Eo -Eo -Eo -aF -Eo -Vj -yI -yj -Eo -EL -Eo -Eo -Eo -bZ -Eo -Eo -Eo -Eo -Eo -Eo -pI -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jz -rd -rd -GU -rd -rd -jz -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ey -tL -Nh -ch -ch -ch -ch -ch -ch -fS -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -AW -xB -xB -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(232,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -Op -sk -xQ -sk -sk -sk -Op -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -Eo -Eo -Eo -UN -Eo -Eo -Eo -VF -Eo -Eo -zq -Eo -VF -Eo -Eo -Vj -VF -Eo -Eo -Eo -pI -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jz -dO -pd -SK -SK -wI -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -tL -ch -ch -ch -ch -tL -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -xB -xB -xB -xB -AW -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -tL -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(233,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -Op -sk -sk -sk -sk -IJ -Op -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -pI -pI -pI -xo -pI -pI -pI -pI -pI -pI -pI -pI -pI -pI -pI -pI -pI -pI -pI -pI -pI -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jz -MC -cK -cK -cK -sz -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -ch -ch -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(234,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -Op -sk -sk -sk -sk -ar -Op -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -so -Av -Av -RU -Av -Av -Av -hN -Av -Av -Av -Av -Av -Av -Av -Av -hN -Av -Av -Av -Av -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jz -hf -cK -ct -cK -ZN -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -tL -ch -ch -ch -tL -Nh -Nh -ch -tL -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(235,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -Op -sk -sk -sk -sk -rO -Op -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -so -Av -Av -RU -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jz -EO -mB -mB -mB -Sl -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -Nh -ey -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(236,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -Op -sk -sk -sk -tb -sk -Op -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -so -Av -Av -RU -qg -qg -Av -Av -Av -qg -qg -Av -Av -qg -qg -Av -Av -Av -qg -qg -Av -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -jz -jz -jz -jz -jz -jz -jz -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(237,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -Op -Op -Op -Op -OJ -Op -Op -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -so -Av -Av -RU -Rz -fk -Av -Av -Av -Rz -fk -Av -Av -fk -Rz -Av -Av -Av -fk -Rz -Av -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -tL -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(238,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -TE -TE -TE -TE -Sc -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -so -Av -Av -RU -Av -Av -Av -Av -Av -Av -Av -ji -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -tL -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(239,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -TE -TE -TE -TE -qf -qo -qo -qo -qo -qo -qo -qo -qo -qo -qo -qo -qo -qo -qo -kJ -bR -wb -wb -BI -Rz -fk -Av -Av -Av -Rz -fk -Av -Av -fk -Rz -Av -Av -Av -fk -Rz -Av -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -tL -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(240,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -so -Av -Av -Av -qg -qg -Av -Av -Av -qg -qg -Av -Av -qg -qg -Av -Av -Av -qg -qg -Av -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -tL -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(241,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -so -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -tL -ch -ch -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -tL -tL -tL -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(242,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -TE -is -so -Av -Av -Av -Av -Av -Av -hN -Av -Av -Av -Av -Av -Av -Av -Av -hN -Av -Av -Av -Av -Av -Av -Av -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(243,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -is -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -tL -ch -ch -ch -ch -ch -ch -tL -Nh -ey -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(244,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ey -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(245,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ey -ch -ch -ch -ch -ch -ch -ch -ch -fS -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(246,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -tL -ch -ch -ch -ch -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(247,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -tL -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(248,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -tL -ch -ch -ch -ch -ch -ey -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(249,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(250,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(251,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(252,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(253,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(254,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(255,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} -(256,1,1) = {" -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -Nh -"} diff --git a/maps/southern_sun/submaps/gateway/snowfield.dm b/maps/southern_sun/submaps/gateway/snowfield.dm deleted file mode 100644 index b7ea707d65..0000000000 --- a/maps/southern_sun/submaps/gateway/snowfield.dm +++ /dev/null @@ -1,607 +0,0 @@ -// -- Areas -- // - -/area/awaymission/snowfield - icon_state = "blank" - base_turf = /turf/simulated/floor/outdoors/dirt - -/area/awaymission/snowfield/cavern - icon_state = "blue" - ambience = list('sound/ambience/ambimine.ogg', 'sound/ambience/song_game.ogg', 'sound/music/LRRMenu.ogg', 'sound/music/LRRTrack3.ogg', \ - 'sound/ambience/cave/AmbCaveDebriA.ogg', 'sound/ambience/cave/AmbCaveDebriB.ogg', 'sound/ambience/cave/AmbCaveDebriC.ogg', \ - 'sound/ambience/cave/AmbCaveDebriD.ogg') - always_unpowered = 1 - -/area/awaymission/snowfield/outside - icon_state = "green" - always_unpowered = 1 - dynamic_lighting = 1 - outdoors = 1 - -/area/awaymission/snowfield/checkpoint - name = "Checkpoint" - icon_state = "checkpoint1" - requires_power = 0 - -/area/awaymission/snowfield/solarshack - name = "Solarshack" - icon_state = "panelsA" - -/area/awaymission/snowfield/checkpointunpowered // Limiting powered area - name = "Checkpoint" - icon_state = "darkred" - always_unpowered = 1 - power_equip = 0 - power_environ = 0 - power_light = 0 - -/area/awaymission/snowfield/emergency_pathway/EP_powered - name = "Emergency Pathway" - icon_state = "green" - requires_power = 0 - -/area/awaymission/snowfield/emergency_pathway/EP_unpowered - name = "Emergency Pathway" - icon_state = "darkred" - always_unpowered = 1 - power_equip = 0 - power_environ = 0 - power_light = 0 - -/area/awaymission/snowfield/restricted - icon_state = "red" - -// Base Area - -/area/awaymission/snowfield/hallway/checkpointhallway - name = "Gate Hallway" - icon_state = "entry_1" - requires_power = 0 - -/area/awaymission/snowfield/hallway/northhallway - name = "Northern Hallway" - icon_state = "north" - -/area/awaymission/snowfield/hallway/centerhallway - name = "Center Hallway" - icon_state = "center" - -/area/awaymission/snowfield/hallway/southhallway - name = "Southern Hallway" - icon_state = "south" - -/area/awaymission/snowfield/hallway/dormhallway - name = "Dorm Hallway" - icon_state = "hallC" - -/area/awaymission/snowfield/hallway/commandhallway - name = "Command Hallway" - icon_state = "hallC1" - -/area/awaymission/snowfield/hallway/frontgate_substation - name = "Front Gate Substation" - icon_state = "substation" - -/area/awaymission/snowfield/hallway/commandhallway_substation - name = "Command Substation" - icon_state = "substation" - -// Security - -/area/awaymission/snowfield/security/frontgate - name = "Front Gate Checkpoint" - icon_state = "checkpoint1" - requires_power = 0 - power_equip = 1 // Powering entry - -/area/awaymission/snowfield/security/seconddesk - name = "Second Gate Checkpoint" - icon_state = "checkpoint2" - requires_power = 0 - power_equip = 1 // Powering entry - -/area/awaymission/snowfield/security/lobby - name = "Security Lobby" - icon_state = "security" - -/area/awaymission/snowfield/security/security_restroom - name = "Security Restroom" - icon_state = "security_bathroom" - -/area/awaymission/snowfield/security/hallway - name = "Security Hallway" - icon_state = "red" - -/area/awaymission/snowfield/security/detective - name = "Detective's Office" - icon_state = "detective" - -/area/awaymission/snowfield/security/evidence_storage - name = "Evidence Storage" - icon_state = "evidence_storage" - -/area/awaymission/snowfield/security/security_lockerroom - name = "Security Locker Room" - icon_state = "security_lockerroom" - -/area/awaymission/snowfield/security/interrogation - name = "Security Interrogation Room" - icon_state = "interrogation" - -/area/awaymission/snowfield/security/observatory - name = "Security Observation Room" - icon_state = "observatory" - -/area/awaymission/snowfield/security/warden - name = "Warden's Office" - icon_state = "Warden" - -/area/awaymission/snowfield/security/armory_entrance - name = "Armory Entrance" - icon_state = "armory_entrance" - -/area/awaymission/snowfield/security/armory - name = "Armory" - icon_state = "armory" - requires_power = 0 - -/area/awaymission/snowfield/security/heavy_armory - name = "Heavy Armory" - icon_state = "riot_control" - requires_power = 0 - -/area/awaymission/snowfield/security/hallway2 - name = "Security South Hallway" - icon_state = "red" - -/area/awaymission/snowfield/security/firingrange - name = "Firing Range" - icon_state = "firingrange" - -/area/awaymission/snowfield/security/security_cell_hallway - name = "Cell Hallway" - icon_state = "security_cell_hallway" - -/area/awaymission/snowfield/security/security_cell - name = "Security Cell" - icon_state = "brig" - -// Medical - -/area/awaymission/snowfield/medical/front_desk - name = "Medical Front Desk" - icon_state = "medbay" - -/area/awaymission/snowfield/medical/hallway - name = "Medical Hallway" - icon_state = "medbay4" - -/area/awaymission/snowfield/medical/patients - name = "Medical Patients Room" - icon_state = "patients" - -/area/awaymission/snowfield/medical/medical_restroom - name = "Medical Restroom" - icon_state = "restrooms" - -/area/awaymission/snowfield/medical/patient_restroom - name = "Medical Patient Restroom" - icon_state = "restrooms" - -/area/awaymission/snowfield/medical/medical_locker - name = "Medical Locker Room" - icon_state = "medbay3" - -/area/awaymission/snowfield/medical/chemistry - name = "Chemistry" - icon_state = "chem" - -/area/awaymission/snowfield/medical/surgery - name = "Surgery" - icon_state = "surgery" - -/area/awaymission/snowfield/medical/medbay_breakroom - name = "Medical Breakroom" - icon_state = "medbay_breakroom" - -/area/awaymission/snowfield/medical/staff_room - name = "Medical Staffroom" - icon_state = "medbay2" - -/area/awaymission/snowfield/medical/storage_room - name = "Medical Storage Room" - icon_state = "medbay_primary_storage" - -/area/awaymission/snowfield/medical/morgue - name = "Morgue" - icon_state = "morgue" - -//Engineering - -/area/awaymission/snowfield/engineering/hallway - name = "Engineering Hallway" - icon_state = "yellow" - -/area/awaymission/snowfield/engineering/tech_storage - name = "Engineering Tech Storage" - icon_state = "storage" - -/area/awaymission/snowfield/engineering/secure_tech_storage - name = "Engineering Secure Tech Storage" - icon_state = "auxstorage" - -/area/awaymission/snowfield/engineering/primary_storage - name = "Engineering Primary Storage" - icon_state = "primarystorage" - -/area/awaymission/snowfield/engineering/staff_room - name = "Engineering Staffroom" - icon_state = "engineering_break" - -/area/awaymission/snowfield/engineering/locker_room - name = "Engineering Locker Room" - icon_state = "engineering_locker" - -/area/awaymission/snowfield/engineering/restroom - name = "Engineering Restroom" - icon_state = "restrooms" - -/area/awaymission/snowfield/engineering/monitor_room - name = "Engine Monitor Room" - icon_state = "engine_monitoring" - -/area/awaymission/snowfield/engineering/engine_checkpoint - name = "Engine Checkpoint" - icon_state = "security" - -/area/awaymission/snowfield/engineering/engine - name = "Engine Room" - icon_state = "engine" - -//Public/Service area - -/area/awaymission/snowfield/service/janitor - name = "Custodial Closet" - icon_state = "janitor" - -/area/awaymission/snowfield/service/fridge - name = "Fridge" - icon_state = "fridge" - -/area/awaymission/snowfield/service/kitchen - name = "Kitchen" - icon_state = "kitchen" - -/area/awaymission/snowfield/service/hydro - name = "Hydroponics" - icon_state = "hydro" - -/area/awaymission/snowfield/service/cafeteria - name = "Canteen" - icon_state = "cafeteria" - -/area/awaymission/snowfield/service/publicstaff - name = "Public Staffroom" - icon_state = "recreation_area" - -/area/awaymission/snowfield/public/charger - name = "Tool Storage" - icon_state = "yellow" - -/area/awaymission/snowfield/public/toolstorage1 - name = "Tool Storage 2" - icon_state = "emergencystorage" - -/area/awaymission/snowfield/public/toolstroage2 - name = "Command Toolstorage" - icon_state = "emergencystorage" - -/area/awaymission/snowfield/public/publicrestroom - name = "Public Restroom" - icon_state = "restrooms" - -/area/awaymission/snowfield/public/cafeteria_restroom - name = "Canteen Restroom" - icon_state = "restrooms" - -//dorms - -/area/awaymission/snowfield/dorms/dorm1 - name = "Room 1" - -/area/awaymission/snowfield/dorms/dorm2 - name = "Room 2" - -/area/awaymission/snowfield/dorms/dorm3 - name = "Room 3" - -/area/awaymission/snowfield/dorms/dorm4 - name = "Room 4" - -/area/awaymission/snowfield/dorms/dorm5 - name = "Room 5" - -/area/awaymission/snowfield/dorms/dorm6 - name = "Room 6" - -/area/awaymission/snowfield/dorms/dorm7 - name = "Room 7" - -/area/awaymission/snowfield/dorms/dorm8 - name = "Room 8" - -/area/awaymission/snowfield/dorms/dorm9 - name = "Room 9" - -/area/awaymission/snowfield/dorms/dorm10 - name = "Room 10" - -/area/awaymission/snowfield/dorms/dorm11 - name = "Room 11" - -/area/awaymission/snowfield/dorms/dorm12 - name = "Room 12" - -/area/awaymission/snowfield/dorms/dorm13 - name = "Room 13" - -/area/awaymission/snowfield/dorms/dorm14 - name = "Room 14" - -/area/awaymission/snowfield/dorms/dorm15 - name = "Room 15" - -/area/awaymission/snowfield/dorms/dorm16 - name = "Room 16" - -/area/awaymission/snowfield/dorms/panicroom - name = "Panic Room" - icon_state = "purple" - requires_power = 0 - -//commandroom - -/area/awaymission/snowfield/command/server - name = "Server/Blackbox Room" - icon_state = "dark128" - requires_power = 0 - -/area/awaymission/snowfield/command/bridge - name = "Main Control/Monitoring Room" - icon_state = "bridge" - -/area/awaymission/snowfield/command/observatory_path - name = "Observation Hallway" - icon_state = "entry_4" - -/area/awaymission/snowfield/command/observatory - name = "Observation Room" - icon_state = "research" - requires_power = 0 - -/area/awaymission/snowfield/command/testroom - name = "Testing Chamber" - icon_state = "thunder" - requires_power = 0 - -/area/awaymission/snowfield/command/commandarmory - name = "Emergency Armory" - icon_state = "armory" - -/area/awaymission/snowfield/command/monitorroom - name = "BSA Monitoring Room" - icon_state = "entry_1" - -/area/awaymission/snowfield/command/sub_chamber - name = "BSA Sub-Chamber" - icon_state = "entry_2" - -/area/awaymission/snowfield/command/gateway - name = "BSA-Gateway Chamber" - icon_state = "teleporter" - -/area/awaymission/snowfield/command/bsa - name = "BSA Chamber" - icon_state = "security_sub" - requires_power = 0 - -//Limited function - -/area/awaymission/snowfield/base // Limiting powered areas - icon_state = "away" - requires_power = 0 - power_equip = 1 - power_environ = 1 - power_light = 1 - -/area/awaymission/snowfield/powerless // Limiting powered areas - icon_state = "darkred" - always_unpowered = 1 - power_equip = 0 - power_environ = 0 - power_light = 0 - -// -- Items -- // - -// For fake solar power. -/obj/machinery/power/fractal_reactor/fluff/smes - name = "power storage unit" - desc = "A high-capacity superconducting magnetic energy storage (SMES) unit. The controls are locked." - icon_state = "smes" - -//For fake engine -/obj/machinery/power/rtg/fake_reactor - name = "Nuclear Reactor" - desc = "PTTO-3, an industrial all-in-one nuclear power plant by Neo-Chernobyl GmbH. The controls are locked." - power_gen = 150000 - icon_state = "potatoon" - -/obj/effect/landmark/away - name = "awaystart" - -//Gateway mission exclusive special loot - -/obj/item/gun/projectile/automatic/serdy/sr25c - name = "SR-25 Carbine" - icon_state="m4" - desc = "Heavily modified, this gun uses 7.62mm rather than 5.54mm and still has its automated fire mode. Equipped with suppressor, telescopic sight and the red dot sight on its side, it has a capability of handling the CQC and both in long range combat, without making much noises. Multi-dozens of accessories provides the improvement on the recoil, too. An old terran flag stamp and a spec-ops mark on the receiver approves its authentic state. Unmodified, cheep slack-off can be found just about everywhere, but this versions are very hard to come by. Chambered in 7.62x51mm." - description_info = "This is a ballistic weapon. To fire the weapon, ensure your intent is *not* set to 'help', have your gun mode set to 'fire', then click where you want to fire. To reload, click the weapon in your hand to unload (if needed), then add the appropriate ammo. To use the scope, use the appropriate verb in the object tab. The description will tell you what caliber you need." - caliber = "7.62mm" - magazine_type = /obj/item/ammo_magazine/m762 - allowed_magazines = list(/obj/item/ammo_magazine/m762, /obj/item/ammo_magazine/m762m) - projectile_type = /obj/item/projectile/bullet/rifle/a762 - firemodes = list( - list(mode_name="semiauto", burst=1, fire_delay=0, move_delay=null, burst_accuracy=null, dispersion=null), - list(mode_name="3-round bursts", burst=3, fire_delay=null, move_delay=4, burst_accuracy=list(0,-5,-5), dispersion=list(0.0, 0.2, 0.4)) - ) - auto_loading_type = CLOSED_BOLT | LOCK_OPEN_EMPTY | LOCK_SLAPPABLE - load_method = MAGAZINE - muzzle_velocity = 880 - w_class = ITEMSIZE_HUGE - actions_types = list(/datum/action/item_action/use_scope) - accuracy = 10 - scoped_accuracy = 20 - one_handed_penalty = 65 - silenced = 1 - recoil = 0.5 - -/obj/item/gun/projectile/automatic/serdy/sr25c/ui_action_click() - scope() - -/obj/item/gun/projectile/automatic/serdy/sr25c/verb/scope() - set category = "Object" - set name = "Use Scope" - set popup_menu = 1 - - toggle_scope(2.0) - -/obj/item/gun/launcher/scopedrocket - name = "scoped rocket launcher" - desc = "Upon looking into the scope, you see the word on its center: MAGGOT." - icon_state = "rocket" - item_state = "rocket" - w_class = ITEMSIZE_HUGE //CHOMP Edit. - actions_types = list(/datum/action/item_action/use_scope) - scoped_accuracy = 20 - one_handed_penalty = 150 //Good luck shooting one handed. - throw_speed = 2 - throw_range = 10 - force = 5.0 - slot_flags = 0 - origin_tech = list(TECH_COMBAT = 8, TECH_MATERIAL = 5) - fire_sound = 'sound/weapons/rpg.ogg' - - release_force = 15 - throw_distance = 30 - var/max_rockets = 1 - var/list/rockets = new/list() - -/obj/item/gun/launcher/scopedrocket/examine(mob/user) - . = ..() - if(get_dist(user, src) <= 2) - . += "[rockets.len] / [max_rockets] rockets." - -/obj/item/gun/launcher/scopedrocket/attackby(obj/item/I as obj, mob/user as mob) - if(istype(I, /obj/item/ammo_casing/rocket)) - if(rockets.len < max_rockets) - user.drop_item() - I.loc = src - rockets += I - to_chat(user, span_blue("You put the rocket in [src].")) - to_chat(user, span_blue("[rockets.len] / [max_rockets] rockets.")) - else - to_chat(usr, span_red("[src] cannot hold more rockets.")) - -/obj/item/gun/launcher/scopedrocket/consume_next_projectile() - if(rockets.len) - var/obj/item/ammo_casing/rocket/I = rockets[1] - rockets -= I - return new I.projectile_type(src) - return null - -/obj/item/gun/launcher/scopedrocket/handle_post_fire(mob/user, atom/target) - message_admins("[key_name_admin(user)] fired a rocket from a rocket launcher ([src.name]) at [target].") - log_game("[key_name_admin(user)] used a rocket launcher ([src.name]) at [target].") - ..() - -/obj/item/gun/launcher/scopedrocket/ui_action_click() - scope() - -/obj/item/gun/launcher/scopedrocket/verb/scope() - set category = "Object" - set name = "Use Scope" - set popup_menu = 1 - - toggle_scope(2.0) - -//Lore Notes - -/obj/item/paper/awaygate/snowfield/evacuation_order - name = "Order Directives" - info = "
HIGH PRIORITY ORDERS


ORDERS \ - TO ALL CLASS 1, 2, 3 PERSONNEL
Date of Order : April 10, 1979.



\ - Directives : Evacuation preparation from Facility.
All related personnel, EXCLUDING 3M personnel \ - must head to Chelyabinsk until 2100, April 10 and await for further directives.
Base MUST \ - maintain necessary items only.


Further directives and details shall be guided by Class 4 \ - or above personnel." - -/obj/item/paper/awaygate/snowfield/evacuation_order2 - name = "Mid Command Order Directives" - info = "
HIGH PRIORITY ORDERS


ORDERS \ - TO ALL CLASS 4 PERSONNEL
Date of Order : April 10, 1979.



\ - Directives : Evacuation preparation from Facility.
All class 1,2,3 personnel must head to \ - Chelyabinsk and empty the facility, EXCLUDING Medical team. (3M)
Base MUST maintain necessary items only \ - to operate 'Tunguska' and supplies for the crews who remains. 'Tunguska' Activation time at 0300, April 11, \ - 1979.


Further directives and details shall be guided by Class 6 or above personnel." - -/obj/item/paper/awaygate/snowfield/evacuation_order3 - name = "High Command Order Directives" - info = "
HIGH PRIORITY ORDERS


ORDERS \ - TO ALL CLASS 5, 6 PERSONNEL
Date of Order : April 10, 1979.



\ - Directives : Evacuation preparation from Facility.
All Class 1, 2, 3 personnel must head to \ - Chelyabinsk and empty the facility, excluding Class 3M, guided by Class 4 personnel.
All Class 5, 6 must \ - check the stabiity of 'Tunguska' before the operation. Activation time at 0300, April 11, 1979.
" - -/obj/item/paper/awaygate/snowfield/activation_order - name = "High Command Order Directives" - info = "
HIGH PRIORITY ORDERS


ORDERS \ - TO ALL CLASS 5, 6 PERSONNEL
Date of Order : April 11, 1979.



\ - Directives : Activation of 'Tunguska.'
All class 5, 6 personnel must have a full search by \ - Class 4 before entering the operation room.
Any personnel who is not on the operations area shall \ - be terminated on the spot. Notify to nearest Class 4 and 6 personnel if necessary.


Further directives \ - and details shall be guided by Class 6 Personnel." - -/obj/item/paper/awaygate/snowfield/interrogation - name = "Interrogation note" - info = "(Recording Start)
(00:00) This is Yemelyan Fedoro, the Warden of Sector 108.
(00:09) Time of the \ - record...
(00:14) Twenty one-Fourty.
(00:17) Three months of interrogation is finally coming up with \ - a progress.
(00:20) The lizard finally speaks, telling us the key points of the blueprint.
(00:25) \ - There are missing important componant followed by the blueprint,
(00:32) however, we may manage to get enough \ - from the asteroid back from 1908.
(00:39) Exactly what the research team needs, whatever they say. Something \ - they won't be able to get in their lifetime, what they say. (00:52) Vlad is just using the lizard as their \ - Punching bag, now. (00:59) Gosh, their screams are worser than my grandma. Who would know an overgrown lizard \ - would sound like that..
(01:07) Best to finish up, now. We can get more informations from'em. Yemelyan Fedoro, out." - -/obj/item/paper/awaygate/snowfield/note // Little easter egg for appreciation. - desc = "A gift card with a heart on the cover. Hey, there's a scribble on its back..." - name = "letter" - icon_state = "greetingcard_heart" - info = "
Congradulations!


You have just found a paper that \ - was sitting at out of nowhere.
Let there be a celebration to you, finding this tiny paper. But leaving this empty \ - will be awkward, so, some few honorable mentions shall be here.

Maker of the Map: H.K

Huge \ - Emotional Support (And my life changer): BlackMajor, Salty S

Supporters in the most troubled times: \ - BlackMajor, Ender, Jack, Lone/Einarr, Mango, Nickner, Salty S, Serdy, Skitz, Verkister

Helpers on the map work: \ - BlackMajor, Blitzkrieg, Dan 'Clanker' Neposh, Kassc, Mango, Rykka Stormheart, Salty S, Serdy, Verkister

\ - Map recovery helper (Curse you github, almost deleting the project): BlackMajor, Helmian, Jennard.L, Kashtan
\ - Also, not to forget - Huge thank you to:You, who is reading this note.


Let this be my 25c to remember." - -/obj/item/paper/awaygate/snowfield/diary - desc = "A part of a ripped paper, likely from the book." - name = "diary, 18 of January, 1971" - info = "Dear diary.

This will be the last diary I write in this little outpost.

Militsiya \ - has came today, to this middle-out-of-nowhere outpost,
telling us to leave at once.
Thankfully, \ - cave is almost dry of coal, and Dmitry wasn't drunk for once just by the time militsiya came. \ - Thank goodness.
What the militsiya says it is from the government's orders. We had to leave \ - sometime soon and find another coal vein, anyways.

Anatoly, two days ago, said he saw the army \ - truck passing by few times around the mountains, so I think this is one of it.

Best to \ - take our stuffs tomorrow. And some vodka bottles I have hidden.



BLAST, \ - IT'S EMPTY! DIMITRY, THAT SCUMBAG - HOW DID HE EVEN KNEW THE BOTTLE'S THERE?!" diff --git a/maps/southern_sun/submaps/gateway/snowfield.dmm b/maps/southern_sun/submaps/gateway/snowfield.dmm deleted file mode 100644 index 94713af3de..0000000000 --- a/maps/southern_sun/submaps/gateway/snowfield.dmm +++ /dev/null @@ -1,94753 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aas" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm10) -"aaw" = ( -/obj/item/material/shard/shrapnel{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/security/firingrange) -"aaA" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/light/flicker, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"aaH" = ( -/obj/effect/landmark/gateway_scatter, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"aaO" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"abv" = ( -/obj/structure/catwalk, -/obj/machinery/light/small/flicker, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"acD" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"acY" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"adq" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/service/publicstaff) -"adK" = ( -/obj/random/junk, -/obj/machinery/light_construct/small{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"aeL" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell_hallway) -"aeZ" = ( -/obj/machinery/computer/station_alert, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"afc" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/bookcase, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/staff_room) -"afo" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"afA" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"afW" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/dorms/dorm15) -"agi" = ( -/obj/structure/fence/post, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"ago" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Cells"; - req_access = list(1) - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/snowfield/security/security_cell_hallway) -"agT" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"ahu" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet/secure_closet/engineering_welding{ - req_access = null; - req_one_access = list(10,11) - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/locker_room) -"ahK" = ( -/obj/structure/table/standard, -/obj/structure/bedsheetbin, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"ahY" = ( -/obj/structure/closet{ - closet_appearance = /decl/closet_appearance/bio; - name = "Level-3 Biohazard Closet"; - opened = 1 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/monitorroom) -"aip" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "empty north bump"; - pixel_y = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"aiv" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bridge) -"aiX" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "snowfield bsa maints"; - name = "BSA Maintenance Window Lockdown"; - pixel_x = 5; - req_one_access = list(1,11,20) - }, -/obj/machinery/light/flicker{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/remote/blast_door{ - id = "snowfield bsa access"; - name = "BSA Entry Access"; - pixel_x = -5; - req_one_access = list(20,56) - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/gateway) -"ajG" = ( -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/engine_checkpoint) -"ajH" = ( -/obj/machinery/gibber, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/service/fridge) -"ajN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/firstaid/adv{ - starts_with = list(/obj/item/stack/medical/advanced/bruise_pack,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/stack/medical/advanced/ointment,/obj/item/stack/medical/advanced/ointment,/obj/item/stack/medical/advanced/ointment) - }, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"akM" = ( -/mob/living/simple_mob/construct/shade, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/hallway/commandhallway) -"akX" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/charger) -"alL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/card/id/gateway/snowfield/class5R, -/mob/living/simple_mob/faithless/cult{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"alU" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"alY" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"amg" = ( -/obj/item/storage/box/flashbangs, -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"aml" = ( -/obj/item/stool/padded, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm14) -"amp" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/rack/shelf/steel, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/plastic, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"amu" = ( -/obj/structure/catwalk, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"amD" = ( -/obj/structure/bed/chair/oldsofa/right, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"amU" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass{ - name = "Lounge" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/service/publicstaff) -"amZ" = ( -/obj/structure/fence/door{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"aow" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm5) -"aqv" = ( -/obj/structure/door_assembly/door_assembly_eng, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/hallway) -"aqB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/charger) -"aqV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cult/tome, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"arp" = ( -/obj/machinery/computer/security/engineering, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"arr" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/construct/harvester{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"art" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/card/id/gateway/snowfield/class3M, -/obj/structure/bed/chair/wheelchair{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"aru" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/medical_restroom) -"arw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory_entrance) -"arB" = ( -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/checkpointunpowered) -"arL" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"asJ" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/dorms/dorm13) -"asS" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"atv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"atx" = ( -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/security/security_cell) -"auq" = ( -/obj/machinery/computer, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/server) -"auz" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"avt" = ( -/obj/structure/filingcabinet, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"axv" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/obj/item/bone/skull/unathi, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"axS" = ( -/obj/machinery/door/blast/regular{ - density = 0; - health = 0; - icon_state = "pdoor0"; - id = "snowfield fourth pathway lock"; - opacity = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"ayp" = ( -/obj/structure/table/rack, -/obj/item/clothing/accessory/holster/leg, -/obj/item/clothing/accessory/holster/leg, -/obj/item/clothing/accessory/holster/leg, -/obj/item/clothing/accessory/holster/leg, -/obj/item/clothing/accessory/holster/leg, -/obj/item/clothing/accessory/holster/leg, -/obj/item/clothing/accessory/holster/leg, -/obj/item/clothing/accessory/holster/leg, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"ayB" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/southhallway) -"ayG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/engineering_welding{ - req_access = null; - req_one_access = list(10,11) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/locker_room) -"ayK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/outside) -"ayQ" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "17" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"azx" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/table/standard, -/obj/machinery/light, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"azz" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"aAf" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/toolstroage2) -"aAq" = ( -/obj/structure/lattice, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/hallway/southhallway) -"aAZ" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"aBl" = ( -/obj/item/stool, -/obj/machinery/light, -/obj/item/card/id/gateway/snowfield/class2, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm7) -"aBn" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/engineering/restroom) -"aBy" = ( -/turf/simulated/mineral, -/area/awaymission/snowfield/security/firingrange) -"aCh" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/dorms/dorm14) -"aDg" = ( -/obj/structure/bed/padded, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/security_cell) -"aDx" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/item/gun/projectile/automatic/serdy/mosin, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"aDF" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"aDO" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"aEn" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/public/toolstorage1) -"aFH" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/bridge) -"aFI" = ( -/obj/item/material/ashtray/glass, -/obj/item/radio/phone, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"aGe" = ( -/obj/machinery/door/window/brigdoor/northleft{ - health = 1e+006; - req_access = null; - req_one_access = list(108) - }, -/obj/machinery/door/window/brigdoor/southleft{ - health = 1e+006; - req_access = null; - req_one_access = list(108) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/structure/fans/tiny, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/server) -"aGE" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"aHk" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"aHu" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm4) -"aHD" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/sub_chamber) -"aHQ" = ( -/obj/structure/table/reinforced, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"aHT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"aIt" = ( -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 35 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/engineering/restroom) -"aJI" = ( -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/trash/material/metal, -/obj/structure/table, -/obj/item/material/shard/shrapnel{ - pixel_x = 8; - pixel_y = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"aKn" = ( -/obj/machinery/door/airlock/glass{ - name = "Cafeteria" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/cafeteria) -"aKG" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/hallway/commandhallway) -"aKI" = ( -/obj/machinery/door/airlock/security, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/snowfield/security/hallway2) -"aKJ" = ( -/obj/structure/fence, -/obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"aLx" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/closet/l3closet/general{ - opened = 1; - starts_with = null - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"aLI" = ( -/obj/structure/table/glass, -/obj/item/towel/random, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"aLO" = ( -/obj/effect/landmark/corpse/security{ - corpseback = /obj/item/storage/backpack/satchel/military; - corpsebelt = /obj/item/storage/belt/security/tactical; - corpseglasses = /obj/item/clothing/glasses/night; - corpsegloves = /obj/item/clothing/gloves/tactical; - corpsehelmet = /obj/item/clothing/head/helmet/combat; - corpseidaccess = "Syndicate"; - corpseidjob = "N/A"; - corpsemask = /obj/item/clothing/mask/balaclava; - corpsepocket1 = /obj/item/binoculars; - corpsepocket2 = /obj/item/camerabug/spy; - corpseradio = /obj/item/radio/headset; - corpseshoes = /obj/item/clothing/shoes/boots/combat; - corpsesuit = /obj/item/clothing/suit/armor/pcarrier/bulletproof/full; - corpseuniform = /obj/item/clothing/under/tactical; - gender = "male"; - mobname = "Colt Finnlay"; - name = "Colt Finnlay" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"aMa" = ( -/obj/structure/coatrack, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"aMo" = ( -/turf/simulated/gore, -/area/awaymission/snowfield/command/bridge) -"aMr" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/security/security_cell_hallway) -"aMQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"aNw" = ( -/obj/item/stool, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm1) -"aNA" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "11" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"aNJ" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/public/toolstorage1) -"aOC" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border, -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/obj/machinery/vending/sovietsoda{ - dir = 1 - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"aON" = ( -/turf/simulated/floor/water/deep, -/area/awaymission/snowfield/outside) -"aPl" = ( -/obj/structure/flora/grass/both, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"aPr" = ( -/obj/item/stool/padded, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/awaymission/snowfield/security/detective) -"aPv" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm12) -"aQq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/toolstroage2) -"aQV" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "Dorms9"; - name = "Room 9" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/dorm9) -"aRB" = ( -/turf/simulated/mineral, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"aRJ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"aRX" = ( -/obj/item/stool, -/obj/item/towel/random, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm5) -"aSi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/blue, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"aSS" = ( -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/obj/item/ore/glass, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"aTz" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/button/remote/blast_door{ - id = "snowfield lab enterance lockdown"; - name = "Path Blocker Control"; - pixel_y = 23; - req_access = list(1) - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"aTT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/light_construct{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"aTZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm8) -"aVy" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm16) -"aVA" = ( -/obj/structure/flora/tree/dead, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"aWq" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/front_desk) -"aWv" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/firstaid/fire, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"aWG" = ( -/obj/item/ore/glass, -/obj/item/ore/glass, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/outside) -"aWJ" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/iv_drip, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"aWM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/green, -/obj/structure/cable/heavyduty{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway_substation) -"aXd" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"aXm" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "The Pit"; - req_one_access = list(1) - }, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"aXu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/remains/human, -/obj/item/gun/projectile/automatic/serdy/mosin, -/obj/item/card/id/gateway/snowfield/class4, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"aXS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/rack/shelf/steel, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"aXY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/hydro) -"aYT" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"aYZ" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/sub_chamber) -"aZA" = ( -/obj/item/circuitboard/broken, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/sub_chamber) -"bat" = ( -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/console_screen, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"bbF" = ( -/obj/machinery/door/blast/regular{ - id = "snowfield second blast" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/checkpointhallway) -"bcr" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"bcu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/security/security_cell) -"bcy" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm14) -"bdI" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/clipboard, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"beI" = ( -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/service/hydro) -"beV" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/testroom) -"beW" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/structure/closet/secure_closet/paramedic{ - req_access = list(33); - starts_with = list(/obj/item/storage/backpack/dufflebag/emt,/obj/item/storage/box/autoinjectors,/obj/item/storage/box/syringes,/obj/item/reagent_containers/glass/bottle/inaprovaline,/obj/item/reagent_containers/glass/bottle/antitoxin,/obj/item/storage/belt/medical/emt,/obj/item/clothing/mask/gas,/obj/item/clothing/suit/storage/toggle/fr_jacket,/obj/item/clothing/suit/storage/toggle/labcoat/emt,/obj/item/clothing/suit/storage/hooded/wintercoat/medical/para,/obj/item/radio/headset/headset_med/alt,/obj/item/storage/briefcase/inflatable,/obj/item/flashlight,/obj/item/tank/emergency/oxygen/engi,/obj/item/radio/off,/obj/item/tool/crowbar,/obj/item/extinguisher/mini,/obj/item/storage/box/freezer,/obj/item/clothing/accessory/storage/white_vest,/obj/item/taperoll/medical) - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"beX" = ( -/obj/structure/catwalk, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Interrogation Tool"; - req_access = null; - req_one_access = list(2,5) - }, -/mob/living/simple_mob/animal/passive/chicken, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"beY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/boulder, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"bfk" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/command/gateway) -"bgj" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"bhz" = ( -/obj/structure/table/steel, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/charger) -"bhQ" = ( -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/item/ore/diamond, -/obj/item/ore/diamond, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"bhT" = ( -/obj/structure/cult/talisman, -/obj/item/paper/awaygate/snowfield/activation_order, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bridge) -"biq" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"biJ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"bjz" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/outside) -"bjA" = ( -/obj/item/gun/projectile/automatic/serdy/mosin, -/obj/item/ammo_casing/spent{ - pixel_x = -4; - pixel_y = -7 - }, -/obj/item/ammo_casing/spent, -/obj/item/ammo_casing/spent{ - pixel_x = -3; - pixel_y = 10 - }, -/obj/item/ammo_casing/spent{ - pixel_x = -12; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/northhallway) -"bjO" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"bjR" = ( -/obj/machinery/computer, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/snowfield/command/bridge) -"bjT" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"bjV" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/heavyduty, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"bjY" = ( -/obj/item/pen/blade/red, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_construct/small, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/checkpointunpowered) -"bke" = ( -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"bkM" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/structure/closet/secure_closet/medical_wall{ - name = "O- Blood Locker"; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"blf" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory_entrance) -"bmw" = ( -/obj/structure/outcrop, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"bnk" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/table/standard, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"bnD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/rack/shelf/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/item/clothing/suit/fire/heavy{ - armor = list("melee"=10,"bullet"=0,"laser"=0,"energy"=5,"bomb"=0,"bio"=0,"rad"=60); - desc = "Over a suit that protects against extreme fire and heat, this seems to be having a thin layer of coating underneath, providing additional protection against radiation." - }, -/obj/item/clothing/suit/fire/heavy{ - armor = list("melee"=10,"bullet"=0,"laser"=0,"energy"=5,"bomb"=0,"bio"=0,"rad"=60); - desc = "Over a suit that protects against extreme fire and heat, this seems to be having a thin layer of coating underneath, providing additional protection against radiation." - }, -/obj/item/geiger, -/obj/item/clothing/head/hardhat/firefighter/atmos, -/obj/item/clothing/head/hardhat/firefighter/atmos, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/locker_room) -"boG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/cavern) -"bpn" = ( -/obj/item/ore/verdantium, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"bpo" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"bpJ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"bpX" = ( -/obj/structure/flora/tree/pine, -/obj/structure/flora/tree/pine, -/obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"bqj" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/solarshack) -"bqm" = ( -/obj/structure/lattice, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/construct/artificer{ - devourable = 0 - }, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/dorms/panicroom) -"bqA" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm4) -"bqR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/service/cafeteria) -"bqV" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"brj" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/command/bridge) -"brq" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm10) -"bsc" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"bsl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 26 - }, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"bsH" = ( -/obj/structure/fence, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"btO" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"buE" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm8) -"buF" = ( -/obj/structure/cable/yellow, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/power/apc{ - dir = 8; - name = "empty west bump"; - pixel_x = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm13) -"buJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell_hallway) -"bvd" = ( -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/cavern) -"bvf" = ( -/obj/structure/table/rack/shelf/steel, -/obj/structure/window/reinforced, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"bvj" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm12) -"bvp" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/vending/sovietvend, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"bvS" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"bxk" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/interrogation) -"bxC" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"bxE" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/security/armory_entrance) -"byc" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/security/security_cell_hallway) -"byq" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm16) -"byr" = ( -/obj/machinery/vending/hydronutrients{ - dir = 8; - pixel_x = 5 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"byw" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/panicroom) -"byD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"byG" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"byM" = ( -/obj/structure/cable/heavyduty{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"bzE" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"bAl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"bAP" = ( -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"bAQ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"bAX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall, -/area/awaymission/snowfield/checkpointunpowered) -"bAY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/awaymission/snowfield/engineering/staff_room) -"bBa" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"bBr" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm2) -"bBL" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm5) -"bBU" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering, -/turf/simulated/floor, -/area/awaymission/snowfield/checkpointunpowered) -"bBV" = ( -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bsa) -"bCH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/centerhallway) -"bCY" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "Dorms8"; - name = "Room 8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/dorm8) -"bDb" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/tech_storage) -"bDr" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/armory) -"bDs" = ( -/obj/machinery/door/blast/regular{ - id = "snowfield testlab entrance" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/commandhallway) -"bDz" = ( -/obj/machinery/gateway{ - dir = 4 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"bDK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm14) -"bEQ" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/gateway) -"bEY" = ( -/turf/simulated/floor/cult, -/area/awaymission/snowfield/public/toolstroage2) -"bFc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/boulder, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"bFn" = ( -/obj/structure/outcrop, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"bGn" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = -5 - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"bGo" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/observatory) -"bGr" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/blue, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"bGu" = ( -/obj/structure/railing/grey, -/turf/simulated/floor/water/deep, -/area/awaymission/snowfield/outside) -"bGI" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/security, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield sec front blast"; - opacity = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"bGK" = ( -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/testroom) -"bHz" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket/wood, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"bJm" = ( -/obj/structure/flora/grass/both, -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"bJp" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "Dorms16"; - name = "Room 16" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/dorm16) -"bJC" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"bKe" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet{ - closet_appearance = /decl/closet_appearance/bio; - name = "Level-3 Biohazard Closet" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/locker_room) -"bKx" = ( -/obj/structure/window/reinforced/tinted/frosted, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/security/detective) -"bKK" = ( -/obj/item/trash/material/metal, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/ammo_box/b12g/flechette, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/commandarmory) -"bKO" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"bLf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm10) -"bLl" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"bLK" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/public/toolstorage1) -"bLU" = ( -/obj/structure/closet/secure_closet/guncabinet{ - opened = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"bLV" = ( -/obj/effect/spider/stickyweb, -/obj/machinery/light/small/flicker{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/interrogation) -"bMc" = ( -/turf/simulated/wall/cult, -/area/awaymission/snowfield/command/bsa) -"bMi" = ( -/obj/machinery/vending/coffee{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"bMx" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm5) -"bMS" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"bNc" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"bNA" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/radio/phone, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"bOj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/snowfield/security/armory_entrance) -"bOp" = ( -/turf/simulated/wall/solidrock{ - block_tele = 0 - }, -/area/awaymission/snowfield/command/observatory_path) -"bPf" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "empty south bump"; - pixel_y = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/tech_storage) -"bPg" = ( -/obj/structure/cable/heavyduty{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/flora/grass/brown, -/obj/structure/catwalk, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"bPF" = ( -/obj/machinery/door/airlock/hatch{ - name = "Server Control Room"; - req_access = list(61); - req_one_access = list(61) - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular{ - id = "snowfield sr access" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/server) -"bQl" = ( -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"bRJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell_hallway) -"bSm" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/monitorroom) -"bSM" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider/ion, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"bTj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm15) -"bTs" = ( -/obj/machinery/button/remote/blast_door{ - id = "snowfield test observation"; - name = "Test Chamber Observation Access"; - pixel_y = 26 - }, -/obj/structure/lattice, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/command/observatory_path) -"bTS" = ( -/turf/simulated/wall{ - can_open = 1 - }, -/area/awaymission/snowfield/engineering/locker_room) -"bTZ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning, -/obj/item/ammo_casing/spent, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"bUb" = ( -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"bUl" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/spider/stickyweb, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"bUq" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm12) -"bUr" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"bVx" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm15) -"bVG" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/public/cafeteria_restroom) -"bWz" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/hallway/commandhallway_substation) -"bXG" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/testroom) -"bXH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"bYx" = ( -/obj/structure/sink/kitchen{ - pixel_y = 17 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/engineering/restroom) -"bYA" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "Dorms7"; - name = "Room 7" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/dorm7) -"bYP" = ( -/obj/structure/table/steel_reinforced, -/obj/item/radio/phone, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"bYR" = ( -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/water/deep, -/area/awaymission/snowfield/outside) -"bYW" = ( -/obj/effect/floor_decal/industrial/danger, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"bZd" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/ammo_casing/spent, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"bZn" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/security/firingrange) -"bZx" = ( -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/cloth, -/obj/fiftyspawner/log, -/obj/fiftyspawner/log, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"bZP" = ( -/turf/simulated/floor/outdoors/ice, -/area/awaymission/snowfield/outside) -"bZV" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"caD" = ( -/obj/structure/table/steel_reinforced, -/obj/item/surgical/surgicaldrill, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"ccE" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"ccW" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/patient_restroom) -"cdN" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - name = "empty south bump"; - pixel_y = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/patient_restroom) -"ceH" = ( -/obj/random/tech_supply, -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 10 - }, -/obj/random/tech_supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/public/toolstorage1) -"ceJ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/interrogation) -"cfD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/snowfield/security/warden) -"cfL" = ( -/obj/machinery/oxygen_pump/mobile/anesthetic, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"cgp" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/hallway/commandhallway) -"cgy" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"cgD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/secure_tech_storage) -"cgH" = ( -/obj/structure/bed/chair/oldsofa{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"cgM" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm6) -"chG" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/light_construct{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/gateway) -"chX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/engine_checkpoint) -"cip" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/engineering/restroom) -"ciA" = ( -/obj/structure/table/steel_reinforced, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm2) -"ciN" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/light_construct{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"ciQ" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/cap/visible{ - dir = 8 - }, -/obj/machinery/power/rtg/fake_reactor, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/engineering/engine) -"ciR" = ( -/obj/structure/table/reinforced, -/obj/item/radio/phone, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"cji" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/circuitboard/destructive_analyzer, -/obj/item/circuitboard/protolathe, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"cju" = ( -/mob/living/simple_mob/vore/rabbit/white, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"cjJ" = ( -/obj/structure/bed/chair/oldsofa/left, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"ckr" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"ckB" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood/broken, -/area/awaymission/snowfield/checkpointunpowered) -"cle" = ( -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/toolstroage2) -"clO" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/ammo_casing/spent{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/ammo_casing/a762x54{ - pixel_x = -3; - pixel_y = -8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"cmo" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/observatory_path) -"cmU" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/quickdraw/syringe_case, -/obj/item/storage/quickdraw/syringe_case, -/obj/item/storage/quickdraw/syringe_case, -/obj/item/storage/quickdraw/syringe_case, -/obj/item/storage/quickdraw/syringe_case, -/obj/item/storage/quickdraw/syringe_case, -/obj/item/storage/quickdraw/syringe_case, -/obj/item/storage/quickdraw/syringe_case, -/obj/item/storage/quickdraw/syringe_case, -/obj/item/storage/quickdraw/syringe_case, -/obj/item/storage/quickdraw/syringe_case, -/obj/item/storage/quickdraw/syringe_case, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"cnh" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/structure/reagent_dispensers/water_cooler/full{ - dir = 8; - pixel_x = 6 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"cnp" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"cnr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"cnS" = ( -/obj/structure/closet/radiation, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"con" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"cou" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/observatory_path) -"cpd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/material/shard/shrapnel{ - pixel_x = -3; - pixel_y = -7 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/checkpointunpowered) -"cpB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"cpS" = ( -/obj/item/ore/glass, -/obj/item/ore/glass, -/obj/item/ore/glass, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"cqc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"cqC" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/arrows{ - dir = 4 - }, -/obj/item/material/shard/shrapnel{ - pixel_x = 12; - pixel_y = -5 - }, -/obj/item/material/shard/shrapnel, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"cri" = ( -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"crN" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/decal/cleanable/flour, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"csh" = ( -/obj/effect/decal/remains/human, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"csk" = ( -/obj/machinery/computer/rcon, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"csK" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/hallway) -"csT" = ( -/obj/machinery/computer, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/monitorroom) -"ctp" = ( -/turf/simulated/floor/gorefloor, -/area/awaymission/snowfield/command/gateway) -"ctZ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/remains/deer, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/hallway/commandhallway) -"cuv" = ( -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/rods, -/obj/fiftyspawner/rods, -/obj/fiftyspawner/rods, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"cuw" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/southhallway) -"cuP" = ( -/obj/structure/girder/cult, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"cuU" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/locker_room) -"cvV" = ( -/obj/structure/morgue, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"cvY" = ( -/obj/structure/table/wooden_reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper/awaygate/snowfield/evacuation_order2, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm11) -"cwI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/security/hallway2) -"cxh" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/marble, -/obj/machinery/reagentgrinder, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"cxk" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/patient_restroom) -"cxN" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/structure/bed/chair/wheelchair, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"cye" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"cyf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"cyr" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"cyK" = ( -/obj/effect/floor_decal/borderfloor, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/gateway) -"cyO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/gateway) -"czk" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"czr" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"czs" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"czv" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/stickyweb, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"cBr" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access = null; - req_one_access = null - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"cBQ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"cCf" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"cCA" = ( -/obj/machinery/door/blast/gate/open, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/outside) -"cCM" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/security/hallway2) -"cCT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/outside) -"cDP" = ( -/obj/structure/closet/secure_closet/warden{ - starts_with = list(/obj/item/clothing/gloves/combat,/obj/item/clothing/accessory/holster,/obj/item/storage/belt/security,/obj/item/shield/riot,/obj/item/ammo_magazine/akm=2,/obj/item/gun/projectile/automatic/serdy/krinkov,/obj/item/clothing/head/beret/sec/corporate/warden,/obj/item/clothing/head/helmet/warden/hat,/obj/item/clothing/head/helmet/warden,/obj/item/clothing/suit/armor/swat/officer,/obj/item/radio/headset/heads/hos/alt,/obj/item/radio/headset/heads/hos,/obj/item/storage/backpack/security,/obj/item/storage/backpack/satchel/sec,/obj/item/clothing/shoes/boots/marine,/obj/item/ammo_magazine/s357=2,/obj/item/gun/projectile/revolver/nagant/skinned,/obj/item/clothing/under/soviet,/obj/item/reagent_containers/spray/pepper,/obj/item/melee/classic_baton) - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"cEo" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm2) -"cEx" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/item/multitool, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"cER" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"cFL" = ( -/obj/item/stack/rods{ - pixel_x = -7; - pixel_y = -10 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/sub_chamber) -"cGx" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"cGR" = ( -/turf/simulated/floor/flesh, -/area/awaymission/snowfield/command/gateway) -"cGS" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"cHx" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm10) -"cIk" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"cIw" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"cIz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"cJn" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/machinery/light, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"cJB" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"cKO" = ( -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/cavern) -"cLC" = ( -/obj/item/ore/glass, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/outside) -"cLD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"cLR" = ( -/obj/structure/table/steel, -/obj/machinery/recharger, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/charger) -"cMa" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/multitool, -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"cMe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ore/glass, -/obj/item/ore/glass, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"cMA" = ( -/obj/machinery/light_construct{ - dir = 1 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"cMG" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm7) -"cNu" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood, -/obj/item/tool/crowbar/red, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"cNE" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "7" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"cNS" = ( -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"cPE" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/item/material/kitchen/rollingpin, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"cPO" = ( -/obj/item/card/id/gateway/snowfield/class5E, -/mob/living/simple_mob/construct/artificer/caster{ - devourable = 0 - }, -/turf/simulated/floor/gorefloor2, -/area/awaymission/snowfield/command/bridge) -"cQg" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"cQm" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/closet/secure_closet/security{ - starts_with = list(/obj/item/clothing/gloves/black,/obj/item/clothing/accessory/holster,/obj/item/storage/belt/security,/obj/item/clothing/head/beret/sec/corporate/officer,/obj/item/clothing/head/helmet,/obj/item/radio/headset/headset_sec/alt,/obj/item/radio/headset/headset_sec,/obj/item/radio/off,/obj/item/storage/backpack/security,/obj/item/storage/backpack/satchel/sec,/obj/item/clothing/shoes/boots/marine,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/under/soviet,/obj/item/reagent_containers/spray/pepper,/obj/item/melee/classic_baton,/obj/item/ammo_magazine/makarov=2,/obj/item/gun/projectile/serdy_pistols/makarov) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_lockerroom) -"cQE" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"cQM" = ( -/obj/structure/catwalk, -/obj/machinery/oxygen_pump/mobile/anesthetic, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"cQT" = ( -/obj/item/bone/leg, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/hallway/commandhallway) -"cQZ" = ( -/obj/effect/spider/stickyweb, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/snowfield/medical/staff_room) -"cRf" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"cRx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/security/security_cell) -"cSr" = ( -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"cSU" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/catwalk, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"cTa" = ( -/obj/machinery/door/blast/gate, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"cTE" = ( -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/security/security_cell) -"cTK" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/item/stack/rods{ - pixel_x = 10; - pixel_y = -4 - }, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/monitorroom) -"cTX" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/machinery/door/window/southright{ - name = "Shower" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"cVa" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/sub_chamber) -"cVu" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm3) -"cVw" = ( -/obj/structure/flora/rocks1, -/turf/simulated/floor/outdoors/ice, -/area/awaymission/snowfield/outside) -"cWo" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/cap/visible{ - dir = 4 - }, -/obj/machinery/power/rtg/fake_reactor, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/engineering/engine) -"cWP" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/corner/grey/bordercorner, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"cWY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/hallway/commandhallway) -"cXi" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"cXK" = ( -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/medical_restroom) -"cXL" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/bed/chair/wood, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"cYR" = ( -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"cZe" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/server) -"dap" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/locker_room) -"daH" = ( -/obj/structure/fence, -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"daJ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm14) -"daZ" = ( -/obj/structure/table/rack, -/obj/item/ammo_magazine/akm, -/obj/item/ammo_magazine/akm, -/obj/item/ammo_magazine/akm, -/obj/item/ammo_magazine/akm, -/obj/item/ammo_magazine/akm, -/obj/item/ammo_magazine/akm, -/obj/item/ammo_magazine/akm, -/obj/item/ammo_magazine/akm, -/obj/item/ammo_magazine/akm, -/obj/item/ammo_magazine/akm, -/obj/item/ammo_magazine/akm/ap, -/obj/item/ammo_magazine/akm/ap, -/obj/item/ammo_magazine/akm/ap, -/obj/item/ammo_magazine/akm/ap, -/obj/item/ammo_magazine/akm/ap, -/obj/item/ammo_magazine/akm/ap, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/door/window/brigdoor/eastright{ - name = "Ammo" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"dcd" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/monitorroom) -"dco" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/monitorroom) -"dcs" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"dcv" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"dcD" = ( -/obj/structure/girder/cult, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bridge) -"dcJ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"dda" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"dds" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"ddF" = ( -/obj/item/radio/phone, -/obj/machinery/light/flicker{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/snowfield/security/detective) -"ddH" = ( -/obj/structure/prop/blackbox/snowfield_base, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/server) -"ddJ" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm3) -"der" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/solarshack) -"deC" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/secure_tech_storage) -"dfd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "empty north bump"; - pixel_y = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway2) -"dfk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"dga" = ( -/turf/simulated/wall/cult, -/area/awaymission/snowfield/command/monitorroom) -"dgf" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet, -/area/awaymission/snowfield/security/detective) -"dgg" = ( -/obj/structure/table/steel_reinforced, -/obj/item/radio/phone, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/monitorroom) -"dgr" = ( -/obj/structure/catwalk, -/obj/structure/table/steel_reinforced, -/obj/item/clothing/gloves/knuckledusters, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"dgL" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/snowfield/medical/staff_room) -"dgS" = ( -/obj/structure/table/steel_reinforced, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm16) -"dhs" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm6) -"dhV" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/hallway) -"dib" = ( -/obj/structure/fence, -/obj/structure/railing, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"did" = ( -/obj/structure/lattice, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"die" = ( -/obj/structure/catwalk, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"djC" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "empty north bump"; - pixel_y = 24; - start_charge = 0 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"dke" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/snowfield/security/detective) -"dkj" = ( -/obj/machinery/vending/blood, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/surgery) -"dkB" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"dkH" = ( -/obj/structure/table/bench/wooden, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"dlm" = ( -/turf/simulated/floor/gorefloor2, -/area/awaymission/snowfield/command/bridge) -"dly" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/obj/item/card/id/gateway/snowfield/class3E, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"dlz" = ( -/obj/structure/cable/yellow, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/power/apc{ - dir = 8; - name = "empty west bump"; - pixel_x = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm6) -"dmh" = ( -/obj/structure/cable/yellow, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm2) -"dml" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"dmp" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/hallway/frontgate_substation) -"dmy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = -30 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/closet/secure_closet/guncabinet{ - opened = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"dmB" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell_hallway) -"dmZ" = ( -/obj/effect/map_helper/no_tele, -/turf/simulated/wall/solidrock{ - block_tele = 0 - }, -/area/awaymission/snowfield/restricted) -"dnp" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"dnJ" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"doC" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/card/id/gateway/snowfield/class5E, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"doM" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/table/steel_reinforced, -/obj/item/stack/material/wood{ - amount = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"dpf" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/medical/medical_locker) -"dpC" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/southhallway) -"dpO" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/item/stack/material/wood, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"dqC" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/security/frontgate) -"drk" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"dsh" = ( -/obj/structure/table/steel_reinforced, -/obj/item/radio/off{ - pixel_y = 6 - }, -/obj/item/radio/off{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/radio/off{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/item/radio/phone, -/obj/item/radio/off, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"dsB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"dtp" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm15) -"dtC" = ( -/obj/machinery/light_construct{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/construct/artificer/caster{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"dtS" = ( -/obj/machinery/power/smes/buildable{ - charge = null; - cur_coils = 4; - input_attempt = 1; - input_level = 1000000; - output_level = 750000 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway_substation) -"dtZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/coatrack, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"dub" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/hydro) -"dux" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"dvn" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "28a" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"dvx" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"dvU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/eastright{ - id = "cell2"; - name = "Cell 2"; - req_access = null; - req_one_access = list(2,4) - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/security_cell) -"dwe" = ( -/obj/structure/table/steel_reinforced, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm15) -"dxg" = ( -/obj/structure/table/steel_reinforced, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm11) -"dxs" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"dxB" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/southhallway) -"dxL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"dxX" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"dyT" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/observatory_path) -"dzh" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/suit/fire/heavy{ - armor = list("melee"=10,"bullet"=0,"laser"=0,"energy"=5,"bomb"=0,"bio"=0,"rad"=60); - desc = "Over a suit that protects against extreme fire and heat, this seems to be having a thin layer of coating underneath, providing additional protection against radiation." - }, -/obj/item/clothing/suit/fire/heavy{ - armor = list("melee"=10,"bullet"=0,"laser"=0,"energy"=5,"bomb"=0,"bio"=0,"rad"=60); - desc = "Over a suit that protects against extreme fire and heat, this seems to be having a thin layer of coating underneath, providing additional protection against radiation." - }, -/obj/item/clothing/head/hardhat/firefighter/atmos, -/obj/item/clothing/head/hardhat/firefighter/atmos, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"dzm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/southhallway) -"dzD" = ( -/obj/item/ore/glass, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"dzH" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/power/apc{ - dir = 1; - name = "empty north bump"; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/centerhallway) -"dzI" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"dzK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/item/soap, -/obj/effect/floor_decal/industrial/outline, -/obj/structure/closet/secure_closet/medical3{ - req_access = list(33); - starts_with = list(/obj/item/clothing/under/rank/medical,/obj/item/clothing/under/rank/nurse,/obj/item/clothing/under/rank/orderly,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat/modern,/obj/item/clothing/suit/storage/toggle/fr_jacket,/obj/item/radio/headset/headset_med,/obj/item/radio/headset/headset_med/alt,/obj/item/clothing/suit/storage/hooded/wintercoat/medical,/obj/item/clothing/shoes/boots/winter/medical,/obj/item/clothing/under/rank/nursesuit,/obj/item/clothing/head/nursehat,/obj/item/storage/box/freezer=3,/obj/item/storage/belt/medical) - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"dzM" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"dzR" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"dzU" = ( -/obj/structure/window/reinforced, -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/gun/projectile/heavysniper{ - scoped_accuracy = 125 - }, -/obj/item/ammo_magazine/ammo_box/b145, -/obj/item/ammo_magazine/ammo_box/b145, -/obj/item/ammo_magazine/ammo_box/b145, -/obj/item/ammo_magazine/ammo_box/b145, -/obj/item/ammo_magazine/ammo_box/b145/highvel, -/obj/item/ammo_magazine/ammo_box/b145/highvel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"dAf" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/monitorroom) -"dAv" = ( -/obj/structure/cable/heavyduty{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"dAC" = ( -/obj/machinery/light_construct, -/obj/item/material/shard, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bsa) -"dAW" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"dBB" = ( -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"dCq" = ( -/turf/simulated/mineral/cave, -/area/awaymission/snowfield/restricted) -"dCP" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm12) -"dCV" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger, -/obj/machinery/light/flicker{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"dDL" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm8) -"dDM" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"dEs" = ( -/obj/effect/floor_decal/corner/black/border, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/outside) -"dEV" = ( -/obj/structure/closet/secure_closet/guncabinet{ - opened = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"dFg" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"dGf" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/tech_storage) -"dGB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/snowfield/security/armory_entrance) -"dGC" = ( -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"dHb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"dHq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"dHD" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"dHG" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"dHJ" = ( -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/gun/projectile/automatic/serdy/mosin, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/dorms/panicroom) -"dHL" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"dHR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"dId" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/effect/decal/remains/deer, -/obj/item/bone/ribs, -/obj/effect/decal/cleanable/blood, -/obj/item/card/id/gateway/snowfield/class3M, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"dIh" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/mob/living/simple_mob/animal/giant_spider/tunneler/frequent, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/interrogation) -"dIo" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"dIO" = ( -/obj/structure/simple_door/cult, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield lab entrance lockdown"; - opacity = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/hallway/commandhallway) -"dJc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/closet/secure_closet/guncabinet{ - opened = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"dJl" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"dJm" = ( -/obj/structure/bonfire, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"dJo" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"dJq" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm4) -"dJx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/snowfield/security/armory) -"dJz" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm6) -"dJI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/snowfield/security/observatory) -"dKR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/gateway) -"dLP" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "Dorms15"; - name = "Room 15" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/dorm15) -"dLQ" = ( -/obj/structure/table/bench/wooden, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"dLU" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/construct/artificer{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"dMv" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "9" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"dMJ" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"dMP" = ( -/obj/item/stool, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm9) -"dMS" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"dNz" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Armament" - }, -/obj/item/gun/projectile/shotgun/pump/shorty{ - desc = "A clunky, lightly modified special carbine, this gun is often be seen in the old terran's prison, designed to suppress the prison riots."; - description_fluff = "Designed to suppress the prison riot, KS-23 has been developed in 1970s in Soviet Russia. Crude, but compact, it is easy to carry around while in patrol, and useful in close combat."; - name = "KS-23" - }, -/obj/item/gun/projectile/shotgun/pump/shorty{ - desc = "A clunky, lightly modified special carbine, this gun is often be seen in the old terran's prison, designed to suppress the prison riots."; - description_fluff = "Designed to suppress the prison riot, KS-23 has been developed in 1970s in Soviet Russia. Crude, but compact, it is easy to carry around while in patrol, and useful in close combat."; - name = "KS-23" - }, -/obj/item/gun/projectile/shotgun/pump/shorty{ - desc = "A clunky, lightly modified special carbine, this gun is often be seen in the old terran's prison, designed to suppress the prison riots."; - description_fluff = "Designed to suppress the prison riot, KS-23 has been developed in 1970s in Soviet Russia. Crude, but compact, it is easy to carry around while in patrol, and useful in close combat."; - name = "KS-23" - }, -/obj/item/gun/projectile/shotgun/pump/shorty{ - desc = "A clunky, lightly modified special carbine, this gun is often be seen in the old terran's prison, designed to suppress the prison riots."; - description_fluff = "Designed to suppress the prison riot, KS-23 has been developed in 1970s in Soviet Russia. Crude, but compact, it is easy to carry around while in patrol, and useful in close combat."; - name = "KS-23" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"dNA" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm14) -"dNW" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfieldenglockdown"; - name = "Engineering Lockdown"; - opacity = 0 - }, -/obj/machinery/door/airlock/engineering{ - req_access = null; - req_one_access = list(1,10) - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/hallway) -"dOC" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"dOH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"dQj" = ( -/obj/structure/closet/coffin, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"dQr" = ( -/obj/machinery/computer/shutoff_monitor, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"dQQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/reagent_dispensers/space_cleaner{ - pixel_x = -30 - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"dQR" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm15) -"dQX" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm5) -"dRK" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"dSA" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm16) -"dSJ" = ( -/obj/structure/closet/wardrobe/medic_white, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/structure/cable/yellow, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"dTj" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm8) -"dTw" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"dTO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"dTU" = ( -/obj/machinery/microscope, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/security/detective) -"dUh" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/snowfield/security/detective) -"dUn" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm13) -"dUp" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"dUy" = ( -/obj/item/ore/glass, -/obj/item/ore/glass, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"dUI" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"dVm" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/buildable{ - charge = null; - cur_coils = 3; - input_attempt = 1; - input_level = 500000; - output_level = 350000 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/solarshack) -"dVK" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"dWW" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway_substation) -"dWX" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/security{ - starts_with = list(/obj/item/clothing/gloves/black,/obj/item/clothing/accessory/holster,/obj/item/storage/belt/security,/obj/item/clothing/head/beret/sec/corporate/officer,/obj/item/clothing/head/helmet,/obj/item/radio/headset/headset_sec/alt,/obj/item/radio/headset/headset_sec,/obj/item/radio/off,/obj/item/storage/backpack/security,/obj/item/storage/backpack/satchel/sec,/obj/item/clothing/shoes/boots/marine,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/under/soviet,/obj/item/reagent_containers/spray/pepper,/obj/item/melee/classic_baton,/obj/item/ammo_magazine/makarov=2,/obj/item/gun/projectile/serdy_pistols/makarov) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_lockerroom) -"dXK" = ( -/obj/structure/table/rack/shelf/steel, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/clothing/mask/breath, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"dXU" = ( -/obj/structure/sink/kitchen{ - pixel_y = 17 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 9 - }, -/obj/effect/floor_decal/corner/green, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"dXW" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/material/shard/shrapnel{ - pixel_x = 8; - pixel_y = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"dYf" = ( -/obj/structure/girder, -/turf/simulated/floor, -/area/awaymission/snowfield/dorms/panicroom) -"dYg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"dYi" = ( -/obj/structure/closet/l3closet/security, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/storage/firstaid/toxin, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"dYu" = ( -/obj/structure/table/bench/wooden, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"dYB" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/bed/chair, -/obj/item/stack/material/wood, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"dZP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/boulder, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"dZR" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"dZS" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm7) -"eab" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm12) -"eaO" = ( -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/security/firingrange) -"ebe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm13) -"ebt" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"ecn" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm13) -"ecC" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield bsa MR"; - opacity = 0 - }, -/obj/item/circuitboard/broken, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"ecQ" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/circuitboard/pointdefense_control{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"edc" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket/wood, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"edD" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/spider/stickyweb, -/mob/living/simple_mob/animal/giant_spider/pepper, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"edJ" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm1) -"edK" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"eey" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "empty north bump"; - pixel_y = 24; - start_charge = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/sub_chamber) -"eeE" = ( -/obj/item/stool, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm3) -"efr" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm6) -"efy" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield bsa observation window"; - opacity = 0 - }, -/obj/structure/window/reinforced/full{ - health = 1e+006 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/command/bsa) -"egk" = ( -/obj/structure/cable/heavyduty{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"egB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/outside) -"egT" = ( -/obj/structure/table/bench/wooden, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"eha" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/toilet{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/medical_restroom) -"ehs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/server) -"ehC" = ( -/obj/effect/floor_decal/steeldecal/monofloor, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/effect/floor_decal/steeldecal/steel_decals_central5, -/obj/machinery/door/blast/regular{ - density = 0; - health = 80; - icon_state = "pdoor0"; - id = "snowfield gateway"; - opacity = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/gateway) -"ehQ" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm8) -"eij" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/dorms/dorm11) -"eim" = ( -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/interrogation) -"eip" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/public/charger) -"eis" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/server) -"eiu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/light_construct{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"ejk" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"ejX" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/centerhallway) -"ekh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"ekx" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"ekO" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"ems" = ( -/obj/structure/table/woodentable, -/obj/item/card/id/gateway/snowfield/class3E, -/turf/simulated/floor/carpet, -/area/awaymission/snowfield/engineering/staff_room) -"emV" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/public/toolstorage1) -"emW" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"enk" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"enq" = ( -/obj/item/stool, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm12) -"ens" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/tech_storage) -"eoB" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"eoL" = ( -/obj/item/material/shard, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"eoU" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"epu" = ( -/obj/structure/cult/tome, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/monitorroom) -"epz" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 5 - }, -/obj/item/soap, -/obj/effect/floor_decal/industrial/outline, -/obj/structure/closet/secure_closet/medical3{ - req_access = list(33); - starts_with = list(/obj/item/clothing/under/rank/medical,/obj/item/clothing/under/rank/nurse,/obj/item/clothing/under/rank/orderly,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat/modern,/obj/item/clothing/suit/storage/toggle/fr_jacket,/obj/item/radio/headset/headset_med,/obj/item/radio/headset/headset_med/alt,/obj/item/clothing/suit/storage/hooded/wintercoat/medical,/obj/item/clothing/shoes/boots/winter/medical,/obj/item/clothing/under/rank/nursesuit,/obj/item/clothing/head/nursehat,/obj/item/storage/box/freezer=3,/obj/item/storage/belt/medical) - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"epG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bridge) -"epH" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"epO" = ( -/obj/structure/table/steel_reinforced, -/obj/item/autopsy_scanner, -/obj/item/surgical/bioregen, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"epY" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/solarshack) -"equ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider/broodling, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"eqY" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"erY" = ( -/obj/machinery/light_construct, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/hallway/commandhallway) -"esc" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm1) -"esC" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/window/southright{ - req_access = list(1) - }, -/obj/machinery/door/window/northright{ - req_access = list(1) - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield sec front blast"; - opacity = 0 - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/snowfield/security/frontgate) -"esL" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/item/gun/projectile/automatic/serdy/ppsh, -/obj/item/gun/projectile/automatic/serdy/ppsh, -/obj/item/gun/projectile/automatic/serdy/ppsh, -/obj/item/gun/projectile/automatic/serdy/ppsh, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Armament" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"etc" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"etd" = ( -/obj/machinery/door/window/brigdoor/westleft{ - name = "Code Red Armory"; - req_access = null; - req_one_access = list(3) - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"eti" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/dorms/panicroom) -"etU" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/medical_restroom) -"euq" = ( -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"eur" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/stack/material/wood{ - amount = 3 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"euC" = ( -/obj/structure/flora/log2, -/turf/simulated/floor/outdoors/ice, -/area/awaymission/snowfield/outside) -"evg" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm1) -"evA" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm14) -"evZ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"ewC" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/toolstroage2) -"ewG" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - starts_with = list(/obj/item/clothing/accessory/storage/brown_vest,/obj/item/storage/toolbox/mechanical,/obj/item/radio/headset/headset_eng,/obj/item/radio/headset/headset_eng/alt,/obj/item/clothing/suit/storage/hazardvest,/obj/item/clothing/mask/gas,/obj/item/cartridge/engineering,/obj/item/taperoll/engineering,/obj/item/clothing/head/hardhat,/obj/item/clothing/suit/storage/hooded/wintercoat/engineering,/obj/item/clothing/shoes/boots/winter/engineering,/obj/item/tank/emergency/oxygen/engi,/obj/item/storage/belt/utility,/obj/item/reagent_containers/spray/windowsealant) - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/locker_room) -"ewH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/material/shard, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/gateway) -"ewW" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/security{ - locked = 1 - }, -/obj/structure/barricade/planks, -/turf/simulated/floor/tiled/red, -/area/awaymission/snowfield/security/seconddesk) -"exb" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "31" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"exB" = ( -/turf/simulated/mineral/cave, -/area/awaymission/snowfield/cavern) -"eym" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"eyq" = ( -/obj/structure/bed/chair/office/light, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"eyC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/engineering/restroom) -"eyW" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm3) -"ezy" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/outside) -"ezz" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"ezV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/snowfield/security/armory_entrance) -"eAl" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/surgery) -"eAM" = ( -/obj/item/ore/glass, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"eBk" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"eBY" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm10) -"eCr" = ( -/obj/structure/flora/rocks2, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"eCN" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm8) -"eDk" = ( -/obj/item/ore/diamond, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"eDF" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm11) -"eDY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/warden) -"eEy" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm10) -"eEB" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"eED" = ( -/obj/structure/table/bench/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"eEJ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_one_access = list(1,11,23,30,56,70) - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"eES" = ( -/obj/structure/flora/grass/both, -/obj/structure/flora/bush, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"eFe" = ( -/obj/machinery/atmospherics/unary/freezer{ - icon_state = "freezer_1"; - set_temperature = 73; - use_power = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/server) -"eFM" = ( -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access = null - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"eGs" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/testroom) -"eHo" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Armoury Tactical Equipment"; - req_access = list(3); - req_one_access = list(3) - }, -/obj/machinery/door/blast/regular{ - id = "snowfield heavy armory"; - name = "Assault Weapon Storage" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"eIU" = ( -/obj/structure/sign/signnew/danger, -/turf/simulated/wall/titanium, -/area/awaymission/snowfield/outside) -"eJl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/commandarmory) -"eJD" = ( -/obj/item/paper_bin, -/obj/item/pen/multi, -/obj/item/taperecorder{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/structure/table/steel_reinforced, -/obj/item/flashlight/lamp/green, -/turf/simulated/floor/lino, -/area/awaymission/snowfield/security/detective) -"eKf" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/card/id/gateway/snowfield/class3M, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm9) -"eLv" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"eNp" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 6 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"eNq" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"eNH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/button/remote/blast_door{ - id = "snowfield sec front blast"; - name = "Emergency Front Desk Lockdown"; - pixel_y = 23; - req_access = list(1) - }, -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"eNN" = ( -/obj/machinery/vending/sovietsoda, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"eNU" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"eNV" = ( -/turf/simulated/wall/cult, -/area/awaymission/snowfield/command/commandarmory) -"eOe" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"eOr" = ( -/obj/item/ore/glass, -/obj/item/ore/coal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/outside) -"ePe" = ( -/obj/structure/table/woodentable, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"ePu" = ( -/obj/machinery/optable, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"eRq" = ( -/obj/structure/kitchenspike, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/service/fridge) -"eRI" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/light_construct{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/monitorroom) -"eRY" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"eSa" = ( -/obj/machinery/light/small/flicker{ - dir = 1 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"eSk" = ( -/obj/structure/catwalk, -/obj/machinery/door/airlock/glass_security{ - name = "Security Cells"; - req_access = list(1) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"eSw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/mob/living/simple_mob/animal/giant_spider/broodling, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"eSJ" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/storage/box/donut/empty, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"eSZ" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm5) -"eTp" = ( -/obj/item/stool, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm11) -"eTC" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm16) -"eUo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/gorefloor2, -/area/awaymission/snowfield/command/bridge) -"eUs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/security/security_cell) -"eUt" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm1) -"eUQ" = ( -/obj/machinery/atmospherics/pipe/tank{ - desc = "A large vessel containing huge amount of water."; - dir = 1; - icon_state = "o2_map"; - name = "Water Tank" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"eUS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/item/material/shard, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/gateway) -"eVa" = ( -/mob/living/simple_mob/vore/sheep, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"eVy" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/circuitboard/secure_data{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/circuitboard/security{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/circuitboard/skills{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"eWn" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/service/janitor) -"eWs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"eWZ" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"eXv" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory_entrance) -"eXy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"eXF" = ( -/obj/structure/window/reinforced, -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/door/window/brigdoor/eastright{ - name = "Ammo" - }, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g/flechette, -/obj/item/ammo_magazine/ammo_box/b12g/flechette, -/obj/item/ammo_magazine/ammo_box/b12g, -/obj/item/ammo_magazine/ammo_box/b12g, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"eYO" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"eYP" = ( -/obj/structure/toilet/prison{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/security_cell) -"eYV" = ( -/obj/structure/curtain/open/shower/security, -/obj/machinery/door/window/westright{ - name = "Shower" - }, -/obj/machinery/shower{ - dir = 8; - pixel_x = -5; - pixel_y = -1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"eZn" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"eZD" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/decal/cleanable/fruit_smudge, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/hydro) -"eZG" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"fag" = ( -/obj/structure/boulder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"fav" = ( -/obj/effect/decal/remains/human, -/mob/living/simple_mob/construct/shade, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"fay" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm6) -"faB" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"fbr" = ( -/obj/machinery/door/blast/gate/open{ - dir = 4 - }, -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"fbH" = ( -/obj/machinery/computer/med_data, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"fcB" = ( -/obj/structure/catwalk, -/obj/item/material/shard/shrapnel{ - pixel_x = 8; - pixel_y = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"fdm" = ( -/obj/machinery/chem_master, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"fdE" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"feF" = ( -/obj/structure/closet/secure_closet/medical_wall{ - name = "O- Blood Locker"; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"feZ" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor, -/area/awaymission/snowfield/checkpoint) -"ffn" = ( -/obj/structure/table/steel_reinforced, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm8) -"ffS" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm2) -"fgV" = ( -/turf/simulated/floor/cult, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"fgW" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/catwalk, -/obj/machinery/power/apc{ - dir = 1; - name = "empty north bump"; - pixel_y = 24; - start_charge = 0 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"fhb" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"fhg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bridge) -"fht" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm2) -"fik" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/item/material/ashtray/glass, -/obj/item/material/ashtray/glass, -/obj/item/material/ashtray/glass, -/obj/item/material/ashtray/glass, -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"fiF" = ( -/obj/machinery/photocopier, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"fiT" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/panicroom) -"fiZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm9) -"fjb" = ( -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"fjP" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet{ - closet_appearance = /decl/closet_appearance/bio; - name = "Level-3 Biohazard Closet" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/locker_room) -"fku" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/door_assembly/door_assembly_med, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"fkQ" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"flF" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/mob/living/simple_mob/animal/giant_spider, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"fmV" = ( -/obj/structure/closet/crate/bin, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"fnD" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/machinery/vending/snack{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"fnH" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/table/woodentable, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/pen/blue{ - pixel_x = -6 - }, -/obj/item/pen/red{ - pixel_x = 6 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/staff_room) -"fnS" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"fnW" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"fnX" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"foQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/structure/mopbucket, -/obj/item/mop, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/item/reagent_containers/glass/bucket/wood, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"fpc" = ( -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"fpp" = ( -/obj/item/trash/material/metal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"fqn" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory_entrance) -"fqI" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Hydroponics"; - req_access = null; - req_one_access = list(1,28) - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/service/hydro) -"frj" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "14" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"frV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"frZ" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "34" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"fsa" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"fsg" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/catwalk, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/hallway) -"fsB" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/paper/awaygate/snowfield/evacuation_order2, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm12) -"fsW" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"ftF" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"fuC" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/mob/living/simple_mob/animal/giant_spider/webslinger, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"fuQ" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"fuU" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"fve" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield bsa maints"; - opacity = 0 - }, -/obj/item/material/shard, -/turf/simulated/floor, -/area/awaymission/snowfield/command/bsa) -"fwr" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/security/lobby) -"fwu" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"fxe" = ( -/obj/structure/catwalk, -/obj/structure/door_assembly/door_assembly_highsecurity, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/monitorroom) -"fxn" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "3" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"fyb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"fyf" = ( -/obj/structure/fence/corner{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"fAl" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/analyzer/plant_analyzer, -/obj/item/analyzer, -/obj/item/analyzer, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"fAI" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/button/remote/blast_door{ - id = "snowfield bsa SCA"; - name = "Tunguska Sub-chamber Lockdown"; - req_one_access = list(1) - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/monitorroom) -"fAZ" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"fBf" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/awaymission/snowfield/outside) -"fBi" = ( -/obj/structure/window/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"fBx" = ( -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"fBJ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "Dorms2"; - name = "Room 2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/dorm2) -"fCi" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"fDr" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/engine_checkpoint) -"fDz" = ( -/obj/structure/catwalk, -/obj/item/storage/toolbox/emergency, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"fEh" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"fEi" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bridge) -"fFQ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"fGh" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/public/publicrestroom) -"fGG" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"fIy" = ( -/obj/item/stool, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm2) -"fJF" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"fJP" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"fJZ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"fKf" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"fKF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/sub_chamber) -"fKG" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/surgery) -"fKO" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/fence/end{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"fKY" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/item/circuitboard/broken, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/construct/harvester{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/monitorroom) -"fLg" = ( -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"fLm" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/item/reagent_containers/food/condiment/mustard, -/obj/item/reagent_containers/food/condiment/mustard, -/obj/item/reagent_containers/food/condiment/mustard, -/obj/item/reagent_containers/food/condiment/mustard, -/obj/item/reagent_containers/food/condiment/mustard, -/obj/item/reagent_containers/food/condiment/mustard, -/obj/item/reagent_containers/food/condiment/mustard, -/obj/item/reagent_containers/food/condiment/mustard, -/obj/item/reagent_containers/food/condiment/small, -/obj/item/reagent_containers/food/condiment/small, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"fMj" = ( -/obj/structure/girder, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"fMy" = ( -/obj/structure/catwalk, -/obj/structure/kitchenspike, -/obj/effect/decal/cleanable/blood, -/obj/item/bone/horn, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"fMN" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/spider/stickyweb, -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/floor/lino, -/area/awaymission/snowfield/security/detective) -"fNe" = ( -/obj/machinery/door/blast/regular{ - id = "snowfield test room" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/testroom) -"fND" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 34; - pixel_y = -4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"fNG" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"fNR" = ( -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/hallway) -"fNS" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/testroom) -"fNV" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"fOz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/gateway) -"fOI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm16) -"fPe" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm12) -"fPB" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/bordercorner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"fQr" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/marble, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/condiment/sugar, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"fQC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"fQJ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"fRn" = ( -/obj/machinery/button/remote/blast_door{ - id = "Armoury"; - name = "Emergency Access"; - pixel_x = 24; - req_access = list(3) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/snowfield/security/armory_entrance) -"fRB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"fRZ" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"fSf" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/dorms/dorm12) -"fSp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/flora/pottedplant/thinbush, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"fSy" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/item/material/shard/shrapnel{ - pixel_x = 12; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/snowfield/security/detective) -"fSZ" = ( -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/item/ore/verdantium, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"fTh" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/light_construct, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"fTp" = ( -/obj/item/stool, -/obj/machinery/light, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm2) -"fTI" = ( -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/evidence_storage) -"fTN" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm7) -"fVh" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"fVl" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"fVU" = ( -/obj/machinery/chemical_analyzer, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"fWi" = ( -/obj/structure/closet/crate/radiation{ - starts_with = list(/obj/item/clothing/suit/radiation=8,/obj/item/clothing/head/radiation=8) - }, -/obj/item/stack/material/lead{ - amount = 50 - }, -/obj/item/stack/material/lead{ - amount = 50 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"fWx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/awaymission/snowfield/engineering/staff_room) -"fWQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/engineering/engine) -"fXK" = ( -/obj/structure/table/steel, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/tech_storage) -"fYo" = ( -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"fYA" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/monitorroom) -"fYG" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"fYJ" = ( -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/northhallway) -"fYL" = ( -/obj/structure/filingcabinet, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"fZa" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"fZD" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"gav" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/circuitboard/unary_atmos/heater, -/obj/item/circuitboard/unary_atmos/cooler{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"gaS" = ( -/obj/structure/flora/grass/brown, -/obj/structure/flora/bush, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"gaW" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/awaymission/snowfield/engineering/staff_room) -"gba" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 5 - }, -/obj/machinery/appliance/mixer/candy, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"gbn" = ( -/mob/living/simple_mob/animal/giant_spider/broodling, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"gbz" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"gbE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/closet/secure_closet/guncabinet{ - opened = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"gbY" = ( -/obj/machinery/door/blast/gate/open, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"gca" = ( -/obj/structure/table/rack/shelf/steel, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/clothing/suit/armor/bulletproof/alt, -/obj/item/clothing/suit/armor/bulletproof/alt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/commandarmory) -"gcu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/ash, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/cavern) -"gcK" = ( -/obj/machinery/button/remote/blast_door{ - id = "snowfield bsa MCA"; - name = "BSA Main Chamber Access"; - req_one_access = list(1) - }, -/obj/structure/table, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/sub_chamber) -"gdt" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/spiderling_remains, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"ger" = ( -/obj/machinery/computer, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/snowfield/command/bridge) -"geH" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm2) -"geI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"geU" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/yellow, -/obj/structure/catwalk, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"ggo" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm15) -"ggJ" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"ghl" = ( -/obj/machinery/door/airlock/glass{ - name = "Tool Storage" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/charger) -"ghv" = ( -/obj/structure/table/steel_reinforced, -/obj/item/ammo_magazine/makarov, -/obj/item/ammo_magazine/makarov, -/obj/item/ammo_magazine/makarov, -/obj/item/ammo_magazine/makarov, -/obj/item/ammo_magazine/makarov, -/obj/item/ammo_magazine/makarov, -/obj/item/ammo_magazine/makarov, -/obj/item/ammo_magazine/makarov, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"ghw" = ( -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/steel, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"ghF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"ghL" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/obj/item/card/id/gateway/snowfield/class3E, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm3) -"ghQ" = ( -/obj/structure/flora/grass/both, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"ghU" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm16) -"giF" = ( -/mob/living/simple_mob/animal/giant_spider/thermic, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"giO" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"gjB" = ( -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/interrogation) -"gjG" = ( -/obj/structure/table/rack/shelf/steel, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/clothing/head/helmet, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/commandarmory) -"gjR" = ( -/obj/machinery/door/airlock/hatch{ - name = "Server Control Room"; - req_access = list(61); - req_one_access = list(61) - }, -/obj/machinery/door/blast/regular{ - id = "snowfield sr access" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/server) -"gkk" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"gkO" = ( -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell_hallway) -"gla" = ( -/mob/living/simple_mob/creature/cult/strong{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"glh" = ( -/obj/machinery/door/airlock/command{ - req_one_access = list(19,47) - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/observatory_path) -"glv" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; - name = "Chemistry Cleaner" - }, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; - name = "Chemistry Cleaner" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"glF" = ( -/obj/structure/flora/grass/green, -/obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"gmb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/outside) -"gmg" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/card/id/gateway/snowfield/class5E, -/mob/living/simple_mob/faithless/cult{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"gmv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"gnj" = ( -/obj/structure/table/steel_reinforced, -/obj/item/surgical/retractor, -/obj/item/surgical/hemostat, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"gnN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/gateway) -"gom" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"gox" = ( -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/commandarmory) -"goN" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"goW" = ( -/obj/machinery/dnaforensics, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/security/detective) -"gpv" = ( -/obj/structure/grille/rustic, -/obj/structure/window/basic/full, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"gqx" = ( -/obj/structure/table/steel_reinforced, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm7) -"gqO" = ( -/obj/structure/catwalk, -/mob/living/simple_mob/construct/harvester{ - devourable = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"grk" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/radio/phone, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"grt" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/charger) -"grX" = ( -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/ash, -/obj/item/bone, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"gse" = ( -/turf/simulated/wall/cult, -/area/awaymission/snowfield/dorms/panicroom) -"gsi" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - starts_with = list(/obj/item/clothing/accessory/storage/brown_vest,/obj/item/storage/toolbox/mechanical,/obj/item/radio/headset/headset_eng,/obj/item/radio/headset/headset_eng/alt,/obj/item/clothing/suit/storage/hazardvest,/obj/item/clothing/mask/gas,/obj/item/cartridge/engineering,/obj/item/taperoll/engineering,/obj/item/clothing/head/hardhat,/obj/item/clothing/suit/storage/hooded/wintercoat/engineering,/obj/item/clothing/shoes/boots/winter/engineering,/obj/item/tank/emergency/oxygen/engi,/obj/item/storage/belt/utility,/obj/item/reagent_containers/spray/windowsealant) - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/locker_room) -"gsu" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"gsE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"gsZ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"gue" = ( -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/warden) -"gvk" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/charger) -"gvJ" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"gvQ" = ( -/obj/item/stool/padded, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm15) -"gvX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/monitorroom) -"gwi" = ( -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/dorms/panicroom) -"gwq" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "33" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"gws" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/monitorroom) -"gwu" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"gwC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"gwP" = ( -/obj/structure/filingcabinet, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"gxa" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"gxE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/northhallway) -"gyZ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"gzE" = ( -/obj/structure/table/woodentable, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"gzF" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm15) -"gzQ" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"gzZ" = ( -/obj/effect/decal/cleanable/spiderling_remains, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/janitor) -"gAd" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"gAn" = ( -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/panicroom) -"gAs" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway_substation) -"gBk" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"gBI" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm15) -"gBN" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/ammo_casing/spent{ - pixel_x = -4; - pixel_y = -7 - }, -/obj/item/ammo_casing/spent{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"gBO" = ( -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/outdoors/ice, -/area/awaymission/snowfield/outside) -"gBS" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"gBZ" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm4) -"gCG" = ( -/obj/item/material/shard{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/material/shard{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/structure/grille/broken, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"gCH" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/light/flicker, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/gateway) -"gCV" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"gDg" = ( -/obj/structure/flora/grass/brown, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"gDk" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/machinery/appliance/mixer/cereal, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"gEd" = ( -/obj/item/ore/glass, -/obj/item/ore/glass, -/obj/item/ore/diamond, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"gEr" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"gGa" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/hallway) -"gGX" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/item/folder/red, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"gHg" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/monitorroom) -"gHk" = ( -/obj/structure/catwalk, -/obj/machinery/light/floortube{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"gHB" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/panicroom) -"gHQ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/front_desk) -"gIl" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"gIx" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood, -/obj/item/card/id/gateway/snowfield/class3M, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/southhallway) -"gID" = ( -/obj/machinery/button/remote/blast_door{ - id = "snowfield heavy armory"; - name = "Code Red Armory Access"; - pixel_y = -24; - req_access = list(3) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"gJh" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/computer/skills{ - req_one_access = list(1,19) - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"gJu" = ( -/turf/simulated/floor/gorefloor2, -/area/awaymission/snowfield/command/gateway) -"gJv" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"gKh" = ( -/obj/structure/toilet, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/patient_restroom) -"gKm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/vending/cigarette{ - dir = 8; - pixel_x = 5; - prices = null - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"gKE" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"gKN" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"gLf" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"gLt" = ( -/obj/machinery/door/window/brigdoor/northleft{ - name = "Code Green Armory"; - req_access = null - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"gLu" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"gLA" = ( -/obj/effect/floor_decal/industrial/danger, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/mob/living/simple_mob/construct/artificer{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"gLD" = ( -/obj/structure/table/glass, -/obj/item/soap, -/obj/item/soap, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "empty north bump"; - pixel_y = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"gMa" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield bsa maints"; - opacity = 0 - }, -/obj/item/material/shard, -/obj/item/material/shard, -/obj/structure/grille/broken, -/turf/simulated/floor, -/area/awaymission/snowfield/command/bsa) -"gMg" = ( -/obj/structure/grille/rustic, -/obj/item/material/shard{ - icon_state = "shardmedium" - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"gMs" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/photocopier/faxmachine, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"gOc" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/sub_chamber) -"gOB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/testroom) -"gPa" = ( -/obj/machinery/gateway/centeraway{ - calibrated = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"gPi" = ( -/obj/structure/table/steel_reinforced, -/obj/item/surgical/scalpel, -/obj/item/surgical/retractor, -/obj/item/surgical/hemostat, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"gPl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/mob/living/simple_mob/construct/juggernaut{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"gPW" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm10) -"gPX" = ( -/obj/structure/flora/grass/brown, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"gQt" = ( -/obj/structure/flora/grass/brown, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"gQw" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"gQO" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/floodlight, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"gQT" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"gRc" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"gRd" = ( -/obj/structure/fence/cut/medium{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"gRe" = ( -/obj/machinery/light_construct, -/turf/simulated/floor/flesh, -/area/awaymission/snowfield/command/gateway) -"gRj" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider/thermic, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/hallway) -"gRy" = ( -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/security_cell) -"gSm" = ( -/obj/item/paper/awaygate/snowfield/evacuation_order, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm1) -"gSC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"gTn" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/armory) -"gTu" = ( -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"gTx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"gUC" = ( -/obj/structure/catwalk, -/obj/structure/table/steel_reinforced, -/obj/item/storage/box/syringes, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"gUR" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/tech_storage) -"gWe" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"gWs" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/staff_room) -"gWC" = ( -/obj/structure/lattice, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/security/firingrange) -"gWG" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"gWN" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/construct/wraith/jaunt_spam{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"gXo" = ( -/obj/structure/flora/tree/dead, -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"gXt" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper/awaygate/snowfield/evacuation_order2, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm12) -"gXL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"gXV" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"gYc" = ( -/obj/effect/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/outside) -"gYd" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"gYk" = ( -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/obj/item/card/id/gateway/snowfield/class2, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/janitor) -"gYJ" = ( -/obj/machinery/optable, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"gYN" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"gZp" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory_entrance) -"gZy" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_scanner, -/obj/item/mass_spectrometer/adv, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/security/detective) -"haz" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/observatory) -"haJ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"haO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"haY" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/awaymission/snowfield/security/detective) -"hbh" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"hbK" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm11) -"hcv" = ( -/obj/structure/table/steel_reinforced, -/obj/item/towel/random{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm9) -"hcF" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/item/trash/material/metal, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"hcV" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"hdq" = ( -/obj/structure/table/steel_reinforced, -/obj/item/towel/random, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"hds" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/snowfield/security/armory) -"hez" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/security/detective) -"hfm" = ( -/mob/living/simple_mob/animal/giant_spider/pepper, -/turf/simulated/floor/lino, -/area/awaymission/snowfield/security/detective) -"hfB" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"hfF" = ( -/obj/structure/table/rack, -/obj/item/gun/projectile/automatic/serdy/mosin/scoped, -/obj/item/gun/projectile/automatic/serdy/mosin/scoped, -/obj/item/gun/projectile/automatic/serdy/mosin, -/obj/item/gun/projectile/automatic/serdy/mosin, -/obj/item/gun/projectile/automatic/serdy/mosin, -/obj/item/gun/projectile/automatic/serdy/mosin, -/obj/item/gun/projectile/automatic/serdy/mosin, -/obj/item/gun/projectile/automatic/serdy/mosin, -/obj/item/gun/projectile/automatic/serdy/mosin, -/obj/item/gun/projectile/automatic/serdy/mosin, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Armament" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"hfQ" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/solarshack) -"hgs" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/public/toolstorage1) -"hgD" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"hhj" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/warden) -"hhs" = ( -/obj/structure/cable/yellow, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/power/apc{ - dir = 8; - name = "empty west bump"; - pixel_x = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm15) -"hhy" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm13) -"hhM" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"hic" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"hiL" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/security/heavy_armory) -"hiX" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"hiZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/mob/living/simple_mob/creature/cult/strong{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/gateway) -"hjv" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"hjS" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"hkK" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/public/toolstroage2) -"hlA" = ( -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bsa) -"hmm" = ( -/obj/structure/kitchenspike, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/service/fridge) -"hmq" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/hallway) -"hmr" = ( -/obj/item/modular_computer/console/preset/security{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"hmA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/catwalk, -/mob/living/simple_mob/construct/harvester/greater{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/sub_chamber) -"hmS" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"hnu" = ( -/obj/structure/table/woodentable, -/obj/structure/noticeboard{ - pixel_x = 30 - }, -/obj/structure/bedsheetbin, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"hnK" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 8; - name = "empty west bump"; - pixel_x = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"hnX" = ( -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/janitor) -"hoa" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"hot" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/item/card/id/gateway/snowfield/class4, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"hoA" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/dorms/dorm5) -"hoT" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"hpq" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/light, -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"hpr" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"hqb" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"hqj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm16) -"hql" = ( -/obj/structure/table/bench/wooden, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"hqU" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/security/security_cell_hallway) -"hrj" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/command/bsa) -"hru" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"hrB" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/engine_checkpoint) -"hsn" = ( -/mob/living/simple_mob/vore/demonAI/zellic{ - devourable = 0; - faction = "cult"; - health = 450 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"hsO" = ( -/obj/structure/cable/yellow, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"hsQ" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"htH" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "22" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"huG" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"hvz" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"hvD" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm3) -"hwB" = ( -/obj/structure/cable/yellow, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm4) -"hwI" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/material/shard/shrapnel{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"hwK" = ( -/obj/structure/cable/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/front_desk) -"hxs" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access = null; - req_one_access = list(1,6) - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"hyA" = ( -/obj/structure/table/rack/shelf/steel, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/ammo_magazine/akm, -/obj/item/ammo_magazine/akm, -/obj/item/ammo_magazine/akm, -/obj/item/ammo_magazine/akm, -/obj/item/ammo_magazine/akm/ap, -/obj/item/ammo_magazine/akm/ap, -/obj/item/ammo_magazine/akm/ap, -/obj/item/ammo_magazine/akm/ap, -/obj/item/ammo_magazine/akm/hp, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/commandarmory) -"hyD" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/box/syringes, -/obj/item/storage/box/syringes, -/obj/item/storage/box/syringes, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"hzb" = ( -/obj/structure/table/steel_reinforced, -/obj/item/surgical/bonesetter, -/obj/item/surgical/bone_clamp{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/surgical/bonegel, -/obj/item/surgical/FixOVein, -/obj/item/surgical/cautery, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"hzx" = ( -/obj/structure/closet{ - closet_appearance = /decl/closet_appearance/bio; - name = "Level-3 Biohazard Closet"; - opened = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"hzH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/outside) -"hAd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"hAp" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield bsa maints"; - opacity = 0 - }, -/obj/item/material/shard, -/obj/item/material/shard, -/obj/item/material/shard, -/obj/structure/grille/broken, -/turf/simulated/floor, -/area/awaymission/snowfield/command/bsa) -"hAH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"hAN" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/table/steel, -/obj/item/pen, -/obj/effect/floor_decal/corner/purple/border, -/obj/item/paper_bin, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"hAS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ore/glass, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"hBg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 - }, -/obj/structure/closet/jcloset, -/obj/item/soap/nanotrasen, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"hBm" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced/full{ - health = 1e+006 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield bsa maints"; - opacity = 0 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/command/bsa) -"hBv" = ( -/obj/structure/railing, -/obj/machinery/computer{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/observatory) -"hBO" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm9) -"hBV" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/medical/hallway) -"hBZ" = ( -/obj/effect/floor_decal/steeldecal/monofloor, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/effect/floor_decal/steeldecal/steel_decals_central5, -/obj/structure/railing{ - dir = 4; - pixel_x = -32 - }, -/obj/machinery/door/blast/regular{ - id = "snowfield bsa access" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"hCo" = ( -/obj/structure/flora/bush, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"hDg" = ( -/obj/structure/door_assembly/door_assembly_highsecurity, -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/hallway/commandhallway) -"hEi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/security/security_cell) -"hEz" = ( -/obj/item/ore/glass, -/obj/item/ore/coal, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/outside) -"hFk" = ( -/obj/machinery/door/blast/regular{ - id = "snowfield heavy armory"; - name = "Assault Weapon Storage" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"hFm" = ( -/turf/simulated/mineral, -/area/awaymission/snowfield/dorms/panicroom) -"hGr" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"hGx" = ( -/obj/structure/morgue{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"hHj" = ( -/obj/item/ore/glass, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"hHW" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/public/toolstroage2) -"hIo" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"hJH" = ( -/obj/structure/cable/yellow, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/power/apc{ - dir = 8; - name = "empty west bump"; - pixel_x = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm8) -"hKg" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"hKj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/obj/item/storage/box/glasses/square, -/obj/item/storage/box/glasses/square, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"hKu" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"hLq" = ( -/obj/item/ore/coal, -/obj/item/ore/glass, -/obj/item/ore/diamond, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"hMg" = ( -/obj/structure/table/rack, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"hMq" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/medical/patient_restroom) -"hMO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"hMR" = ( -/obj/item/stool, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm8) -"hMS" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"hNw" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/structure/table/marble, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"hNS" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/locker_room) -"hOE" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/machinery/computer/arcade/battle, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"hOT" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/tech_storage) -"hPe" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/hydro) -"hPt" = ( -/obj/structure/table/steel_reinforced, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm6) -"hPv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"hPR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/commandarmory) -"hQc" = ( -/obj/effect/decal/remains/human, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/toolstroage2) -"hQh" = ( -/obj/structure/flora/grass/brown, -/obj/effect/mine/frag, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"hQr" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/railing, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"hRh" = ( -/obj/structure/fence/door/opened, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"hRS" = ( -/obj/item/ore/diamond, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"hTh" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/awaymission/snowfield/command/server) -"hTF" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/awaymission/snowfield/service/publicstaff) -"hTO" = ( -/turf/simulated/wall/solidrock{ - block_tele = 0 - }, -/area/awaymission/snowfield/cavern) -"hUk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm4) -"hUt" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood, -/obj/item/tool/crowbar/red, -/obj/effect/decal/cleanable/dirt, -/obj/item/card/id/gateway/snowfield/class3M, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"hUz" = ( -/obj/machinery/vending/tool{ - dir = 8; - pixel_x = -5; - products = list(/obj/item/stack/cable_coil/random=10,/obj/item/tool/crowbar=5,/obj/item/weldingtool=3,/obj/item/tool/wirecutters=5,/obj/item/tool/wrench=5,/obj/item/analyzer=5,/obj/item/tool/screwdriver=5,/obj/item/flashlight/glowstick=3,/obj/item/flashlight/glowstick/red=3,/obj/item/flashlight/glowstick/blue=3,/obj/item/flashlight/glowstick/orange=3,/obj/item/flashlight/glowstick/yellow=3) - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/public/toolstorage1) -"hVe" = ( -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/patient_restroom) -"hVG" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/solarshack) -"hVQ" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm4) -"hWg" = ( -/obj/structure/table/rack, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin/ap, -/obj/item/ammo_magazine/clip/mosin/ap, -/obj/item/ammo_magazine/clip/mosin/ap, -/obj/item/ammo_magazine/clip/mosin/ap, -/obj/item/ammo_magazine/clip/mosin/ap, -/obj/item/ammo_magazine/clip/mosin/ap, -/obj/item/ammo_magazine/clip/mosin/ap, -/obj/item/ammo_magazine/clip/mosin/ap, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/door/window/brigdoor/eastright{ - name = "Ammo" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"hWF" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "snowfield test room"; - name = "Test room access"; - req_one_access = list(30,47) - }, -/obj/machinery/button/remote/blast_door, -/obj/machinery/button/remote/blast_door{ - desc = "It kicks the beat to the horizon."; - name = "Remote beat-drop control"; - pixel_x = 23 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/observatory) -"hWM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/vault{ - req_one_access = list(1,20,53) - }, -/obj/machinery/door/blast/regular{ - id = "snowfield vault access" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/testroom) -"hWV" = ( -/obj/machinery/door/airlock{ - name = "Unit 4" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/engineering/restroom) -"hXq" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/machinery/vending/sovietsoda{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/staff_room) -"hYj" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/awaymission/snowfield/security/detective) -"hYr" = ( -/turf/simulated/goreeyes, -/area/awaymission/snowfield/command/bridge) -"hZj" = ( -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/outside) -"hZs" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/button/remote/blast_door{ - id = "snowfield vault access"; - name = "Vault Access"; - req_one_access = list(20,30) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/bridge) -"iar" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"iaX" = ( -/obj/machinery/light_construct/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/command/bridge) -"ibG" = ( -/obj/structure/table/bench/wooden, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/spider/stickyweb, -/mob/living/simple_mob/animal/giant_spider/electric, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"ibJ" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced/full{ - health = 1e+006 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield bsa maints"; - opacity = 0 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/command/bsa) -"ibL" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield tool storage lockdown"; - opacity = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/public/toolstroage2) -"icF" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/firstaid/regular{ - starts_with = list(/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/obj/item/stack/medical/ointment,/obj/item/storage/pill_bottle/paracetamol,/obj/item/storage/pill_bottle/iron) - }, -/obj/item/storage/firstaid/regular{ - starts_with = list(/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/obj/item/stack/medical/ointment,/obj/item/storage/pill_bottle/paracetamol,/obj/item/storage/pill_bottle/iron) - }, -/obj/item/storage/firstaid/regular{ - starts_with = list(/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/obj/item/stack/medical/ointment,/obj/item/storage/pill_bottle/paracetamol,/obj/item/storage/pill_bottle/iron) - }, -/obj/item/storage/firstaid/regular{ - starts_with = list(/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/obj/item/stack/medical/ointment,/obj/item/storage/pill_bottle/paracetamol,/obj/item/storage/pill_bottle/iron) - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"icW" = ( -/obj/structure/flora/bush, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"idu" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/gloves/combat{ - armor = list("melee"=30,"bullet"=15,"laser"=5,"energy"=20,"bomb"=40,"bio"=5,"rad"=20); - desc = "Clearly for combat, these tactical gloves are not only somewhat fire and impact resistant, but also has a thin layer of armor. Bulky, but better than having a papercut in combat while naked." - }, -/obj/item/clothing/gloves/combat{ - armor = list("melee"=30,"bullet"=15,"laser"=5,"energy"=20,"bomb"=40,"bio"=5,"rad"=20); - desc = "Clearly for combat, these tactical gloves are not only somewhat fire and impact resistant, but also has a thin layer of armor. Bulky, but better than having a papercut in combat while naked." - }, -/obj/item/clothing/gloves/combat{ - armor = list("melee"=30,"bullet"=15,"laser"=5,"energy"=20,"bomb"=40,"bio"=5,"rad"=20); - desc = "Clearly for combat, these tactical gloves are not only somewhat fire and impact resistant, but also has a thin layer of armor. Bulky, but better than having a papercut in combat while naked." - }, -/obj/item/clothing/gloves/combat{ - armor = list("melee"=30,"bullet"=30,"laser"=10,"energy"=20,"bomb"=45,"bio"=5,"rad"=20); - armorsoak = list("melee"=5,"bullet"=0,"laser"=0,"energy"=5,"bomb"=5,"bio"=0,"rad"=0); - desc = "Clearly for combat, these tactical gloves are not only somewhat fire and impact resistant, but also has a thin layer of armor. Bulky, but better than having a papercut in combat while naked." - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"iej" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/stool/padded, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm13) -"iek" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm7) -"ife" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/service/fridge) -"ifi" = ( -/obj/structure/table/rack/shelf/steel, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/gun/projectile/automatic/serdy/ak74, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/commandarmory) -"ifW" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/door_assembly/door_assembly_highsecurity, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/hallway/commandhallway) -"igl" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/closet/secure_closet/guncabinet{ - req_one_access = list(2,4) - }, -/obj/item/reagent_containers/syringe/ld50_syringe/choral, -/obj/item/reagent_containers/syringe/ld50_syringe/choral, -/obj/item/reagent_containers/syringe/ld50_syringe/choral, -/obj/item/reagent_containers/syringe/ld50_syringe/choral, -/obj/item/reagent_containers/syringe/ld50_syringe/choral, -/obj/item/gun/projectile/automatic/serdy/mosin, -/obj/item/gun/projectile/automatic/serdy/mosin, -/obj/item/gun/projectile/automatic/serdy/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"igK" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/gateway) -"igT" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"igZ" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"ihi" = ( -/obj/structure/window/reinforced, -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/gun/projectile/automatic/serdy/pkm, -/obj/item/ammo_magazine/pkm, -/obj/item/ammo_magazine/pkm, -/obj/item/ammo_magazine/pkm, -/obj/item/ammo_magazine/pkm, -/obj/item/ammo_magazine/pkm/ap, -/obj/item/clothing/suit/bomb_suit/security{ - armor = list("melee"=45,"bullet"=70,"laser"=35,"energy"=80,"bomb"=100,"bio"=0,"rad"=0); - armorsoak = list("melee"=0,"bullet"=2,"laser"=0,"energy"=0,"bomb"=20,"bio"=0,"rad"=0); - desc = "You're up against the wall AND I AM THE FUCKING WALL!"; - name = "EOD-Bullet proof suit"; - slowdown = 4 - }, -/obj/item/clothing/head/bomb_hood/security{ - armor = list("melee"=40,"bullet"=80,"laser"=30,"energy"=80,"bomb"=100,"bio"=0,"rad"=0); - armorsoak = list("melee"=0,"bullet"=2,"laser"=0,"energy"=0,"bomb"=0,"bio"=0,"rad"=0); - desc = "I'll kill you, with or without my visor!"; - name = "EOD-Bullet proof hood" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"ihx" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/roller, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"iip" = ( -/obj/structure/cable/yellow, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm10) -"iiz" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"iiU" = ( -/obj/structure/closet/secure_closet/chemical, -/obj/item/storage/box/syringes, -/obj/item/storage/box/pillbottles, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 6 - }, -/obj/item/storage/box/beakers, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"iiY" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/security/observatory) -"iji" = ( -/obj/structure/cable/yellow, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/power/apc{ - dir = 8; - name = "empty west bump"; - pixel_x = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm16) -"ijE" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"ijF" = ( -/obj/structure/sign/signnew/danger, -/turf/simulated/wall/titanium, -/area/awaymission/snowfield/cavern) -"ijI" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"ikg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"ikv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/security/security_cell) -"ikI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/hallway/commandhallway) -"ilc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/machinery/computer/security, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"ilg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"ilH" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/mob/living/simple_mob/animal/giant_spider/ion, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"ilY" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/engineering/restroom) -"imb" = ( -/obj/structure/outcrop, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/outside) -"imc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"imu" = ( -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/service/fridge) -"imC" = ( -/obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"imT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm1) -"inm" = ( -/obj/item/card/id/gateway/snowfield/class2, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm5) -"inL" = ( -/obj/machinery/door/window/southleft, -/obj/effect/floor_decal/industrial/loading, -/obj/effect/floor_decal/steeldecal/steel_decals_central4, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"inM" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"ioy" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"ipm" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/public/toolstorage1) -"iqV" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm3) -"irb" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"irs" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"irP" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/closet{ - closet_appearance = /decl/closet_appearance/oxygen/fire; - name = "fire-safety closet"; - opened = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"isc" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"isq" = ( -/obj/item/stool, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm9) -"ist" = ( -/obj/machinery/door/airlock{ - name = "Unit 3" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"isM" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "24" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"itr" = ( -/obj/structure/catwalk, -/obj/item/material/shard/shrapnel{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/stack/rods{ - pixel_x = 10; - pixel_y = -4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"iuB" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm4) -"ivz" = ( -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/security/hallway2) -"ivC" = ( -/obj/structure/sink/kitchen{ - pixel_y = 17 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"ivP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/mob/living/simple_mob/faithless/cult{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bridge) -"iwo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm8) -"iwJ" = ( -/obj/item/stool, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm6) -"iyS" = ( -/obj/structure/cable/yellow, -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 8; - name = "empty west bump"; - pixel_x = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm7) -"izt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"izW" = ( -/obj/structure/lattice, -/obj/structure/girder, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"izY" = ( -/obj/machinery/door/blast/regular{ - id = "snowfield emergency bunk" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/panicroom) -"iAc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/paper/awaygate/snowfield/final_note, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"iAB" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket/wood, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/patient_restroom) -"iAE" = ( -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"iAR" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm4) -"iAW" = ( -/obj/machinery/icecream_vat, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/service/fridge) -"iAZ" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"iBb" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"iBu" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm3) -"iBw" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/steeldecal/steel_decals_central7, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"iDe" = ( -/obj/structure/table/steel_reinforced, -/obj/item/radio/phone, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"iDi" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/southhallway) -"iDk" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/public/toolstorage1) -"iDn" = ( -/mob/living/simple_mob/construct/harvester/greater, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bsa) -"iDu" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/medical/morgue) -"iDx" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"iDC" = ( -/obj/structure/cable/yellow, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/solarshack) -"iDF" = ( -/turf/simulated/floor/wood, -/area/awaymission/snowfield/outside) -"iEm" = ( -/obj/structure/window/reinforced, -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/gun/projectile/automatic/serdy/rpk, -/obj/item/gun/projectile/automatic/serdy/rpk, -/obj/item/ammo_magazine/akm/drum, -/obj/item/ammo_magazine/akm/drum, -/obj/item/ammo_magazine/akm/drum, -/obj/item/ammo_magazine/akm/drum, -/obj/item/ammo_magazine/akm/drum, -/obj/item/ammo_magazine/akm/drum, -/obj/item/ammo_magazine/akm/drum/ap, -/obj/item/ammo_magazine/akm/drum/ap, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"iEH" = ( -/obj/structure/catwalk, -/obj/machinery/vending/food/prison{ - contraband = list(/obj/item/reagent_containers/food/snacks/bearstew=3); - icon_state = "hotfood"; - products = list(/obj/item/tray=6,/obj/item/material/kitchen/utensil/spoon=20,/obj/item/reagent_containers/food/snacks/tofu=10,/obj/item/reagent_containers/food/snacks/mashedpotato=10,/obj/item/reagent_containers/food/snacks/flatbread=10) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"iFj" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfieldenglockdown"; - name = "Engineering Lockdown"; - opacity = 0 - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/hallway) -"iFm" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm2) -"iGk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"iGR" = ( -/obj/item/stool, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm10) -"iHp" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm11) -"iHr" = ( -/obj/machinery/door/airlock/security{ - name = "Evidence Storage"; - req_access = list(1) - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/evidence_storage) -"iHH" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"iHK" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket/wood, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/engineering/restroom) -"iHS" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/syndie/c4explosive/heavy, -/obj/item/grenade/explosive, -/obj/item/grenade/explosive, -/obj/item/grenade/explosive, -/obj/item/grenade/explosive, -/obj/item/grenade/explosive, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"iHU" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"iIb" = ( -/obj/structure/cable/yellow, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/power/apc{ - dir = 8; - name = "empty west bump"; - pixel_x = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm14) -"iIf" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"iIk" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"iIm" = ( -/mob/living/simple_mob/animal/giant_spider/ion, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/northhallway) -"iIA" = ( -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/panicroom) -"iJc" = ( -/obj/structure/closet/coffin, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"iJk" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"iJQ" = ( -/obj/machinery/door/airlock/glass{ - name = "Hydroponics"; - req_access = null; - req_one_access = list(1,28) - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/hydro) -"iJW" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/carpet, -/area/awaymission/snowfield/engineering/staff_room) -"iKa" = ( -/obj/effect/spider/stickyweb, -/mob/living/simple_mob/animal/giant_spider/broodling, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"iKM" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/light, -/obj/item/storage/box/donut/empty, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"iKO" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"iLe" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm6) -"iLi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm11) -"iLw" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"iLJ" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Armoury Section"; - req_access = list(3); - req_one_access = list(3) - }, -/obj/machinery/door/blast/regular{ - id = "snowfield command armory" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/bridge) -"iMp" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm16) -"iMs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/security/security_cell_hallway) -"iMC" = ( -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access = null - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"iMJ" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm11) -"iNe" = ( -/obj/item/ore/glass, -/obj/item/ore/glass, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"iNn" = ( -/obj/machinery/power/solar, -/obj/structure/cable/yellow, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"iNT" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/firstaid/adv{ - starts_with = list(/obj/item/stack/medical/advanced/bruise_pack,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/stack/medical/advanced/ointment,/obj/item/stack/medical/advanced/ointment,/obj/item/stack/medical/advanced/ointment) - }, -/obj/item/storage/firstaid/adv{ - starts_with = list(/obj/item/stack/medical/advanced/bruise_pack,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/stack/medical/advanced/ointment,/obj/item/stack/medical/advanced/ointment,/obj/item/stack/medical/advanced/ointment) - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"iNW" = ( -/obj/item/ore/glass, -/obj/effect/decal/cleanable/dirt, -/obj/structure/boulder, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"iOB" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"iPy" = ( -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/awaymission/snowfield/command/server) -"iPB" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/mob/living/simple_mob/animal/giant_spider/tunneler, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"iPD" = ( -/obj/machinery/door/airlock/security{ - desc = "You may don't want to go in there by force."; - name = "Interrogation Room"; - req_one_access = list(2,5) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"iPW" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"iQR" = ( -/obj/machinery/power/smes/buildable{ - charge = null; - cur_coils = 4; - input_attempt = 1; - input_level = 1000000; - output_level = 750000 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"iRf" = ( -/turf/simulated/wall/cult, -/area/awaymission/snowfield/command/gateway) -"iRz" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"iRT" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm15) -"iRU" = ( -/obj/machinery/light/flicker{ - dir = 4 - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"iSa" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals_central5, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"iSD" = ( -/obj/structure/girder/cult, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/sub_chamber) -"iTV" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/awaymission/snowfield/engineering/staff_room) -"iUn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway2) -"iVZ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 8 - }, -/obj/structure/bookcase, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"iWl" = ( -/obj/item/stool, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm12) -"iWo" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 8; - name = "empty west bump"; - pixel_x = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/snowfield/security/observatory) -"iWp" = ( -/obj/item/gun/projectile/shotgun/pump/shorty{ - desc = "A clunky, lightly modified special carbine, this gun is often be seen in the old terran's prison, designed to suppress the prison riots."; - description_fluff = "Designed to suppress the prison riot, KS-23 has been developed in 1970s in Soviet Russia. Crude, but compact, it is easy to carry around while in patrol, and useful in close combat."; - name = "KS-23" - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/dirt, -/obj/item/card/id/gateway/snowfield/class4, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/monitorroom) -"iXa" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced/full{ - health = 1e+006 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield bsa observation window"; - opacity = 0 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/command/bsa) -"iXx" = ( -/obj/structure/cable/yellow, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - name = "empty south bump"; - pixel_y = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"iXD" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"iXK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bridge) -"iXM" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider/broodling, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"iYl" = ( -/obj/machinery/door/airlock/glass{ - name = "Tool Storage" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/public/toolstorage1) -"iZl" = ( -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"iZz" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"iZY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/closet/firecloset/full, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"jaj" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/vore/demonAI/ira{ - devourable = 0; - faction = "cult" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"jaS" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/catwalk, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood, -/obj/item/tool/crowbar/red, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/southhallway) -"jaX" = ( -/mob/living/simple_mob/animal/passive/fox, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"jbe" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm3) -"jbA" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet{ - closet_appearance = /decl/closet_appearance/bio; - name = "Level-3 Biohazard Closet"; - opened = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"jbM" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"jcG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/security/security_cell_hallway) -"jcI" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"jdk" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"jdO" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"jdV" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/southhallway) -"jdW" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "19" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"jdZ" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"jem" = ( -/obj/structure/closet/crate/bin, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 8; - name = "empty west bump"; - pixel_x = -24; - start_charge = 0 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/public/charger) -"jez" = ( -/obj/structure/catwalk, -/obj/machinery/door/window/brigdoor/eastright{ - name = "Interrogation Tool"; - req_access = null; - req_one_access = list(2,5) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"jfa" = ( -/obj/structure/table/steel_reinforced, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm3) -"jfk" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"jfD" = ( -/obj/structure/table/standard, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"jfF" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/locker_room) -"jfJ" = ( -/obj/machinery/light/small, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/evidence_storage) -"jfU" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "35" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"jgA" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/awaymission/snowfield/security/detective) -"jgG" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"jgH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider/frost, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"jgV" = ( -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"jhi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm15) -"jhp" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm14) -"jhu" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/door_assembly/door_assembly_med, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"jhx" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/hallway/commandhallway) -"jhM" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 10 - }, -/obj/machinery/vending/engivend{ - dir = 8; - pixel_x = -5; - products = list(/obj/item/geiger=4,/obj/item/multitool=4,/obj/item/cell/high=10,/obj/item/airlock_electronics=10,/obj/item/module/power_control=10,/obj/item/circuitboard/airalarm=10,/obj/item/circuitboard/firealarm=10,/obj/item/circuitboard/status_display=2,/obj/item/circuitboard/ai_status_display=2,/obj/item/circuitboard/newscaster=2,/obj/item/circuitboard/intercom=4,/obj/item/circuitboard/security/telescreen/entertainment=4,/obj/item/stock_parts/motor=2,/obj/item/stock_parts/spring=2,/obj/item/stock_parts/gear=2,/obj/item/circuitboard/atm,/obj/item/circuitboard/guestpass,/obj/item/circuitboard/keycard_auth,/obj/item/circuitboard/geiger,/obj/item/circuitboard/photocopier,/obj/item/circuitboard/fax,/obj/item/circuitboard/request,/obj/item/circuitboard/microwave,/obj/item/circuitboard/washing) - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"jie" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/security_cell) -"jil" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm9) -"jiI" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"jje" = ( -/obj/structure/catwalk, -/obj/machinery/optable, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"jjw" = ( -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bsa) -"jjH" = ( -/turf/simulated/floor, -/area/awaymission/snowfield/cavern) -"jjP" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"jke" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/structure/closet/secure_closet/guncabinet{ - opened = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"jkl" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm10) -"jkB" = ( -/obj/item/stool/padded, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm13) -"jkM" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/sovietsoda, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"jlx" = ( -/obj/structure/catwalk, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"jmh" = ( -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/checkpointunpowered) -"jmu" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Warden's Office"; - req_access = list(3) - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/warden) -"jmC" = ( -/mob/living/simple_mob/animal/giant_spider/frost, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/northhallway) -"jmE" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/secure_tech_storage) -"jmU" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm1) -"jnY" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/snowfield/medical/staff_room) -"joo" = ( -/obj/structure/railing, -/obj/item/card/id/gateway/snowfield/class6R, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"joy" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm14) -"jpM" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/gateway) -"jqn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"jqJ" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/barricade, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"jrf" = ( -/obj/structure/flora/grass/green, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"jro" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Cells"; - req_access = list(1) - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/snowfield/security/security_cell_hallway) -"jry" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"jsd" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/service/hydro) -"jsH" = ( -/obj/machinery/computer, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/snowfield/command/bridge) -"jsR" = ( -/obj/machinery/door/airlock{ - name = "Unit 3" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"jtj" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/mob/living/simple_mob/animal/giant_spider, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"jtE" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm4) -"jtJ" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm7) -"jtR" = ( -/obj/structure/closet/secure_closet/security{ - starts_with = list(/obj/item/clothing/gloves/black,/obj/item/clothing/accessory/holster,/obj/item/storage/belt/security,/obj/item/clothing/head/beret/sec/corporate/officer,/obj/item/clothing/head/helmet,/obj/item/radio/headset/headset_sec/alt,/obj/item/radio/headset/headset_sec,/obj/item/radio/off,/obj/item/storage/backpack/security,/obj/item/storage/backpack/satchel/sec,/obj/item/clothing/shoes/boots/marine,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/under/soviet,/obj/item/reagent_containers/spray/pepper,/obj/item/melee/classic_baton,/obj/item/ammo_magazine/makarov=2,/obj/item/gun/projectile/serdy_pistols/makarov) - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_lockerroom) -"juu" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/machinery/iv_drip, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"jux" = ( -/obj/structure/closet/radiation, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"juJ" = ( -/obj/machinery/door/blast/regular{ - id = "snowfield third blast" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/checkpointhallway) -"juX" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/centerhallway) -"jvo" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm16) -"jvp" = ( -/obj/structure/flora/tree/dead, -/obj/structure/flora/tree/dead, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"jvw" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"jvz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"jwn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "empty north bump"; - pixel_y = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/security/security_cell_hallway) -"jwN" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/centerhallway) -"jxy" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"jyl" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider/broodling, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"jyn" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/public/toolstorage1) -"jyr" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "16" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"jyL" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"jyW" = ( -/obj/structure/cult/talisman, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bridge) -"jzt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/photocopier/faxmachine, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"jzR" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"jBt" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"jBP" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"jBQ" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/dorms/dorm3) -"jBT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"jBW" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering, -/turf/simulated/floor, -/area/awaymission/snowfield/checkpoint) -"jCI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/cavern) -"jCJ" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/engineering/restroom) -"jCV" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider/thermic, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/hallway) -"jDt" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"jDu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"jDx" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/closet/secure_closet/detective{ - starts_with = list(/obj/item/clothing/gloves/forensic,/obj/item/clothing/accessory/holster,/obj/item/storage/belt/security,/obj/item/clothing/head/fedora,/obj/item/clothing/head/fedora/brown,/obj/item/clothing/suit/storage/det_trench,/obj/item/clothing/suit/storage/det_trench/grey,/obj/item/clothing/suit/armor/bulletproof,/obj/item/radio/headset/headset_sec/alt,/obj/item/radio/headset/headset_sec,/obj/item/radio/off,/obj/item/storage/backpack/security,/obj/item/storage/backpack/satchel/sec,/obj/item/clothing/shoes/boots/marine,/obj/item/clothing/under/soviet,/obj/item/melee/classic_baton,/obj/item/reagent_containers/spray/pepper,/obj/item/flash,/obj/item/ammo_magazine/s357=2,/obj/item/gun/projectile/revolver/nagant) - }, -/turf/simulated/floor/lino, -/area/awaymission/snowfield/security/detective) -"jDy" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"jDZ" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/monitorroom) -"jEa" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/oldsofa, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"jEF" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield bsa maints"; - opacity = 0 - }, -/obj/item/material/shard, -/turf/simulated/floor, -/area/awaymission/snowfield/command/bsa) -"jEJ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/vending/sovietsoda, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"jEK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/observatory) -"jFQ" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/machinery/light/flicker, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"jGc" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm9) -"jGP" = ( -/obj/item/paper/awaygate/snowfield/evacuation_order2, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm10) -"jGT" = ( -/obj/structure/closet{ - closet_appearance = /decl/closet_appearance/bio; - name = "Level-3 Biohazard Closet"; - opened = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/monitorroom) -"jHt" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/decal/remains/human, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"jIe" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/ammo_magazine/m762svd, -/obj/item/ammo_magazine/m762svd, -/obj/item/ammo_magazine/m762svd, -/obj/item/ammo_magazine/m762svd, -/obj/item/ammo_magazine/m762svd, -/obj/item/ammo_magazine/m762svd, -/obj/item/ammo_magazine/m762svd/ap, -/obj/item/ammo_magazine/m762svd/ap, -/obj/structure/table/rack, -/obj/item/gun/projectile/SVD, -/obj/item/gun/projectile/SVD, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"jIv" = ( -/obj/structure/cable/yellow, -/obj/structure/table/standard, -/obj/item/radio/phone, -/obj/machinery/power/apc{ - dir = 8; - name = "empty west bump"; - pixel_x = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"jJd" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"jJH" = ( -/obj/effect/map_helper/base_turf{ - baseturf = /turf/simulated/floor/outdoors/dirt/sif/planetuse - }, -/turf/simulated/wall/solidrock{ - block_tele = 0 - }, -/area/awaymission/snowfield/restricted) -"jJK" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 1; - name = "empty north bump"; - pixel_y = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/warden) -"jJO" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/fans/tiny, -/turf/simulated/floor, -/area/awaymission/snowfield/command/server) -"jKl" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"jKy" = ( -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"jKD" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm6) -"jLm" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/obj/structure/table/woodentable, -/obj/item/radio/phone, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"jLM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"jLW" = ( -/mob/living/simple_mob/faithless/cult{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"jMh" = ( -/obj/structure/reagent_dispensers/fueltank/high, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"jMm" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"jNl" = ( -/obj/machinery/vending/sovietsoda{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"jNF" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm10) -"jPC" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/machinery/computer/arcade/battle, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"jQq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"jQC" = ( -/obj/structure/window/reinforced, -/obj/structure/table/rack, -/obj/item/clothing/suit/armor/tactical, -/obj/item/clothing/suit/armor/tactical, -/obj/item/clothing/suit/armor/heavy, -/obj/item/clothing/suit/armor/heavy, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/item/clothing/head/helmet/combat, -/obj/item/clothing/head/helmet/combat, -/obj/item/clothing/head/helmet/combat, -/obj/item/clothing/head/helmet/combat, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"jQP" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "SMES Access"; - req_access = list(1,11); - req_one_access = null - }, -/obj/machinery/door/blast/regular{ - id = "snowfield command SMES lockdown" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway_substation) -"jQY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"jRe" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/southhallway) -"jRr" = ( -/obj/structure/closet{ - closet_appearance = /decl/closet_appearance/bio; - name = "Level-3 Biohazard Closet"; - opened = 1 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/sub_chamber) -"jRZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/locker_room) -"jSi" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/security/security_restroom) -"jSN" = ( -/obj/item/paper/awaygate/snowfield/activation_order, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bridge) -"jTf" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Cafeteria" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/service/cafeteria) -"jTk" = ( -/obj/item/card/id/gateway/snowfield/class2, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm2) -"jTq" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"jTB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_construct/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/checkpointunpowered) -"jTW" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm9) -"jUl" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"jUH" = ( -/obj/structure/railing, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/outside) -"jUY" = ( -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/outside) -"jVm" = ( -/obj/structure/table/steel_reinforced, -/obj/item/radio/phone, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/bridge) -"jVo" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/front_desk) -"jWa" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/warden) -"jWk" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"jWw" = ( -/obj/machinery/seed_extractor, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"jXb" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/tank/anesthetic, -/obj/item/tank/anesthetic, -/obj/item/tank/anesthetic, -/obj/item/tank/anesthetic, -/obj/item/tank/anesthetic, -/obj/item/tank/anesthetic, -/obj/item/tank/anesthetic, -/obj/item/tank/anesthetic, -/obj/item/clothing/mask/breath/anesthetic, -/obj/item/clothing/mask/breath/anesthetic, -/obj/item/clothing/mask/breath/anesthetic, -/obj/item/clothing/mask/breath/anesthetic, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"jXv" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"jXD" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/table/steel_reinforced, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"jYL" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"jZp" = ( -/obj/effect/fake_sun/cool, -/turf/simulated/wall/solidrock{ - block_tele = 0 - }, -/area/awaymission/snowfield/restricted) -"jZD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"jZM" = ( -/obj/structure/bed/chair/oldsofa/right{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"jZQ" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway_substation) -"kaX" = ( -/obj/item/stool/padded, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/blucarpet, -/area/awaymission/snowfield/service/publicstaff) -"kbd" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/hallway) -"kbh" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced/full{ - health = 1e+006 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield bsa maints"; - opacity = 0 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/command/bsa) -"kbn" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"kbP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"kbV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/security/interrogation) -"kcj" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm7) -"kcv" = ( -/obj/machinery/door/window/brigdoor/eastright{ - id = "cell1"; - name = "Cell 1"; - req_access = null; - req_one_access = list(2,4) - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/security_cell) -"kcD" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/command/sub_chamber) -"kcN" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/centerhallway) -"kdg" = ( -/turf/simulated/mineral, -/area/awaymission/snowfield/command/observatory_path) -"kdy" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/fruit_smudge, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"kdB" = ( -/obj/machinery/door/blast/gate, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/cavern) -"kdE" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"kdU" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/hallway/commandhallway) -"kei" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/command, -/obj/machinery/door/blast/regular{ - id = "snowfield test observation" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/observatory) -"keG" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/highsecurity{ - name = "Engine Room"; - req_one_access = list(1,11) - }, -/obj/machinery/door/blast/regular{ - id = "snowfieldengroomlockdown" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"keQ" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield bsa SCA"; - opacity = 0 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/simple_door/cult, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/monitorroom) -"keT" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/light_construct, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"kgA" = ( -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/security/firingrange) -"kgE" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket/wood, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/medical_restroom) -"khv" = ( -/obj/structure/flora/grass/green, -/obj/structure/flora/bush, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"khx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/ash, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"kia" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield bsa SCA"; - opacity = 0 - }, -/obj/structure/simple_door/cult, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/monitorroom) -"kig" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/hallway/frontgate_substation) -"kiD" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/mob/living/simple_mob/animal/giant_spider/frost, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"kiK" = ( -/turf/simulated/floor/flesh, -/area/awaymission/snowfield/command/bridge) -"kjm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"kjZ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"kke" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm15) -"kkL" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"klv" = ( -/obj/structure/cable/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - name = "empty south bump"; - pixel_y = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"kmb" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/white{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border, -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"kmf" = ( -/obj/structure/boulder, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/cavern) -"kmg" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/corner/white/border{ - dir = 9 - }, -/obj/machinery/appliance/cooker/fryer, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"kmt" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "27" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"kmE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/northhallway) -"knc" = ( -/obj/item/ore/glass, -/obj/item/ore/glass, -/obj/item/ore/glass, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/outside) -"knp" = ( -/turf/simulated/wall/cult, -/area/awaymission/snowfield/hallway/commandhallway) -"knr" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/public/toolstroage2) -"knP" = ( -/obj/structure/flora/tree/pine, -/obj/item/paper/awaygate/snowfield/note, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"knS" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/construct/wraith{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"kpg" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/light_construct{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"kpG" = ( -/obj/machinery/light, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"kpM" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "empty south bump"; - pixel_y = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/staff_room) -"kpY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/item/soap, -/obj/structure/closet/secure_closet/medical3{ - req_access = list(33); - starts_with = list(/obj/item/clothing/under/rank/medical,/obj/item/clothing/under/rank/nurse,/obj/item/clothing/under/rank/orderly,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat/modern,/obj/item/clothing/suit/storage/toggle/fr_jacket,/obj/item/radio/headset/headset_med,/obj/item/radio/headset/headset_med/alt,/obj/item/clothing/suit/storage/hooded/wintercoat/medical,/obj/item/clothing/shoes/boots/winter/medical,/obj/item/clothing/under/rank/nursesuit,/obj/item/clothing/head/nursehat,/obj/item/storage/box/freezer=3,/obj/item/storage/belt/medical) - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"kqw" = ( -/obj/item/pen, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"krl" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"krB" = ( -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/structure/closet/crate, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"krX" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine_checkpoint) -"kse" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm9) -"ksm" = ( -/obj/structure/morgue, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"ksW" = ( -/obj/structure/fence/corner{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"ktp" = ( -/obj/machinery/vending/assist, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"ktK" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"kug" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"kuo" = ( -/obj/structure/sign/signnew/secure, -/turf/simulated/wall/titanium, -/area/awaymission/snowfield/cavern) -"kvd" = ( -/obj/structure/lattice, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"kvB" = ( -/obj/structure/window/reinforced/tinted/frosted, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/security/detective) -"kvO" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/panicroom) -"kvQ" = ( -/obj/structure/table/steel_reinforced, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/item/clothing/mask/muzzle, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory_entrance) -"kxl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"kxF" = ( -/obj/structure/flora/grass/brown, -/obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"kxG" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/floodlight, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"kxV" = ( -/obj/structure/table/steel_reinforced, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm1) -"kxY" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/checkpointunpowered) -"kyg" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"kyr" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"kyw" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/command/server) -"kyy" = ( -/obj/machinery/door/airlock/security{ - name = "Riot Control"; - req_access = list(2) - }, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell_hallway) -"kyF" = ( -/obj/item/ore/glass, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"kyH" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/service/hydro) -"kyV" = ( -/obj/structure/morgue{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"kzi" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced/full{ - health = 1e+006 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield bsa maints"; - opacity = 0 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/command/bsa) -"kzk" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/clothing/suit/fire/heavy{ - armor = list("melee"=10,"bullet"=0,"laser"=0,"energy"=5,"bomb"=0,"bio"=0,"rad"=60); - desc = "Over a suit that protects against extreme fire and heat, this seems to be having a thin layer of coating underneath, providing additional protection against radiation." - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"kzH" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/fence, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"kzQ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright{ - name = "Coffin Storage" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"kBA" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "empty south bump"; - pixel_y = -24; - start_charge = 0 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"kCk" = ( -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"kCX" = ( -/obj/structure/table/steel_reinforced, -/obj/item/towel/random, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm9) -"kEd" = ( -/mob/living/simple_mob/animal/giant_spider/webslinger, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/janitor) -"kEj" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/firstaid/adv{ - starts_with = list(/obj/item/stack/medical/advanced/bruise_pack,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/stack/medical/advanced/ointment,/obj/item/stack/medical/advanced/ointment,/obj/item/stack/medical/advanced/ointment) - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory_entrance) -"kEt" = ( -/obj/structure/table/rack/shelf/steel, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"kEv" = ( -/obj/structure/table/rack/shelf/steel, -/obj/structure/bed/chair/wheelchair, -/obj/structure/bed/chair/wheelchair, -/obj/structure/bed/chair/wheelchair, -/obj/structure/bed/chair/wheelchair, -/obj/structure/bed/chair/wheelchair, -/obj/structure/bed/chair/wheelchair, -/obj/structure/bed/chair/wheelchair, -/obj/structure/bed/chair/wheelchair, -/obj/item/cane, -/obj/item/cane, -/obj/item/cane, -/obj/item/cane, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"kFk" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/cable_coil/yellow, -/obj/item/stack/cable_coil/yellow, -/obj/item/clothing/gloves/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/solarshack) -"kFt" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/eastright{ - name = "Execution Chamber"; - req_access = null; - req_one_access = list(2,4) - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"kFL" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/surgery) -"kGz" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"kHE" = ( -/obj/structure/closet/secure_closet/guncabinet{ - opened = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"kIH" = ( -/obj/structure/catwalk, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"kIX" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"kJg" = ( -/obj/machinery/light/flicker{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/warden) -"kJm" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"kJw" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "SMES Access"; - req_access = list(1,11); - req_one_access = null - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfieldenglockdown"; - name = "Engineering Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"kJQ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/freezer{ - name = "Kitchen cold room"; - req_access = list(28) - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/service/fridge) -"kKi" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/security/warden) -"kKm" = ( -/obj/item/material/shard{ - icon_state = "medium" - }, -/obj/structure/grille/broken, -/obj/item/material/shard{ - pixel_x = 5; - pixel_y = 10 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"kKp" = ( -/obj/structure/table/reinforced, -/obj/item/storage/briefcase/inflatable{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/obj/item/storage/briefcase/inflatable{ - pixel_x = -3 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"kKr" = ( -/obj/structure/closet/secure_closet/brig, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/security_cell) -"kKY" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"kMc" = ( -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"kMr" = ( -/obj/structure/outcrop, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/cavern) -"kMP" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/tech_storage) -"kNi" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/structure/catwalk, -/obj/item/material/shard, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"kNn" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm10) -"kNs" = ( -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/outside) -"kNB" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"kNJ" = ( -/obj/structure/cable/heavyduty{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/checkpointunpowered) -"kNP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/testroom) -"kNY" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"kOt" = ( -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"kOx" = ( -/mob/living/simple_mob/animal/giant_spider/broodling, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/evidence_storage) -"kOM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ore/diamond, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"kOY" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/checkpointunpowered) -"kPn" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Cells"; - req_access = list(1) - }, -/obj/structure/barricade/planks, -/turf/simulated/floor/tiled/red, -/area/awaymission/snowfield/security/security_cell_hallway) -"kPy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/hallway/commandhallway) -"kRT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"kSB" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/item/reagent_containers/food/condiment/ketchup, -/obj/item/reagent_containers/food/condiment/hotsauce, -/obj/item/reagent_containers/food/condiment/soysauce, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"kTd" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm8) -"kTf" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"kTu" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm12) -"kTZ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals_central5, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"kUa" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider/broodling, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"kUc" = ( -/obj/item/stool/padded, -/turf/simulated/floor/carpet/blucarpet, -/area/awaymission/snowfield/service/publicstaff) -"kUF" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"kWO" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/thermoregulator, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"kWR" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"kXd" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/service/fridge) -"kXp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "empty north bump"; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"kXI" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/medical_restroom) -"kXK" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/security/security_lockerroom) -"kXS" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"kYe" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"kYw" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"kYy" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"kYE" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/material/minihoe, -/obj/item/material/minihoe, -/obj/item/material/minihoe, -/obj/item/material/minihoe, -/obj/item/material/knife/machete/hatchet, -/obj/item/material/knife/machete/hatchet, -/obj/item/material/knife/machete/hatchet, -/obj/item/material/knife/machete/hatchet, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/floor_decal/corner/green, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"kYV" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"kZl" = ( -/obj/structure/catwalk, -/obj/structure/table/steel_reinforced, -/obj/item/radio/phone, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"kZp" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_security, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/hallway) -"kZv" = ( -/obj/item/paper_bin, -/obj/item/pen/multi, -/obj/item/taperecorder{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/structure/table/steel_reinforced, -/obj/item/flashlight/lamp/green, -/turf/simulated/floor/lino, -/area/awaymission/snowfield/security/detective) -"kZK" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm10) -"lap" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate{ - opened = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"laA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/monitor_room) -"laC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/outside) -"laF" = ( -/obj/effect/decal/cleanable/ash, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"laJ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 8; - name = "empty west bump"; - pixel_x = -24; - start_charge = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/monitorroom) -"laK" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"lbq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/testroom) -"lbS" = ( -/obj/structure/railing/grey, -/turf/simulated/floor/outdoors/ice, -/area/awaymission/snowfield/outside) -"lcf" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"lcn" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"lcv" = ( -/turf/simulated/floor/cult, -/area/awaymission/snowfield/hallway/commandhallway) -"lcA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"lcC" = ( -/obj/effect/floor_decal/steeldecal/monofloor, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/effect/floor_decal/steeldecal/steel_decals_central5, -/obj/machinery/door/blast/regular{ - density = 0; - health = 135; - icon_state = "pdoor0"; - id = "snowfield gateway"; - opacity = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/gateway) -"lcJ" = ( -/obj/structure/catwalk, -/obj/machinery/light_construct/small, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"lcX" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm14) -"ldH" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"ldT" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/spider/stickyweb, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"ler" = ( -/obj/structure/table/glass, -/obj/item/soap, -/obj/item/soap, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/structure/cable/yellow, -/obj/machinery/power/apc{ - dir = 8; - name = "empty west bump"; - pixel_x = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/medical_restroom) -"leB" = ( -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"leL" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/obj/structure/closet/crate/trashcart, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"lfj" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"lfp" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"lfO" = ( -/obj/structure/table/steel_reinforced, -/obj/item/card/id/gateway/snowfield/class2, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm11) -"lgo" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm7) -"lgS" = ( -/turf/simulated/wall/wood, -/area/awaymission/snowfield/cavern) -"lgT" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm13) -"lig" = ( -/obj/machinery/computer/prisoner, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"lii" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/toolstroage2) -"lin" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/public/toolstroage2) -"liC" = ( -/obj/machinery/atmospherics/pipe/tank{ - desc = "A large vessel containing huge amount of water."; - dir = 1; - icon_state = "o2_map"; - name = "Water Tank" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"ljd" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/floor_decal/industrial/loading, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"ljm" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/centerhallway) -"ljs" = ( -/obj/structure/cable/heavyduty{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"ljz" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/obj/item/tool/screwdriver, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"lkx" = ( -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/hallway/commandhallway) -"lkO" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"llk" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Chemistry Laboratory"; - req_access = null; - req_one_access = list(1,33) - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"llv" = ( -/obj/machinery/door/airlock/security{ - name = "Evidence Storage"; - req_access = list(1) - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/evidence_storage) -"llx" = ( -/obj/structure/cable/yellow, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm9) -"llG" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/testroom) -"lme" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"lmq" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"lmC" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"lnc" = ( -/obj/structure/table/steel, -/obj/item/module/power_control, -/obj/item/module/power_control, -/obj/item/module/power_control, -/obj/item/module/power_control, -/obj/item/airlock_electronics, -/obj/item/airlock_electronics, -/obj/item/airlock_electronics, -/obj/item/airlock_electronics, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"lne" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"lnh" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/evidence_storage) -"lnO" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/bordercorner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"loh" = ( -/obj/machinery/light_construct, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/creature/cult/strong{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"lom" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = -5 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"loF" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"lpJ" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/mob/living/simple_mob/animal/giant_spider/electric, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"lpQ" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/marble, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -6 - }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"lqu" = ( -/obj/item/paper/awaygate/snowfield/evacuation_order3, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm16) -"lqv" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"lqC" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/catwalk, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/command/server) -"lrg" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm9) -"lro" = ( -/obj/structure/cable/heavyduty{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"lry" = ( -/mob/living/simple_mob/construct/artificer{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/public/toolstroage2) -"lsi" = ( -/obj/structure/catwalk, -/obj/structure/table/steel_reinforced, -/obj/item/reagent_containers/glass/beaker/vial{ - name = "vial (Lexorin)"; - prefill = list("lexorin"=30) - }, -/obj/item/reagent_containers/glass/beaker/vial{ - name = "vial (Zombie Powder)"; - pixel_x = -5; - prefill = list("zombiepowder"=30) - }, -/obj/item/reagent_containers/glass/beaker/vial{ - name = "vial (Cryptobiolin)"; - pixel_x = 5; - prefill = list("cryptobiolin"=30) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"lsw" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/panicroom) -"lsV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/security/security_cell_hallway) -"ltg" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"ltp" = ( -/obj/random/tech_supply, -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/toolstroage2) -"ltZ" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/gateway) -"lus" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/hallway/dormhallway) -"luy" = ( -/obj/machinery/light/small/flicker{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/commandarmory) -"lve" = ( -/obj/structure/bed/chair/oldsofa, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"lvw" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/spider/stickyweb, -/mob/living/simple_mob/animal/giant_spider/frost, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"lvP" = ( -/turf/simulated/wall/cult, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"lvY" = ( -/obj/effect/decal/cleanable/ash, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"lwj" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/mob/living/simple_mob/construct/shade, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/monitorroom) -"lwB" = ( -/obj/machinery/door/blast/regular{ - id = "snowfield third blast" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"lxe" = ( -/obj/machinery/light/small, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"lxg" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider/pepper, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"lxq" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm11) -"lxB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"lxS" = ( -/obj/structure/closet/crate/secure/engineering, -/obj/item/stack/material/graphite{ - amount = 50 - }, -/obj/item/stack/material/graphite{ - amount = 50 - }, -/obj/item/stack/material/graphite{ - amount = 50 - }, -/obj/item/stack/material/graphite{ - amount = 50 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/stack/material/lead{ - amount = 50 - }, -/obj/item/stack/material/lead{ - amount = 50 - }, -/obj/item/stack/material/lead{ - amount = 50 - }, -/obj/item/stack/material/lead{ - amount = 50 - }, -/obj/item/stack/material/lead{ - amount = 50 - }, -/obj/item/stack/material/lead{ - amount = 50 - }, -/obj/item/stack/material/lead{ - amount = 50 - }, -/obj/item/stack/material/lead{ - amount = 50 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"lxV" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/southhallway) -"lyb" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"lyM" = ( -/obj/machinery/door/window/northright{ - name = "Kitchen Desk"; - req_one_access = list(1,28) - }, -/obj/structure/table/steel_reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"lyN" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/green, -/obj/effect/floor_decal/corner/green/border{ - dir = 9 - }, -/obj/structure/bookcase/manuals/medical, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"lzD" = ( -/obj/structure/table/steel_reinforced, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm5) -"lzM" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"lAd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm1) -"lBd" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"lBx" = ( -/obj/effect/decal/cleanable/vomit, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"lBK" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/command/testroom) -"lBV" = ( -/obj/structure/flora/tree/pine, -/obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"lBZ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/medical{ - name = "Medical Staff Lounge"; - req_one_access = list(1,5) - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"lDj" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - starts_with = list(/obj/item/clothing/accessory/storage/brown_vest,/obj/item/storage/toolbox/mechanical,/obj/item/radio/headset/headset_eng,/obj/item/radio/headset/headset_eng/alt,/obj/item/clothing/suit/storage/hazardvest,/obj/item/clothing/mask/gas,/obj/item/cartridge/engineering,/obj/item/taperoll/engineering,/obj/item/clothing/head/hardhat,/obj/item/clothing/suit/storage/hooded/wintercoat/engineering,/obj/item/clothing/shoes/boots/winter/engineering,/obj/item/tank/emergency/oxygen/engi,/obj/item/storage/belt/utility,/obj/item/reagent_containers/spray/windowsealant) - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/locker_room) -"lDr" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"lDs" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/light, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"lDA" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/observatory) -"lDF" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cult/tome, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/gateway) -"lDX" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/surgery) -"lEI" = ( -/obj/item/gun/projectile/automatic/serdy/sr25c, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"lFf" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/button/remote/blast_door{ - id = "snowfield testlab entrance"; - name = "Lab Front Entrance"; - req_one_access = list(1) - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"lFR" = ( -/obj/structure/table/steel_reinforced, -/obj/item/radio/phone, -/turf/simulated/floor/carpet, -/area/awaymission/snowfield/security/detective) -"lFV" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"lGq" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm1) -"lGw" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"lGB" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"lGI" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"lGM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/front_desk) -"lGQ" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"lHx" = ( -/obj/machinery/gateway{ - density = 0; - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"lHG" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/bordercorner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"lHN" = ( -/obj/machinery/iv_drip, -/obj/machinery/light{ - layer = 3 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"lHQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"lIw" = ( -/obj/item/ammo_casing/a762x54, -/obj/item/ammo_casing/spent{ - pixel_x = -4; - pixel_y = -7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"lIx" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/security/seconddesk) -"lID" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm4) -"lJs" = ( -/obj/structure/table/steel, -/obj/item/surgical/scalpel, -/obj/item/autopsy_scanner, -/obj/item/surgical/cautery, -/obj/effect/floor_decal/borderfloor, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"lJx" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"lJR" = ( -/obj/structure/flora/grass/green, -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"lJX" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"lKj" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/testroom) -"lLf" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/structure/closet/secure_closet/medical3{ - req_access = list(33); - starts_with = list(/obj/item/clothing/under/rank/medical,/obj/item/clothing/under/rank/nurse,/obj/item/clothing/under/rank/orderly,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat/modern,/obj/item/clothing/suit/storage/toggle/fr_jacket,/obj/item/radio/headset/headset_med,/obj/item/radio/headset/headset_med/alt,/obj/item/clothing/suit/storage/hooded/wintercoat/medical,/obj/item/clothing/shoes/boots/winter/medical,/obj/item/clothing/under/rank/nursesuit,/obj/item/clothing/head/nursehat,/obj/item/storage/box/freezer=3,/obj/item/storage/belt/medical) - }, -/obj/item/soap, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"lLo" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/button/remote/blast_door{ - id = "snowfield bsa MR"; - name = "Tunguska Monitoring Room Lockdown" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"lLw" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/mob/living/simple_mob/faithless/cult{ - devourable = 0 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/public/toolstroage2) -"lLY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm4) -"lMz" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/material/ashtray/glass, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"lNd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"lNE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"lPD" = ( -/obj/item/flashlight/lamp/green, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"lPK" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/centerhallway) -"lQb" = ( -/obj/structure/closet/bombclosetsecurity, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"lQH" = ( -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/patient_restroom) -"lQV" = ( -/turf/simulated/wall/cult, -/area/awaymission/snowfield/public/toolstroage2) -"lRa" = ( -/obj/item/material/shard{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"lTq" = ( -/obj/machinery/computer/guestpass{ - pixel_y = -30 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"lTQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/observatory_path) -"lUK" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"lWg" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - desc = "It pops the climax to the sky."; - name = "Remote climax-drop control"; - pixel_x = -23 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/observatory) -"lWi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"lWC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/chemical_dispenser/bar_soft/full, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"lWJ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/sub_chamber) -"lWW" = ( -/obj/structure/table/rack, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs, -/obj/item/storage/box/flashbangs, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"lZH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway_substation) -"mag" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/public/toolstorage1) -"mah" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine_checkpoint) -"maj" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm13) -"maF" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"maM" = ( -/obj/item/paper_bin, -/obj/item/pen/blue{ - pixel_x = -6 - }, -/obj/item/pen/red{ - pixel_x = 6 - }, -/obj/item/pen, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"maR" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/testroom) -"maX" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/corner/grey/bordercorner, -/obj/effect/spider/stickyweb, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"mbh" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"mbK" = ( -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access = null - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/patient_restroom) -"mbT" = ( -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"mct" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/monitorroom) -"mcC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"mcZ" = ( -/obj/item/material/shard{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"mdc" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm7) -"mde" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/med_data/laptop, -/obj/machinery/light_construct{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/security/detective) -"mdQ" = ( -/obj/structure/table/steel_reinforced, -/obj/item/material/shard/shrapnel{ - pixel_x = -3; - pixel_y = -7 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"meq" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"mes" = ( -/obj/item/storage/box/scattershot/large, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/commandarmory) -"meB" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/clothing/suit/bio_suit/general, -/obj/structure/closet{ - closet_appearance = /decl/closet_appearance/bio; - name = "Level-3 Biohazard Closet"; - opened = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/locker_room) -"meN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/tech_storage) -"mfc" = ( -/obj/structure/catwalk, -/obj/item/stack/rods, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"mfp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/item/stack/rods, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/obj/item/material/shard, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/gateway) -"mgo" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/circuitboard/crew{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/secure_tech_storage) -"mgJ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"mgO" = ( -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced/full{ - health = 1e+006 - }, -/obj/structure/grille, -/turf/simulated/floor, -/area/awaymission/snowfield/command/testroom) -"mih" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm9) -"mjf" = ( -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/cavern) -"mkt" = ( -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"mkR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/southhallway) -"mll" = ( -/obj/structure/table/rack/shelf/steel, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/gun/projectile/shotgun/pump/shorty{ - desc = "A clunky, lightly modified special carbine, this gun is often be seen in the old terran's prison, designed to suppress the prison riots."; - description_fluff = "Designed to suppress the prison riot, KS-23 has been developed in 1970s in Soviet Russia. Crude, but compact, it is easy to carry around while in patrol, and useful in close combat."; - name = "KS-23" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/commandarmory) -"mlT" = ( -/mob/living/simple_mob/construct/shade, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/monitorroom) -"mlV" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/machinery/light/small/flicker, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"mlY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"mmF" = ( -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"mmL" = ( -/obj/machinery/door/airlock/hatch{ - name = "Server Control Room"; - req_access = list(61); - req_one_access = list(61) - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/server) -"mmT" = ( -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/security/hallway2) -"mmX" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/sub_chamber) -"mmY" = ( -/obj/machinery/light/small, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"mnh" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/item/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/obj/item/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"mnw" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"mpb" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"mpi" = ( -/obj/structure/table/steel_reinforced, -/obj/item/autopsy_scanner, -/obj/item/surgical/bioregen, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"mpk" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"mpC" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/button/remote/blast_door{ - id = "snowfield command SMES lockdown"; - name = "Command SMES Lockdown"; - pixel_x = 5; - req_one_access = list(3,20) - }, -/obj/machinery/button/remote/blast_door{ - id = "snowfield command lockdown"; - name = "Command Room Lockdown"; - pixel_x = -5; - req_one_access = list(3,20) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/bridge) -"mqa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"mrS" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/engineering/monitor_room) -"mtq" = ( -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/solarshack) -"mtE" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"mtG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/monitorroom) -"mtO" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"mtW" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/patients) -"mui" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/hallway) -"muk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm11) -"mun" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"muH" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper/awaygate/snowfield/evacuation_order2, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"mvf" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"mvU" = ( -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/southhallway) -"mwl" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm16) -"mwo" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"mwp" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/marble, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"mwG" = ( -/obj/structure/table/rack/shelf/steel, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/box/masks, -/obj/item/storage/box/masks, -/obj/item/storage/box/masks, -/obj/item/storage/box/masks, -/obj/item/storage/box/masks, -/obj/item/storage/box/masks, -/obj/item/storage/box/masks, -/obj/item/storage/box/masks, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"mwM" = ( -/obj/structure/cable/heavyduty{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"mwO" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"mwU" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"mxJ" = ( -/obj/structure/closet/secure_closet/guncabinet{ - opened = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/monitorroom) -"mxR" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"mxV" = ( -/obj/structure/table/bench/wooden, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/engine_checkpoint) -"myq" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/snowfield/security/lobby) -"myD" = ( -/obj/machinery/door/window/northleft{ - name = "Kitchen Desk"; - req_one_access = list(1,28) - }, -/obj/structure/table/steel_reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"myF" = ( -/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ - dir = 8 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell_hallway) -"myX" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"mzy" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"mAs" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"mBe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/blucarpet, -/area/awaymission/snowfield/service/publicstaff) -"mBp" = ( -/obj/machinery/door/blast/regular{ - id = "outpost third path blast" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/checkpointhallway) -"mCK" = ( -/obj/structure/closet/crate/secure/engineering, -/obj/item/stack/material/uranium{ - amount = 50 - }, -/obj/item/stack/material/uranium{ - amount = 50 - }, -/obj/item/stack/material/uranium{ - amount = 50 - }, -/obj/item/stack/material/uranium{ - amount = 50 - }, -/obj/item/stack/material/uranium{ - amount = 50 - }, -/obj/item/stack/material/uranium{ - amount = 50 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"mDd" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/construct/artificer/caster{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/sub_chamber) -"mDr" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/southhallway) -"mDK" = ( -/obj/item/defib_kit/loaded, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"mDV" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"mEn" = ( -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"mEG" = ( -/obj/machinery/chemical_dispenser/full, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"mFq" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm12) -"mFz" = ( -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"mFK" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 6 - }, -/obj/structure/cable/yellow, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"mFY" = ( -/obj/machinery/power/solar, -/obj/machinery/power/solar, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"mGG" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm8) -"mGP" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm14) -"mGU" = ( -/obj/item/bedsheet/orange, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"mGV" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/bridge) -"mHh" = ( -/obj/structure/table/rack/shelf/steel, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/storage/pill_bottle/assorted, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"mHr" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/structure/cable/yellow, -/obj/machinery/power/apc{ - name = "empty south bump"; - pixel_y = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"mHE" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/white{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"mIf" = ( -/obj/machinery/vending/sovietsoda{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"mIs" = ( -/obj/machinery/power/solar, -/obj/structure/cable/yellow, -/turf/simulated/floor/airless, -/area/awaymission/snowfield/outside) -"mIO" = ( -/obj/structure/target_stake, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"mIX" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/engineering/engine_checkpoint) -"mJi" = ( -/turf/simulated/mineral, -/area/awaymission/snowfield/security/hallway2) -"mJj" = ( -/obj/item/stool, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm11) -"mJs" = ( -/obj/structure/table/bench, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"mJR" = ( -/obj/structure/cable/heavyduty{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"mKv" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"mLz" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm16) -"mMp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"mMr" = ( -/obj/structure/closet/coffin, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"mMS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"mMX" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/box/rxglasses, -/obj/item/storage/box/rxglasses, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"mNr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/testroom) -"mNF" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"mNZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/boulder, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/outside) -"mOc" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"mOn" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/machinery/vending/cigarette{ - dir = 1; - prices = null - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"mPA" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"mPG" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"mPL" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/machinery/light, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"mQm" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - id = "snowfield bsa gateway path" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"mQs" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"mRr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/rack, -/obj/item/pickaxe, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"mRz" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/medical{ - name = "Medical Locker Room"; - req_one_access = list(1,5) - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"mRN" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "empty west bump"; - pixel_x = -24; - start_charge = 0 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/hallway) -"mRS" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"mSS" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"mTa" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Armoury Section"; - req_access = list(3); - req_one_access = list(3) - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory_entrance) -"mTb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/closet/l3closet/janitor, -/obj/effect/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"mTf" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/machinery/light_construct, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/toolstroage2) -"mTL" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"mTR" = ( -/obj/structure/closet/crate/bin, -/obj/effect/floor_decal/borderfloorblack/corner, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/public/toolstorage1) -"mUc" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"mUx" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"mUF" = ( -/obj/effect/mine/frag, -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"mUN" = ( -/obj/machinery/door/blast/gate, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"mUV" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/hallway/commandhallway) -"mVf" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"mVt" = ( -/obj/structure/table/steel_reinforced, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm13) -"mVw" = ( -/obj/machinery/computer/security/wooden_tv, -/turf/simulated/floor/lino, -/area/awaymission/snowfield/security/detective) -"mVB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"mWF" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"mWM" = ( -/obj/structure/table/woodentable, -/obj/item/paper_bin, -/obj/item/pen/blue{ - pixel_x = 3; - pixel_y = -5 - }, -/obj/item/pen{ - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"mWW" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"mWY" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"mXy" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/monitorroom) -"mYl" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 10 - }, -/obj/machinery/vending/dinnerware{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"mZF" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/monitor_room) -"mZG" = ( -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/hallway/commandhallway) -"nab" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"naj" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"nau" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway_substation) -"naQ" = ( -/obj/structure/table/woodentable, -/obj/item/card/id/gateway/snowfield/class3E, -/turf/simulated/floor/carpet/blucarpet, -/area/awaymission/snowfield/service/publicstaff) -"ncx" = ( -/obj/structure/fence/end{ - dir = 4 - }, -/obj/structure/fence, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"ncN" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 8 - }, -/obj/structure/flora/pottedplant/thinbush, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"ncT" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/centerhallway) -"ncU" = ( -/obj/machinery/door/blast/gate, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/cavern) -"ncW" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm9) -"ncZ" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm1) -"ndW" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/engineering/restroom) -"ned" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"nei" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm13) -"neq" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/machinery/vending/coffee{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"new" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"nfs" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/monitorroom) -"nfA" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/kitchenspike, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/service/fridge) -"nfJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"nfR" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/surgery) -"ngv" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm1) -"ngA" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/obj/item/stool/padded, -/obj/machinery/light, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"ngO" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider/pepper, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"nhd" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/monitor_room) -"nhZ" = ( -/obj/item/material/shard/shrapnel{ - pixel_x = 12; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/commandhallway) -"nid" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"nin" = ( -/obj/structure/flora/tree/pine, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"niq" = ( -/obj/structure/coatrack, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"niv" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"niM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"njJ" = ( -/obj/structure/fence/end{ - dir = 8 - }, -/obj/structure/fence, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"nkh" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"nkv" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/card/id/gateway/snowfield/class5E, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm15) -"nkw" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm9) -"nkF" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"nkR" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/item/card/id/gateway/snowfield/class7, -/mob/living/simple_mob/faithless/cult{ - devourable = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"nkY" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"nli" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "1" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"nlv" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm15) -"nmf" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"nmy" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"nmV" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"nnC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"non" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"nos" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/hydro) -"noR" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"npw" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"nqx" = ( -/obj/structure/boulder, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/outside) -"nrv" = ( -/mob/living/simple_mob/construct/harvester{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/monitorroom) -"nrK" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/box/chemimp{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/storage/box/trackimp, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/cable/yellow, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"nrQ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 8; - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"nse" = ( -/obj/structure/outcrop, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"nsf" = ( -/obj/effect/decal/cleanable/spiderling_remains, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"nsj" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm5) -"nsn" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/hallway/commandhallway) -"nsA" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/rack/shelf/steel, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"nsC" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "32" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"nsH" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/structure/closet/crate/bin, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"nsL" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/vore/demonAI/engorge{ - devourable = 0; - faction = "cult"; - health = 550; - size_multiplier = 1.5; - vore_pounce_chance = 30; - vore_pounce_maxhealth = 95 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bridge) -"ntD" = ( -/obj/structure/bed/chair/office/light, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"nue" = ( -/obj/structure/cable/heavyduty{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"nvp" = ( -/obj/effect/decal/remains/human, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"nvt" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"nvM" = ( -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"nvO" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"nwu" = ( -/obj/structure/simple_door/wood, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/checkpointunpowered) -"nwE" = ( -/obj/item/stool/padded, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm16) -"nwF" = ( -/mob/living/simple_mob/animal/giant_spider/tunneler/fast, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"nwG" = ( -/obj/structure/lattice, -/obj/structure/girder, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/security/hallway2) -"nwP" = ( -/obj/effect/decal/remains/ribcage, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/decal/cleanable/blood, -/obj/item/card/id/gateway/snowfield/class4, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/sub_chamber) -"nwU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/structure/closet/secure_closet/guncabinet{ - opened = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"nwW" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm1) -"nxB" = ( -/obj/machinery/gateway{ - dir = 8 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"nyh" = ( -/obj/structure/table/standard, -/obj/item/storage/box/handcuffs{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/evidence, -/obj/item/storage/box/evidence, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light_construct{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_lockerroom) -"nyw" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"nyy" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/medical/storage_room) -"nyG" = ( -/obj/structure/outcrop, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"nyK" = ( -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/sub_chamber) -"nyV" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_soft/full, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"nzk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/vending/sovietsoda{ - dir = 8; - pixel_x = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"nzx" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/security/security_cell_hallway) -"nzW" = ( -/obj/structure/fence/corner, -/obj/structure/fence/corner{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"nAm" = ( -/obj/structure/catwalk, -/obj/machinery/light/small, -/turf/simulated/floor, -/area/awaymission/snowfield/solarshack) -"nAu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/fireaxecabinet{ - locked = 0; - open = 1; - pixel_x = 30 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"nAG" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/hallway) -"nAY" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/snowfield/security/observatory) -"nBg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/server) -"nBi" = ( -/obj/effect/floor_decal/techfloor/orange/corner, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bsa) -"nBr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/security/firingrange) -"nBs" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/machinery/smartfridge/drying_rack, -/obj/effect/floor_decal/corner/green, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"nBM" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"nBW" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/security/interrogation) -"nBY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/ash, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"nCh" = ( -/obj/structure/cable/yellow, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"nCO" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/surgical/circular_saw{ - pixel_y = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/remains/human, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/surgery) -"nDh" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"nDs" = ( -/obj/structure/catwalk, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"nDV" = ( -/obj/machinery/door/window/brigdoor/northleft{ - name = "Code Blue Armory"; - req_access = null - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"nFz" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/item/multitool, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"nFO" = ( -/obj/machinery/light_construct{ - dir = 1 - }, -/obj/item/stack/rods, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/sub_chamber) -"nGn" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"nHc" = ( -/obj/structure/closet/coffin, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"nHo" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/awaymission/snowfield/command/server) -"nHt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/medical_restroom) -"nHA" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/medical/medical_restroom) -"nHH" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/checkpointhallway) -"nHI" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"nHO" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/southhallway) -"nIq" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"nIJ" = ( -/obj/structure/table, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"nIK" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/service/fridge) -"nJK" = ( -/obj/structure/boulder, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"nKn" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/engineering/restroom) -"nLz" = ( -/obj/structure/catwalk, -/obj/machinery/light/small/flicker{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"nLM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/sub_chamber) -"nLT" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3; - starts_with = list(/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/obj/item/stack/medical/ointment,/obj/item/storage/pill_bottle/paracetamol,/obj/item/storage/pill_bottle/iron) - }, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/o2{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"nMh" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"nMA" = ( -/obj/machinery/door/airlock/glass_security, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/hallway) -"nNr" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"nNu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"nNX" = ( -/turf/simulated/gore, -/area/awaymission/snowfield/command/gateway) -"nOk" = ( -/obj/machinery/door/airlock/highsecurity{ - req_one_access = list(1,4) - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield sec front blast"; - opacity = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"nOq" = ( -/obj/structure/table/steel, -/obj/item/paper_bin{ - pixel_y = -6 - }, -/obj/item/camera{ - name = "Autopsy Camera"; - pixel_x = -2; - pixel_y = 7 - }, -/obj/item/pen/red{ - pixel_x = -1; - pixel_y = -9 - }, -/obj/item/pen/blue{ - pixel_x = 3; - pixel_y = -5 - }, -/obj/effect/floor_decal/borderfloor, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/medical/morgue) -"nOs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm7) -"nON" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider/ion, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"nOU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/black{ - dir = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/awaymission/snowfield/command/server) -"nPa" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/ammo_magazine/ak74, -/obj/structure/cult/tome, -/obj/item/ammo_magazine/ak74, -/obj/item/ammo_magazine/ak74, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/commandarmory) -"nPf" = ( -/obj/structure/catwalk, -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/item/reagent_containers/glass/bucket/wood{ - pixel_x = -8; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"nPM" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/structure/closet/crate/bin, -/obj/machinery/light, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"nPS" = ( -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"nQK" = ( -/obj/structure/table/wooden_reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm10) -"nQZ" = ( -/obj/structure/closet/crate, -/obj/item/circuitboard/smes, -/obj/item/circuitboard/smes, -/obj/item/smes_coil, -/obj/item/smes_coil, -/obj/item/smes_coil/super_capacity, -/obj/item/smes_coil/super_capacity, -/obj/item/smes_coil/super_io, -/obj/item/smes_coil/super_io, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"nRv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/security/interrogation) -"nRI" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/paper_bin, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"nSC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"nTa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/cavern) -"nTe" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm3) -"nTf" = ( -/obj/item/pickaxe/hand, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"nTz" = ( -/obj/machinery/computer/security, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"nUC" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"nVb" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"nVo" = ( -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/medical_restroom) -"nVv" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/hydro) -"nVw" = ( -/obj/structure/table/steel_reinforced, -/obj/item/binoculars, -/obj/item/binoculars, -/obj/item/binoculars, -/obj/item/binoculars, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"nVF" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"nWe" = ( -/obj/structure/fence/door, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"nXf" = ( -/obj/structure/cable/yellow, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - name = "empty south bump"; - pixel_y = -24; - start_charge = 0 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/front_desk) -"nXt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"nXS" = ( -/obj/structure/girder, -/turf/simulated/floor, -/area/awaymission/snowfield/security/firingrange) -"nYl" = ( -/obj/machinery/door/blast/regular{ - id = "snowfield fourth pathway lock" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"nYG" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"nZe" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"nZx" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"nZF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"nZN" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"oac" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/monitorroom) -"oao" = ( -/obj/machinery/door/window/northright{ - req_access = list(1) - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/evidence_storage) -"oaq" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_one_access = list(1,5) - }, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 - }, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/obj/item/ammo_magazine/clip/mosin, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"obI" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "29" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"obZ" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"och" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm7) -"ocj" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/dirt, -/obj/item/card/id/syndicate, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/checkpointunpowered) -"ocr" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/security/security_cell) -"ocF" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/tech_storage) -"ocP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "SMES Access"; - req_access = list(1,11); - req_one_access = null - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfieldenglockdown"; - name = "Engineering Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/hallway/frontgate_substation) -"odb" = ( -/obj/structure/catwalk, -/obj/item/circuitboard/broken, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/sub_chamber) -"odi" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"oeP" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"ofm" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"ofH" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/bridge) -"ofJ" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/construct/artificer/caster{ - devourable = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/bridge) -"ofN" = ( -/obj/item/stool, -/obj/machinery/light, -/obj/item/card/id/gateway/snowfield/class2, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm4) -"ofQ" = ( -/obj/machinery/smartfridge/secure/medbay{ - req_one_access = list(33,66) - }, -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/medical/chemistry) -"ogu" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/pen/multi, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"ogy" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "Dorms10"; - name = "Room 10" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/dorm10) -"ogz" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"ohs" = ( -/obj/machinery/door/airlock/security, -/turf/simulated/floor/tiled/red, -/area/awaymission/snowfield/security/hallway) -"oig" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/tech_storage) -"oii" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/awaymission/snowfield/command/server) -"oik" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/centerhallway) -"oir" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/commandhallway) -"oiJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/awaymission/snowfield/security/armory) -"ojz" = ( -/obj/machinery/computer/security, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/engine_checkpoint) -"ojQ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm3) -"ojW" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"ojY" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"okk" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"okr" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"okx" = ( -/obj/structure/lattice, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/security/hallway2) -"okK" = ( -/obj/machinery/vending/tool{ - dir = 8; - pixel_x = -5; - products = list(/obj/item/stack/cable_coil/random=10,/obj/item/tool/crowbar=5,/obj/item/weldingtool=3,/obj/item/tool/wirecutters=5,/obj/item/tool/wrench=5,/obj/item/analyzer=5,/obj/item/tool/screwdriver=5,/obj/item/flashlight/glowstick=3,/obj/item/flashlight/glowstick/red=3,/obj/item/flashlight/glowstick/blue=3,/obj/item/flashlight/glowstick/orange=3,/obj/item/flashlight/glowstick/yellow=3) - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/toolstroage2) -"ola" = ( -/obj/structure/table/standard, -/obj/item/clothing/accessory/storage/black_vest/fluff, -/obj/item/clothing/accessory/storage/black_vest/fluff, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/flicker{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_lockerroom) -"olD" = ( -/obj/machinery/power/solar, -/obj/machinery/power/solar, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"olY" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/bridge) -"omd" = ( -/obj/effect/mine/frag, -/obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"omf" = ( -/obj/machinery/light/floortube/flicker{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"omt" = ( -/obj/effect/floor_decal/corner/purple/border, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"omG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/security/security_cell_hallway) -"omU" = ( -/obj/machinery/light_construct{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"onl" = ( -/obj/machinery/computer/secure_data, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"ons" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway_substation) -"onD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"onF" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"onW" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm7) -"ooF" = ( -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"ooQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"opn" = ( -/obj/structure/table/glass, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/patient_restroom) -"opp" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "snowfield test observation"; - name = "Test Chamber Observation Access"; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/observatory) -"oqV" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/clothing/suit/bio_suit/general, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"orf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/public/toolstroage2) -"oru" = ( -/obj/structure/table/steel_reinforced, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm4) -"orY" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm4) -"osn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"osv" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/structure/window/reinforced, -/obj/structure/closet{ - closet_appearance = /decl/closet_appearance/oxygen/fire; - name = "fire-safety closet"; - opened = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"osG" = ( -/obj/structure/catwalk, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"osI" = ( -/obj/effect/spider/stickyweb, -/mob/living/simple_mob/animal/giant_spider/tunneler/frequent, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"osO" = ( -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/security/firingrange) -"osR" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"oti" = ( -/obj/structure/fireaxecabinet{ - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"otE" = ( -/obj/structure/flora/grass/brown, -/obj/structure/flora/bush, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"otF" = ( -/obj/machinery/gateway{ - density = 0; - dir = 10 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"oun" = ( -/obj/machinery/door/airlock{ - name = "Unit 4" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"our" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"ouu" = ( -/obj/machinery/door/airlock{ - name = "Unit 3" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"ovn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/commandarmory) -"ovN" = ( -/obj/structure/cable/yellow, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille/broken, -/turf/simulated/floor, -/area/awaymission/snowfield/security/warden) -"oww" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/dorms/panicroom) -"owy" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 6 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/steel_reinforced, -/obj/item/storage/box/masks, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/surgery) -"oxR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ore/glass, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"oya" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"oyB" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/checkpointunpowered) -"ozt" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm9) -"ozF" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"ozZ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"oAu" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/snowfield/security/hallway) -"oBG" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/item/bone/arm, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"oBO" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/light, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"oBU" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/light, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"oCc" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"oDj" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm3) -"oDp" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"oDz" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/hallway) -"oDD" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold4w/visible/blue, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"oEi" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/steel_reinforced, -/obj/item/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/obj/item/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/obj/item/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/obj/item/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/obj/item/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/obj/item/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/obj/item/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/obj/item/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"oEM" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"oFV" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm12) -"oGm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"oGV" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "20" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"oIi" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"oIs" = ( -/obj/item/tank/emergency/oxygen/double, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"oIZ" = ( -/obj/machinery/chemical_dispenser/full, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"oJX" = ( -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"oKF" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"oLd" = ( -/obj/structure/table/steel, -/obj/item/storage/bag/circuits/basic, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"oLj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/rack/shelf/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/locker_room) -"oLp" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"oLt" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "15" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"oLM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/wall/wood, -/area/awaymission/snowfield/outside) -"oLW" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"oNd" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"oNj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"oOl" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/door_assembly/door_assembly_eng, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"oOF" = ( -/obj/machinery/gateway, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"oPh" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_construct/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"oPW" = ( -/obj/random/tech_supply, -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/public/toolstorage1) -"oQg" = ( -/obj/structure/table/bench/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"oQl" = ( -/obj/structure/table/steel, -/obj/item/integrated_electronics/debugger{ - pixel_x = -5 - }, -/obj/item/integrated_electronics/wirer{ - pixel_x = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"oQO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"oSh" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/carpet/blucarpet, -/area/awaymission/snowfield/service/publicstaff) -"oSk" = ( -/obj/structure/closet/secure_closet/guncabinet{ - opened = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/hallway/commandhallway) -"oUE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/hallway) -"oUL" = ( -/obj/structure/table/glass, -/obj/item/hand_labeler, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/item/mass_spectrometer/adv, -/obj/item/mass_spectrometer/adv, -/obj/machinery/light, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"oVb" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm9) -"oVH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"oVW" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/toolstroage2) -"oWf" = ( -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"oWq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"oWy" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"oWS" = ( -/obj/structure/table/bench/steel, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"oWW" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"oXp" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"oXJ" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm9) -"oYa" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"oYi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"oYH" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"oYY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"oZe" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm2) -"oZI" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"pah" = ( -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen/multi, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"pau" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/white{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/vending/dinnerware{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"paH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/warden) -"pbm" = ( -/obj/item/stool, -/obj/item/card/id/gateway/snowfield/class3E, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm6) -"pbB" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/ammo_casing/rocket, -/obj/item/ammo_casing/rocket, -/obj/item/ammo_casing/rocket, -/obj/item/ammo_casing/rocket, -/obj/item/ammo_casing/rocket, -/obj/item/ammo_casing/rocket, -/obj/item/ammo_casing/rocket, -/obj/item/ammo_casing/rocket, -/obj/item/ammo_casing/rocket, -/obj/item/ammo_casing/rocket, -/obj/item/gun/launcher/scopedrocket, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"pbJ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = -5 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"pcm" = ( -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 - }, -/obj/structure/closet/jcloset, -/obj/item/soap/nanotrasen, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/janitor) -"pcH" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/checkpointhallway) -"pdB" = ( -/obj/structure/flora/rocks1, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"peo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/closet/l3closet/janitor, -/obj/effect/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"pes" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"pfj" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall, -/area/awaymission/snowfield/solarshack) -"pfn" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm14) -"pfo" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider/pepper, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"pfs" = ( -/obj/item/ore/glass, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/outside) -"pgb" = ( -/obj/structure/target_stake, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"pgd" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/medical/surgery) -"pgn" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"pgP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm11) -"phA" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/ammo_casing/spent{ - pixel_x = -4; - pixel_y = -7 - }, -/obj/item/ammo_casing/spent, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"phW" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/spider/stickyweb, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"piC" = ( -/obj/structure/lattice, -/obj/structure/girder, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/security/hallway2) -"plq" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm11) -"plr" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/snowfield/medical/staff_room) -"plx" = ( -/obj/machinery/door/airlock/security{ - name = "Security Interrogation Viewpoint"; - req_access = list(1) - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/snowfield/security/observatory) -"pmE" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"pnb" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"pnj" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"pnk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"pnD" = ( -/obj/item/ammo_casing/a762x54, -/obj/item/ammo_casing/a762x54, -/obj/item/tool/crowbar/red{ - pixel_x = -10; - pixel_y = -15 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/northhallway) -"pok" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/spiderling_remains, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"poH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/sub_chamber) -"ppI" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/cavern) -"ppX" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/security/hallway2) -"pqu" = ( -/obj/effect/floor_decal/steeldecal/monofloor, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/effect/floor_decal/steeldecal/steel_decals_central5, -/obj/structure/railing{ - dir = 8; - pixel_x = 32 - }, -/obj/machinery/door/blast/regular{ - id = "snowfield bsa access" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"pqG" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm11) -"pqQ" = ( -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/security/hallway2) -"pqR" = ( -/obj/structure/table/steel_reinforced, -/obj/item/soap, -/obj/item/soap, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"prj" = ( -/obj/item/clothing/suit/fire/heavy{ - armor = list("melee"=10,"bullet"=0,"laser"=0,"energy"=5,"bomb"=0,"bio"=0,"rad"=60); - desc = "Over a suit that protects against extreme fire and heat, this seems to be having a thin layer of coating underneath, providing additional protection against radiation." - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"prN" = ( -/obj/structure/table/steel_reinforced, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm12) -"psa" = ( -/obj/structure/cable/heavyduty{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfieldenglockdown"; - name = "Engineering Lockdown"; - opacity = 0 - }, -/obj/structure/window/reinforced/full{ - health = 1e+006 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfieldenglockdown"; - name = "Engineering Lockdown"; - opacity = 0 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"pse" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow, -/turf/simulated/floor, -/area/awaymission/snowfield/solarshack) -"psv" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"psI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ore/glass, -/obj/item/ore/glass, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"psX" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"pti" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/centerhallway) -"ptm" = ( -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"ptK" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/cable_coil/yellow, -/obj/item/stack/cable_coil/yellow, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/solarshack) -"ptM" = ( -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"pun" = ( -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"pus" = ( -/obj/structure/toilet/prison{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/security_cell) -"puG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm6) -"puS" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/item/material/shard/shrapnel{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"pvg" = ( -/obj/structure/flora/grass/green, -/obj/effect/mine/frag, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"pvl" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"pvE" = ( -/obj/structure/table/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"pwh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"pwo" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/yellow/bordercorner, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"pwq" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "Dorms4"; - name = "Room 4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/dorm4) -"pwu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"pxr" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"pxu" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"pxH" = ( -/obj/machinery/computer/secure_data, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/security/detective) -"pxI" = ( -/obj/machinery/door/airlock/security{ - name = "Security Interrogation"; - req_access = list(1) - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/interrogation) -"pyc" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 5 - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/item/card/id/gateway/snowfield/class4, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"pyg" = ( -/obj/structure/cable/yellow, -/obj/structure/grille/broken, -/obj/item/material/shard/shrapnel, -/obj/effect/spider/stickyweb, -/turf/simulated/floor, -/area/awaymission/snowfield/security/warden) -"pyr" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/command/server) -"pyu" = ( -/obj/structure/table/steel_reinforced, -/obj/item/radio/phone, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/testroom) -"pyZ" = ( -/obj/machinery/icecream_vat, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/service/fridge) -"pzb" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/cult/forge, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bridge) -"pzk" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"pzq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/storage/toolbox/emergency, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"pzC" = ( -/obj/structure/door_assembly/door_assembly_sec, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/security/hallway2) -"pzF" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/spider/stickyweb, -/obj/machinery/light_construct{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"pzH" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"pAj" = ( -/obj/structure/table/woodentable, -/obj/machinery/light_construct/small{ - dir = 4 - }, -/obj/item/flashlight, -/obj/item/flashlight, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"pAp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/broken, -/area/awaymission/snowfield/checkpointunpowered) -"pAB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"pBp" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/dirt, -/obj/item/card/id/gateway/snowfield/class5R, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/monitorroom) -"pBA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"pBV" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm1) -"pBX" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/snowfield/medical/staff_room) -"pCd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/checkpointunpowered) -"pDp" = ( -/obj/random/junk, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"pEd" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"pEg" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/engineering/restroom) -"pEA" = ( -/obj/structure/table/rack, -/obj/item/tank/emergency/oxygen/double, -/obj/item/tank/emergency/oxygen/double, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/commandarmory) -"pER" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"pFl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm3) -"pGl" = ( -/obj/machinery/door/blast/gate/open{ - dir = 4 - }, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"pGv" = ( -/obj/structure/outcrop/coal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"pGC" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bsa) -"pHa" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"pHG" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/hallway) -"pHK" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/public/charger) -"pHV" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"pHZ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/power/apc{ - dir = 1; - name = "empty north bump"; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/southhallway) -"pIi" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/faithless/cult{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"pIW" = ( -/turf/simulated/wall/cult, -/area/awaymission/snowfield/command/sub_chamber) -"pIZ" = ( -/obj/structure/flora/grass/brown, -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"pJb" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm4) -"pJl" = ( -/obj/structure/table/rack/shelf/steel, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/gun/projectile/automatic/serdy/akm, -/obj/item/gun/projectile/automatic/serdy/krinkov, -/obj/item/gun/projectile/automatic/serdy/krinkov, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/commandarmory) -"pJC" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"pJM" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - external_pressure_bound = 140; - external_pressure_bound_default = 140; - icon_state = "map_vent_out"; - pressure_checks = 0; - pressure_checks_default = 0; - use_power = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/awaymission/snowfield/command/server) -"pJW" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "SMES Access"; - req_access = list(1,11); - req_one_access = null - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"pJX" = ( -/obj/structure/table/woodentable, -/obj/structure/noticeboard{ - pixel_x = 30 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"pKR" = ( -/obj/item/ore/glass, -/obj/item/ore/glass, -/obj/item/ore/coal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/outside) -"pMg" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/arrows{ - dir = 4 - }, -/obj/item/material/shard/shrapnel{ - pixel_x = -3; - pixel_y = -7 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider/tunneler/frequent, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"pMJ" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/awaymission/snowfield/security/detective) -"pMX" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/engineering/locker_room) -"pNI" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm1) -"pNT" = ( -/obj/machinery/button/remote/blast_door{ - id = "snowfield tool storage lockdown"; - name = "Path Blocker Control"; - pixel_y = 23; - req_access = list(1) - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/hallway/commandhallway) -"pNW" = ( -/obj/structure/flora/grass/brown, -/obj/structure/flora/grass/green, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"pOb" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access = list(19,23); - req_one_access = newlist() - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/secure_tech_storage) -"pOg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/commandhallway) -"pOV" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"pPf" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/item/material/knife/butch, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"pPu" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "snowfield sec front blast"; - name = "Emergency Front Desk Lockdown"; - pixel_y = -10; - req_access = list(1) - }, -/obj/machinery/button/remote/blast_door{ - id = "snowfield second blast"; - name = "Second Access Blast Door-control"; - req_access = list(1) - }, -/obj/machinery/button/remote/blast_door{ - id = "snowfield front blast"; - name = "Front Access Blast Door-control"; - pixel_y = 10; - req_access = list(1) - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"pPw" = ( -/obj/structure/closet/chefcloset, -/obj/item/glass_jar, -/obj/item/soap/nanotrasen, -/obj/item/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/packageWrap, -/obj/item/packageWrap, -/obj/item/packageWrap, -/obj/item/clothing/gloves/sterile/latex, -/obj/item/clothing/gloves/sterile/latex, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/service/fridge) -"pPU" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm13) -"pQv" = ( -/obj/structure/catwalk, -/mob/living/simple_mob/construct/harvester{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"pQF" = ( -/obj/machinery/door/blast/gate, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/cavern) -"pRE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider/hunter, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"pSG" = ( -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/northhallway) -"pTk" = ( -/mob/living/simple_mob/construct/artificer{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bsa) -"pTp" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"pTr" = ( -/obj/machinery/door/window/brigdoor/westright{ - name = "Code Red Armory"; - req_access = null; - req_one_access = list(3) - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"pTQ" = ( -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/monitorroom) -"pUd" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm8) -"pUC" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"pUI" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/panicroom) -"pVg" = ( -/obj/structure/table/steel_reinforced, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm10) -"pWi" = ( -/obj/machinery/photocopier, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"pWV" = ( -/obj/item/ore/verdantium, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"pXZ" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"pYH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/light/flicker{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"pZF" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"pZK" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 8 - }, -/obj/structure/bookcase/manuals/medical, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"qat" = ( -/obj/effect/mine/frag, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"qbc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/hallway/commandhallway) -"qbB" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/security{ - name = "Detective's office"; - req_access = list(4); - req_one_access = null - }, -/turf/simulated/floor/lino, -/area/awaymission/snowfield/security/detective) -"qbC" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider/tunneler, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"qbM" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"qbN" = ( -/obj/machinery/power/solar, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"qbP" = ( -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank/high, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"qbX" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/item/stool/padded, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"qbZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Execution Chamber"; - req_access = null; - req_one_access = list(2,4) - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"qcb" = ( -/mob/living/simple_mob/construct/artificer/caster{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/commandhallway) -"qcy" = ( -/obj/structure/closet/radiation, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"qcI" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced/full{ - health = 1e+006 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield bsa observation window"; - opacity = 0 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/command/bsa) -"qcK" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"qcT" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/engineering/restroom) -"qcU" = ( -/obj/machinery/honey_extractor, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"qdJ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"qee" = ( -/obj/structure/table/steel_reinforced, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm14) -"qep" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/command/server) -"qfq" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/staff_room) -"qft" = ( -/obj/structure/table/glass, -/obj/item/soap, -/obj/item/soap, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"qfC" = ( -/obj/structure/table/steel, -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"qfK" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/security/security_cell_hallway) -"qfR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"qfS" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/engine_checkpoint) -"qgX" = ( -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"qhs" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small/flicker{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/testroom) -"qhu" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/effect/decal/cleanable/vomit, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/medical_restroom) -"qhx" = ( -/obj/effect/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"qhV" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"qij" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "18" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"qir" = ( -/obj/effect/decal/remains/human, -/obj/item/card/id/gateway/snowfield/class3M, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/southhallway) -"qiD" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/item/stack/material/wood{ - amount = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"qiR" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm14) -"qjn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/clothing/head/hardhat/firefighter/atmos, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"qjp" = ( -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"qjJ" = ( -/obj/machinery/button/remote/blast_door{ - id = "snowfield emergency bunk"; - name = "Path Blocker Control"; - pixel_y = 23; - req_access = list(1) - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/panicroom) -"qjX" = ( -/obj/structure/cable, -/obj/structure/cable/heavyduty{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/solarshack) -"qkj" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm12) -"qkE" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"qkH" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/obj/structure/filingcabinet, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"qkM" = ( -/obj/structure/table/steel_reinforced, -/obj/structure/window/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"qlG" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border, -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"qlJ" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm6) -"qlR" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"qme" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/public/toolstorage1) -"qmj" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/pen/red, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"qmI" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/bordercorner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"qmQ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"qne" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"qni" = ( -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"qnK" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/item/circuitboard/broken, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"qnP" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light/flicker{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"qoa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/security/detective) -"qom" = ( -/obj/machinery/door/blast/regular{ - id = "snowfield bsa gateway path" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"qon" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"qph" = ( -/obj/structure/table/rack/shelf/steel, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/storage/box/gloves, -/obj/item/storage/box/gloves, -/obj/item/storage/box/gloves, -/obj/item/storage/box/gloves, -/obj/item/storage/box/syringes, -/obj/item/storage/box/syringes, -/obj/item/storage/box/syringes, -/obj/item/storage/box/syringes, -/obj/item/storage/box/syringes, -/obj/item/storage/box/syringes, -/obj/item/storage/box/syringes, -/obj/item/storage/box/syringes, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"qpk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/button/crematorium{ - id = "Chapelburn"; - pixel_x = 20; - pixel_y = -10; - req_access = null; - req_one_access = list(1,5,6) - }, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/ash, -/obj/item/bone/ribs, -/obj/item/bone/skull, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"qpE" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/visible/blue{ - dir = 1 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"qpU" = ( -/obj/item/ore/coal, -/obj/item/ore/diamond, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"qqw" = ( -/turf/simulated/mineral, -/area/awaymission/snowfield/outside) -"qqE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"qqQ" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/light/flicker, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"qrh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"qrz" = ( -/obj/effect/decal/cleanable/ash, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"qrA" = ( -/obj/item/bone/arm{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"qrK" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/staff_room) -"qsh" = ( -/obj/structure/table/rack/shelf/steel, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/storage/firstaid/toxin, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"qsV" = ( -/obj/item/gun/projectile/shotgun/pump/shorty{ - desc = "A clunky, lightly modified special carbine, this gun is often be seen in the old terran's prison, designed to suppress the prison riots."; - description_fluff = "Designed to suppress the prison riot, KS-23 has been developed in 1970s in Soviet Russia. Crude, but compact, it is easy to carry around while in patrol, and useful in close combat."; - name = "KS-23" - }, -/obj/structure/closet/secure_closet/guncabinet{ - opened = 1 - }, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/sub_chamber) -"qtB" = ( -/obj/structure/cable/yellow, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/power/apc{ - dir = 8; - name = "empty west bump"; - pixel_x = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm5) -"quk" = ( -/obj/item/ore/coal, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"quy" = ( -/obj/structure/table/steel_reinforced, -/obj/item/tool/wrench, -/obj/item/tool/crowbar, -/obj/item/radio/off, -/obj/item/binoculars, -/obj/machinery/light, -/obj/effect/spider/stickyweb, -/obj/item/megaphone, -/obj/item/radio/off, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"quU" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"qvJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm5) -"qws" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"qwt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/structure/mopbucket, -/obj/item/mop, -/obj/effect/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/item/reagent_containers/glass/bucket/wood, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"qww" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "snowfieldenglockdown"; - name = "Engineering Lockdown"; - pixel_x = -5; - req_access = null; - req_one_access = list(1,10) - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/button/remote/blast_door{ - id = "snowfieldengroomlockdown"; - name = "Engine Room Lockdown"; - pixel_x = 5; - req_one_access = list(1,10) - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"qwU" = ( -/obj/machinery/atmospherics/pipe/tank{ - desc = "A large vessel containing huge amount of water."; - icon_state = "o2_map"; - name = "Water Tank" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"qxb" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"qxi" = ( -/obj/structure/table/rack/shelf/steel, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/commandarmory) -"qxn" = ( -/obj/machinery/door/airlock/hatch{ - icon_state = "door_locked"; - id_tag = "emergency path"; - locked = 1; - req_access = null; - req_one_access = null - }, -/turf/simulated/floor, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"qxt" = ( -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/multitool, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"qxH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/structure/closet/l3closet/janitor, -/obj/effect/floor_decal/corner/purple/border{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"qyg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/lino, -/area/awaymission/snowfield/security/detective) -"qym" = ( -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/outside) -"qyz" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/structure/sink/kitchen{ - pixel_y = 17 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"qyT" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"qzc" = ( -/obj/machinery/door/blast/gate, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"qAn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"qBl" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/security/armory) -"qCf" = ( -/obj/item/stool, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm10) -"qCv" = ( -/obj/item/ore/coal, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"qCz" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"qCV" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"qDO" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/structure/catwalk, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"qFo" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm13) -"qFz" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"qGm" = ( -/obj/structure/catwalk, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/item/material/snow/snowball/reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"qHd" = ( -/obj/machinery/door/airlock/medical{ - health = 130; - locked = 1; - name = "Operating Theatre"; - req_access = list(45) - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/surgery) -"qHg" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/box{ - desc = "A box full of soap. Soapy."; - name = "Soap box"; - starts_with = list(/obj/item/soap=7) - }, -/obj/item/storage/box/lights/bulbs, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"qHW" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/structure/table/marble, -/obj/machinery/microwave{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"qID" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/medical/patients) -"qJA" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/monitorroom) -"qJL" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/engineering/restroom) -"qLa" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"qLx" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/command/observatory_path) -"qLV" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/engineering/restroom) -"qMj" = ( -/obj/item/clothing/shoes/boots/speed, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/testroom) -"qMk" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"qNQ" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"qNV" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/effect/floor_decal/industrial/outline, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"qOv" = ( -/obj/structure/railing, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"qOP" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"qPi" = ( -/obj/machinery/door/airlock/highsecurity{ - req_one_access = list(1,53) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"qPu" = ( -/turf/simulated/floor/lino, -/area/awaymission/snowfield/security/detective) -"qPS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"qQo" = ( -/obj/machinery/door/blast/gate, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/cavern) -"qQs" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/monitorroom) -"qQt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/dorms/panicroom) -"qQP" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/item/card/id/gateway/snowfield/class3E, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"qRo" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/circuitboard/med_data{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"qRG" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"qRJ" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/service/hydro) -"qRS" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/item/tool/crowbar/red, -/obj/item/ammo_casing/spent{ - pixel_x = 10; - pixel_y = 5 - }, -/obj/item/ammo_casing/spent{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/ammo_casing/spent, -/obj/item/ammo_casing/spent{ - pixel_x = -4; - pixel_y = -7 - }, -/obj/item/tool/crowbar/red{ - pixel_x = 13; - pixel_y = 18 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/northhallway) -"qRU" = ( -/obj/structure/girder, -/turf/simulated/floor, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"qSo" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm9) -"qSJ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"qTe" = ( -/obj/machinery/door/blast/regular{ - id = "snowfield testlab entrance" - }, -/obj/item/bone/arm{ - pixel_y = 12 - }, -/obj/effect/decal/cleanable/blood, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"qTN" = ( -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/cavern) -"qTR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm9) -"qTW" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/security/evidence_storage) -"qUW" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"qVd" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/card/id/gateway/snowfield/class4, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"qVm" = ( -/mob/living/simple_mob/faithless/cult/strong{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bridge) -"qVA" = ( -/obj/structure/table/rack/shelf/steel, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"qVG" = ( -/mob/living/simple_mob/animal/giant_spider/webslinger, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/janitor) -"qVR" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm14) -"qVU" = ( -/obj/structure/boulder, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"qXw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"qXC" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"qYo" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"qYD" = ( -/obj/structure/catwalk, -/obj/machinery/light/small/flicker{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"qYG" = ( -/obj/structure/outcrop, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/outside) -"qZf" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/structure/catwalk, -/mob/living/simple_mob/construct/artificer{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"qZp" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm4) -"qZA" = ( -/obj/structure/fireplace/barrel, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"qZB" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/hallway) -"rai" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"rar" = ( -/obj/machinery/shower{ - dir = 8; - on = 1; - pixel_x = -5; - pixel_y = -1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/item/material/shard/shrapnel{ - pixel_x = -3; - pixel_y = -7 - }, -/obj/item/circuitboard/broken, -/obj/effect/decal/cleanable/blood, -/obj/item/stack/rods, -/obj/item/gun/projectile/serdy_pistols/makarov, -/obj/effect/decal/remains/human, -/obj/structure/curtain/open/shower/security, -/obj/item/card/id/gateway/snowfield/class4, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"raE" = ( -/obj/structure/railing, -/obj/structure/table/steel_reinforced, -/obj/machinery/button/remote/blast_door{ - desc = "It drops the bass to the ground."; - name = "Remote bass-drop control" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/observatory) -"raG" = ( -/obj/structure/fence/cut/large, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"raJ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/security/hallway2) -"rbD" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm6) -"rbG" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/arrows{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/checkpointhallway) -"rbM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm12) -"rcg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/gateway) -"rcQ" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"rcZ" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 26 - }, -/obj/structure/table/standard, -/obj/item/clothing/accessory/storage/webbing, -/obj/item/clothing/accessory/storage/webbing, -/obj/item/clothing/accessory/storage/webbing, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_lockerroom) -"rdy" = ( -/obj/machinery/light_construct, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bsa) -"rdQ" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "12" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"reD" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/structure/bed/chair/wood, -/mob/living/simple_mob/animal/giant_spider/frost, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"reQ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/gateway) -"rff" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"rft" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/structure/reagent_dispensers/water_cooler/full{ - dir = 8; - pixel_x = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"rfE" = ( -/obj/structure/closet/wardrobe/chemistry_white, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"rfR" = ( -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/commandarmory) -"rfZ" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"rgn" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"rgL" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/commandhallway) -"rhd" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/bordercorner{ - dir = 8 - }, -/obj/item/tool/wirecutters, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"rhh" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"rim" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"riQ" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/recharger, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/public/toolstorage1) -"rjc" = ( -/obj/structure/sign/signnew/explosives, -/turf/simulated/wall/titanium, -/area/awaymission/snowfield/outside) -"rjo" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"rjE" = ( -/turf/simulated/floor/carpet, -/area/awaymission/snowfield/engineering/staff_room) -"rjH" = ( -/obj/structure/sink/kitchen{ - pixel_y = 17 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/medical_restroom) -"rjM" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"rjQ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"rjV" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm13) -"rkk" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/centerhallway) -"rkD" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm9) -"rkL" = ( -/obj/structure/closet/coffin, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"rkU" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable{ - charge = null; - cur_coils = 4; - input_attempt = 1; - input_level = 1000000; - output_level = 750000 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"rlj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"rlD" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"rlW" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/remains/human, -/mob/living/simple_mob/faithless/cult{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"rmy" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/bridge) -"rnD" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"roe" = ( -/obj/structure/morgue{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"rof" = ( -/obj/structure/table/bench/wooden, -/obj/effect/spider/cocoon, -/obj/machinery/light/flicker{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"rou" = ( -/obj/item/stool, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm4) -"roD" = ( -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"rpz" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"rpP" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"rqc" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/awaymission/snowfield/engineering/staff_room) -"rqp" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/faithless/cult{ - devourable = 0 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/public/toolstroage2) -"rqq" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm3) -"rqZ" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/evidence_storage) -"rrb" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/mob/living/simple_mob/construct/harvester{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/hallway/commandhallway) -"rrm" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/tech_storage) -"rrQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"rrW" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/southhallway) -"rtq" = ( -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/solarshack) -"rtv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/southhallway) -"ruo" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm11) -"rvf" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/hallway) -"rvN" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/spider/stickyweb, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"rwS" = ( -/mob/living/simple_mob/creature/cult/strong{ - devourable = 0 - }, -/turf/simulated/floor/gorefloor2, -/area/awaymission/snowfield/command/gateway) -"rxY" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/item/clothing/head/bio_hood/general, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"ryu" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"ryV" = ( -/obj/structure/closet/l3closet/general, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"rzt" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm5) -"rzL" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/machinery/vending/cigarette{ - dir = 1; - prices = null - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"rCa" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 26 - }, -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_lockerroom) -"rCT" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/vending/snack{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"rDV" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"rEA" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"rEJ" = ( -/obj/machinery/light_construct{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/hallway/commandhallway) -"rGr" = ( -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"rHa" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/faithless/cult{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"rHk" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/gun/projectile/serdy_pistols/makarov, -/obj/effect/landmark/corpse/security{ - corpseback = /obj/item/storage/backpack/satchel/military; - corpseglasses = /obj/item/clothing/glasses/sunglasses; - corpsehelmet = /obj/item/clothing/head/helmet/bulletproof; - corpseidjob = "Security Guard"; - corpsemask = /obj/item/clothing/mask/balaclava; - corpsepocket1 = /obj/item/ammo_magazine/makarov; - corpseradio = /obj/item/radio/headset; - corpseshoes = /obj/item/clothing/shoes/boots/combat; - corpsesuit = /obj/item/clothing/suit/armor/pcarrier/medium/sol; - corpseuniform = /obj/item/clothing/under/solgov/utility/army/security; - gender = "male"; - mobname = "Patya Ostrovsky"; - name = "Patya Ostrovsky" - }, -/obj/item/card/id/gateway/snowfield/class4, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"rHF" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/construct/wraith{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"rIs" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/toolstroage2) -"rIA" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border, -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/obj/machinery/vending/cigarette{ - dir = 1; - prices = null - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"rIV" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"rJe" = ( -/obj/structure/catwalk, -/obj/machinery/door/airlock/glass_security{ - name = "Security Cells"; - req_access = list(1) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"rJI" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/structure/closet/secure_closet/paramedic{ - req_access = list(33); - starts_with = list(/obj/item/storage/backpack/dufflebag/emt,/obj/item/storage/box/autoinjectors,/obj/item/storage/box/syringes,/obj/item/reagent_containers/glass/bottle/inaprovaline,/obj/item/reagent_containers/glass/bottle/antitoxin,/obj/item/storage/belt/medical/emt,/obj/item/clothing/mask/gas,/obj/item/clothing/suit/storage/toggle/fr_jacket,/obj/item/clothing/suit/storage/toggle/labcoat/emt,/obj/item/clothing/suit/storage/hooded/wintercoat/medical/para,/obj/item/radio/headset/headset_med/alt,/obj/item/storage/briefcase/inflatable,/obj/item/flashlight,/obj/item/tank/emergency/oxygen/engi,/obj/item/radio/off,/obj/item/tool/crowbar,/obj/item/extinguisher/mini,/obj/item/storage/box/freezer,/obj/item/clothing/accessory/storage/white_vest,/obj/item/taperoll/medical) - }, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"rKf" = ( -/obj/structure/boulder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"rKt" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/public/toolstorage1) -"rKJ" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/engineering/restroom) -"rLd" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"rLF" = ( -/obj/structure/flora/tree/pine, -/obj/structure/flora/tree/pine, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"rLP" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"rMl" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"rMo" = ( -/obj/structure/filingcabinet, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"rMR" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm10) -"rNL" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"rNT" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/oldsofa{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"rNV" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/solarshack) -"rOB" = ( -/obj/item/stool, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm7) -"rOE" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/obj/structure/door_assembly/door_assembly_sec, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"rPn" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"rQk" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"rQn" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"rSm" = ( -/obj/structure/filingcabinet, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"rSz" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/structure/closet/crate/trashcart, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"rSA" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/command/observatory) -"rSF" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 6 - }, -/obj/structure/closet/secure_closet/guncabinet{ - opened = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"rSH" = ( -/turf/simulated/floor, -/area/awaymission/snowfield/security/firingrange) -"rSO" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"rTx" = ( -/obj/effect/spider/stickyweb, -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/awaymission/snowfield/security/detective) -"rTy" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/creature/cult/strong{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/gateway) -"rVn" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine_checkpoint) -"rVp" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/carpet, -/area/awaymission/snowfield/security/detective) -"rVw" = ( -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"rVx" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"rVE" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"rWv" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"rWB" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"rWM" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"rWZ" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm9) -"rXj" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/tech_storage) -"rYh" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_medical{ - name = "Medbay Equipment"; - req_access = null; - req_one_access = list(1,5) - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/storage_room) -"rYF" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/command/server) -"rYI" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/centerhallway) -"rZJ" = ( -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"rZO" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/toolstroage2) -"rZS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/patient_restroom) -"sai" = ( -/obj/structure/table/reinforced, -/obj/item/soap, -/obj/item/soap, -/obj/item/soap, -/obj/item/soap, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"saz" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/filingcabinet/chestdrawer{ - desc = "A large drawer filled with autopsy reports."; - name = "Autopsy Reports" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"sbj" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "empty north bump"; - pixel_y = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/secure_tech_storage) -"sbx" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/service/kitchen) -"sca" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"scm" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"scu" = ( -/obj/item/stool, -/obj/machinery/light, -/obj/item/card/id/gateway/snowfield/class3E, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm3) -"scB" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"scF" = ( -/obj/machinery/vending/snack{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"sdS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/centerhallway) -"sez" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/hallway) -"seE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/observatory) -"sfp" = ( -/obj/structure/table/steel_reinforced, -/obj/item/radio/phone, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"sgz" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/stickyweb, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"shT" = ( -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/security/security_cell) -"siu" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"siI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/blue{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"sjN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"sjV" = ( -/obj/machinery/telecomms/server/presets/unused, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/server) -"skE" = ( -/obj/structure/table/glass, -/obj/item/soap, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/patient_restroom) -"slu" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm15) -"slv" = ( -/obj/machinery/door/airlock{ - name = "Unit 3" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/engineering/restroom) -"slI" = ( -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/plastic, -/obj/fiftyspawner/glass, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"smE" = ( -/obj/machinery/computer/crew, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/engine_checkpoint) -"snB" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/gateway) -"snY" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"snZ" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/cavern) -"sok" = ( -/obj/structure/janitorialcart, -/obj/effect/floor_decal/industrial/outline, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/janitor) -"soI" = ( -/obj/machinery/oxygen_pump/mobile/anesthetic, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"soJ" = ( -/obj/item/material/shard, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"soY" = ( -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/gateway) -"spJ" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/machinery/door/blast/regular{ - id = "snowfield bsa gateway path" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"spM" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/table/woodentable, -/obj/item/radio/phone, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/staff_room) -"spQ" = ( -/turf/simulated/wall, -/area/awaymission/snowfield/solarshack) -"srQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"ssf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/commandarmory) -"ssD" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"stC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/checkpointhallway) -"stI" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "21" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"sum" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/construct/juggernaut{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bridge) -"suv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/observatory_path) -"suB" = ( -/obj/structure/closet/crate/freezer, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/service/fridge) -"swJ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/window/brigdoor/eastright{ - id = "cell3"; - name = "Cell 3"; - req_access = null; - req_one_access = list(2,4) - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/security_cell) -"swR" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/light, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/item/card/id/gateway/snowfield/class4D, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"sxb" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"sxi" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"sxw" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/faithless/cult{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"sxD" = ( -/obj/structure/table/standard, -/obj/item/radio/phone, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_lockerroom) -"syv" = ( -/obj/item/ore/coal, -/obj/item/ore/coal, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"syG" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/commandarmory) -"szB" = ( -/turf/simulated/wall/solidrock{ - block_tele = 0 - }, -/area/awaymission/snowfield/restricted) -"szI" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm5) -"szJ" = ( -/obj/random/junk, -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/checkpointunpowered) -"szW" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"sAx" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/corner/grey/bordercorner, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"sAU" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/engineering/hallway) -"sBs" = ( -/turf/simulated/wall/titanium, -/area/awaymission/snowfield/cavern) -"sBt" = ( -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"sBJ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm16) -"sCi" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"sCX" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/computer/skills{ - req_one_access = list(1,19) - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"sDe" = ( -/obj/structure/table/standard, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway_substation) -"sDF" = ( -/obj/structure/flora/bush, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"sED" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"sEL" = ( -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/engineering/restroom) -"sFD" = ( -/obj/machinery/chem_master, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"sFU" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/bed/chair/office/light, -/obj/structure/bed/chair/office/light, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"sGc" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"sGe" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/item/gun/projectile/automatic/serdy/sks, -/obj/item/gun/projectile/automatic/serdy/sks, -/obj/item/gun/projectile/automatic/serdy/sks, -/obj/item/gun/projectile/automatic/serdy/sks, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Armament" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"sGl" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/floor_decal/industrial/outline, -/obj/item/paper/awaygate/snowfield/interrogation, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/evidence_storage) -"sGD" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/item/clothing/head/bio_hood/general, -/obj/effect/decal/cleanable/dirt, -/obj/item/card/id/gateway/snowfield/class4, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"sHz" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/machinery/vending/coffee{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/staff_room) -"sHH" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/commandarmory) -"sHU" = ( -/obj/item/ore/glass, -/obj/item/ore/diamond, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"sIc" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"sIm" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet{ - closet_appearance = /decl/closet_appearance/bio; - name = "Level-3 Biohazard Closet" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/locker_room) -"sIH" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/dorms/dorm8) -"sJd" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"sJr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"sKk" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/mob/living/simple_mob/construct/harvester/greater, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"sKP" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"sKY" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/hallway/commandhallway) -"sLn" = ( -/obj/item/ore/glass, -/obj/item/ore/verdantium, -/obj/item/ore/verdantium, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"sMl" = ( -/obj/item/paper/awaygate/snowfield/evacuation_order, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"sMv" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "empty north bump"; - pixel_y = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"sMN" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 5 - }, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/monitorroom) -"sNd" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/structure/closet/l3closet/general{ - opened = 1; - starts_with = null - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"sNi" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"sNS" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm12) -"sOc" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/window/northleft{ - req_access = list(1) - }, -/obj/machinery/door/window/southleft{ - req_access = list(1) - }, -/obj/item/radio/phone, -/obj/structure/barricade/planks, -/turf/simulated/floor/tiled/red, -/area/awaymission/snowfield/security/seconddesk) -"sOl" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"sOT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/checkpointhallway) -"sPc" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/marble, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker/large, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"sQa" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"sQk" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm11) -"sQm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/service/fridge) -"sQX" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"sRf" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/bed/chair/office/light, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"sRm" = ( -/obj/machinery/power/solar, -/obj/structure/cable/yellow, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"sRW" = ( -/obj/effect/spider/stickyweb, -/mob/living/simple_mob/animal/giant_spider, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/northhallway) -"sRX" = ( -/obj/structure/table/rack/shelf/steel, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"sSb" = ( -/obj/structure/cable/heavyduty{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"sSl" = ( -/obj/structure/bed/chair/oldsofa/left{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"sTG" = ( -/obj/structure/table/reinforced, -/obj/item/radio/phone, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"sTH" = ( -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/janitor) -"sUc" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "10" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"sUP" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"sUQ" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm11) -"sUZ" = ( -/obj/structure/door_assembly/door_assembly_sec, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/security/hallway2) -"sVf" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory_entrance) -"sVq" = ( -/turf/simulated/floor/carpet/blucarpet, -/area/awaymission/snowfield/service/publicstaff) -"sVD" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"sVG" = ( -/obj/effect/floor_decal/steeldecal/monofloor, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/effect/floor_decal/steeldecal/steel_decals_central5, -/obj/machinery/door/blast/regular{ - id = "snowfield gateway" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/gateway) -"sWl" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/dorms/dorm4) -"sWu" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/panicroom) -"sXc" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/dorms/dorm1) -"sXS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/computer/crew, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"sYf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/testroom) -"sYg" = ( -/obj/effect/floor_decal/borderfloorwhite, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"sYA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/engineering_welding{ - req_access = null; - req_one_access = list(10,11) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/locker_room) -"sYZ" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/circuitboard/security/mining, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"taE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ore/verdantium, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"tbr" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"tbx" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/evidence_storage) -"tbG" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"tbO" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"tcL" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"tdM" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"tec" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"tej" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm13) -"ter" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm2) -"tfe" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"tff" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/obj/item/paper/awaygate/snowfield/activation_order, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm13) -"tfA" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "empty north bump"; - pixel_y = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory_entrance) -"tfG" = ( -/obj/structure/sink/kitchen{ - dir = 4; - pixel_x = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"tfQ" = ( -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/obj/structure/boulder, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"tgc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"tgp" = ( -/obj/effect/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/gateway) -"tgO" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "Dorms5"; - name = "Room 5" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/dorm5) -"tgU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"thm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/structure/closet/secure_closet/guncabinet{ - opened = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"thE" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/power/apc{ - dir = 8; - name = "empty west bump"; - pixel_x = -24; - start_charge = 0 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"thY" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm5) -"tic" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/ore/glass, -/obj/item/ore/glass, -/obj/item/ore/glass, -/obj/item/ore/glass, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"tjf" = ( -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/sub_chamber) -"tji" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/evidence_storage) -"tjp" = ( -/turf/simulated/goreeyes, -/area/awaymission/snowfield/command/gateway) -"tkr" = ( -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"tkG" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/folder/red, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"tkJ" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"tkV" = ( -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"tlj" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"tlT" = ( -/turf/simulated/mineral, -/area/awaymission/snowfield/security/security_cell) -"tmQ" = ( -/obj/structure/table/standard, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/roller{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"tng" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"tnN" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"tob" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/janitor) -"tor" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/front_desk) -"toF" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/awaymission/snowfield/service/publicstaff) -"toJ" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/service/hydro) -"toP" = ( -/obj/item/ore/glass, -/obj/item/ore/glass, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/outside) -"toV" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/command/server) -"tpr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"tpt" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/railing, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"tpu" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm2) -"tpN" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/mob/living/simple_mob/animal/giant_spider/broodling, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"tpP" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"tqN" = ( -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/snowfield/medical/staff_room) -"trh" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"trx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"tsJ" = ( -/turf/simulated/wall/cult, -/area/awaymission/snowfield/command/bridge) -"tsZ" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield bsa maints"; - opacity = 0 - }, -/obj/item/material/shard, -/obj/structure/grille/broken, -/turf/simulated/floor, -/area/awaymission/snowfield/command/bsa) -"ttf" = ( -/obj/structure/flora/tree/dead, -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"ttw" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border, -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/obj/item/material/ashtray/glass, -/obj/item/material/ashtray/glass, -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"ttQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/engineering/engine) -"ttU" = ( -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"tur" = ( -/obj/item/clothing/suit/bio_suit/general, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/sub_chamber) -"tuz" = ( -/obj/structure/cable/yellow, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm12) -"tuC" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/closet/secure_closet/medical_wall{ - name = "O- Blood Locker"; - pixel_x = 32 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/obj/item/tool/screwdriver, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/surgery) -"tuW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell_hallway) -"tva" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/item/circuitboard/broken, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"tvg" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/item/material/shard/shrapnel, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"twy" = ( -/obj/structure/boulder, -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"twX" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/front_desk) -"txs" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/monitor_room) -"txH" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm6) -"txY" = ( -/obj/structure/lattice, -/obj/machinery/light_construct/small{ - dir = 1 - }, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"tzg" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/hallway/northhallway) -"tzF" = ( -/obj/structure/table/steel_reinforced, -/obj/item/ammo_magazine/akm, -/obj/item/ammo_magazine/akm, -/obj/item/ammo_magazine/akm, -/obj/item/ammo_magazine/akm, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"tzG" = ( -/obj/structure/outcrop/coal, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"tzT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"tAd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"tAY" = ( -/obj/machinery/door/blast/gate/open, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"tBf" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/medical/chemistry) -"tBA" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm15) -"tBO" = ( -/obj/machinery/light_construct/small{ - dir = 1 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"tBQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/observatory_path) -"tCv" = ( -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/cavern) -"tCA" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm11) -"tCI" = ( -/obj/item/trash/material/metal, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"tDe" = ( -/obj/item/paper/awaygate/snowfield/evacuation_order, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"tDm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/highsecurity{ - name = "Command Room"; - req_one_access = list(1,11,20,47,56) - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield command lockdown"; - opacity = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"tEC" = ( -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/patient_restroom) -"tET" = ( -/obj/structure/flora/tree/pine, -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"tEZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"tFJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/outside) -"tFR" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/staff_room) -"tGB" = ( -/obj/structure/table/steel_reinforced, -/obj/item/radio/phone, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"tGK" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"tHP" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"tHV" = ( -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"tIi" = ( -/obj/item/aicard, -/obj/item/aiModule/reset, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"tIn" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"tKo" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"tKx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/item/card/id/gateway/snowfield/class6S, -/obj/effect/decal/remains/human, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bridge) -"tKC" = ( -/obj/structure/girder, -/turf/simulated/floor, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"tKQ" = ( -/obj/structure/flora/tree/pine, -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"tLx" = ( -/obj/item/material/shard/shrapnel{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"tLI" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/door/window/brigdoor/eastright{ - name = "Ammo" - }, -/obj/item/ammo_magazine/ak74, -/obj/item/ammo_magazine/ak74, -/obj/item/ammo_magazine/ak74, -/obj/item/ammo_magazine/ak74, -/obj/item/ammo_magazine/ak74, -/obj/item/ammo_magazine/ak74, -/obj/item/ammo_magazine/ak74, -/obj/item/ammo_magazine/ak74, -/obj/item/ammo_magazine/ak74, -/obj/item/ammo_magazine/ak74, -/obj/item/ammo_magazine/ak74, -/obj/item/ammo_magazine/ak74, -/obj/item/ammo_magazine/ak74/ap, -/obj/item/ammo_magazine/ak74/ap, -/obj/item/ammo_magazine/ak74/ap, -/obj/item/ammo_magazine/ak74/ap, -/obj/item/ammo_magazine/ak74/ap, -/obj/item/ammo_magazine/ak74/ap, -/obj/item/ammo_magazine/ak74/ap, -/obj/item/ammo_magazine/ak74/ap, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"tLS" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/remains/human, -/mob/living/simple_mob/faithless/cult/strong{ - devourable = 0 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/card/id/gateway/snowfield/class4, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"tLV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"tMK" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm16) -"tMR" = ( -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"tMW" = ( -/obj/item/ore/glass, -/obj/item/ore/glass, -/obj/item/ore/glass, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/outside) -"tNE" = ( -/obj/structure/catwalk, -/obj/structure/reagent_dispensers/watertank/high, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"tOd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/monitorroom) -"tOE" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"tOL" = ( -/obj/structure/window/reinforced, -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/under/tactical{ - armor = list("melee"=40,"bullet"=35,"laser"=10,"energy"=10,"bomb"=10,"bio"=10,"rad"=35); - armorsoak = list("melee"=2,"bullet"=1,"laser"=1,"energy"=1,"bomb"=1,"bio"=1,"rad"=1); - desc = "It's covered with sturdier material than standard jumpsuits, to allow for robust protection. With additional protection, however, it has sacraficed the speed."; - name = "tactical armored jumpsuit"; - slowdown = 0.5 - }, -/obj/item/clothing/under/tactical{ - armor = list("melee"=40,"bullet"=35,"laser"=10,"energy"=10,"bomb"=10,"bio"=10,"rad"=35); - armorsoak = list("melee"=2,"bullet"=1,"laser"=1,"energy"=1,"bomb"=1,"bio"=1,"rad"=1); - desc = "It's covered with sturdier material than standard jumpsuits, to allow for robust protection. With additional protection, however, it has sacraficed the speed."; - name = "tactical armored jumpsuit"; - slowdown = 0.5 - }, -/obj/item/clothing/under/tactical{ - armor = list("melee"=40,"bullet"=35,"laser"=10,"energy"=10,"bomb"=10,"bio"=10,"rad"=35); - armorsoak = list("melee"=2,"bullet"=1,"laser"=1,"energy"=1,"bomb"=1,"bio"=1,"rad"=1); - desc = "It's covered with sturdier material than standard jumpsuits, to allow for robust protection. With additional protection, however, it has sacraficed the speed."; - name = "tactical armored jumpsuit"; - slowdown = 0.5 - }, -/obj/item/clothing/under/tactical{ - armor = list("melee"=40,"bullet"=35,"laser"=10,"energy"=10,"bomb"=10,"bio"=10,"rad"=35); - armorsoak = list("melee"=2,"bullet"=1,"laser"=1,"energy"=1,"bomb"=1,"bio"=1,"rad"=1); - desc = "It's covered with sturdier material than standard jumpsuits, to allow for robust protection. With additional protection, however, it has sacraficed the speed."; - name = "tactical armored jumpsuit"; - slowdown = 0.5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"tPt" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/paper/awaygate/snowfield/evacuation_order3, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm13) -"tPx" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"tPy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/janitorialcart, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"tPE" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"tPK" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"tPY" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"tQf" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/box{ - desc = "A box full of soap. Soapy."; - name = "Soap box"; - starts_with = list(/obj/item/soap=7) - }, -/obj/item/storage/box{ - desc = "A box full of soap. Soapy."; - name = "Soap box"; - starts_with = list(/obj/item/soap=7) - }, -/obj/item/storage/box{ - desc = "A box full of soap. Soapy."; - name = "Soap box"; - starts_with = list(/obj/item/soap=7) - }, -/obj/item/storage/box{ - desc = "A box full of soap. Soapy."; - name = "Soap box"; - starts_with = list(/obj/item/soap=7) - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"tQD" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"tQR" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"tRK" = ( -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/monitorroom) -"tRT" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 10 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control-switch for Surgery."; - id = "Operating Theatre"; - name = "Surgery"; - pixel_y = -23; - req_one_access = list(1,45) - }, -/obj/item/radio/phone, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/surgery) -"tSs" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm16) -"tSF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/northhallway) -"tTx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/cavern) -"tTO" = ( -/turf/simulated/wall, -/area/awaymission/snowfield/checkpoint) -"tTS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm5) -"tUx" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"tVB" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"tVV" = ( -/obj/structure/door_assembly/door_assembly_eng, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/northhallway) -"tWH" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/door_assembly/door_assembly_med, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"tXc" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger, -/obj/machinery/light_construct{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/gateway) -"tXv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"tXK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/machinery/vending/tool{ - dir = 8; - pixel_x = -5; - products = list(/obj/item/stack/cable_coil/random=10,/obj/item/tool/crowbar=5,/obj/item/weldingtool=3,/obj/item/tool/wirecutters=5,/obj/item/tool/wrench=5,/obj/item/analyzer=5,/obj/item/tool/screwdriver=5,/obj/item/flashlight/glowstick=3,/obj/item/flashlight/glowstick/red=3,/obj/item/flashlight/glowstick/blue=3,/obj/item/flashlight/glowstick/orange=3,/obj/item/flashlight/glowstick/yellow=3) - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"tYb" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/primary_storage) -"tYJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/button/remote/blast_door{ - id = "snowfield third blast"; - name = "Path Blocker Control"; - pixel_x = -5; - pixel_y = 23; - req_access = list(1) - }, -/obj/machinery/button/remote/blast_door{ - id = "outpost third path blast"; - name = "Pathway Access Control"; - pixel_x = 5; - pixel_y = 23; - req_access = list(1) - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"tYT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8; - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"tZD" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm8) -"tZS" = ( -/obj/structure/cable/heavyduty{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"uai" = ( -/obj/structure/catwalk, -/obj/machinery/light/flicker{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"uaB" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"uaU" = ( -/obj/structure/table/standard, -/obj/machinery/button/remote/blast_door{ - id = "snowfield sr access"; - name = "Server Room Access"; - pixel_x = 23; - req_one_access = list(20,30,61) - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/toolstroage2) -"ubt" = ( -/mob/living/simple_mob/animal/goat, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"ubF" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"ubN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm12) -"ubW" = ( -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table/steel, -/obj/item/storage/box/mousetraps, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/floor_decal/borderfloor, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/floor_decal/corner/purple/border, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"uch" = ( -/obj/machinery/door/blast/regular{ - density = 0; - health = 0; - icon_state = "pdoor0"; - id = "snowfield bsa MCA"; - opacity = 0 - }, -/obj/structure/simple_door/cult, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/sub_chamber) -"ucW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/monitorroom) -"ucZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 26 - }, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"uda" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/server) -"udd" = ( -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/service/hydro) -"udJ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light/small/flicker{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/awaymission/snowfield/security/observatory) -"uer" = ( -/obj/structure/closet/crate{ - opened = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/dorms/panicroom) -"ufs" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"ufA" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/machinery/vending/sovietsoda{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"ugk" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm4) -"ugm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm13) -"ugQ" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/machinery/light/flicker{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"uhd" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/decal/cleanable/flour, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"uhg" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/janitor) -"uhC" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/flora/grass/brown, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"uhM" = ( -/obj/machinery/computer/power_monitor, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"uhR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/reagent_dispensers/water_cooler/full{ - dir = 8; - pixel_x = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"uif" = ( -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/obj/item/ore/glass, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"uiq" = ( -/obj/item/radio/phone{ - pixel_y = -10 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/medical/patient_restroom) -"uiS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"ujl" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/mob/living/simple_mob/animal/giant_spider/frost, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"uke" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm6) -"ukP" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"uln" = ( -/mob/living/simple_mob/faithless/cult{ - devourable = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"ulp" = ( -/obj/machinery/atmospherics/valve, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell_hallway) -"ult" = ( -/obj/structure/girder, -/turf/simulated/floor, -/area/awaymission/snowfield/command/observatory_path) -"ulu" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border, -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/obj/machinery/vending/coffee{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"ulH" = ( -/turf/simulated/mineral, -/area/awaymission/snowfield/hallway/commandhallway) -"umm" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm7) -"umu" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/light, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"umI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/observatory_path) -"umM" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/dorms/dorm16) -"unx" = ( -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/binoculars, -/obj/item/material/knife/tacknife/combatknife, -/obj/item/material/knife/tacknife/combatknife, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"unK" = ( -/obj/structure/table/woodentable, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/interrogation) -"uoi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/commandhallway) -"uoD" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/hallway) -"uoM" = ( -/turf/simulated/mineral, -/area/awaymission/snowfield/restricted) -"uoP" = ( -/obj/machinery/telecomms/hub, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/server) -"uoV" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/locker_room) -"uoX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall, -/area/awaymission/snowfield/checkpointunpowered) -"upw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/item/stack/material/wood{ - amount = 5 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"upC" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/interrogation) -"upF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"uqf" = ( -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/security/security_cell) -"urx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/cavern) -"urK" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"urR" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/table/woodentable, -/obj/item/material/ashtray/glass, -/obj/item/material/ashtray/glass, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/staff_room) -"usK" = ( -/obj/item/card/id/gateway/snowfield/class5R, -/mob/living/simple_mob/faithless/cult{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"utf" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm16) -"uuq" = ( -/obj/structure/cable/yellow, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm1) -"uut" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"uuu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"uuv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"uuz" = ( -/obj/structure/cable/yellow, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm3) -"uva" = ( -/obj/structure/toilet, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/patient_restroom) -"uve" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/firstaid/o2, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"uvm" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/service/cafeteria) -"uvx" = ( -/obj/structure/outcrop, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"uvE" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/item/clothing/mask/muzzle, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"uvY" = ( -/obj/machinery/recharger, -/obj/item/tool/screwdriver, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"uww" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"uwH" = ( -/turf/simulated/floor, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"uwQ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/security/security_cell) -"uxq" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"uyr" = ( -/turf/simulated/wall/titanium, -/area/awaymission/snowfield/outside) -"uyz" = ( -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access = null - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/medical_restroom) -"uyC" = ( -/obj/effect/spider/cocoon, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"uyU" = ( -/obj/machinery/door/airlock/freezer{ - name = "Kitchen cold room"; - req_access = list(28) - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/fridge) -"uyX" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/circuitboard/powermonitor{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/circuitboard/stationalert_engineering{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/circuitboard/security/engineering, -/obj/item/circuitboard/atmos_alert{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"uzr" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/hallway/frontgate_substation) -"uzE" = ( -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/server) -"uBf" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"uBF" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"uCl" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/testroom) -"uCp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"uDw" = ( -/obj/machinery/door/blast/regular{ - id = "snowfield second blast" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"uDy" = ( -/obj/machinery/computer/crew, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"uDJ" = ( -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"uDQ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"uEn" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "Dorms3"; - name = "Room 3" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/dorm3) -"uEo" = ( -/obj/structure/kitchenspike, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/service/fridge) -"uEZ" = ( -/turf/simulated/wall/r_lead, -/area/awaymission/snowfield/engineering/engine) -"uFd" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/monitor_room) -"uFu" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm4) -"uGb" = ( -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell_hallway) -"uGe" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm1) -"uGw" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm15) -"uGz" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"uHq" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - name = "empty south bump"; - pixel_y = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/interrogation) -"uHP" = ( -/obj/structure/bed/chair, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"uIh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/solarshack) -"uIk" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 9 - }, -/obj/structure/closet/secure_closet/paramedic{ - req_access = list(33); - starts_with = list(/obj/item/storage/backpack/dufflebag/emt,/obj/item/storage/box/autoinjectors,/obj/item/storage/box/syringes,/obj/item/reagent_containers/glass/bottle/inaprovaline,/obj/item/reagent_containers/glass/bottle/antitoxin,/obj/item/storage/belt/medical/emt,/obj/item/clothing/mask/gas,/obj/item/clothing/suit/storage/toggle/fr_jacket,/obj/item/clothing/suit/storage/toggle/labcoat/emt,/obj/item/clothing/suit/storage/hooded/wintercoat/medical/para,/obj/item/radio/headset/headset_med/alt,/obj/item/storage/briefcase/inflatable,/obj/item/flashlight,/obj/item/tank/emergency/oxygen/engi,/obj/item/radio/off,/obj/item/tool/crowbar,/obj/item/extinguisher/mini,/obj/item/storage/box/freezer,/obj/item/clothing/accessory/storage/white_vest,/obj/item/taperoll/medical) - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"uIr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/observatory) -"uIu" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/staff_room) -"uIw" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/structure/table/marble, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"uIx" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"uIQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/interrogation) -"uJj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/security/security_cell_hallway) -"uJF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/ash, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"uJI" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"uKf" = ( -/obj/structure/outcrop, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/cavern) -"uKp" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"uKG" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/awaymission/snowfield/security/observatory) -"uKQ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm13) -"uLb" = ( -/obj/machinery/door/airlock/hatch{ - icon_state = "door_locked"; - id_tag = "emergency path"; - locked = 1; - req_access = null; - req_one_access = null - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"uLk" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/rack/shelf/steel, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/storage/pill_bottle/bicaridine, -/obj/item/storage/pill_bottle/bicaridine, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"uLC" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/command/monitorroom) -"uMp" = ( -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"uMu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ore/glass, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"uMP" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/paper/awaygate/snowfield/activation_order, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm14) -"uNc" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/corner/grey/bordercorner, -/obj/item/radio/phone, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"uNR" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"uOb" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/northhallway) -"uOQ" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/door_assembly/door_assembly_sec, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"uPe" = ( -/obj/structure/filingcabinet, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"uPg" = ( -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"uQl" = ( -/obj/machinery/light_construct{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - name = "empty south bump"; - pixel_y = -24; - start_charge = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"uQs" = ( -/obj/item/stool, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm1) -"uRd" = ( -/obj/machinery/vending/security{ - description_fluff = "This security vending machine is kindly provided by the-... Sorry, how do you spell this company's name again?"; - product_ads = "Crack capitalist skulls!;Beat some heads in!;Don't forget - harm is good!;Your weapons are right here.;Handcuffs!;Freeze, scumbag!;Don't shoot me bro!;Shoot them, bro.;Why not have a slice of sandwich."; - products = list(/obj/item/handcuffs=12,/obj/item/grenade/flashbang=4,/obj/item/reagent_containers/food/snacks/sandwich=12,/obj/item/storage/box/evidence=6,/obj/item/ammo_magazine/makarov=18,/obj/item/gun/projectile/serdy_pistols/makarov=4,/obj/item/melee/classic_baton=8) - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_lockerroom) -"uRx" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/fence/door, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"uRE" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet/crate/bin, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"uRO" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass{ - name = "Cafeteria" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/service/cafeteria) -"uSg" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"uSM" = ( -/obj/structure/cult/forge, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bridge) -"uUj" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"uUm" = ( -/obj/item/radio/phone, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/hallway/commandhallway) -"uUw" = ( -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/hallway) -"uUD" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"uUV" = ( -/obj/structure/flora/grass/green, -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"uVh" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/tech_storage) -"uVW" = ( -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"uWs" = ( -/obj/item/ore/verdantium, -/obj/item/ore/verdantium, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"uWu" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/hallway) -"uWW" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/machinery/vending/cigarette{ - dir = 1; - prices = null - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/staff_room) -"uXm" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"uXs" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1443; - icon_state = "on"; - id = "air_in"; - use_power = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"uYe" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/observatory) -"uYx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"uYG" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/engineering/primary_storage) -"uYW" = ( -/obj/item/ore/coal, -/obj/effect/decal/cleanable/dirt, -/obj/item/ore/verdantium, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"uYY" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"uZn" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/hallway/commandhallway) -"vaq" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/security{ - starts_with = list(/obj/item/clothing/gloves/black,/obj/item/clothing/accessory/holster,/obj/item/storage/belt/security,/obj/item/clothing/head/beret/sec/corporate/officer,/obj/item/clothing/head/helmet,/obj/item/radio/headset/headset_sec/alt,/obj/item/radio/headset/headset_sec,/obj/item/radio/off,/obj/item/storage/backpack/security,/obj/item/storage/backpack/satchel/sec,/obj/item/clothing/shoes/boots/marine,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/under/soviet,/obj/item/reagent_containers/spray/pepper,/obj/item/melee/classic_baton,/obj/item/ammo_magazine/makarov=2,/obj/item/gun/projectile/serdy_pistols/makarov) - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_lockerroom) -"vaD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"vaJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/security/security_cell_hallway) -"vaM" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/light/flicker, -/mob/living/simple_mob/construct/juggernaut{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/gateway) -"vaV" = ( -/obj/structure/table/rack/shelf/steel, -/obj/structure/window/reinforced, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"vaZ" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/dorms/dorm7) -"vbE" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"vcq" = ( -/obj/structure/closet/secure_closet/guncabinet{ - opened = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"vcx" = ( -/turf/simulated/floor, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"vde" = ( -/obj/machinery/floodlight, -/turf/simulated/floor, -/area/awaymission/snowfield/checkpointunpowered) -"vdv" = ( -/obj/structure/table/reinforced, -/obj/item/geiger, -/obj/item/geiger, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"vdz" = ( -/obj/structure/boulder, -/obj/structure/boulder, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/cavern) -"vdE" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/dorms/dorm10) -"vek" = ( -/obj/structure/closet/crate/bin, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"vep" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/solarshack) -"veE" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/dispenser{ - oxygentanks = 0; - phorontanks = 0 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"veK" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"vfl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"vfB" = ( -/obj/machinery/door/airlock/glass_security, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"vfM" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/storage/box/donut, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"vfN" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/appliance/cooker/grill, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"vfO" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"vgl" = ( -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"vgm" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/dormhallway) -"vgM" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"vgV" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"vgX" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"vhm" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "Dorms13"; - name = "Room 13" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/dorms/dorm13) -"vhz" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"vhC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall, -/area/awaymission/snowfield/checkpoint) -"vir" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"viw" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"viJ" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/button/remote/blast_door{ - id = "snowfield bsa observation window"; - name = "Observation Window Lockdown"; - pixel_x = -5; - req_access = list(20,30) - }, -/obj/machinery/button/remote/blast_door{ - id = "snowfield bsa gateway path"; - name = "BSA-Gateway Podlock"; - pixel_x = 5; - req_access = list(20,30) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/monitorroom) -"viX" = ( -/obj/structure/flora/bush, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"vjy" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/clotting, -/obj/item/defib_kit/compact/combat/loaded, -/obj/item/defib_kit/compact/combat/loaded, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"vjJ" = ( -/obj/structure/outcrop/coal, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"vjO" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/bookcase/manuals/engineering, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/staff_room) -"vke" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/window/southleft{ - req_access = list(1) - }, -/obj/machinery/door/window/northleft{ - req_access = list(1) - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield sec front blast"; - opacity = 0 - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/snowfield/security/frontgate) -"vkB" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/structure/bed/chair/wood, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"vkG" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/item/ammo_magazine/ppsh, -/obj/item/ammo_magazine/ppsh, -/obj/item/ammo_magazine/ppsh, -/obj/item/ammo_magazine/ppsh, -/obj/item/ammo_magazine/ppsh, -/obj/item/ammo_magazine/ppsh, -/obj/item/ammo_magazine/ppsh, -/obj/item/ammo_magazine/ppsh, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/door/window/brigdoor/eastright{ - name = "Ammo" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"vlk" = ( -/obj/structure/lattice, -/obj/structure/girder, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/security/security_cell) -"vmf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/outcrop/coal, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"vmX" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - health = 1e+006 - }, -/obj/structure/window/reinforced/full{ - health = 1e+006 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"vnj" = ( -/mob/living/simple_mob/construct/harvester/greater{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"vny" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"vnP" = ( -/turf/simulated/wall, -/area/awaymission/snowfield/checkpointunpowered) -"vnS" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/faithless/cult/strong{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/monitorroom) -"vnW" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/panicroom) -"vot" = ( -/obj/machinery/vending/assist{ - dir = 4; - pixel_x = -5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/toolstroage2) -"vrJ" = ( -/mob/living/simple_mob/construct/wraith{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bsa) -"vrX" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm3) -"vsh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/medical_restroom) -"vto" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/public/toolstroage2) -"vtp" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/window/brigdoor/southleft{ - name = "Warden's Desk"; - req_access = list(3) - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/warden) -"vtt" = ( -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 35 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/engineering/restroom) -"vul" = ( -/obj/item/towel/random, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm9) -"vuw" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"vuC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/observatory) -"vvh" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "Dorms6"; - name = "Room 6" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/dorm6) -"vvo" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm2) -"vvG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"vvO" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Engine Room"; - req_one_access = list(1,11) - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular{ - id = "snowfieldengroomlockdown" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"vwg" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/highsecurity{ - health = 0; - name = "BSA Monitoring Room"; - req_one_access = list(1,11,20,47,56) - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield bsa MR"; - opacity = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"vyf" = ( -/obj/structure/closet/crate/hydroponics{ - desc = "All you need to start your own honey farm."; - name = "beekeeping crate" - }, -/obj/item/beehive_assembly, -/obj/item/bee_smoker, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/bee_pack, -/obj/item/tool/crowbar, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"vyo" = ( -/obj/structure/filingcabinet, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/server) -"vyE" = ( -/obj/item/ore/glass, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"vzF" = ( -/obj/structure/table/rack, -/obj/item/gun/projectile/automatic/serdy/akm, -/obj/item/gun/projectile/automatic/serdy/akm, -/obj/item/gun/projectile/automatic/serdy/akm, -/obj/item/gun/projectile/automatic/serdy/akm, -/obj/item/gun/projectile/automatic/serdy/krinkov, -/obj/item/gun/projectile/automatic/serdy/krinkov, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Armament" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"vzN" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm5) -"vAc" = ( -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"vAm" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/construct/juggernaut/behemoth/unstoppable, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"vAq" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"vAF" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/tech_storage) -"vBj" = ( -/obj/machinery/door/window/northright{ - req_access = list(1) - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/space_heater, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/evidence_storage) -"vBW" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"vCb" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm15) -"vCN" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/box/syringegun, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"vCY" = ( -/turf/simulated/floor/tiled/red, -/area/awaymission/snowfield/security/hallway) -"vDh" = ( -/obj/structure/closet/crate/freezer, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/service/fridge) -"vDF" = ( -/turf/simulated/mineral, -/area/awaymission/snowfield/cavern) -"vDI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"vDR" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/dorms/dorm2) -"vDT" = ( -/obj/structure/catwalk, -/obj/structure/table/steel_reinforced, -/obj/item/storage/firstaid/surgery, -/obj/item/clothing/mask/breath/anesthetic, -/obj/item/tank/anesthetic, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"vDZ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"vFs" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/testroom) -"vFE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"vFH" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/monitorroom) -"vFQ" = ( -/obj/structure/flora/rocks2, -/obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"vGq" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"vGs" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"vGA" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/smes/buildable{ - charge = null; - cur_coils = 3; - input_attempt = 1; - input_level = 500000; - output_level = 350000 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/solarshack) -"vGX" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"vHd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"vHw" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"vHG" = ( -/mob/living/simple_mob/animal/giant_spider/tunneler, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"vIj" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/animal/giant_spider/webslinger, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"vIp" = ( -/obj/machinery/atmospherics/pipe/tank{ - desc = "A large vessel containing huge amount of water."; - icon_state = "o2_map"; - name = "Water Tank" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"vIw" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"vIC" = ( -/obj/structure/catwalk, -/obj/item/material/shard/shrapnel, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"vIF" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/item/ammo_casing/spent{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"vII" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"vJm" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"vJp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/ore/glass, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"vJH" = ( -/obj/structure/table/glass, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = 4 - }, -/obj/item/towel/random{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"vKl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/cavern) -"vKm" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm5) -"vKF" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"vKJ" = ( -/obj/machinery/computer/med_data{ - req_one_access = list(1,5,4,29) - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"vKZ" = ( -/obj/effect/decal/cleanable/ash, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"vLR" = ( -/obj/structure/closet/crate/hydroponics{ - desc = "All you need to start your own honey farm."; - name = "beekeeping crate" - }, -/obj/item/beehive_assembly, -/obj/item/bee_smoker, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/bee_pack, -/obj/item/tool/crowbar, -/obj/structure/cable/yellow, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 6 - }, -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"vMb" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/hallway) -"vNa" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/medical/front_desk) -"vNd" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/fractal_reactor/fluff/smes, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/panicroom) -"vNH" = ( -/obj/machinery/button/remote/blast_door{ - id = "snowfield emergency bunk"; - name = "Path Blocker Control"; - pixel_y = 23; - req_access = list(1) - }, -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm13) -"vOj" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine_checkpoint) -"vOs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/door_assembly/door_assembly_highsecurity, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/sub_chamber) -"vOx" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"vOQ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"vPa" = ( -/obj/item/ore/glass, -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/outside) -"vPl" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"vQl" = ( -/obj/structure/table/standard, -/obj/item/radio/phone, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/engine_checkpoint) -"vRc" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/hallway/commandhallway) -"vRM" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "5" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"vRR" = ( -/obj/machinery/vending/hydronutrients{ - dir = 8; - pixel_x = 5 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"vSW" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "23" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"vTT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/monitorroom) -"vUF" = ( -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/security_cell) -"vUR" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/medical/staff_room) -"vVk" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor, -/area/awaymission/snowfield/checkpointunpowered) -"vVl" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/machinery/computer/arcade/battle, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/service/publicstaff) -"vVq" = ( -/obj/structure/closet/secure_closet/chemical, -/obj/item/storage/box/syringes, -/obj/item/storage/box/pillbottles, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/item/storage/box/beakers, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"vVX" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "Dorms1"; - name = "Room 1" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/dorm1) -"vWe" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/engine) -"vWo" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/button/remote/blast_door{ - id = "snowfield command armory"; - name = "Command Armory Access"; - req_one_access = list(3,20) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/bridge) -"vWI" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/obj/machinery/appliance/cooker/oven, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"vXq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 26 - }, -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"vYw" = ( -/obj/machinery/door/blast/regular{ - density = 0; - health = 0; - icon_state = "pdoor0"; - id = "snowfield bsa MCA"; - opacity = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/sub_chamber) -"vZe" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"vZy" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm14) -"vZC" = ( -/obj/effect/floor_decal/borderfloor, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"vZL" = ( -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"vZQ" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/tank/air, -/obj/item/clothing/mask/breath, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"wac" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm8) -"wad" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm14) -"wav" = ( -/obj/structure/table/rack/shelf/steel, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"waB" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"waU" = ( -/obj/structure/table/steel_reinforced, -/obj/item/radio/phone, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/observatory) -"wbr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"wbG" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"wbN" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"wcP" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/hallway) -"wdf" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"wdl" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"wdB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/security/hallway2) -"wdD" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/solarshack) -"weG" = ( -/obj/machinery/power/solar, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"weR" = ( -/obj/structure/table/rack/shelf/steel, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"wfG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/solarshack) -"wfM" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/panicroom) -"wgY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/structure/closet{ - closet_appearance = /decl/closet_appearance/oxygen/fire; - name = "fire-safety closet"; - opened = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"whg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"whF" = ( -/obj/item/stool, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm8) -"whG" = ( -/obj/structure/table/steel_reinforced, -/obj/item/surgical/circular_saw{ - pixel_y = 8 - }, -/obj/item/surgical/surgicaldrill, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"whW" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"wiK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/observatory) -"wiQ" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/public/toolstorage1) -"wjL" = ( -/obj/item/stamp/ward, -/obj/item/stamp/denied{ - pixel_x = 5 - }, -/obj/structure/table, -/obj/effect/spider/cocoon, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"wjU" = ( -/obj/structure/catwalk, -/obj/structure/table/steel_reinforced, -/obj/item/tape_roll, -/obj/item/tape_roll, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"wkh" = ( -/obj/structure/cable/yellow, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm11) -"wlf" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"wmy" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/front_desk) -"wnn" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/iv_drip, -/obj/machinery/iv_drip, -/obj/machinery/iv_drip, -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"wnX" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/awaymission/snowfield/engineering/staff_room) -"wnY" = ( -/obj/structure/flora/tree/dead, -/obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"woT" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/public/toolstroage2) -"woV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/vending/sovietsoda{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"wpf" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory_entrance) -"wpl" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/testroom) -"wpr" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm2) -"wpC" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm10) -"wpN" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/tech_storage) -"wpZ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/mob/living/simple_mob/animal/giant_spider/electric, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"wqu" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"wqG" = ( -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"wqI" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular{ - id = "snowfield fourth pathway lock" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"wrR" = ( -/obj/structure/railing, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/outside) -"wsx" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "Dorms11"; - name = "Room 11" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/dorm11) -"wtZ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/item/soap, -/obj/effect/floor_decal/industrial/outline, -/obj/structure/closet/secure_closet/medical3{ - req_access = list(33); - starts_with = list(/obj/item/clothing/under/rank/medical,/obj/item/clothing/under/rank/nurse,/obj/item/clothing/under/rank/orderly,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat/modern,/obj/item/clothing/suit/storage/toggle/fr_jacket,/obj/item/radio/headset/headset_med,/obj/item/radio/headset/headset_med/alt,/obj/item/clothing/suit/storage/hooded/wintercoat/medical,/obj/item/clothing/shoes/boots/winter/medical,/obj/item/clothing/under/rank/nursesuit,/obj/item/clothing/head/nursehat,/obj/item/storage/box/freezer=3,/obj/item/storage/belt/medical) - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"wuM" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"wuV" = ( -/obj/structure/simple_door/cult, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"wvi" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"wvU" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"wwj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm2) -"wwm" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"wwy" = ( -/obj/item/paper/awaygate/snowfield/diary, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/checkpointunpowered) -"wwz" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm7) -"wwS" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm8) -"wxc" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/engine_checkpoint) -"wxw" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"wxz" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/catwalk, -/obj/machinery/power/apc{ - dir = 8; - name = "empty west bump"; - pixel_x = -24; - start_charge = 0 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/public/toolstroage2) -"wxW" = ( -/obj/machinery/door/blast/regular{ - id = "snowfield second blast" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/checkpointhallway) -"wzI" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/checkpointunpowered) -"wzL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/hallway/frontgate_substation) -"wAu" = ( -/obj/structure/filingcabinet, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/frontgate) -"wAV" = ( -/obj/structure/closet/wardrobe/chemistry_white, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"wBv" = ( -/obj/structure/catwalk, -/obj/item/clothing/head/hardhat/firefighter/atmos, -/obj/machinery/light/flicker{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"wBP" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/light/flicker{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"wBU" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/janitor) -"wCq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"wCM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/ash, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"wCU" = ( -/obj/structure/catwalk, -/obj/item/material/shard/shrapnel{ - pixel_x = 12; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"wDs" = ( -/obj/machinery/biogenerator, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"wDw" = ( -/obj/structure/fence/door, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"wDN" = ( -/obj/item/paper/awaygate/snowfield/evacuation_order, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm10) -"wEG" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/spider/stickyweb, -/obj/machinery/light/flicker{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"wEK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/security/security_cell_hallway) -"wFJ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Airlock (Class 5E)"; - req_one_access = list(1,11) - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"wFO" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm2) -"wGk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm8) -"wGu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"wHg" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"wHr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/sub_chamber) -"wIq" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm7) -"wIS" = ( -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"wIT" = ( -/obj/item/stool, -/obj/machinery/light, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm5) -"wJi" = ( -/obj/machinery/smartfridge/produce, -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/service/hydro) -"wJl" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"wJX" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/southhallway) -"wKo" = ( -/obj/structure/table/steel_reinforced, -/obj/item/radio/phone, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/sub_chamber) -"wKA" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"wKJ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/warden) -"wLo" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/public/toolstroage2) -"wLL" = ( -/obj/item/ore/glass, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"wLW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 8; - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/bridge) -"wMf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/panicroom) -"wMn" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"wNc" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - req_access = null; - req_one_access = list(1,10) - }, -/obj/machinery/door/blast/regular{ - id = "snowfieldengroomlockdown" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/monitor_room) -"wNi" = ( -/obj/structure/toilet, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/patient_restroom) -"wNk" = ( -/obj/structure/table/rack, -/obj/machinery/light_construct/small{ - dir = 8 - }, -/obj/item/pickaxe, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"wNv" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - name = "empty south bump"; - pixel_y = -24; - start_charge = 0 - }, -/mob/living/simple_mob/construct/artificer/caster{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"wNO" = ( -/obj/machinery/door/airlock/engineering{ - req_access = null; - req_one_access = list(1,10) - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/staff_room) -"wOy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/security_cell) -"wOB" = ( -/obj/machinery/door/window/northright{ - req_access = list(1) - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/awaymission/snowfield/security/evidence_storage) -"wPg" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/service/fridge) -"wPG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/security/firingrange) -"wQa" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm5) -"wQd" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/engineering/secure_tech_storage) -"wQl" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "snowfield bsa observation window"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced/full{ - health = 1e+006 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/command/bsa) -"wQy" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/item/material/shard/shrapnel{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/material/shard/shrapnel, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"wQH" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"wRk" = ( -/obj/item/card/id/gateway/snowfield/class5E, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm11) -"wRA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm6) -"wRD" = ( -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/emergency_pathway/EP_unpowered) -"wSi" = ( -/obj/item/paper/awaygate/snowfield/evacuation_order, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm2) -"wSr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "empty north bump"; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"wSz" = ( -/obj/structure/cable/heavyduty, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/checkpoint) -"wTm" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"wTu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 26 - }, -/obj/structure/table/steel_reinforced, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"wTC" = ( -/obj/machinery/door/blast/gate/open{ - dir = 4 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"wTF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, -/area/awaymission/snowfield/cavern) -"wUf" = ( -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"wUh" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/spiderling_remains, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"wUo" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"wUL" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/checkpointunpowered) -"wUO" = ( -/obj/machinery/power/solar_control, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/solarshack) -"wUQ" = ( -/obj/effect/floor_decal/borderfloorblack, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"wVi" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/item/material/shard/shrapnel{ - pixel_x = 12; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/firingrange) -"wVE" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/white{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/decal/cleanable/flour, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"wVW" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/front_desk) -"wWo" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/dorms/dorm6) -"wWw" = ( -/obj/machinery/button/remote/blast_door{ - id = "snowfield gateway"; - name = "Gateway Entry Access"; - req_one_access = list(1,10,20) - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/light_construct{ - dir = 1 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"wWx" = ( -/obj/machinery/light_construct, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/sub_chamber) -"wWz" = ( -/obj/structure/barricade/planks, -/obj/machinery/door/airlock/security, -/turf/simulated/floor/tiled/red, -/area/awaymission/snowfield/security/seconddesk) -"wWF" = ( -/obj/structure/table/rack/shelf/steel, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/storage/pill_bottle/myelamine, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/medical/storage_room) -"wWN" = ( -/obj/structure/fireaxecabinet{ - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/effect/spider/stickyweb, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"wXd" = ( -/obj/item/material/shard, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bsa) -"wXh" = ( -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"wXm" = ( -/obj/structure/outcrop/iron, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"wXA" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm5) -"wXF" = ( -/obj/effect/mine/frag, -/obj/structure/flora/grass/brown, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"wXL" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/pen/multi, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"wXM" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/commandarmory) -"wXV" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/engineering/engine_checkpoint) -"wYC" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm13) -"wZf" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm6) -"wZh" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/monitorroom) -"wZo" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"wZE" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/material/ashtray/glass, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"wZI" = ( -/obj/structure/flora/pottedplant/large, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"wZM" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/staff_room) -"wZT" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"xad" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/dorms/dorm9) -"xai" = ( -/obj/structure/table/rack, -/obj/item/grenade/smokebomb, -/obj/item/grenade/smokebomb, -/obj/item/grenade/smokebomb, -/obj/item/grenade/smokebomb, -/obj/item/grenade/smokebomb, -/obj/item/grenade/smokebomb, -/obj/item/grenade/smokebomb, -/obj/item/grenade/smokebomb, -/obj/item/grenade/smokebomb, -/obj/item/grenade/smokebomb, -/obj/item/grenade/smokebomb, -/obj/item/grenade/smokebomb, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"xaj" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/mask/balaclava, -/obj/item/clothing/mask/balaclava, -/obj/item/clothing/suit/armor/pcarrier/light, -/obj/item/clothing/suit/armor/pcarrier/light, -/obj/item/clothing/suit/storage/hooded/wintercoat/solgov/army, -/obj/item/clothing/suit/storage/hooded/wintercoat/solgov/army, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/shoes/boots/marine, -/obj/item/clothing/shoes/boots/marine, -/obj/item/clothing/shoes/boots/marine, -/obj/item/clothing/shoes/boots/marine, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/panicroom) -"xam" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm6) -"xap" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/item/bone/horn, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway) -"xav" = ( -/obj/structure/table/standard, -/obj/item/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/masks, -/obj/item/storage/box/masks, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"xaD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/item/stool/padded, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"xaF" = ( -/obj/machinery/seed_storage/garden{ - dir = 8; - pixel_x = 5 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/service/hydro) -"xaM" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border, -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"xaT" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "empty east bump"; - pixel_x = 24; - start_charge = 0 - }, -/turf/simulated/floor/lino, -/area/awaymission/snowfield/security/detective) -"xbK" = ( -/obj/structure/catwalk, -/obj/item/material/shard/shrapnel{ - pixel_x = 12; - pixel_y = -5 - }, -/obj/item/stack/rods, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"xbN" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access = null; - req_one_access = list(1,28) - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/service/kitchen) -"xbR" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/table, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"xbT" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"xcE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"xcS" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"xdC" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"xdV" = ( -/obj/structure/boulder, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/outside) -"xeg" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "empty south bump"; - pixel_y = -24; - start_charge = 0 - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"xen" = ( -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/public/toolstorage1) -"xeQ" = ( -/obj/machinery/floodlight, -/turf/simulated/floor, -/area/awaymission/snowfield/checkpoint) -"xeR" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"xfi" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"xfF" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/monitorroom) -"xfQ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "Dorms14"; - name = "Room 14" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/dorm14) -"xfZ" = ( -/obj/machinery/door/airlock/medical{ - name = "Patient Room"; - req_one_access = list(1,5) - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/patients) -"xge" = ( -/obj/machinery/gateway{ - dir = 1 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"xgf" = ( -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"xgl" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"xgt" = ( -/obj/structure/boulder, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"xgK" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"xgX" = ( -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical, -/obj/item/storage/belt/security/tactical, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/clothing/mask/balaclava, -/obj/item/clothing/mask/balaclava, -/obj/item/clothing/mask/balaclava, -/obj/item/clothing/mask/balaclava, -/obj/item/clothing/mask/balaclava, -/obj/item/clothing/mask/balaclava, -/obj/item/clothing/mask/balaclava, -/obj/item/clothing/mask/balaclava, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"xhl" = ( -/turf/simulated/wall{ - can_open = 1 - }, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"xhp" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/public/toolstroage2) -"xhV" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"xir" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/paper/awaygate/snowfield/evacuation_order, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm7) -"xiw" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/medical/hallway) -"xiI" = ( -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/dorms/panicroom) -"xjh" = ( -/obj/machinery/door/window/westright{ - name = "Shower" - }, -/obj/machinery/shower{ - dir = 8; - pixel_x = -5; - pixel_y = -1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/structure/window/reinforced, -/obj/item/material/shard/shrapnel{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/structure/curtain/open/shower/security, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/security/security_restroom) -"xjy" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"xjA" = ( -/obj/structure/table/glass, -/obj/item/soap, -/obj/item/soap, -/obj/item/soap, -/obj/item/soap, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"xjH" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/interrogation) -"xjM" = ( -/turf/simulated/floor, -/area/awaymission/snowfield/command/observatory_path) -"xjQ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet{ - closet_appearance = /decl/closet_appearance/bio; - name = "Level-3 Biohazard Closet"; - opened = 1 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/monitorroom) -"xke" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/structure/catwalk, -/obj/item/material/shard/shrapnel{ - pixel_x = -3; - pixel_y = -7 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/security_cell) -"xkl" = ( -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/cavern) -"xkM" = ( -/obj/structure/table/bench/wooden, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/security_lockerroom) -"xkO" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket/wood, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"xkV" = ( -/obj/machinery/chemical_dispenser/biochemistry/full, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/chemistry) -"xlE" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Armament" - }, -/obj/item/gun/projectile/automatic/serdy/ak74, -/obj/item/gun/projectile/automatic/serdy/ak74, -/obj/item/gun/projectile/automatic/serdy/ak74, -/obj/item/gun/projectile/automatic/serdy/ak74, -/obj/item/gun/projectile/automatic/serdy/ak74, -/obj/item/gun/projectile/automatic/serdy/ak74, -/obj/item/gun/projectile/automatic/serdy/ak74/variantun, -/obj/item/gun/projectile/automatic/serdy/ak74/variantun, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"xlS" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/mob/living/simple_mob/animal/giant_spider/broodling, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/front_desk) -"xmc" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "empty north bump"; - pixel_y = 24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/security/security_cell) -"xmk" = ( -/obj/structure/fence/cut/large{ - dir = 8 - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"xmq" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control-switch for Surgery."; - id = "Operating Theatre"; - name = "Surgery"; - pixel_x = 23; - req_one_access = list(1,45) - }, -/mob/living/simple_mob/animal/giant_spider/webslinger, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/hallway) -"xmu" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "6" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"xnd" = ( -/obj/random/junk, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/checkpointunpowered) -"xoa" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/pen{ - pixel_y = 4 - }, -/obj/item/pen/blue, -/obj/item/material/ashtray/glass, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"xod" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/engineering/staff_room) -"xoD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/awaymission/snowfield/engineering/staff_room) -"xoN" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/masks, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/structure/cable/yellow, -/obj/machinery/power/apc{ - name = "empty south bump"; - pixel_y = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/surgery) -"xpb" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/window/northright{ - req_access = list(1) - }, -/obj/machinery/door/window/southright{ - req_access = list(1) - }, -/obj/item/pen, -/obj/structure/barricade/planks, -/turf/simulated/floor/tiled/red, -/area/awaymission/snowfield/security/seconddesk) -"xph" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light_construct/small{ - dir = 4 - }, -/obj/item/card/id/syndicate, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/checkpointunpowered) -"xqL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/checkpointhallway) -"xqP" = ( -/obj/structure/table/reinforced, -/obj/item/radio/phone, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"xqQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm10) -"xqW" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/highsecurity{ - name = "Armoury Tactical Equipment"; - req_access = list(3); - req_one_access = list(3) - }, -/obj/machinery/door/blast/regular{ - id = "Armoury"; - name = "Emergency Access" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"xrh" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/blucarpet, -/area/awaymission/snowfield/service/publicstaff) -"xsa" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/dormhallway) -"xsl" = ( -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/observatory) -"xsF" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/southhallway) -"xsM" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "SMES Access"; - req_access = list(1,11); - req_one_access = null - }, -/obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular{ - id = "snowfield command SMES lockdown" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/commandhallway_substation) -"xtd" = ( -/obj/machinery/light/small, -/turf/simulated/floor/outdoors/rocks, -/area/awaymission/snowfield/cavern) -"xtj" = ( -/obj/machinery/door/airlock{ - name = "Unit 4" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"xtM" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm12) -"xtX" = ( -/obj/item/ore/glass, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/outside) -"xuc" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm14) -"xuh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/security/security_cell) -"xuw" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm15) -"xuE" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/checkpointhallway) -"xuF" = ( -/obj/item/ore/coal, -/obj/effect/decal/cleanable/dirt, -/obj/structure/boulder, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"xuZ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"xvh" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/engineering/engine) -"xvl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/structure/mopbucket, -/obj/item/mop, -/obj/effect/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/item/reagent_containers/glass/bucket/wood, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"xwl" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/machinery/light/flicker{ - dir = 4 - }, -/mob/living/simple_mob/construct/artificer/caster{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/gateway) -"xxj" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/bordercorner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/monitorroom) -"xxz" = ( -/obj/machinery/vending/coffee{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"xxF" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/medical_restroom) -"xxU" = ( -/obj/machinery/light_construct{ - dir = 1 - }, -/obj/structure/table, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"xye" = ( -/obj/structure/lattice, -/mob/living/simple_mob/construct/shade, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/hallway/commandhallway) -"xyE" = ( -/obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow/sif/planetuse, -/area/awaymission/snowfield/outside) -"xyK" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/service/cafeteria) -"xzm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/seconddesk) -"xzW" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"xAd" = ( -/obj/structure/cable/heavyduty{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/heavyduty{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"xAe" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm12) -"xAk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 10 - }, -/obj/structure/reagent_dispensers/space_cleaner{ - pixel_x = -30 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/table/steel, -/obj/item/radio/phone, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - name = "empty south bump"; - pixel_y = -24; - start_charge = 0 - }, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/service/janitor) -"xAr" = ( -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"xBm" = ( -/obj/structure/boulder, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"xBF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"xBH" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/cleanable/ash, -/turf/simulated/floor, -/area/awaymission/snowfield/security/security_cell) -"xBW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/dirt, -/obj/item/card/id/gateway/snowfield/class5E, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/command/monitorroom) -"xCF" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/stack/material/wood, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/seconddesk) -"xCP" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/ammo_casing/spent{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/northhallway) -"xDT" = ( -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/security/firingrange) -"xDY" = ( -/obj/random/tech_supply, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/public/toolstroage2) -"xEc" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Cells"; - req_access = list(1) - }, -/turf/simulated/floor/tiled/red, -/area/awaymission/snowfield/security/security_cell_hallway) -"xEt" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/sub_chamber) -"xFs" = ( -/obj/structure/table/steel_reinforced, -/obj/item/radio/phone, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/monitorroom) -"xGh" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/dorms/dorm16) -"xGx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/command{ - req_one_access = list(19,47) - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/observatory_path) -"xGC" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"xGV" = ( -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpoint) -"xIh" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/monitor_room) -"xIj" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/white{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/service/kitchen) -"xIs" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/regular{ - starts_with = list(/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/obj/item/stack/medical/ointment,/obj/item/storage/pill_bottle/paracetamol,/obj/item/storage/pill_bottle/iron) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine_checkpoint) -"xIO" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/mob/living/simple_mob/animal/giant_spider/carrier, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"xIQ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/engineering/monitor_room) -"xJj" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/green/border, -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"xJr" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"xKh" = ( -/obj/item/material/shard/shrapnel{ - pixel_x = -3; - pixel_y = -7 - }, -/obj/effect/spider/stickyweb, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/security/detective) -"xKN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/hallway) -"xLF" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_mob/construct/harvester/greater{ - devourable = 0 - }, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/hallway/commandhallway) -"xMi" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/arrows{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/checkpointhallway) -"xMy" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/frontgate_substation) -"xMA" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/southhallway) -"xMF" = ( -/obj/structure/morgue/crematorium{ - dir = 1; - id = "Chapelburn" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/morgue) -"xMP" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm8) -"xNn" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"xNQ" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/checkpointunpowered) -"xNX" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/centerhallway) -"xNZ" = ( -/obj/structure/window/reinforced/tinted/frosted, -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/security/detective) -"xOb" = ( -/mob/living/simple_mob/construct/harvester{ - devourable = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"xPb" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"xPt" = ( -/obj/machinery/power/tracker, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/awaymission/snowfield/outside) -"xPy" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/security/lobby) -"xPH" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory_entrance) -"xPQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/structure/coatrack, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"xPZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/security/firingrange) -"xQd" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm13) -"xQk" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/centerhallway) -"xQJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm14) -"xRh" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/computer/skills{ - req_one_access = list(1,19) - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"xSb" = ( -/obj/structure/bed, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm2) -"xSc" = ( -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/engineering/primary_storage) -"xSq" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/engineering/tech_storage) -"xSU" = ( -/obj/structure/railing, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bridge) -"xTu" = ( -/obj/structure/sink/kitchen{ - dir = 4; - pixel_x = 12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/medical_restroom) -"xTB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/observatory_path) -"xTJ" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/public/toolstorage1) -"xTP" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/dorms/dorm12) -"xUj" = ( -/obj/machinery/door/blast/regular{ - id = "snowfield front blast" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/checkpointhallway) -"xUz" = ( -/obj/machinery/shower{ - pixel_y = 18 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm15) -"xUD" = ( -/obj/machinery/computer/operating{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"xVB" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"xVO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/checkpointhallway) -"xVV" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/snowfield/command/commandarmory) -"xWw" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "30" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"xXB" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm5) -"xXH" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/monitorroom) -"xXJ" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/pen/multi, -/obj/item/pen/multi, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/staff_room) -"xXN" = ( -/obj/item/ore/verdantium, -/turf/simulated/floor/outdoors/rocks/caves, -/area/awaymission/snowfield/cavern) -"xYr" = ( -/obj/item/towel/random, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm10) -"xYC" = ( -/obj/structure/table/rack, -/obj/item/material/knife/tacknife/combatknife, -/obj/item/material/knife/tacknife/combatknife, -/obj/item/material/knife/tacknife/combatknife, -/obj/item/material/knife/tacknife/combatknife, -/obj/item/material/knife/tacknife/combatknife, -/obj/item/material/knife/tacknife/combatknife, -/obj/item/material/knife/tacknife/combatknife, -/obj/item/material/knife/tacknife/combatknife, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"xYD" = ( -/obj/item/surgical/scalpel, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/surgery) -"xYN" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/hallway/southhallway) -"xYW" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/carpet/turcarpet, -/area/awaymission/snowfield/medical/staff_room) -"xYX" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/item/gun/projectile/automatic/serdy/ak74/variantun, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/commandhallway) -"xZv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/engineering/engine) -"xZV" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm11) -"yam" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/dorms/dorm1) -"ybf" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/awaymission/snowfield/emergency_pathway/EP_powered) -"ybj" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/reagent_dispensers/water_cooler/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/staff_room) -"ybq" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"ybW" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"ycq" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/item/soap, -/obj/effect/spider/stickyweb, -/obj/item/card/id/gateway/snowfield/class3M, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/medical/medical_locker) -"ycJ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/cave, -/area/awaymission/snowfield/hallway/commandhallway) -"ycN" = ( -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/bridge) -"ycX" = ( -/obj/machinery/door/airlock/glass_security, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"yda" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/hallway/southhallway) -"yev" = ( -/obj/effect/floor_decal/steeldecal/monofloor, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/effect/floor_decal/steeldecal/steel_decals_central5, -/obj/machinery/door/blast/regular{ - density = 0; - health = 40; - icon_state = "pdoor0"; - id = "snowfield gateway"; - opacity = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/gateway) -"yeM" = ( -/obj/machinery/light/flicker{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/checkpointunpowered) -"yeW" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/item/ammo_casing/spent{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/ammo_casing/spent{ - pixel_x = -4; - pixel_y = -7 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"yfe" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/monotile, -/area/awaymission/snowfield/security/lobby) -"yft" = ( -/obj/structure/artilleryplaceholder{ - icon_state = "13" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"yfY" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/steel_grid, -/area/awaymission/snowfield/dorms/dorm6) -"ygP" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/command/bsa) -"ygS" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/command/sub_chamber) -"ygT" = ( -/obj/machinery/door/airlock{ - name = "Unit 5" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/cafeteria_restroom) -"ygU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/testroom) -"yih" = ( -/obj/structure/table/woodentable, -/obj/item/radio/phone, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_ridged, -/area/awaymission/snowfield/security/observatory) -"yis" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/awaymission/snowfield/command/testroom) -"yiv" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/structure/closet/firecloset/full, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/medical/storage_room) -"yjw" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/awaymission/snowfield/engineering/hallway) -"yjP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/awaymission/snowfield/security/heavy_armory) -"ykE" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/item/ammo_magazine/clip/sks, -/obj/item/ammo_magazine/clip/sks, -/obj/item/ammo_magazine/clip/sks, -/obj/item/ammo_magazine/clip/sks, -/obj/item/ammo_magazine/clip/sks, -/obj/item/ammo_magazine/clip/sks, -/obj/item/ammo_magazine/clip/sks, -/obj/item/ammo_magazine/clip/sks, -/obj/item/ammo_magazine/clip/sks, -/obj/item/ammo_magazine/clip/sks, -/obj/item/ammo_magazine/clip/sks, -/obj/item/ammo_magazine/clip/sks, -/obj/item/ammo_magazine/clip/sks/ap, -/obj/item/ammo_magazine/clip/sks/ap, -/obj/item/ammo_magazine/clip/sks/ap, -/obj/item/ammo_magazine/clip/sks/ap, -/obj/item/ammo_magazine/clip/sks/ap, -/obj/item/ammo_magazine/clip/sks/ap, -/obj/item/ammo_magazine/clip/sks/ap, -/obj/item/ammo_magazine/clip/sks/ap, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/door/window/brigdoor/eastright{ - name = "Ammo" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/security/armory) -"ykS" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/public/publicrestroom) -"ylp" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/medical/medical_restroom) -"ylw" = ( -/obj/effect/floor_decal/corner/lightgrey/diagonal, -/obj/item/clothing/suit/bio_suit/general, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/engineering/locker_room) -"ylN" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/hallway/northhallway) -"ylT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/cult, -/area/awaymission/snowfield/command/gateway) -"ylU" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "Dorms12"; - name = "Room 12" - }, -/turf/simulated/floor/tiled/techfloor, -/area/awaymission/snowfield/dorms/dorm12) - -(1,1,1) = {" -dmZ -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -"} -(2,1,1) = {" -jJH -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -szB -"} -(3,1,1) = {" -jZp -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(4,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(5,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(6,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(7,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(8,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(9,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(10,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -bVG -bVG -bVG -bVG -bVG -bVG -bVG -bVG -bVG -bVG -bVG -bVG -bVG -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(11,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -uoM -uoM -bVG -bVG -bVG -bVG -bVG -bVG -bVG -bVG -bVG -bVG -bVG -bVG -bVG -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(12,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -vZL -vZL -rWB -vZL -vZL -vZL -vZL -vZL -nLz -vZL -vZL -vZL -vZL -vZL -rWB -vZL -vZL -vZL -vZL -vZL -rWB -vZL -uLb -vZL -vZL -vZL -rWB -vZL -vZL -vZL -vZL -vZL -rWB -vZL -vZL -vZL -vZL -vZL -vZL -vZL -rWB -vZL -vZL -vZL -vZL -nGn -uoM -uoM -bVG -bVG -uww -bVG -uww -bVG -uww -bVG -ukP -lom -lom -bVG -bVG -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(13,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -vZL -nGn -uoM -uoM -bVG -bVG -jsR -bVG -iAZ -bVG -nIq -bVG -bAP -dml -bAP -bVG -bVG -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(14,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -qat -bUb -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -rKt -hUz -bLK -aNJ -aNJ -oPW -ceH -nGn -jlx -nGn -nGn -nGn -nGn -nGn -lfp -bAP -bAP -bAP -bAP -oQO -bAP -dml -vny -bVG -bVG -uvm -uvm -uvm -uvm -uvm -uvm -uvm -uvm -uvm -uvm -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(15,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bUb -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -imC -pun -wXF -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -gbz -nGn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xvh -xvh -xvh -xvh -xvh -xvh -xvh -xvh -xvh -xvh -xvh -xvh -xvh -xvh -rKt -jyn -xen -xen -xen -xen -wiQ -xhl -vZL -vZL -vZL -uLb -vZL -xhl -ivC -bAP -dml -dml -bAP -oQO -dml -krl -bVG -bVG -bVG -uvm -uvm -uvm -uvm -uvm -uvm -uvm -uvm -uvm -adq -adq -adq -adq -adq -sXc -sXc -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(16,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -imC -pun -uyr -pun -pun -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -imC -xyE -pun -xyE -xyE -qat -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xvh -xvh -uEZ -uEZ -uEZ -uEZ -uEZ -uEZ -uEZ -uEZ -uEZ -uEZ -uEZ -uEZ -rKt -xTJ -mag -mag -xen -xen -riQ -nGn -vZL -nGn -nGn -nGn -nGn -nGn -iMC -bVG -ygT -bVG -xtj -bVG -bAP -bAP -xjA -bVG -hdq -wbG -gLu -wbG -gCV -gCV -wbG -gLu -eNU -uvm -adq -adq -adq -adq -adq -sXc -sXc -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(17,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -imC -pun -imC -vDF -vDF -pun -pun -pun -pun -pun -wXF -pun -pun -pun -pun -xyE -qYo -imC -xyE -qat -pun -bUb -pun -qat -pun -qat -pun -imC -pun -pun -bUb -bUb -imC -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xvh -xvh -uEZ -uEZ -uEZ -uEZ -uEZ -uEZ -uEZ -uEZ -qwU -siI -liC -uEZ -rKt -jyn -xen -xen -xen -xen -aEn -nGn -uLb -nGn -vDF -vDF -vDF -bVG -xkO -bVG -fnW -bVG -fnW -bVG -dml -pAB -kUF -vJm -vGq -nHI -tPx -tPx -tPx -tPx -tPx -tPx -gQT -uvm -jPC -qbX -viw -viw -fnD -sXc -sXc -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(18,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -nin -pun -pun -imC -pun -pun -xyE -fKO -bsH -bsH -bsH -bsH -bsH -aKJ -bsH -bsH -bsH -aKJ -bsH -bsH -bsH -bsH -bsH -bsH -bsH -uyr -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xvh -xvh -uEZ -uEZ -cWo -uEZ -cWo -uEZ -cWo -uEZ -vIp -bGr -eUQ -uEZ -rKt -emV -hgs -ipm -iDk -mTR -qme -nGn -vZL -nGn -fGh -fGh -fGh -bVG -bVG -bVG -bVG -bVG -bVG -bVG -bVG -bVG -bVG -bVG -fwu -gvJ -ePe -gzE -ePe -ePe -gzE -ePe -gQT -uvm -hOE -kaX -sVq -sVq -neq -sXc -sXc -sXc -sXc -sXc -sXc -sXc -vDR -vDR -vDR -vDR -vDR -vDR -jBQ -jBQ -jBQ -jBQ -jBQ -jBQ -sWl -sWl -sWl -sWl -sWl -sWl -sWl -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(19,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -imC -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -imC -pun -imC -pun -pun -pun -pun -imC -pun -pun -qYo -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -uyr -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xvh -xvh -uEZ -uEZ -ttQ -uEZ -ttQ -uEZ -ttQ -uEZ -dJl -vWe -mCK -uEZ -rKt -rKt -rKt -rKt -iYl -rKt -rKt -nGn -xhl -nGn -fGh -fGh -fGh -fGh -nos -beI -nos -nos -nos -nos -nos -beI -nos -toJ -fwu -gvJ -bJC -bJC -bJC -bJC -bJC -gBS -gQT -uvm -hOE -kUc -sVq -mBe -ufA -sXc -sXc -sXc -sXc -sXc -sXc -sXc -vDR -vDR -vDR -vDR -vDR -vDR -jBQ -jBQ -jBQ -jBQ -jBQ -jBQ -sWl -sWl -sWl -sWl -sWl -sWl -sWl -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(20,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -bUb -bUb -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -imC -pun -pun -mFY -pgn -iNn -pun -pun -weG -dnp -sRm -pun -pun -qbN -vKF -sRm -pun -pun -qYo -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xvh -xvh -uEZ -uEZ -jQq -dUp -xZv -dUp -jQq -dUp -dJl -vWe -lxS -uEZ -tzg -tzg -tzg -hMS -evZ -fnS -fuQ -fGh -pbJ -pbJ -pbJ -fGh -edc -fGh -nos -udd -udd -udd -udd -udd -udd -jsd -nos -toJ -xjy -gvJ -nNr -nNr -xyK -nNr -nNr -nNr -lDs -uvm -vVl -kUc -sVq -sVq -mOn -sXc -jmU -yam -sXc -kxV -ncZ -sXc -vvo -wFO -vDR -ciA -tpu -vDR -ddJ -ojQ -jBQ -jfa -hvD -jBQ -orY -jtE -sWl -oru -gBZ -sWl -sWl -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(21,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -nin -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -qYo -pun -pun -imC -pun -olD -mwo -iNn -pun -pun -weG -cGS -sRm -pun -pun -qbN -cGS -iNn -pun -pun -qYo -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -tOE -cNS -tOE -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -uEZ -uEZ -jzR -jqn -fJZ -jqn -dzR -qqE -jDu -vWe -lqv -uEZ -tzg -tzg -tzg -hMS -fYG -sUP -sUP -rNL -tec -fYo -fYo -eFM -tfG -fGh -nos -udd -nos -nos -nos -nos -nos -jsd -nos -toJ -jEJ -gvJ -tPx -tPx -tPx -tPx -tPx -tPx -gQT -uvm -hOE -kaX -mBe -mBe -fik -sXc -pNI -uGe -esc -pBV -pBV -sXc -fht -iFm -bBr -ter -ter -vDR -oDj -eyW -iqV -nTe -nTe -jBQ -lID -uFu -dJq -iuB -iuB -sWl -sWl -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(22,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -bUb -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -mFY -cGS -iNn -pun -pun -qbN -cGS -sRm -pun -pun -weG -cGS -iNn -pun -pun -qYo -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -tOE -qYD -cNS -uLb -vZL -vZL -vZL -rWB -vZL -vZL -vZL -vZL -dxs -vZL -vZL -vZL -vZL -vZL -vZL -rWB -vZL -vZL -vZL -vZL -vZL -nGn -uEZ -uEZ -qpE -aSi -oDD -aSi -oDD -aSi -pBA -kjm -vdv -uEZ -tzg -tzg -tzg -hMS -qne -uOb -ned -fGh -gLD -hAd -hAd -fGh -fGh -fGh -hPe -udd -udd -jsd -jsd -jsd -jsd -udd -dub -toJ -jEJ -gvJ -ePe -gzE -ePe -ePe -gzE -ePe -gQT -uvm -pOV -mBe -mBe -mBe -sYg -sXc -sXc -sXc -sXc -pBV -aNw -sXc -vDR -vDR -vDR -ter -fIy -vDR -jBQ -jBQ -jBQ -nTe -eeE -jBQ -sWl -sWl -sWl -iuB -rou -sWl -sWl -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(23,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -imC -pun -xyE -pun -wXF -pun -pun -pun -pun -pun -qat -pun -imC -imC -imC -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -olD -mwo -iNn -pun -pun -weG -cGS -iNn -pun -pun -weG -cGS -sRm -pun -pun -qYo -pun -xyE -pun -pun -pun -vDF -vDF -vDF -vDF -tOE -cNS -tOE -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -vZL -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -vZL -nGn -uEZ -uEZ -jQq -ubF -jQq -ubF -jQq -ubF -mMp -lmC -xqP -uEZ -tzg -tzg -tzg -hMS -qne -uOb -ned -fGh -aLI -hAd -hAd -tGK -gEr -fGh -nos -udd -nos -nos -nos -nos -nos -udd -nos -toJ -bvp -xfi -bJC -bJC -bJC -bJC -bJC -bJC -gQT -uvm -pOV -hTF -hTF -hTF -sYg -sXc -evg -evg -eUt -lAd -uQs -sXc -xSb -xSb -ffS -ter -fTp -vDR -vrX -vrX -cVu -nTe -scu -jBQ -qZp -qZp -hUk -iuB -ofN -sWl -sWl -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(24,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -nin -pun -xyE -pun -bUb -pun -pun -pun -nin -pun -imC -imC -pun -pun -pun -pun -xyE -pun -pun -pun -qYo -pun -pun -pun -pun -mFY -mwo -sRm -pun -pun -weG -cGS -iNn -pun -pun -weG -cGS -sRm -pun -bUb -qYo -pun -xyE -pun -pun -pun -vDF -vDF -vDF -vDF -tOE -cNS -tOE -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -jlx -nGn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -jlx -nGn -uEZ -uEZ -fWQ -uEZ -fWQ -uEZ -fWQ -uEZ -dnJ -lmC -kKp -uEZ -tzg -tzg -tzg -iLw -qne -uOb -ylN -fGh -uBf -hAd -fYo -fGh -fGh -fGh -nos -udd -jsd -jsd -udd -udd -jsd -jsd -nos -toJ -bvp -xfi -nNr -nNr -nNr -nNr -nNr -nNr -gQT -uvm -eBk -oSh -oSh -naQ -rWM -sXc -eUt -eUt -gSm -pBV -lGq -sXc -ffS -ffS -jTk -ter -cEo -vDR -cVu -cVu -cVu -nTe -iBu -jBQ -hVQ -hVQ -hVQ -iuB -iAR -sWl -sWl -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(25,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -imC -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -aVA -pun -pun -nin -pun -pun -pun -xyE -pun -pun -pun -qYo -pun -pun -pun -pun -olD -xgl -sRm -pun -pun -weG -cGS -iNn -pun -pun -weG -xgl -sRm -pun -pun -qYo -pun -pun -pun -imC -pun -vDF -vDF -vDF -vDF -tOE -cNS -tOE -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -uEZ -uEZ -ciQ -uEZ -ciQ -uEZ -ciQ -uEZ -iQR -cqc -geU -uEZ -tzg -tzg -tzg -hMS -qne -uOb -ned -fGh -fYo -fYo -fYo -lBd -gEr -fGh -aXY -kyH -eZD -aXY -aXY -aXY -nVv -qRJ -aXY -toJ -lGQ -gvJ -tPx -tPx -tPx -tPx -tPx -tPx -jXv -uvm -oEM -xrh -toF -toF -sYg -sXc -ngv -edJ -eUt -pBV -lGq -sXc -wpr -geH -wwj -ter -cEo -vDR -ghL -jbe -cVu -nTe -iBu -jBQ -aHu -bqA -hVQ -lLY -iAR -sWl -sWl -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(26,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xyE -bUb -pun -imC -imC -pun -pun -bUb -pun -aVA -pun -pun -lBV -pun -pun -nin -imC -imC -imC -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -olD -xgl -sRm -pun -pun -weG -xgl -sRm -pun -pun -weG -mwo -sRm -pun -pun -qYo -pun -pun -pun -imC -pun -vDF -vDF -vDF -vDF -tOE -vcx -tOE -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -uLb -nGn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -uLb -nGn -uEZ -uEZ -uEZ -uEZ -uEZ -uEZ -uEZ -uEZ -uEZ -keG -uEZ -uEZ -tzg -tzg -tzg -hMS -qne -uOb -ned -fGh -qOP -hAd -fYo -fGh -fGh -fGh -dXU -vOQ -cyr -nBs -nBs -kYE -biJ -fEh -cEx -toJ -jJd -gvJ -ePe -gzE -ePe -ePe -gzE -ePe -gQT -aKn -oEM -sVq -sVq -sVq -sYg -sXc -eUt -imT -eUt -pBV -lGq -sXc -ffS -wwj -ffS -wSi -cEo -vDR -cVu -pFl -cVu -nTe -iBu -jBQ -hVQ -hVQ -hVQ -iuB -iAR -sWl -sWl -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(27,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -omd -nin -pun -pun -pun -pun -pun -imC -pun -pun -qYo -pun -pun -pun -pun -mFY -cGS -iNn -pun -pun -weG -cGS -sRm -pun -pun -weG -cGS -iNn -imC -pun -qYo -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -tOE -wIS -aRB -vDF -vDF -vDF -iDu -iDu -iDu -iDu -iDu -nGn -vZL -nGn -iDu -iDu -pMX -pMX -pMX -pMX -pMX -pMX -pMX -pMX -vZL -nGn -uEZ -uEZ -uEZ -uEZ -uEZ -uEZ -rjM -niM -rWv -bBa -jux -uEZ -tzg -tzg -tzg -hMS -qne -uOb -iIk -fGh -ykS -hAd -fYo -ouu -gEr -fGh -qcU -nVb -nkY -kdy -nVb -nVb -nVb -nVb -nFz -toJ -fLm -xfi -bJC -bJC -bJC -bJC -bJC -bJC -gQT -uvm -btO -nCh -rft -nsH -mWW -sXc -evg -evg -eUt -nwW -uuq -sXc -xSb -xSb -ffS -oZe -dmh -vDR -vrX -vrX -cVu -rqq -uuz -jBQ -ugk -qZp -hUk -pJb -hwB -sWl -sWl -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(28,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -bUb -pun -pun -pun -pun -imC -pun -pun -aLO -pun -lEI -pun -nin -imC -pun -imC -pun -pun -pun -aVA -pun -imC -pun -pun -qYo -pun -pun -pun -pun -olD -mwo -iNn -pun -pun -weG -cGS -iNn -pun -pun -qbN -cGS -iNn -pun -pun -qYo -pun -pun -xyE -pun -pun -vDF -vDF -vDF -vDF -tOE -kvd -tOE -vDF -vDF -vDF -iDu -iDu -iDu -iDu -iDu -nGn -xhl -nGn -iDu -iDu -pMX -pMX -pMX -pMX -pMX -pMX -pMX -pMX -bTS -pMX -pMX -pMX -xvh -xvh -uEZ -uEZ -fsW -mkt -sai -uXm -qcy -uEZ -tzg -tzg -tzg -hMS -qne -uOb -ned -fGh -cTX -fYo -fYo -fGh -fGh -fGh -wDs -nVb -nkY -nVb -nVb -nkY -nVb -nkY -vyf -toJ -kSB -gvJ -nNr -nNr -xyK -xyK -nNr -nNr -gQT -uvm -amU -adq -adq -adq -adq -sXc -sXc -sXc -sXc -vVX -sXc -sXc -vDR -vDR -vDR -fBJ -vDR -vDR -jBQ -jBQ -jBQ -uEn -jBQ -jBQ -sWl -sWl -sWl -pwq -sWl -sWl -sWl -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(29,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -imC -pun -pun -bUb -aVA -pun -imC -imC -pun -pun -imC -nin -imC -pun -imC -wXF -pun -pun -pun -qYo -pun -pun -pun -pun -olD -xgl -iNn -pun -pun -weG -cGS -iNn -pun -pun -qbN -cGS -iNn -pun -pun -qYo -pun -pun -xyE -pun -pun -vDF -vDF -vDF -vDF -tOE -wRD -tOE -vDF -vDF -vDF -iDu -iDu -ksm -cvV -cvV -jLM -trx -nHc -rkL -mMr -pMX -pMX -jfF -cuU -cuU -uoV -oLj -bnD -pzH -tXK -jhM -pMX -vDF -xvh -uEZ -uEZ -fsW -fBi -aHQ -uXm -qcy -uEZ -tzg -tzg -tzg -iLw -qne -uOb -ylN -fGh -cTX -fYo -fYo -oun -gEr -fGh -jWw -gKE -pzk -vRR -byr -xaF -xaF -aGE -vLR -toJ -xhV -gvJ -tPx -tPx -tPx -tPx -tPx -tPx -gQT -uvm -xYN -rLP -lus -urK -iar -qNQ -iar -iar -qUW -kug -qUW -jfk -iar -iar -iar -kug -qUW -jfk -iar -iar -iar -kug -qUW -jfk -iar -iar -iar -kug -rfZ -lus -lus -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(30,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -imC -nin -pun -imC -pun -bUb -pun -imC -mUF -imC -pun -aVA -imC -pvg -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -imC -pun -olD -xgl -sRm -pun -pun -qbN -mwo -sRm -pun -pun -qbN -xgl -iNn -pun -pun -qYo -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -tOE -txY -tOE -vDF -vDF -vDF -iDu -iDu -vfl -rQk -rQk -rQk -vZC -kzQ -iJc -dQj -pMX -pMX -bXH -wlf -trh -wlf -wlf -wlf -wlf -qCz -mHr -pMX -vDF -xvh -uEZ -uEZ -fsW -dxL -hoa -hcV -cnS -uEZ -tzg -tzg -tzg -hMS -qne -tSF -ned -fGh -fGh -fGh -fGh -fGh -fGh -fGh -toJ -iJQ -wJi -toJ -toJ -toJ -toJ -fqI -toJ -toJ -hsQ -gvJ -ePe -gzE -ePe -ePe -gzE -ePe -lDs -uvm -xYN -rnD -lus -nDh -kNY -kNY -kNY -kNY -gBk -vgm -kNY -gBk -kNY -kNY -gBk -vgm -kNY -kNY -kNY -kNY -kNY -vgm -kNY -gBk -kNY -kNY -kNY -pmE -wbN -lus -lus -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(31,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -lBV -imC -omd -xyE -pun -pun -pun -pun -imC -imC -imC -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -olD -xgl -sRm -pun -pun -qbN -cGS -iNn -pun -pun -qbN -xgl -sRm -pun -pun -qYo -pun -bUb -pun -xyE -pun -vDF -vDF -vDF -vDF -vDF -kvd -tOE -vDF -vDF -vDF -iDu -iDu -kxl -rQk -rQk -rQk -qon -jLM -dOH -gYJ -pMX -pMX -dLQ -dYu -dYu -dYu -trh -wlf -wlf -irb -nLT -pMX -vDF -xvh -uEZ -uEZ -uEZ -uEZ -uEZ -vvO -uEZ -uEZ -mIX -mIX -mIX -hMS -qne -uOb -ned -ife -pPw -sQm -nIK -ife -kmg -loF -cye -isc -uhd -asS -loF -mYl -sbx -lPK -tdM -uvm -xhV -gvJ -bJC -bJC -nNr -bJC -bJC -bJC -oYa -uvm -xYN -rnD -lus -kug -cWP -nUC -pXZ -pXZ -xsa -cXi -pXZ -tkJ -pXZ -pXZ -xsa -cXi -pXZ -nUC -pXZ -xsa -xsa -kug -pXZ -nUC -xsa -pXZ -xsa -kug -sca -lus -lus -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(32,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -bUb -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -imC -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -mFY -cGS -iNn -pun -pun -qbN -cGS -iNn -pun -pun -qbN -mwo -iNn -pun -pun -qYo -pun -imC -pun -pun -pun -vDF -vDF -vDF -mEn -jjH -mEn -vDF -vDF -vDF -vDF -iDu -iDu -roe -rai -rai -bsc -oNj -rQk -oNj -lJs -pMX -pMX -bXH -trh -trh -trh -trh -trh -trh -fAZ -dsh -pMX -vDF -xvh -xvh -xvh -xvh -mIX -xIs -krX -mxV -mxV -mxV -mxV -mIX -hru -qne -uOb -ned -ife -suB -imu -nIK -ife -vfN -jYL -jYL -kJm -kJm -kJm -jYL -pau -sbx -ljm -dHD -uvm -rSz -gvJ -nNr -nNr -mwU -xyK -nvt -nNr -gQT -uvm -xYN -rnD -lus -kug -wbN -hoA -hoA -hoA -hoA -tgO -hoA -hoA -wWo -wWo -wWo -vvh -wWo -wWo -vaZ -vaZ -vaZ -bYA -vaZ -vaZ -sIH -sIH -sIH -bCY -sIH -sIH -sIH -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(33,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -nin -pun -imC -imC -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -mFY -cGS -iNn -pun -pun -weG -cGS -iNn -pun -pun -qbN -mwo -sRm -pun -pun -qYo -pun -imC -pun -pun -pun -pun -vDF -vDF -vDF -did -did -izW -vDF -vDF -vDF -iDu -iDu -vfl -rQk -rQk -rQk -lvY -oNj -grX -nOq -pMX -pMX -ewG -gsi -gsi -lDj -wlf -pwo -mnh -gmv -mPL -pMX -vDF -vDF -vDF -vDF -vDF -mIX -rVn -mah -chX -chX -ajG -ajG -mIX -hMS -qne -uOb -ned -ife -vDh -sQm -kXd -ife -vWI -jYL -jYL -sPc -nyV -kJm -jYL -kmb -sbx -oik -npw -uvm -vek -xfi -tPx -vkB -tPx -mUc -dly -nNr -hpq -uvm -xsF -sxi -lus -dvx -wbN -hoA -aow -aow -vKm -bMx -qtB -hoA -dhs -dhs -puG -rbD -dlz -wWo -onW -onW -kcj -mdc -iyS -vaZ -mGG -mGG -aTZ -tZD -hJH -sIH -sIH -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(34,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -imC -pun -bUb -pun -pun -imC -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -mFY -cGS -sRm -pun -pun -qbN -cGS -iNn -pun -pun -weG -cGS -iNn -pun -pun -qYo -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -mEn -vDF -vDF -vDF -vDF -iDu -iDu -kyV -hGx -hGx -saz -afo -bUr -qpk -xMF -pMX -pMX -ayG -sYA -sYA -ahu -trh -rxY -pMX -wFJ -pMX -pMX -aBn -aBn -aBn -aBn -aBn -mIX -wXV -krX -ajG -chX -chX -wxc -mIX -iLw -qne -uOb -ylN -ife -ajH -imu -kXd -ife -uIw -kJm -kJm -mwp -lpQ -kJm -kJm -kmb -sbx -ljm -dHD -uvm -uJI -xfi -ePe -gzE -ePe -ePe -gzE -ePe -gQT -uvm -xYN -rnD -lus -cXi -wbN -hoA -vKm -qvJ -qvJ -vzN -xXB -hoA -puG -puG -puG -iLe -yfY -wWo -kcj -iek -iek -nOs -jtJ -vaZ -kTd -kTd -aTZ -dTj -pUd -sIH -sIH -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(35,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -nin -pun -pun -pun -nin -pun -pun -imC -wXF -pun -pun -qYo -pun -pun -pun -pun -cSr -mtE -pun -pun -pun -cSr -mtE -cSr -pun -pun -cSr -mtE -cSr -pun -pun -qYo -imC -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -mEn -tOE -vDF -vDF -vDF -iDu -iDu -iDu -iDu -iDu -iDu -hxs -iDu -iDu -iDu -pMX -pMX -vFE -wlf -wlf -wlf -wlf -oLW -pMX -pHG -uUw -aBn -jCJ -aBn -jCJ -aBn -jCJ -mIX -chX -mah -ojz -qfS -vQl -ajG -mIX -hMS -mTL -uOb -iIk -ife -eRq -sQm -kXd -ife -uIw -kJm -cPE -fQr -cxh -jYL -kJm -xIj -xbN -rYI -gJv -uRO -byG -scB -bJC -bJC -nNr -cXL -gBS -cXL -oYa -uvm -xYN -rnD -lus -cXi -gxa -hoA -bBL -nsj -vKm -tTS -xXB -hoA -xam -uke -puG -wRA -yfY -wWo -dZS -xir -kcj -fTN -jtJ -vaZ -buE -ehQ -aTZ -dTj -pUd -sIH -sIH -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(36,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -mUF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -xPt -noR -fdE -xuZ -xuZ -noR -noR -fdE -xuZ -noR -noR -noR -snY -xuZ -xuZ -noR -uRx -xuZ -oXp -bUb -pun -pun -pun -vDF -vDF -vDF -tOE -kvd -tOE -vDF -vDF -vDF -nyy -nyy -amp -tQf -wnn -ybq -iBb -uLk -aXS -ajN -pMX -pMX -jRZ -dap -dap -hNS -ylw -xNn -pMX -pHG -uUw -aBn -slv -aBn -qLV -aBn -rKJ -mIX -hrB -vOj -smE -fDr -chX -chX -mIX -hMS -qne -uOb -ned -ife -uEo -imu -imu -uyU -gyZ -jYL -jYL -crN -jYL -pPf -kJm -wVE -sbx -xQk -bLl -uvm -sMv -nNr -nNr -nNr -nNr -nNr -nNr -xyK -oYa -uvm -xYN -rnD -lus -cXi -gxa -hoA -vKm -inm -vKm -vzN -xXB -hoA -dJz -puG -dJz -iLe -cgM -wWo -kcj -kcj -kcj -fTN -jtJ -vaZ -kTd -kTd -kTd -dTj -pUd -sIH -sIH -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(37,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -aVA -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -mtE -pun -pun -pun -cSr -mtE -pun -pun -pun -pun -mtE -pun -pun -pun -qYo -pun -mtE -bUb -xyE -imC -pun -vDF -vDF -vDF -tOE -tBO -tOE -vDF -vDF -vDF -nyy -nyy -wUo -oWf -oWf -bvS -pZF -oWf -oWf -osG -pMX -pMX -bXH -wlf -trh -trh -trh -gwu -pMX -vMb -uUw -aBn -sEL -sEL -eyC -sEL -sEL -aBn -mrS -wNc -mrS -mrS -mrS -mIX -mIX -hMS -mTL -tSF -inM -ife -hmm -sQm -pyZ -ife -qyz -jYL -kJm -kJm -jYL -jYL -jYL -mHE -myD -lPK -xGC -uvm -fwu -nNr -nNr -xyK -sVD -nNr -xyK -xyK -oYa -uvm -xYN -rnD -lus -kug -gxa -hoA -aow -rzt -qvJ -tTS -wIT -hoA -dhs -dhs -dJz -iLe -iwJ -wWo -onW -onW -kcj -fTN -aBl -vaZ -mGG -mGG -kTd -wGk -hMR -sIH -sIH -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(38,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -imC -pun -pun -pun -pun -pun -nin -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -weG -iKO -sRm -pun -pun -weG -iKO -sRm -pun -pun -weG -iKO -sRm -pun -pun -qYo -pun -mtE -pun -xyE -pun -pun -vDF -vDF -vDF -tOE -wIS -tOE -vDF -vDF -vDF -nyy -nyy -kEt -uvE -bvf -aMQ -rff -aWv -sRX -rMl -pMX -pMX -bKe -meB -fjP -sIm -jMh -vPl -pMX -pHG -uUw -aBn -sEL -nKn -sEL -sEL -sEL -aBn -xIQ -txs -uhM -ciR -mrS -nvM -nvM -hMS -mTL -tSF -inM -ife -nfA -wPg -iAW -ife -gba -gDk -dxX -qHW -qHW -hNw -lDr -eNp -lyM -lPK -xGC -uvm -eLv -quU -quU -quU -cnh -cnh -qbM -cCf -aDF -uvm -xsF -sxi -lus -dvx -gxa -hoA -hoA -hoA -hoA -vzN -aRX -hoA -wWo -wWo -wWo -iLe -pbm -wWo -vaZ -vaZ -vaZ -fTN -rOB -vaZ -sIH -sIH -sIH -dTj -whF -sIH -sIH -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(39,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bUb -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -weG -iKO -iNn -pun -pun -weG -iKO -iNn -pun -pun -weG -iKO -iNn -pun -pun -qYo -pun -sED -pun -pun -xyE -pun -vDF -vDF -vDF -tOE -cNS -tOE -vDF -vDF -vDF -nyy -nyy -wUo -oWf -oWf -bvS -pZF -oWf -oWf -osG -xod -xod -xod -xod -xod -xod -xod -xod -xod -yjw -oUE -aBn -hWV -aBn -bYx -eyC -eyC -aBn -xIQ -txs -csk -rcQ -mrS -upF -upF -eoB -xCP -pSG -umu -ife -ife -kJQ -ife -ife -sbx -sbx -sbx -sbx -sbx -sbx -sbx -sbx -sbx -dzH -dHD -uvm -uvm -uvm -uvm -uvm -uvm -uvm -bqR -jTf -uvm -uvm -pHZ -rnD -lus -kug -wbN -hoA -eSZ -wXA -szI -vzN -vzN -hoA -qlJ -fay -efr -iLe -iLe -wWo -umm -och -wIq -fTN -fTN -vaZ -wwS -iwo -xMP -dTj -dTj -sIH -sIH -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(40,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -xyE -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -wXF -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -qYo -pun -pun -pun -pun -weG -iKO -iNn -pun -pun -qbN -tPK -sRm -pun -pun -weG -iKO -iNn -pun -pun -qYo -pun -sED -pun -icW -pun -pun -vDF -vDF -vDF -tOE -cNS -tOE -vDF -vDF -vDF -nyy -nyy -dXK -vZQ -jXb -ybq -ybW -wWF -sRX -mHh -xod -vjO -qrK -qrK -urR -spM -fnH -gWs -xod -yjw -oUE -aBn -pEg -aBn -iHK -eyC -sEL -aBn -hoT -mZF -dQr -cyf -mrS -dfk -upF -aDx -jKl -pnD -yeW -nYl -mwO -mun -tnN -fVl -dcv -dcv -tnN -fVl -fVl -fVl -fVl -eZn -dcv -ljm -lHG -fVl -tnN -dcv -dcv -dcv -dcv -tnN -fVl -fVl -hbh -alY -xYN -rnD -lus -djC -gxa -hoA -thY -wQa -hoA -lzD -dQX -hoA -txH -jKD -wWo -hPt -wZf -wWo -wwz -lgo -vaZ -gqx -cMG -vaZ -eCN -wac -sIH -ffn -dDL -sIH -sIH -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(41,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -imC -pun -bUb -pun -pun -imC -pun -pun -qat -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -weG -iKO -iNn -pun -pun -weG -tPK -sRm -pun -pun -qbN -iKO -iNn -pun -pun -qYo -pun -mtE -pun -cju -bUb -pun -pun -vDF -vDF -tOE -cNS -tOE -vDF -vDF -vDF -nyy -nyy -wUo -oWf -oWf -jDy -pZF -oWf -oWf -osG -xod -afc -qrK -qrK -qfq -qfq -qrK -ybj -xod -sez -oUE -aBn -aBn -aBn -aBn -aBn -sEL -aBn -kYw -mZF -wZo -nab -mrS -upF -lIw -eoB -clO -bjA -qRS -axS -sdS -ljm -pti -ejX -pti -pti -pti -pti -ejX -pti -jwN -jwN -ncT -lPK -jwN -jwN -pti -pti -ejX -jwN -pti -pti -pti -pti -dzm -dxB -xYN -qmI -fKf -cXi -gxa -xad -xad -xad -xad -xad -xad -xad -vdE -vdE -vdE -vdE -vdE -vdE -eij -eij -eij -eij -eij -eij -fSf -fSf -fSf -fSf -fSf -fSf -fSf -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(42,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -nin -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -weG -iKO -iNn -pun -pun -weG -iKO -iNn -pun -pun -qbN -iKO -iNn -pun -pun -qYo -pun -mtE -pun -pun -pun -pun -pun -vDF -vDF -tOE -cNS -tOE -vDF -vDF -vDF -nyy -nyy -weR -kEv -vaV -aMQ -rff -kEt -sRX -qsh -xod -afc -qfq -qrK -qrK -qrK -qrK -wZM -xod -pHG -uUw -aBn -cip -ilY -eyC -eyC -eyC -aBn -kYw -nhd -czs -iXx -mrS -nvM -upF -vIF -phA -gBN -bTZ -wqI -rkk -kcN -juX -juX -juX -juX -juX -juX -juX -juX -bCH -bCH -juX -kcN -bCH -bCH -bCH -juX -juX -bCH -juX -juX -juX -juX -rrW -jRe -wJX -cuw -qmQ -dJo -wbN -xad -oVb -kse -xad -kCX -hcv -xad -eBY -eEy -vdE -pVg -brq -vdE -lxq -iHp -eij -dxg -lfO -eij -mFq -kTu -fSf -prN -xtM -fSf -fSf -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(43,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -imC -pun -pun -pun -bUb -pun -bUb -pun -xyE -mUF -imC -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -weG -iKO -iNn -pun -pun -qbN -szW -iNn -pun -pun -qbN -iKO -iNn -pun -pun -qYo -pun -sED -pun -pun -xyE -bUb -pun -vDF -vDF -tOE -cNS -tOE -vDF -vDF -vDF -nyy -nyy -wUo -oWf -fDz -jDy -pZF -oWf -oWf -osG -xod -uIu -qrK -qrK -qrK -qfq -qfq -tFR -wNO -kbd -uUw -aBn -aIt -sEL -eyC -eyC -eyC -aBn -lcA -xIh -qww -cyf -mrS -mxR -upF -eoB -tIn -kmE -maX -nYl -ufs -xNX -mvf -mvf -bqV -bqV -gIl -mvf -mvf -bqV -bqV -xNX -bqV -bqV -mvf -mvf -gIl -mvf -mvf -bqV -mvf -xNX -bqV -bqV -jjP -xYN -dzm -rSO -lus -cXi -wbN -xad -hBO -mih -lrg -nkw -vul -xad -jNF -jkl -kNn -rMR -rMR -vdE -sUQ -ruo -sQk -xZV -xZV -eij -oFV -sNS -dCP -xAe -xAe -fSf -fSf -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(44,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -aVA -pun -bUb -pun -pun -pun -pun -xyE -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -qbN -tPK -sRm -pun -pun -qbN -tPK -sRm -pun -pun -qbN -iKO -sRm -pun -pun -qYo -pun -mtE -pun -pun -xyE -pun -pun -vDF -vDF -tOE -qYD -tOE -vDF -vDF -vDF -nyy -nyy -qph -mwG -wav -pzq -kbP -nsA -uve -mVB -xod -rjE -fWx -rjE -fWx -rjE -qfq -kpM -xod -pHG -uUw -aBn -aIt -sEL -eyC -eyC -eyC -aBn -ozF -xIh -arp -qQP -mrS -jkM -upF -eoB -cpB -tSF -oBU -kXK -kXK -kXK -kXK -kXK -kXK -kXK -kXK -kXK -kXK -kXK -kXK -kKi -kKi -kKi -kKi -kKi -kKi -bxE -bxE -bxE -bxE -bxE -bxE -bxE -arL -xYN -dzm -nkh -lus -fVh -gxa -xad -xad -xad -xad -nkw -isq -xad -vdE -vdE -vdE -rMR -iGR -vdE -eij -eij -eij -xZV -mJj -eij -fSf -fSf -fSf -xAe -enq -fSf -fSf -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(45,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -imC -pun -pun -pun -nin -wXF -pun -pun -pun -pun -imC -pun -qat -nin -bUb -pun -imC -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -qYo -pun -pun -pun -pun -qbN -szW -sRm -pun -pun -qbN -szW -iNn -pun -pun -weG -iKO -sRm -pun -pun -qYo -pun -sED -pun -pun -pun -pun -pun -vDF -vDF -tOE -cNS -tOE -vDF -vDF -vDF -nyy -nyy -bAQ -vaD -dTO -qws -tgU -aLx -sNd -sNd -xod -wnX -wnX -wnX -bAY -rjE -qfq -qfq -xod -vMb -oUE -aBn -vtt -nKn -sEL -qJL -ndW -aBn -ozF -laA -aeZ -ciR -mrS -eNN -nvM -eoB -uNR -tSF -ned -kXK -sxD -pfo -hnK -cQm -dWX -vaq -vaq -dWX -jtR -ptM -wZI -kKi -jJK -eDY -kJg -gue -gue -bxE -bxE -bxE -bxE -bxE -bxE -bxE -mSS -ayB -dzm -rSO -lus -kug -tbO -xad -jGc -rWZ -fiZ -nkw -dMP -xad -aas -aas -wpC -rMR -qCf -vdE -plq -plq -iMJ -xZV -eTp -eij -bUq -bUq -fPe -xAe -iWl -fSf -fSf -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(46,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -imC -xyE -imC -pun -pun -pun -aVA -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -qbN -szW -iNn -pun -pun -qbN -iKO -iNn -pun -pun -weG -tPK -sRm -pun -pun -qYo -pun -mtE -pun -pun -pun -pun -pun -vDF -vDF -tOE -cNS -tOE -vDF -vDF -vDF -nyy -nyy -rgn -aMQ -ybq -aMQ -rff -ybq -ybq -kyr -xod -iJW -iJW -ems -iJW -fWx -qfq -sHz -xod -pHG -fNR -aBn -aBn -aBn -aBn -aBn -qcT -aBn -mrS -uFd -mrS -mrS -mrS -tzg -tzg -fgW -mTL -tSF -ned -kXK -nyh -oYY -xgK -iXD -iXD -nON -gWG -wpZ -pvl -okk -tng -jmu -hhj -jWa -paH -jWa -cfD -mTa -dGB -eXv -kvQ -bxE -bxE -bxE -mSS -ayB -dzm -rSO -lus -kug -gxa -xad -jil -fiZ -jil -nkw -ncW -xad -wpC -jGP -xqQ -rMR -cHx -vdE -iMJ -iMJ -muk -xZV -pqG -eij -fPe -fPe -rbM -xAe -bvj -fSf -fSf -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(47,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bUb -xyE -pun -pun -pun -pun -xyE -pun -pun -bUb -pun -pun -bUb -pun -imC -omd -pun -pun -pun -pun -pun -pun -pun -pun -mUF -pun -pun -qYo -pun -pun -pun -pun -weG -iKO -iNn -pun -pun -qbN -iKO -iNn -pun -imC -qbN -tPK -sRm -pun -pun -qYo -pun -mtE -pun -pun -pun -pun -pun -vDF -vDF -tOE -cNS -tOE -vDF -vDF -vDF -nyy -nyy -ybq -ybq -ybq -aMQ -rff -ybq -aMQ -ybq -xod -xoD -iTV -iTV -gaW -fWx -qrK -hXq -xod -gGa -nAG -nAG -nAG -dhV -jCV -nAG -oDz -uWu -wcP -csK -nAG -uWu -mRN -fsg -dNW -etc -vfO -uOb -ned -kXK -rCa -oYY -oYY -oYY -ptM -oYY -oYY -fBx -uyC -lcn -kpG -kKi -lig -wKJ -cgy -lGB -uRE -bxE -arw -sVf -blf -bxE -bxE -bxE -mSS -ayB -lxV -rnD -lus -kug -cJB -xad -rkD -eKf -jil -nkw -oXJ -xad -gPW -nQK -bLf -xYr -cHx -vdE -eDF -cvY -iMJ -xZV -pqG -eij -xTP -aPv -fPe -ubN -bvj -fSf -fSf -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(48,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -bUb -pun -pun -xyE -pun -pun -pun -xyE -imC -pun -lBV -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -weG -iKO -iNn -pun -pun -qbN -iKO -iNn -pun -pun -qbN -szW -sRm -pun -pun -qYo -pun -mtE -pun -pun -pun -pun -pun -vDF -vDF -tOE -cNS -tOE -vDF -vDF -vDF -nyy -nyy -iZY -wgY -osv -wdf -nmV -irP -yiv -iZY -xod -rjE -rjE -rjE -rjE -rqc -qrK -uWW -xod -pHG -uUw -mui -oUE -oUE -oUE -rvf -oUE -gRj -pHG -aqv -fNR -mui -oUE -hmq -iFj -rlj -qne -tVV -ned -kXK -rcZ -xgf -xgf -ibG -xkM -hql -oQg -hql -rof -hwI -qnK -vtp -ozZ -cRf -frV -cRf -pWi -bxE -arw -sVf -kEj -bxE -bxE -bxE -dAW -ayB -lxV -rnD -lus -cXi -wbN -xad -fiZ -fiZ -jil -qTR -ozt -xad -wpC -wpC -wDN -rMR -cHx -vdE -wRk -iMJ -iMJ -pgP -pqG -eij -fPe -fPe -fPe -xAe -fsB -fSf -fSf -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(49,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -imC -bUb -pun -pun -pun -pun -pun -pun -nin -imC -imC -imC -imC -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -weG -iKO -iNn -pun -pun -weG -iKO -iNn -pun -pun -qbN -szW -iNn -pun -pun -qYo -pun -sED -pun -pun -pun -pun -pun -vDF -vDF -nGn -qxn -nGn -vDF -vDF -vDF -nyy -nyy -nyy -nyy -nyy -nyy -rYh -nyy -nyy -nyy -uYG -uYG -uYG -uYG -uYG -uYG -uYG -uYG -uYG -tYb -uYG -xSq -xSq -xSq -xSq -xSq -xSq -xSq -yjw -uUw -eip -eip -eip -eip -eip -xcS -qne -uOb -fTh -kXK -ola -fBx -xgf -iiY -iiY -iiY -iiY -iiY -iiY -ekO -pMg -pyg -frV -lPD -rZJ -nwF -quy -bxE -tfA -fqn -arw -bxE -bxE -bxE -jMm -xYN -lxV -sxi -lus -jBP -wHg -xad -qSo -jGc -fiZ -jTW -llx -xad -aas -aas -xqQ -kZK -iip -vdE -plq -tCA -iLi -hbK -wkh -eij -qkj -gXt -fPe -eab -tuz -fSf -fSf -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(50,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -imC -pun -imC -pun -pun -pun -pun -pun -pun -pun -imC -nin -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -qYo -pun -pun -pun -pun -qbN -iKO -sRm -pun -pun -weG -iKO -sRm -pun -pun -qbN -szW -iNn -pun -pun -spQ -spQ -hVG -spQ -spQ -spQ -pun -pun -vDF -pun -bUb -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hBV -drk -vHw -vhz -mVf -myX -uYG -nZN -qbP -tQD -jdk -xSc -ebt -cuv -rGr -hqb -uYG -tIi -oLd -cYR -lnc -cMa -oQl -xSq -yjw -uUw -eip -akX -gvk -jem -eip -hMS -mTL -tSF -inM -kXK -uRd -fBx -osI -iiY -yih -iWo -udJ -uKG -plx -puS -cqC -ovN -fpp -wjL -bYP -rZJ -whW -bxE -gZp -wpf -xPH -bxE -bxE -bxE -dAW -xYN -lxV -rnD -lus -nvp -wbN -xad -xad -xad -xad -aQV -xad -xad -vdE -vdE -vdE -ogy -vdE -vdE -eij -eij -eij -wsx -eij -eij -fSf -fSf -fSf -ylU -fSf -fSf -fSf -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(51,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -imC -pun -pun -pun -bUb -pun -pun -lBV -xyE -pun -imC -imC -pun -pun -xyE -pun -pun -imC -qat -nin -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -qbN -tPK -iNn -pun -pun -weG -tPK -sRm -pun -pun -weG -tPK -sRm -pun -pun -spQ -wUO -bqj -rNV -pse -spQ -pun -pun -vDF -pun -bUb -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hBV -vir -iJk -oVH -kjZ -okr -uYG -nZN -emW -tQD -jdk -emW -fGG -slI -fuU -oOl -uYG -meN -rXj -dGf -dGf -dGf -kMP -eEJ -uoD -qZB -eip -grt -aqB -pHK -ghl -rvN -tPY -tSF -lne -kXK -uRd -fBx -fBx -iiY -dJI -nAY -nAY -dJI -iiY -mDV -xgf -kKi -cDP -hcF -iRU -rZJ -hmr -bxE -fRn -bOj -ezV -bxE -bxE -bxE -dAW -xYN -dzm -rSO -lus -cIw -rhd -oya -iar -qUW -qUW -kug -iar -qNQ -qUW -qUW -qUW -cXi -qUW -jfk -qUW -iar -iar -kug -qUW -qNQ -qUW -iar -iar -kug -rfZ -lus -lus -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(52,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -imC -pun -pvg -pun -pun -pun -omd -lBV -imC -pun -imC -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -bUb -qbN -dOC -iNn -pun -pun -weG -ckr -iNn -pun -pun -weG -dOC -sRm -pun -pun -spQ -rtq -rtq -rtq -vGA -spQ -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vUR -vUR -vUR -vUR -vUR -vUR -vUR -vUR -vUR -siu -ssD -uYG -tNE -uaB -fuU -fuU -lxg -fuU -fuU -auz -kBA -uYG -ktp -gUR -oig -oig -hOT -bPf -xSq -sAU -sAU -eip -cLR -bhz -bhz -eip -hMS -mTL -tSF -inM -qTW -qTW -qTW -iHr -qTW -nBW -kbV -nRv -nBW -nBW -kZp -nMA -qBl -qBl -qBl -qBl -qBl -qBl -qBl -qBl -xqW -qBl -qBl -qBl -qBl -dAW -xYN -dzm -rSO -lus -kbn -bjT -kNY -kNY -kNY -kNY -vgm -kNY -kNY -gBk -gBk -gBk -vgm -gBk -gBk -kNY -gBk -gBk -iZz -gBk -kNY -gBk -kNY -kNY -fnX -wbN -lus -lus -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(53,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -imC -pun -imC -pun -imC -nin -imC -pun -aVA -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -spQ -epY -wfG -wfG -uIh -spQ -spQ -spQ -ltg -pun -pun -pun -vDF -vDF -vDF -vUR -vUR -lyN -vDZ -fuC -fQJ -kXS -jLm -vUR -siu -ssD -uYG -rim -uKp -kWO -nQZ -emW -fWi -ghw -fuU -oEi -uYG -bat -rrm -ecQ -gav -eVy -fAl -eWn -eWn -eWn -eWn -eWn -eWn -eWn -eWn -hMS -mTL -fYJ -lne -qTW -rqZ -oao -fTI -qTW -eim -gjB -eim -bxk -nBW -atv -jQY -qBl -qBl -qBl -ykE -vkG -hWg -hmS -oiJ -dJx -hds -qBl -qBl -qBl -mSS -xYN -dzm -rSO -lus -pyc -hUt -nUC -biq -xsa -pXZ -cXi -pXZ -nUC -xsa -xsa -xsa -cXi -pXZ -nUC -xsa -pXZ -pXZ -cXi -xsa -nUC -xsa -xsa -xsa -cXi -sca -lus -lus -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(54,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -spQ -ptK -rtq -rtq -vep -qjX -hfQ -pfj -obZ -kTf -pun -pun -vDF -vDF -vDF -vUR -vUR -pZK -wTm -iDx -uSg -iPB -ulu -vUR -oCc -cJn -uYG -fGG -emW -kWO -haJ -emW -lap -bZx -mWF -xzW -uYG -tkr -gUR -hOT -hOT -hOT -ens -eWn -qwt -xvl -foQ -xvl -dQQ -xAk -eWn -pzF -mTL -tSF -hhM -qTW -rqZ -oao -lnh -qTW -eim -uIQ -eim -uHq -nBW -mcC -eoU -qBl -qBl -qBl -bDr -bDr -bDr -gLt -mmF -xVB -nrK -qBl -qBl -qBl -arL -xYN -rtv -nkh -eti -eti -izY -asJ -asJ -asJ -asJ -vhm -asJ -asJ -aCh -aCh -aCh -xfQ -aCh -afW -afW -afW -afW -dLP -afW -afW -umM -umM -umM -bJp -umM -umM -umM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(55,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -imC -pun -pun -pun -pun -aVA -pun -pun -pun -pun -imC -pun -pun -pun -qat -nin -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -qbN -dnp -sRm -pun -pun -weG -dnp -sRm -pun -pun -qbN -dnp -sRm -pun -pun -spQ -kFk -rtq -rtq -dVm -mtq -nAm -spQ -byM -gQt -pun -vDF -vDF -vDF -vDF -vUR -vUR -iVZ -xIO -xXJ -iDx -nBM -aOC -vUR -vHw -cIk -uYG -kIH -uKp -kIH -emW -uaB -fuU -emW -uaB -xzW -uYG -bat -rrm -cji -uyX -sYZ -qRo -eWn -gSC -kEd -uhg -tob -tob -omt -wBU -rvN -odi -tSF -inM -qTW -sGl -wOB -kOx -iHr -eim -upC -unK -xjH -pxI -wGu -keT -qBl -qBl -qBl -gTn -bDr -bDr -hmS -ayp -tQR -nVw -qBl -qBl -qBl -mSS -xYN -dzm -rnD -eti -qjJ -byw -asJ -vNH -tff -tPt -nei -buF -asJ -xuc -xuc -xuc -qiR -iIb -afW -bVx -nkv -bVx -iRT -hhs -afW -mwl -mwl -mwl -byq -iji -umM -umM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(56,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -xyE -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -glF -imC -pun -pun -pun -qYo -pun -pun -pun -pun -qbN -xgl -sRm -pun -pun -weG -mwo -sRm -pun -pun -qbN -mwo -iNn -pun -pun -spQ -wUO -wdD -der -iDC -mtq -mtq -spQ -mwM -kTf -icW -vDF -vDF -vDF -vDF -vUR -vUR -ncN -wTm -nmy -wTm -wTm -rIA -vUR -vHw -xeR -uYG -kkL -uaB -rim -rim -emW -rim -rim -ngO -veE -uYG -qxt -rrm -hOT -wQd -wQd -wQd -eWn -gSC -uhg -tob -tob -hnX -ubW -eWn -aDO -wUh -fYJ -lne -qTW -tbx -wOB -jfJ -qTW -eim -dIh -ceJ -eim -nBW -pRE -ccE -qBl -qBl -qBl -sGe -esL -hfF -hmS -xYC -tQR -dYi -qBl -qBl -qBl -mSS -xYN -dzm -rnD -eti -fiT -byw -asJ -lgT -lgT -jkB -ugm -dUn -asJ -aml -pfn -aml -wad -dNA -afW -gvQ -kke -gvQ -xuw -vCb -afW -nwE -aVy -nwE -hqj -dSA -umM -umM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(57,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -nin -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -olD -xgl -sRm -pun -pun -weG -cGS -sRm -pun -pun -qbN -cGS -iNn -pun -pun -spQ -spQ -hVG -spQ -spQ -spQ -spQ -spQ -lro -kTf -pun -pun -vDF -vDF -vDF -vUR -vUR -bpJ -wTm -wTm -reD -wTm -ttw -vUR -siu -xeR -uYG -rim -emW -kkL -jdk -fuU -kkL -rim -uKp -veE -uYG -qfC -rrm -uVh -wQd -sbj -jmE -eWn -tPy -sok -sok -sok -tob -hAN -eWn -gWe -qne -iIm -wxw -qTW -tbx -vBj -tji -qTW -bLV -eim -gjB -gjB -nBW -cnr -eoU -qBl -qBl -qBl -qBl -qBl -qBl -qBl -xai -tQR -dYi -qBl -qBl -qBl -mSS -ayB -dzm -rnD -eti -vNd -vnW -asJ -iej -ebe -lgT -maj -maj -asJ -mGP -xQJ -xQJ -bDK -wad -afW -dQR -jhi -kke -xuw -xuw -afW -utf -fOI -lqu -eTC -hqj -umM -umM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(58,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -mUF -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -omd -pun -pun -pun -pun -qYo -pun -pun -pun -pun -olD -mwo -iNn -pun -pun -weG -cGS -iNn -pun -pun -qbN -cGS -iNn -pun -pun -qYo -pun -sED -pun -icW -pun -pun -pun -sSb -pun -pun -pun -vDF -vDF -vDF -vUR -vUR -tqN -pBX -jnY -tqN -wTm -xaM -vUR -siu -xeR -uYG -rim -uKp -fhb -fGG -fuU -rim -jdk -emW -veE -uYG -pvE -ocF -bDb -pOb -deC -mgo -eWn -hBg -pcm -pcm -pcm -gzZ -leL -eWn -eoB -jKl -tSF -wxw -qTW -qTW -qTW -llv -qTW -nBW -nBW -nBW -nBW -nBW -ekh -pEd -qBl -qBl -qBl -tLI -eXF -daZ -hmS -lWW -tQR -gkk -qBl -qBl -qBl -mSS -ayB -lxV -rnD -eti -pUI -kvO -asJ -lgT -lgT -ebe -ugm -maj -asJ -pfn -xQJ -xQJ -wad -wad -afW -kke -kke -kke -xuw -xuw -afW -aVy -aVy -aVy -eTC -hqj -umM -umM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(59,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -imC -pun -xyE -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -qYo -pun -pun -pun -pun -olD -mwo -sRm -pun -pun -weG -cGS -iNn -pun -pun -weG -cGS -sRm -pun -pun -qYo -pun -mtE -bUb -pun -pun -pun -pun -ljs -pun -pun -pun -vDF -vDF -vDF -vUR -vUR -plr -xYW -xYW -tqN -nBM -qlG -vUR -siu -xeR -uYG -fhb -tkV -fhb -fhb -cri -rim -mKv -uPg -haJ -uYG -vAF -wpN -fXK -wQd -cgD -jmE -eWn -mlY -uhg -sTH -qVG -gYk -leL -eWn -wEG -mTL -fYJ -fTh -hez -pxH -qoa -jgA -jDx -mVw -kZv -ddF -qPu -hez -ekh -pEd -qBl -qBl -qBl -bDr -bDr -bDr -nDV -mmF -tQR -vgX -qBl -qBl -qBl -arL -ayB -lxV -sxi -eti -iIA -sWu -asJ -pPU -wYC -pPU -ugm -xQd -asJ -joy -uMP -joy -wad -evA -afW -tBA -bVx -slu -bTj -gzF -afW -tMK -mwl -tMK -eTC -iMp -umM -umM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(60,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -nin -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -qYo -pun -pun -pun -pun -olD -cGS -iNn -pun -pun -weG -xgl -iNn -pun -pun -weG -cGS -sRm -pun -pun -qYo -pun -mtE -pun -pun -pun -dBB -qOv -mwM -kTf -pun -pun -vDF -vDF -vDF -vUR -vUR -cQZ -dgL -dgL -tqN -lmq -mFK -vUR -mzy -sNi -uYG -uYG -uYG -uYG -uYG -uYG -uYG -uYG -uYG -uYG -uYG -xSq -xSq -xSq -wQd -wQd -wQd -eWn -uYx -uhg -uhg -uhg -hnX -ngA -eWn -ilH -wUh -tSF -wxw -hez -gZy -bKx -fMN -qPu -haY -pMJ -aPr -qyg -hez -ekh -kUa -qBl -qBl -qBl -gTn -bDr -bDr -hmS -lQb -tQR -hMg -qBl -qBl -qBl -mSS -xYN -dzm -rSO -eti -iIA -sWu -asJ -asJ -asJ -asJ -maj -maj -asJ -aCh -aCh -aCh -wad -wad -afW -afW -afW -afW -xuw -xuw -afW -umM -umM -umM -eTC -hqj -umM -umM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(61,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -imC -imC -pun -pun -pun -pun -pun -pun -imC -pun -qat -imC -pun -pun -pun -nin -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -olD -mwo -iNn -pun -pun -qbN -xgl -sRm -pun -pun -weG -xgl -sRm -pun -pun -qYo -pun -mtE -pun -bUb -pun -pun -qOv -byM -kTf -pun -pun -pun -vDF -vDF -vUR -vUR -vUR -vUR -vUR -vUR -lBZ -vUR -vUR -vHw -xeR -hBV -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -dpf -dpf -dpf -dpf -dpf -dpf -eWn -qxH -peo -mTb -peo -geI -xaD -eWn -hMS -mTL -tSF -ned -hez -mde -xKh -fSy -dke -dgf -dgf -hYj -dke -qbB -pwh -keT -qBl -qBl -qBl -xlE -dNz -vzF -hmS -lQb -tQR -mmF -qBl -qBl -qBl -dAW -ayB -dzm -rSO -eti -fiT -sWu -asJ -rjV -hhy -tej -maj -maj -asJ -lcX -daJ -vZy -wad -wad -afW -xUz -uGw -nlv -xuw -xuw -afW -tSs -sBJ -jvo -eTC -eTC -umM -umM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(62,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -imC -pun -pun -pun -imC -pun -imC -pun -pun -imC -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -mFY -cGS -iNn -pun -pun -weG -xgl -sRm -pun -pun -qbN -xgl -sRm -pun -pun -qYo -pun -sED -pun -pun -pun -dBB -wrR -byM -kTf -pun -pun -pun -vDF -vDF -vUR -vUR -vUR -vUR -vUR -hBV -siu -dDM -dDM -vHw -cIk -hBV -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -dpf -uIk -beW -rJI -cmU -jke -eWn -eWn -eWn -eWn -eWn -eWn -eWn -eWn -hMS -qne -uOb -lpJ -hez -dTU -kvB -dUh -qyg -rVp -lFR -aPr -qPu -hez -eSw -ccE -hiL -hiL -hiL -hiL -hiL -hiL -hiL -hiL -pTr -etd -hiL -hiL -hiL -dAW -ayB -lxV -rnD -eti -iIA -sWu -asJ -ecn -uKQ -asJ -mVt -qFo -asJ -qVR -bcy -aCh -qee -jhp -afW -ggo -gBI -afW -dwe -dtp -afW -ghU -mLz -umM -dgS -xGh -umM -umM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(63,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -imC -pun -pun -pun -pun -imC -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -olD -cGS -iNn -pun -pun -weG -mwo -sRm -pun -pun -qbN -xgl -sRm -pun -pun -qYo -pun -mtE -pun -pun -pun -pun -wrR -byM -kTf -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -hBV -hBV -jry -uGz -uGz -dcJ -cIk -hBV -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -dpf -oti -roD -uVW -nNu -igZ -dpf -fZD -wvi -qVA -ihx -cBQ -scF -vNa -eoB -pHa -uOb -inM -hez -goW -xNZ -xaT -jDx -mVw -eJD -rTx -hfm -hez -dHb -kRT -hiL -hiL -hiL -jIe -iEm -dzU -pbB -hiL -xgX -aaO -hiL -hiL -hiL -dAW -ayB -lxV -rnD -eti -iIA -wMf -asJ -asJ -asJ -asJ -asJ -asJ -asJ -aCh -aCh -aCh -aCh -aCh -afW -afW -afW -afW -afW -afW -afW -umM -umM -umM -umM -umM -umM -umM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(64,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -imC -pun -imC -pun -imC -nin -pun -pun -pun -pun -aVA -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -mFY -cGS -sRm -pun -pun -weG -cGS -iNn -pun -pun -qbN -mwo -sRm -pun -pun -qYo -pun -mtE -pun -pun -pun -pun -qOv -byM -kTf -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -hBV -hBV -hBV -hBV -hBV -siu -okr -hBV -vDF -tBf -tBf -tBf -tBf -tBf -tBf -tBf -tBf -tBf -dpf -wWN -roD -nNu -qbC -xJj -dpf -fbH -eyq -jyl -kMc -rrQ -bMi -vNa -flF -qne -uOb -oBO -jSi -jSi -jSi -jSi -jSi -jSi -jSi -jSi -jSi -jSi -oAu -vCY -hiL -hiL -hiL -hFk -hFk -hFk -hFk -hiL -idu -sKP -hiL -hiL -hiL -jMm -ayB -dzm -sxi -eti -eti -qPi -asJ -asJ -asJ -asJ -asJ -asJ -asJ -aCh -aCh -aCh -aCh -aCh -afW -afW -afW -afW -afW -afW -afW -umM -umM -umM -umM -umM -umM -umM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(65,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -imC -imC -pun -pun -pun -pun -lBV -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -qat -pun -pun -pun -qYo -pun -pun -imC -pun -mFY -mwo -sRm -pun -pun -qbN -cGS -iNn -pun -pun -weG -cGS -sRm -pun -pun -qYo -pun -mtE -pun -pun -pun -pun -qOv -mwM -kTf -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -hBV -hBV -hBV -hBV -hBV -vHw -ssD -hBV -vDF -tBf -mEG -bpo -fdm -tVB -lUK -glv -wAV -rfE -dpf -qLa -epH -qNV -uVW -hyD -dpf -uDy -jWk -kMc -jgV -jgV -mIf -vNa -eoB -qne -uOb -gdt -jSi -rPn -jSi -rPn -jSi -rPn -jSi -bGn -hKg -jSi -uCp -xKN -hiL -hiL -hiL -cIz -lxB -lxB -sjN -eHo -yjP -gID -hiL -hiL -hiL -dAW -ayB -dzm -rSO -eti -eti -qSJ -tUx -jgG -jgG -eti -eti -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(66,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -imC -omd -pun -pun -pun -imC -pun -pun -pun -qat -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -olD -xgl -sRm -pun -pun -qbN -mwo -sRm -pun -pun -weG -cGS -iNn -pun -pun -qYo -pun -mtE -pun -pun -pun -pun -wrR -byM -kTf -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hBV -hBV -czv -cJn -hBV -vDF -tBf -alU -gzQ -dGC -kOt -kOt -giF -kOt -kdE -dpf -dzK -kpY -lLf -nPS -vCN -dpf -uvY -maM -aFI -wXh -rrQ -rzL -vNa -hMS -qne -sRW -inM -jSi -ist -jSi -igT -jSi -nYG -jSi -uiS -iXM -jSi -mcC -ccE -hiL -hiL -hiL -hFk -hFk -hFk -hFk -hiL -aaO -aaO -hiL -hiL -hiL -mSS -xYN -dzm -rSO -eti -eti -giO -vBW -tzT -fav -eti -eti -uoM -uoM -uoM -uoM -uoM -uoM -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(67,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -imC -pun -pun -pun -aVA -imC -pun -pun -nin -icW -pun -pun -pun -imC -pun -pun -pun -pun -imC -pun -pun -pun -qYo -pun -pun -pun -pun -olD -xgl -iNn -pun -pun -qbN -xgl -sRm -pun -pun -weG -cGS -iNn -pun -pun -qYo -pun -mtE -pun -pun -pun -pun -qOv -mwM -kTf -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hBV -hBV -sgz -ssD -hBV -vDF -tBf -xkV -sTG -fVU -dHR -kOt -dHR -ljz -oUL -dpf -pes -vHG -nPS -roD -mMX -dpf -xlS -jgV -art -ftF -rrQ -nPM -vNa -hMS -jKl -tSF -inM -jSi -leB -leB -leB -uiS -uiS -nsf -uiS -mOc -jSi -ekh -ccE -hiL -hiL -hiL -jQC -tOL -ihi -iHS -hiL -xbT -vjy -hiL -hiL -hiL -mSS -xYN -lxV -rnD -eti -eti -qHg -xaj -tzT -oWS -eti -eti -szB -uoM -uoM -uoM -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(68,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -vDF -vDF -vDF -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -xyE -pun -pun -pun -icW -imC -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -olD -cGS -iNn -pun -imC -qbN -fBf -sRm -pun -pun -weG -cGS -iNn -pun -pun -qYo -pun -sED -pun -pun -pun -dBB -qOv -mwM -kTf -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hBV -hBV -vHw -okr -hBV -vDF -tBf -alU -gzQ -kOt -giF -kOt -fpc -kOt -kdE -dpf -wJl -nPS -nPS -nNu -wwm -dpf -cxN -rrQ -kMc -jgV -rrQ -bkM -vNa -iLw -mTL -tSF -ned -jSi -tLx -pok -uiS -uiS -iKa -leB -ojY -klv -jSi -kXp -ccE -hiL -hiL -hiL -hiL -hiL -hiL -hiL -hiL -hiL -hiL -hiL -hiL -hiL -dAW -ayB -dzm -rnD -eti -eti -oaq -unx -nkR -ooF -eti -eti -szB -uoM -uoM -szB -szB -szB -rSA -rSA -rSA -rSA -rSA -lBK -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(69,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -vDF -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -lBV -imC -imC -pun -imC -imC -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -mFY -cGS -iNn -pun -pun -qbN -cGS -mIs -pun -pun -weG -mwo -sRm -pun -pun -qYo -pun -sED -pun -pun -pun -dBB -qOv -lro -kTf -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hBV -hBV -jtj -cIk -hBV -vDF -tBf -oIZ -dzM -sFD -iHH -uUD -mtO -vVq -iiU -dpf -epz -ycq -wtZ -ioy -dSJ -dpf -sQa -kMc -rrQ -gTu -aWq -nXf -vNa -gQO -mTL -jmC -aaA -jSi -rar -xjh -eYV -sBt -vJH -qft -fFQ -vGX -jSi -wCq -qPS -hiL -hiL -hiL -hiL -hiL -hiL -hiL -hiL -hiL -hiL -hiL -hiL -hiL -jMm -ayB -dzm -sxi -eti -eti -nyw -oIs -dHJ -mlV -eti -eti -szB -szB -uoM -szB -szB -szB -rSA -rSA -rSA -rSA -rSA -lBK -lBK -lBK -lBK -lBK -lBK -lBK -lBK -lBK -lBK -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(70,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -imC -pun -imC -imC -imC -imC -pun -qat -lBV -pun -imC -pun -pun -pun -pun -imC -pun -qYo -pun -pun -pun -pun -cSr -mtE -cSr -pun -pun -pun -mtE -pun -pun -pun -cSr -sED -pun -pun -pun -qYo -pun -mtE -pun -pun -pun -pun -qOv -lro -kTf -pun -xyE -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hBV -hBV -siu -cIk -hBV -hBV -tBf -tBf -tBf -tBf -tBf -llk -ofQ -tBf -tBf -dpf -dpf -dpf -dpf -mRz -dpf -dpf -mpb -jgV -rrQ -gTu -tor -juu -tfe -fku -qne -uOb -inM -jSi -jSi -jSi -jSi -jSi -jSi -jSi -eYO -jSi -jSi -oAu -ohs -bZn -bZn -bZn -bZn -bZn -nXS -bZn -bZn -bZn -bZn -bZn -bZn -bZn -dAW -ayB -dzm -rSO -eti -eti -icF -tCI -gwi -sCi -eti -eti -szB -szB -uoM -szB -szB -szB -rSA -rSA -seE -lWg -lDA -lBK -lBK -lBK -lBK -lBK -lBK -lBK -lBK -lBK -lBK -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(71,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -lBV -imC -imC -pun -pvg -bpX -imC -pun -qat -pun -pun -imC -icW -imC -pun -pun -qat -pun -pun -qYo -pun -pun -pun -xPt -noR -fdE -noR -noR -xuZ -xuZ -fdE -xuZ -xuZ -noR -noR -fdE -xuZ -noR -noR -wDw -noR -vbE -pun -pun -pun -pun -qOv -lro -kTf -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hBV -hBV -iJk -oVH -iHU -oVH -rLd -uGz -oVH -iHU -kiD -xiw -oVH -uGz -iHU -uGz -thE -bUl -hsO -hjS -oVH -cBr -hwK -lGM -wmy -wVW -jVo -twX -bAl -phW -lvw -uOb -ned -fwr -lWC -sJr -aTT -nXt -hPv -tpr -tXv -pYH -hPv -izt -osn -bZn -krB -niv -qkM -dzI -rSH -gWC -osO -eXy -lNE -bZn -bZn -bZn -dAW -ayB -dzm -gXV -eti -eti -gHB -gAn -xiI -uer -eti -uoM -uoM -szB -szB -szB -szB -szB -rSA -rSA -wiK -uYe -hBv -mgO -bXG -lKj -sYf -sYf -sYf -lKj -sYf -lBK -lBK -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(72,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -imC -pun -imC -imC -aVA -imC -imC -imC -pun -pun -imC -pun -icW -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -cSr -mtE -cSr -pun -pun -cSr -mtE -pun -pun -pun -cSr -mtE -cSr -pun -pun -qYo -pun -pun -pun -pun -pun -pun -qOv -mwM -kTf -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -pgd -pgd -pgd -pgd -fCi -nZx -dux -lGw -ptm -xmq -lGw -afA -lGw -lGw -lGw -lGw -aRJ -non -equ -nZx -dux -ldT -sxb -qgX -goN -jhu -rlD -vGs -gHQ -iiz -vNa -veK -tWH -tSF -inM -fwr -hKj -cnp -vII -vII -bSM -ijI -qCV -ejk -kWR -rOE -dcs -bZn -amg -dUI -inL -wPG -xPZ -nBr -aBy -kgA -mIO -bZn -bZn -bZn -mSS -xYN -mDr -jHt -eti -eti -lsw -wfM -bqm -qQt -gse -uoM -uoM -mUV -qLx -qLx -bOp -qLx -qLx -rSA -bGo -xsl -hBv -mgO -kNP -bGK -bGK -bGK -bGK -bGK -bGK -lBK -lBK -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(73,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -nin -pun -imC -pun -nin -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -qYo -pun -pun -pun -pun -mFY -iKO -sRm -pun -pun -weG -iKO -iNn -pun -pun -weG -tPK -sRm -pun -pun -qYo -pun -pun -pun -bUb -pun -pun -jUH -byM -kTf -pun -pun -xyE -pun -pun -pun -vDF -vDF -vDF -vDF -pgd -pgd -pgd -pgd -pgd -pgd -pgd -pgd -qHd -pgd -hMq -hMq -hMq -hMq -hMq -hMq -qID -qID -qID -qID -qID -xfZ -qID -qID -nHA -nHA -nHA -nHA -aru -nHA -nHA -jcI -aWJ -tSF -hhM -fwr -wTu -ijI -ujl -cLD -xPy -eSJ -vII -vII -jbM -kGz -naj -bZn -tzF -wVi -mdQ -xPZ -aBy -xPZ -eaO -kgA -jDt -bZn -bZn -bZn -mSS -ayB -dzm -rnD -eti -eti -eti -eti -xiI -qQt -dYf -uoM -uoM -mUV -qLx -qLx -kdg -qLx -qLx -rSA -opp -jEK -hBv -mgO -kNP -bGK -bGK -bGK -bGK -bGK -bGK -lBK -lBK -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(74,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -cju -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -qat -nin -imC -imC -pun -imC -pun -icW -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -olD -szW -sRm -pun -pun -weG -iKO -iNn -pun -pun -weG -szW -sRm -pun -pun -qYo -pun -pun -pun -pun -pun -pun -jUH -byM -kTf -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -pgd -pgd -whG -mpi -gnj -soI -cfL -wuM -nCO -tRT -hMq -iAB -mbK -tEC -cxk -cxk -qID -kYy -kYy -kYy -kYy -nMh -jIv -qID -nVo -nHt -etU -qhu -xxF -ler -nHA -eoB -mTL -uOb -ned -fwr -ucZ -ijI -vII -psv -vfM -lzM -ogu -grk -vII -pnj -bnk -bZn -ghv -tvg -aaw -xDT -aBy -xPZ -nBr -oGm -pgb -bZn -bZn -bZn -arL -jdV -yda -swR -eti -eti -eti -dYf -oww -gse -hFm -uoM -uoM -mUV -qLx -qLx -bTs -dyT -umI -kei -vuC -uYe -raE -mgO -kNP -bGK -bGK -qMj -bGK -bGK -bGK -lBK -lBK -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(75,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -imC -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -imC -pun -imC -imC -lBV -pun -pun -pun -pun -pun -pun -pun -pun -nin -imC -pun -pun -pun -qYo -pun -pun -pun -pun -olD -szW -iNn -pun -pun -weG -iKO -sRm -pun -pun -weG -iKO -sRm -pun -pun -qYo -pun -pun -pun -pun -pun -dBB -wrR -byM -kTf -pun -pun -pun -icW -pun -pun -vDF -vDF -vDF -vDF -pgd -pgd -hzb -jKy -xYD -jKy -jKy -bMS -nfR -xoN -hMq -hMq -hMq -hVe -rZS -hVe -qID -qyT -gbn -gsE -gsE -pnb -tmQ -qID -rjH -cXK -nVo -vsh -vsh -nVo -nHA -kxG -mTL -uOb -inM -fwr -ucZ -ijI -vII -psv -wZE -fJF -xoa -jfD -vII -kGz -maF -bZn -wSr -rVx -aJI -gWC -aBy -aBy -rSH -gWC -rSH -bZn -bZn -bZn -dAW -dpC -lxV -cNu -mUV -lJx -iAE -qrh -lkx -kPy -ulH -ulH -ulH -ikI -ult -qLx -xjM -suv -qLx -rSA -haz -xsl -hBv -mgO -kNP -bGK -bGK -bGK -bGK -bGK -bGK -lBK -lBK -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(76,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -nin -pun -pun -aaH -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -imC -pun -pun -lBV -imC -aVA -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -glF -pun -pun -pun -qYo -pun -bUb -pun -pun -olD -tPK -iNn -pun -pun -qbN -szW -sRm -pun -pun -qbN -iKO -sRm -pun -pun -qYo -pun -pun -pun -pun -pun -pun -qOv -byM -kTf -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -pgd -pgd -iNT -kCk -ePu -jKy -uxq -bcr -kFL -dkj -hMq -gKh -hVe -hVe -rZS -lQH -qID -kYy -kYy -kYy -kYy -our -lHN -qID -nHA -uyz -nHA -ylp -nHA -kXI -nHA -jcI -qne -uOb -qqQ -fwr -aip -uOQ -vII -hMO -qmj -vgM -hMO -mpk -ijI -kGz -azx -ppX -ppX -sUZ -ppX -nwG -mJi -mJi -mJi -mJi -ppX -ppX -mJi -ppX -mSS -mkR -gIx -iDi -bDs -oir -nhZ -rgL -pOg -mZG -cQT -ulH -uUm -ikI -qLx -qLx -cmo -tBQ -qLx -rSA -bGo -xsl -hBv -mgO -kNP -bGK -bGK -bGK -bGK -bGK -bGK -lBK -lBK -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(77,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -imC -pun -imC -pvg -pun -pun -pun -qat -aVA -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -olD -iKO -iNn -pun -pun -weG -iKO -iNn -pun -pun -qbN -iKO -iNn -pun -pun -qYo -pun -xyE -pun -pun -pun -pun -qOv -mwM -kTf -pun -pun -pun -pun -pun -bUb -vDF -vDF -vDF -vDF -pgd -pgd -iNT -laK -xUD -jKy -uxq -bMS -fKG -lDX -hMq -hMq -uiq -hVe -hVe -skE -qID -fLg -fLg -vIj -fLg -our -ttU -qID -kgE -xTu -nHA -eha -nHA -eha -nHA -kNB -hpr -dTw -fRZ -myq -aHT -qkE -qMk -edD -qdJ -qMk -pJC -kWR -qMk -ekx -cER -aKI -iUn -raJ -mmT -cwI -mJi -mJi -mJi -mmT -mJi -ivz -mJi -pzC -aAq -qir -nHO -jaS -qTe -vIw -jxy -pUC -jaj -uZn -jhx -ikI -vRc -qrh -qLx -qLx -cmo -tBQ -qLx -rSA -wiK -uYe -hBv -mgO -mNr -maR -fNS -yis -eGs -maR -ygU -lBK -lBK -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(78,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -xyE -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -olD -iKO -sRm -pun -pun -weG -iKO -iNn -pun -pun -qbN -szW -sRm -pun -pun -qYo -pun -pun -pun -pun -pun -pun -qOv -lro -kTf -pun -pun -pun -gXo -pun -pun -pun -vDF -vDF -vDF -pgd -pgd -hzb -hfB -jKy -uxq -mDK -bMS -fKG -eAl -hMq -uva -hVe -hVe -hVe -opn -qID -kYy -kYy -kYy -kYy -pnb -feF -qID -nHA -nHA -nHA -nHA -nHA -nHA -nHA -bxC -wbr -gxE -xJr -fwr -xPQ -dtZ -uhR -nzk -gKm -xcE -jgH -eiu -lHQ -nnC -yfe -ppX -dfd -cCM -wdB -cwI -pqQ -mJi -mJi -cwI -okx -mJi -mJi -piC -mvU -xMA -mWY -dId -mUV -dXW -bZV -wQy -xYX -qrh -eWZ -lkx -mZG -xye -qLx -qLx -cmo -tBQ -qLx -rSA -uIr -hWF -waU -lBK -lBK -lBK -lBK -fNe -lBK -lBK -lBK -lBK -lBK -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(79,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -nin -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -nin -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -wXF -pun -qYo -pun -pun -pun -pun -mFY -tPK -sRm -pun -pun -weG -iKO -iNn -pun -pun -qbN -szW -sRm -pun -pun -qYo -pun -pun -pun -pun -pun -pun -qOv -lro -kTf -pun -pun -pun -pun -xyE -pun -pun -vDF -vDF -vDF -pgd -pgd -caD -epO -gPi -jUl -pqR -sQX -tuC -owy -hMq -hMq -uiq -hVe -rZS -cdN -qID -oWq -fLg -fLg -fLg -pnb -feF -qID -nHA -nHA -nHA -nHA -nHA -nHA -nHA -lwB -juJ -mBp -lwB -lIx -lIx -lIx -lIx -lIx -lIx -lIx -ewW -aMr -xEc -jro -aMr -ocr -ocr -ocr -fMj -vlk -eUs -tlT -tlT -tlT -fMj -ocr -ocr -ocr -ocr -ocr -ocr -ocr -ocr -ocr -muH -tAd -qrA -xPb -dIo -akM -qrh -wUQ -qLx -qLx -lTQ -tBQ -qLx -rSA -rSA -rSA -rSA -lBK -lBK -lBK -pyu -gOB -beV -lBK -lBK -lBK -lBK -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(80,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -bUb -pun -imC -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -nin -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -knP -pun -pun -pun -pun -pun -pun -qYo -bUb -pun -pun -pun -mFY -szW -sRm -pun -pun -qbN -iKO -iNn -pun -pun -weG -tPK -sRm -pun -pun -qYo -pun -pun -pun -pun -pun -pun -qOv -mwM -kTf -xyE -pun -bUb -pun -pun -pun -pun -pun -vDF -vDF -pgd -pgd -pgd -pgd -pgd -pgd -pgd -pgd -pgd -pgd -hMq -wNi -rZS -hVe -rZS -ccW -mtW -wvU -qXC -qXC -qXC -tpN -fLg -qID -hTO -hTO -hTO -hTO -hTO -kig -kig -eOe -qAn -sOT -vZe -lIx -bsl -dsB -vKJ -qfR -fmV -fSp -woV -aMr -wEK -iMs -aMr -uDJ -rQn -ocr -uDJ -cTE -eUs -tlT -cTE -uqf -faB -uDJ -ocr -wjU -dgr -lsi -gUC -vDT -ocr -ocr -eED -eED -egT -xPb -ycJ -hDg -aHk -nid -qLx -qLx -cou -xTB -qLx -rSA -rSA -rSA -rSA -lBK -lBK -lBK -vFs -uCl -uCl -lBK -lBK -szB -szB -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(81,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -aVA -pun -pun -pun -pun -pun -xyE -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -omd -pun -pun -pun -pun -pun -pun -pun -iRz -pun -pun -pun -pun -mFY -szW -sRm -pun -pun -weG -iKO -sRm -pun -pun -weG -iKO -iNn -pun -pun -qYo -pun -pun -pun -pun -pun -dBB -wrR -mwM -kTf -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -pgd -pgd -pgd -pgd -pgd -pgd -pgd -pgd -pgd -pgd -hMq -hMq -hMq -hMq -hMq -hMq -qID -ahK -xav -sOl -qjp -sOl -oIi -qID -hTO -hTO -kig -kig -kig -kig -kig -gAd -lkO -pcH -ljd -sOc -jzt -sFU -onl -rEA -pTp -oWW -jXD -aMr -uJj -byc -aMr -lBx -csh -ocr -xBF -xBH -shT -cTE -cRx -tlT -cRx -gYN -ocr -beX -qGm -die -amu -jez -ocr -ocr -lFf -aHk -aHk -tva -tLS -mZG -iDe -vOx -qLx -qLx -glh -xGx -qLx -rSA -rSA -rSA -rSA -lBK -lBK -lBK -wpl -lbq -llG -lBK -lBK -szB -szB -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(82,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -xyE -pun -bUb -bUb -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -olD -szW -sRm -pun -pun -weG -iKO -sRm -pun -pun -weG -iKO -iNn -pun -pun -qYo -pun -pun -pun -pun -pun -pun -qOv -lro -kTf -pun -pun -pun -pun -cju -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hMq -hMq -hMq -hMq -hMq -hMq -qID -qID -qID -qID -qID -qID -qID -qID -hTO -hTO -kig -kig -euq -xMy -pJW -uDQ -xuE -pcH -ljd -xpb -xzm -acY -gJh -pTp -pTp -doM -rCT -kPn -uJj -nzx -aMr -ocr -aXm -ocr -uYY -bKO -xBF -ikv -xBF -xBF -cQE -eEB -ocr -mFz -rIV -mFz -mFz -mFz -ocr -ocr -vcq -oNd -tAd -kpg -sKY -uoi -sAx -rSF -brj -brj -kYe -qjn -prj -dzh -dzh -hzx -jbA -ryV -lBK -lBK -lBK -hWM -lBK -lBK -lBK -szB -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(83,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -nin -pun -icW -pun -aVA -pun -pun -pun -pun -ttf -pun -bUb -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -olD -szW -iNn -pun -imC -weG -iKO -sRm -pun -pun -weG -iKO -iNn -imC -pun -qYo -pun -pun -pun -pun -pun -dBB -qOv -lro -kTf -pun -pun -pun -pun -xyE -xyE -pun -pun -pun -xyE -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -kig -kig -kig -kig -kig -kig -kig -kig -kig -tbr -rjo -kig -czr -lkO -xMi -oYH -lIx -tYJ -ktK -pTp -pTp -pTp -dpO -ldH -aMr -jwn -hqU -aMr -iEH -mFz -ocr -uDJ -bKO -xBF -xBF -uqf -uDJ -uDJ -rQn -ocr -nPf -rIV -mFz -rIV -mFz -ocr -ocr -mUV -mUV -mUV -knp -ctZ -dIO -mUV -brj -brj -brj -wBv -dkB -kzk -sJd -oqV -wKA -tPE -qni -lBK -lBK -lBK -qhs -lBK -lBK -lBK -szB -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(84,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -aVA -pun -pun -imC -imC -pun -pun -pun -pun -pun -imC -imC -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -imC -pun -pun -omd -pun -pun -pvg -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -qYo -pun -pun -pun -pun -mFY -iKO -iNn -pun -pun -weG -tPK -sRm -pun -pun -weG -iKO -iNn -pun -pun -qYo -pun -pun -pun -xyE -pun -kNs -qOv -lro -kTf -pun -pun -pun -pun -pun -pun -bUb -pun -icW -aVA -xyE -xyE -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -kig -kig -waB -kig -rkU -iIf -iIf -hAH -kig -ooQ -pxr -kig -bzE -lkO -rbG -nvO -lIx -vXq -jqJ -qkH -pTp -gQw -jqJ -xxz -aMr -uJj -byc -aMr -kZl -mFz -ocr -qbZ -kFt -igl -xBF -xBF -lme -uDJ -lGI -ocr -cQM -bNc -jje -rIV -fMy -ocr -ocr -mUV -mUV -mUV -ciN -sKY -cWY -jvw -brj -brj -brj -qlR -rVE -rVE -sGD -qlR -qlR -rHF -mAs -lBK -lBK -lBK -hWM -lBK -lBK -szB -szB -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(85,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -aaH -pun -pun -pun -pun -pun -bUb -pun -pun -bUb -pun -pun -pun -uUV -pun -xyE -pun -aaH -pun -bUb -pun -bUb -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -mFY -iKO -iNn -pun -pun -weG -iKO -iNn -pun -pun -qbN -tPK -iNn -pun -pun -qYo -pun -pun -pun -nin -pun -kNs -qOv -lro -kTf -pun -pun -pun -icW -pun -pun -pun -xyE -bUb -pun -pun -pun -nin -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -kig -kig -eZG -kig -tbG -uzr -wzL -hvz -kJw -lfj -vuw -kig -bzE -lkO -nHH -oYH -wWz -fsa -dYB -pTp -pTp -bNA -gQw -lcf -aMr -uJj -byc -aMr -bHz -rIV -mFz -rIV -vIC -rIV -rIV -mFz -mFz -mFz -mFz -ocr -rIV -oBG -mFz -gYd -bNc -ocr -ocr -hTO -mUV -mUV -aTz -xap -cWY -lcv -brj -brj -qni -jdO -scm -uai -rHa -gqO -aXd -azz -pnk -gPl -hiX -fhg -epG -tsJ -brj -szB -szB -szB -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(86,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -imC -pun -imC -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -mFY -iKO -iNn -pun -pun -qbN -szW -sRm -pun -pun -qbN -szW -sRm -pun -pun -qYo -pun -pun -pun -pun -bUb -pun -qOv -mwM -kTf -pun -pun -pun -pun -pun -pun -nin -pun -pun -bJm -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -kig -kig -dAv -ocP -vHd -wzL -dmp -wzL -kig -hic -euq -kig -pHV -tEZ -xqL -gLf -lIx -eNH -pTp -pTp -pTp -lMz -gQw -jTq -aMr -uJj -byc -aMr -mFz -mFz -mFz -rIV -rIV -mfc -itr -wCU -rIV -xbK -xke -iPD -fNV -axv -nDs -mFz -mFz -ocr -ocr -hTO -mUV -mUV -dMJ -gsZ -cWY -cWY -tsJ -brj -qni -qni -bjR -sGc -bjR -sGc -bjR -mMS -jyL -jVm -iXK -mGV -ycN -dcD -tsJ -tOE -tOE -lvP -lvP -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(87,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -icW -xyE -pun -cju -pun -pun -pun -xyE -pun -xyE -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -mFY -qxb -sRm -pun -pun -qbN -dOC -sRm -pun -pun -qbN -qxb -sRm -pun -pun -qYo -pun -pun -pun -pun -xyE -pun -qOv -mwM -kTf -pun -pun -pun -xyE -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -kig -kig -psa -kig -kig -kig -kig -kig -kig -kig -kig -kig -uDw -wxW -bbF -uDw -lIx -gXL -pTp -nRI -eur -gQw -pTp -iKM -aMr -uJj -byc -aMr -iBw -uXs -hKu -mFz -mFz -dFg -mFz -fcB -dFg -mFz -mFz -ocr -ocr -ocr -ocr -ocr -ocr -ocr -ocr -hTO -mUV -mUV -xPb -dMS -pOg -xLF -tsJ -brj -omf -qni -jsH -uBF -jsH -fQC -jsH -hjv -joo -bhT -iXK -qVm -iXK -iXK -iaX -wuV -byD -fgV -lvP -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(88,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -nin -lBV -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -bUb -pun -pun -pun -qOv -byM -kTf -pun -xyE -pun -pun -pun -pun -pun -bUb -pun -pun -bUb -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -kig -kig -tZS -dqC -nwU -lNd -jNl -gwP -wAu -oYi -lWi -bGI -wMn -tgc -sOT -vZe -lIx -uPe -gQw -bdI -gQw -pTp -tkG -con -aMr -uJj -byc -aMr -eSk -rJe -ocr -kcv -jie -ocr -dvU -jie -ocr -swJ -jie -ocr -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wLo -wBP -gsZ -rgL -erY -brj -brj -ycN -qni -ger -usK -ger -sGc -ger -uuv -aAZ -hZs -iXK -kiK -eUo -tsJ -brj -tOE -cuP -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(89,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -bUb -pun -imC -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -rjc -eIU -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -fKO -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -nzW -pun -pun -pun -pun -pun -pun -jUH -byM -kTf -pun -pun -pun -pun -xyE -pun -pun -icW -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -kig -kig -tZS -dqC -dJc -kyg -kyg -kyg -kyg -kyg -vgV -dqC -aYT -xVO -nHH -nvO -lIx -uPe -gQw -gQw -gQw -gQw -pTp -qiD -aMr -lsV -nzx -aMr -mFz -pwu -ocr -gRy -aDg -ocr -wOy -aDg -ocr -wOy -aDg -ocr -wLo -lii -rZO -ewC -rIs -vot -okK -cle -wxz -wLo -xPb -gsZ -qcb -nid -brj -hYr -dlm -nsL -aXd -jdO -aXd -sxw -aXd -ivP -aXd -ofJ -iXK -iXK -eUo -aMo -brj -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(90,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -kNs -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -dBB -jUH -byM -kTf -pun -pun -pun -aVA -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -kig -kig -tZS -dqC -gMs -nmf -lJX -kyg -kyg -kyg -lTq -dqC -acD -xVO -xVO -pxu -lIx -fiF -gQw -pTp -gQw -gQw -xCF -gGX -aMr -uJj -byc -aMr -xmc -hEi -ocr -vUF -wOy -ocr -vUF -gRy -ocr -vUF -wOy -ocr -wLo -lii -lLw -woT -woT -knr -lin -lin -hkK -ibL -kdU -mgJ -pOg -nid -brj -tsJ -ycN -qni -aXd -aiv -ogz -ijE -aXd -lyb -ogz -iXK -jSN -eUo -cPO -aMo -brj -hTO -tOE -lcJ -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(91,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -xyE -pun -pun -pun -pun -xyE -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -cju -pun -pun -pun -pun -pun -imC -qYo -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -pun -jUH -byM -wqu -ltg -ltg -ltg -ltg -ltg -onF -ltg -ltg -ltg -ltg -ltg -ltg -ltg -ltg -ltg -ltg -ltg -ltg -ltg -ltg -ltg -ltg -ltg -ltg -ltg -ltg -vDF -vDF -vDF -kig -kig -tZS -dqC -pah -kyg -kyg -kyg -lJX -lJX -qcK -vke -mPA -xVO -xVO -oYH -lIx -sXS -qRG -pTp -wXL -bZd -gQw -lcf -aMr -uJj -qfK -ago -uwQ -xuh -ocr -wOy -wOy -ocr -gRy -wOy -ocr -gRy -wOy -ocr -wLo -hQc -hHW -aQq -bEY -bEY -aQq -orf -oVW -wLo -pNT -gsZ -pOg -nid -brj -brj -ycN -pQv -bjR -uuu -bjR -jLW -bjR -qXw -jyL -mpC -qVm -eUo -jyW -brj -brj -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(92,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -aVA -pun -pun -aaH -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -kNs -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -pun -qOv -xAd -iOB -gsu -vAc -gsu -iOB -iOB -iOB -gsu -vAc -iOB -iOB -gsu -vAc -vAc -gsu -gsu -vAc -vAc -vAc -gsu -iOB -iOB -iOB -iOB -iOB -iOB -iOB -gsu -jdZ -jdZ -vmX -hGr -fkQ -dqC -nTz -tHP -qVd -kyg -lJX -lJX -sRf -esC -mPA -xVO -xVO -nvO -lIx -ilc -jvz -upw -iAc -aXu -gbE -thm -aMr -vaJ -omG -xEc -atx -bcu -ocr -kKr -eYP -ocr -kKr -pus -ocr -kKr -pus -ocr -wLo -aAf -vto -bEY -bEY -lry -orf -aQq -mTf -lQV -cWY -cgp -rgL -nid -brj -brj -gHk -qni -jsH -mnw -jsH -uBF -uSM -ivP -xSU -vWo -olY -iXK -jyW -brj -brj -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(93,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -lBV -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nZF -laC -kNs -kNs -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -iRz -pun -pun -bUb -pun -pun -dBB -dBB -sSb -eNq -eNq -eNq -eNq -eNq -eNq -eNq -eNq -eNq -eNq -eNq -eNq -gPX -eNq -eNq -eNq -eNq -eNq -eNq -eNq -eNq -eNq -eNq -eNq -eNq -eNq -eNq -eRY -eNq -vDF -kig -kig -kig -dqC -hot -pPu -dRK -kKY -tLV -nAu -dmy -dqC -eqY -stC -stC -gLf -lIx -lIx -lIx -lIx -lIx -lIx -lIx -lIx -aMr -kyy -aMr -aMr -aMr -jcG -aMr -ocr -ocr -ocr -ocr -ocr -ocr -ocr -ocr -ocr -wLo -lii -xhp -aQq -aQq -orf -aQq -aQq -lii -wLo -kIX -gsZ -rgL -enk -brj -brj -qni -qni -ger -alL -ger -xOb -pzb -fEi -aAZ -jVm -tKx -iXK -ofH -brj -brj -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(94,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nZF -nZF -nZF -pun -pun -laC -pun -nZF -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -xyE -pun -pun -qYo -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -qYo -bUb -pun -pun -pun -pun -pun -dBB -lro -kNs -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -vDF -kig -kig -kig -dqC -dqC -dqC -dqC -dqC -nOk -dqC -dqC -dqC -xUj -xUj -xUj -xUj -lIx -lIx -lIx -lIx -lIx -lIx -lIx -lIx -aMr -bRJ -ulp -dmB -gkO -tuW -aMr -ocr -ocr -ocr -ocr -ocr -ocr -ocr -ocr -ocr -wLo -uaU -rqp -aQq -ltp -xDY -xDY -xDY -xDY -wLo -dMJ -gsZ -rgL -tlj -brj -brj -cSU -gTx -nrQ -wUf -wLW -wKA -wLW -qnP -tYT -iXK -sum -rmy -aFH -brj -brj -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(95,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -aaH -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hTO -hTO -hTO -hTO -xgt -hTO -laC -laC -laC -nZF -kNs -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -qYo -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -imC -pun -pun -qYo -pun -pun -pun -pun -pun -pun -dBB -lro -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nVF -jBT -dBB -mQs -kTZ -gYc -ezy -ezy -dEs -jZD -vDF -vDF -vDF -hTO -hTO -hTO -hTO -aMr -myF -uGb -buJ -ulp -aeL -aMr -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -qep -qep -qep -bPF -gjR -qep -bWz -bWz -bWz -bWz -bWz -dMJ -gsZ -rgL -tlj -brj -brj -brj -tDm -brj -brj -brj -brj -brj -brj -brj -iXK -dcD -iLJ -brj -brj -brj -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(96,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -xgt -xgt -xgt -gwC -hTO -tCv -tFJ -laC -pun -nZF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -lxe -uyr -qFz -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -lxe -uyr -qFz -pun -pun -pun -pun -dBB -dBB -mwM -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -pun -pun -dBB -dBB -jBT -dBB -jBT -agT -haO -haO -haO -haO -oZI -jBT -dBB -vDF -vDF -vDF -vDF -hTO -aMr -aMr -aMr -aMr -aMr -aMr -aMr -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -qep -qep -qep -pyr -uzE -qep -bWz -bWz -bWz -bWz -bWz -fPB -dMS -pOg -lnO -oLp -ofm -gKN -fZa -rlW -osR -mUV -eNV -wXM -hPR -luy -mes -ovn -eJl -syG -xVV -xVV -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(97,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -sBs -vDF -vDF -vDF -vDF -kuo -bjz -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -ppI -kuo -vDF -nse -xgt -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -sBs -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -sBs -xgt -xgt -vKl -ghF -sBs -jCI -tFJ -laC -dBB -dBB -dBB -dBB -jBT -kNs -kNs -pun -pun -pun -pun -pun -kNs -kNs -dBB -pun -pun -pun -pun -pun -pun -pun -gbY -pun -pun -dBB -pun -pun -kNs -kNs -kNs -pun -pun -pun -dBB -kNs -kNs -pun -pun -pun -pun -pun -tAY -pun -pun -pun -dBB -kNs -kNs -iSa -nue -pun -dBB -dBB -dBB -dBB -dBB -dBB -pun -pun -pun -kNs -dBB -dBB -dBB -dBB -dBB -kNs -kNs -pun -pun -dBB -dBB -dBB -dBB -pun -pun -pun -pun -pun -dBB -dBB -dBB -dBB -dBB -pun -dBB -dBB -dBB -dBB -dBB -dBB -pun -pun -pun -dBB -dBB -dBB -pun -pun -pun -pun -vDF -vDF -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -qep -qep -qep -qep -qep -qep -qep -qep -qep -qep -qep -pyr -uzE -qep -bWz -dWW -lZH -gAs -jQP -vAq -huG -pOg -lcv -pOg -rgL -rgL -dVK -lLo -wNv -mUV -eNV -gox -hPR -bKK -ovn -mll -wXM -gjG -xVV -xVV -hTO -tOE -lcJ -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(98,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -cTa -ghF -fag -uvx -uJF -cTa -gwC -qym -jBT -jBT -dBB -pun -pun -pun -dBB -kNs -kNs -pun -pun -pun -pun -pun -pun -pun -pun -dBB -pun -pun -pun -pun -pun -pun -dBB -jBT -dBB -pun -pun -laC -laF -pQF -gwC -gwC -bmw -bmw -xBm -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -cTa -xgt -nse -vKl -bvd -kdB -tTx -tFJ -laC -jBT -jBT -dBB -pun -pun -pun -pun -pun -pun -pun -dBB -pun -dBB -dBB -dBB -dBB -dBB -kNs -pun -pun -pun -dBB -gbY -dBB -dBB -dBB -pun -pun -dBB -kNs -pun -pun -pun -pun -pun -dBB -dBB -pun -pun -pun -pun -pun -tAY -pun -pun -dBB -dBB -dBB -dBB -iSa -nue -psX -pun -pun -pun -dBB -dBB -dBB -dBB -dBB -dBB -pun -pun -pun -pun -dBB -dBB -pun -pun -pun -pun -dBB -dBB -dBB -dBB -kNs -dBB -dBB -dBB -dBB -dBB -dBB -dBB -pun -pun -pun -pun -pun -dBB -dBB -dBB -jBT -dBB -pun -pun -dBB -pun -pun -pun -dBB -pun -pun -vDF -vDF -vDF -hTO -hTO -hTO -hTO -hTO -hTO -hTO -qep -sjV -iPy -nHo -uoP -uoP -iPy -jJO -auq -eis -qep -toV -cZe -qep -bWz -dtS -nau -aWM -xsM -jBt -mbh -mbh -aKG -nsn -rrb -mbh -bjV -uIx -mRS -knp -eNV -sHH -ssf -hyA -wXM -pJl -wXM -gca -xVV -xVV -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(99,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -xgt -xgt -eWs -khx -eWs -eWs -qQo -urx -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -kNs -pun -pun -pun -pun -pun -pun -pun -dBB -dBB -pun -pun -pun -pun -pun -pun -pun -pun -ayK -qzc -ghF -uJF -uvx -ghF -fag -gwC -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -laF -qTN -vKl -wTF -kdB -tTx -laC -jBT -jBT -laC -kNs -dBB -dBB -dBB -dBB -pun -pun -dBB -dBB -dBB -dBB -dBB -kNs -kNs -kNs -pun -pun -pun -pun -pun -gbY -dBB -dBB -dBB -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -kNs -dBB -dBB -pun -pun -tAY -pun -dBB -dBB -dBB -dBB -dBB -pun -nue -psX -kNs -pun -pun -pun -pun -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -kNs -dBB -dBB -dBB -dBB -dBB -pun -pun -pun -pun -pun -pun -pun -dBB -dBB -dBB -pun -pun -dBB -pun -jBT -dBB -pun -pun -bUb -pun -pun -pun -vDF -vDF -vDF -vDF -hTO -hTO -hTO -hTO -hTO -qep -sjV -iPy -iPy -uoP -uoP -iPy -jJO -auq -lqC -qep -pyr -cZe -qep -bWz -sDe -ons -jZQ -bWz -oeP -bZV -bgj -rEJ -bgj -ifW -qbc -nfJ -uNc -oSk -knp -eNV -pEA -ovn -nPa -rfR -ifi -wXM -qxi -xVV -xVV -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(100,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uvx -eWs -eWs -eWs -qzc -gcu -jBT -dBB -kNs -pun -dBB -pun -dBB -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -dBB -jBT -jBT -laC -laC -kNs -cTa -ghF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -qTN -uKf -nTa -ncU -tTx -jBT -jBT -dBB -dBB -jBT -jBT -dBB -jBT -jBT -dBB -dBB -dBB -dBB -dBB -dBB -pun -pun -pun -pun -pun -kNs -pun -pun -pun -gbY -dBB -dBB -dBB -dBB -dBB -pun -pun -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -pun -pun -tAY -pun -dBB -dBB -dBB -dBB -dBB -pun -mwM -pun -kNs -kNs -kNs -kNs -pun -dBB -dBB -dBB -pun -dBB -kNs -kNs -kNs -kNs -kNs -dBB -dBB -dBB -dBB -dBB -dBB -dBB -pun -dBB -dBB -dBB -kNs -dBB -dBB -dBB -dBB -pun -pun -pun -pun -pun -pun -dBB -jBT -kNs -kNs -pun -pun -dBB -dBB -dBB -pun -bUb -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -hTO -hTO -hTO -hTO -qep -sjV -iPy -iPy -iPy -iPy -pJM -qep -ddH -rYF -mmL -kyw -cZe -qep -bWz -bWz -bWz -bWz -bWz -mUV -mUV -mUV -mUV -mUV -mUV -ecC -vwg -knp -knp -knp -dga -iSD -tur -pIW -pIW -pIW -kcD -kcD -kcD -kcD -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(101,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -gwC -qzc -ayK -dHq -jBT -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -dBB -dBB -kNs -pun -pun -pun -pun -pun -dBB -dBB -jBT -pQF -gcu -xgt -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -kmf -vKl -tTx -kdB -tCv -jBT -jBT -nZF -dBB -jBT -jBT -dBB -jBT -jBT -dBB -jBT -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -kNs -pun -pun -dBB -gbY -dBB -dBB -dBB -pun -pun -pun -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -pun -pun -pun -kNs -cCA -dBB -dBB -pun -pun -dBB -dBB -iSa -nue -psX -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -kNs -kNs -kNs -dBB -dBB -dBB -kNs -dBB -dBB -dBB -pun -pun -dBB -dBB -kNs -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -kNs -pun -pun -dBB -dBB -dBB -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -hTO -hTO -hTO -qep -sjV -iPy -iPy -sjV -sjV -nOU -aGe -ehs -nBg -qep -uzE -vyo -qep -hTO -hTO -hTO -uLC -uLC -uLC -uLC -uLC -qJA -qQs -xfF -gvX -nfs -laJ -xFs -mxJ -dga -qsV -poH -lWJ -jRr -pIW -kcD -kcD -kcD -kcD -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(102,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xgt -gwC -qzc -dBB -jBT -jBT -dBB -pun -dBB -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -dBB -kNs -kNs -dBB -pun -pun -pun -pun -pun -pun -pun -pun -dBB -kNs -laC -qym -cTa -ghF -gwC -ghF -fag -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -kmf -nTa -nTa -kdB -hzH -tFJ -laC -laC -kNs -laC -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -kNs -kNs -pun -pun -dBB -dBB -dBB -pun -pun -dBB -gbY -dBB -dBB -pun -pun -dBB -dBB -dBB -dBB -dBB -dBB -dBB -pun -dBB -dBB -dBB -dBB -dBB -pun -pun -tAY -pun -dBB -kNs -dBB -kNs -dBB -iSa -nue -psX -dBB -dBB -dBB -dBB -dBB -dBB -pun -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -kNs -dBB -dBB -pun -pun -pun -dBB -dBB -kNs -kNs -dBB -dBB -dBB -kNs -kNs -kNs -laC -laC -dBB -dBB -dBB -dBB -dBB -dBB -pun -dBB -dBB -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hTO -hTO -qep -sjV -iPy -hTh -sjV -sjV -oii -qep -eFe -uda -qep -uzE -vyo -qep -hTO -hTO -hTO -uLC -uLC -uLC -uLC -uLC -csT -tOd -fYA -gHg -oac -dAf -epu -vnS -dga -nFO -nwP -cFL -wWx -pIW -pIW -kcD -kcD -kcD -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(103,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -bmw -ghF -uJF -ghF -ghF -khx -mUN -ghF -tFJ -kNs -dBB -pun -pun -pun -pun -dBB -kNs -dBB -dBB -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -dBB -vKZ -laC -vKl -qzc -ghF -ghF -eWs -eWs -xgt -mEn -xgt -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -cTa -xgt -laF -vKl -boG -kdB -egB -laC -laC -nZF -nZF -pun -pun -pun -dBB -dBB -jBT -dBB -dBB -dBB -pun -pun -pun -pun -pun -pun -dBB -dBB -pun -pun -dBB -gbY -dBB -dBB -dBB -dBB -dBB -dBB -dBB -pun -dBB -dBB -pun -pun -kNs -kNs -kNs -dBB -dBB -dBB -dBB -tAY -pun -dBB -kNs -dBB -dBB -dBB -iSa -nue -psX -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -pun -pun -pun -pun -dBB -dBB -dBB -dBB -dBB -pun -dBB -dBB -pun -pun -pun -dBB -dBB -dBB -dBB -dBB -kNs -pun -kNs -kNs -kNs -dBB -dBB -dBB -dBB -jBT -dBB -dBB -dBB -pun -dBB -dBB -pun -dBB -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hTO -qep -qep -qep -qep -qep -qep -qep -qep -qep -qep -nGn -xhl -nGn -snZ -hTO -hTO -hTO -uLC -uLC -uLC -uLC -uLC -csT -xBW -fYA -gHg -bSm -vTT -fAI -iWp -dga -wKo -vOs -gcK -poH -pIW -pIW -kcD -kcD -kcD -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(104,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -xBm -xBm -mUN -ghF -fag -ghF -nyG -qzc -cCT -cCT -dBB -dBB -pun -kNs -kNs -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -dBB -dBB -dBB -pun -pun -pun -pun -pun -pun -pun -pun -pun -dBB -qTN -cTa -mEn -fag -eWs -imc -nse -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -cTa -xgt -mEn -qTN -vKl -kdB -fRB -laC -laC -nZF -pun -pun -pun -pun -pun -pun -pun -dBB -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -tAY -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -pun -pun -pun -dBB -dBB -dBB -dBB -dBB -gbY -dBB -kNs -kNs -dBB -dBB -pun -pun -mwM -pun -pun -pun -pun -pun -pun -pun -pun -pun -eES -pun -pun -pun -pun -pun -pun -pun -dBB -dBB -pun -pun -dBB -dBB -dBB -dBB -dBB -dBB -dBB -dBB -pun -pun -pun -pun -pun -pun -pun -dBB -dBB -dBB -dBB -pun -dBB -dBB -dBB -dBB -dBB -pun -pun -pun -pun -xyE -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -nGn -vZL -nGn -hTO -hTO -hTO -hTO -uLC -uLC -uLC -uLC -uLC -viJ -mlT -fYA -pTQ -bSm -xxj -fKY -xXH -dga -eey -aZA -gOc -poH -pIW -pIW -kcD -kcD -kcD -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(105,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -sBs -vDF -vDF -vDF -vDF -ijF -rhh -qym -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xtd -ijF -nse -gwC -gwC -gwC -xgt -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -sBs -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -sBs -xgt -gwC -uKf -mjf -sBs -gmb -laC -laC -kNs -pun -nZF -kNs -kNs -dBB -dBB -pun -pun -pun -pun -pun -pun -kNs -kNs -pun -pun -dBB -dBB -pun -kNs -kNs -gbY -dBB -dBB -dBB -dBB -dBB -pun -pun -pun -dBB -kNs -kNs -kNs -pun -pun -dBB -dBB -dBB -dBB -dBB -gbY -dBB -dBB -dBB -dBB -dBB -dBB -pun -bPg -kNs -kNs -dBB -kNs -pun -pun -pun -pun -icW -pun -pun -pun -dBB -pun -dBB -dBB -dBB -kNs -kNs -pun -pun -dBB -dBB -dBB -pun -pun -pun -pun -pun -pun -dBB -dBB -pun -pun -pun -pun -pun -dBB -dBB -dBB -pun -dBB -dBB -dBB -dBB -pun -pun -imC -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -nGn -bjO -nGn -hTO -hTO -hTO -hTO -uLC -uLC -uLC -uLC -uLC -dgg -mtG -pBp -gHg -jDZ -dco -dco -wZh -kia -xEt -wHr -cVa -aHD -pIW -pIW -kcD -kcD -kcD -hTO -tOE -abv -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(106,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -dBB -pun -pun -pun -pun -pun -pun -pun -pun -pun -kNs -kNs -pun -pun -pun -pun -pun -pun -pun -laC -cKO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -xgt -xgt -nse -xgt -hTO -egB -tFJ -tFJ -pun -pun -pun -pun -kNs -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -lxe -uyr -qFz -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -lxe -uyr -qFz -pun -pun -pun -pun -pun -pun -byM -pun -pun -pun -imC -bUb -bUb -pun -pun -cju -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -bUb -pun -dBB -dBB -dBB -dBB -pun -pun -pun -pun -bUb -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -nGn -vZL -nGn -hTO -hTO -hTO -hTO -uLC -uLC -uLC -uLC -uLC -csT -ucW -lwj -gHg -fxe -gHg -gHg -tRK -keQ -fKF -mDd -aYZ -aHD -pIW -pIW -kcD -kcD -kcD -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(107,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -laC -jUY -laC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -cGx -imC -imC -pun -pun -pun -pun -pun -pun -pun -ubt -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -pun -pun -egk -pun -pun -pun -pun -pun -pun -bUb -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -icW -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -cGx -dBB -dBB -dBB -dBB -dBB -pun -pun -cGx -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hTO -hTO -hTO -hTO -nGn -vZL -nGn -hTO -hTO -hTO -hTO -uLC -uLC -uLC -uLC -uLC -csT -tOd -sMN -cTK -dcd -dcd -mct -nrv -uLC -nyK -tjf -odb -mmX -pIW -kcD -kcD -kcD -kcD -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(108,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nZF -nZF -laC -kNs -nZF -laC -pun -icW -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -vnP -vnP -ycX -vnP -vVk -vVk -vnP -vnP -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -fKO -bsH -bsH -bsH -bsH -bsH -amZ -dib -mwM -kzH -amZ -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -ncx -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -daH -bsH -bsH -bsH -bsH -daH -uyr -pGl -pGl -pGl -pGl -pGl -fbr -wTC -uyr -bsH -bsH -bsH -uyr -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hTO -nGn -uLb -nGn -hTO -hTO -hTO -hTO -uLC -uLC -uLC -uLC -uLC -jGT -eRI -vFH -vFH -mXy -gws -xjQ -ahY -dga -nyK -hmA -nLM -ygS -pIW -pIW -kcD -kcD -kcD -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(109,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -aaH -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nZF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -qYo -pun -vnP -niq -vDI -vgl -uHP -xRh -fNG -vnP -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -pun -qOv -lro -kTf -pun -pun -imC -icW -pun -pun -icW -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -cju -pun -pun -pun -imC -pun -pun -xyE -bUb -uUj -dBB -dBB -pun -dBB -dBB -dBB -pun -qYo -bUb -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -hTO -hTO -hTO -hTO -hrj -hrj -hrj -hrj -hrj -hrj -bMc -qcI -wQl -efy -iXa -bMc -bMc -hrj -iSD -vYw -uch -pIW -pIW -pIW -pIW -pIW -kcD -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(110,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -kNs -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -vnP -niq -vDI -vDI -mPG -wZT -hIo -vnP -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -bUb -pun -pun -pun -pun -qOv -lro -kTf -pun -pun -pun -imC -pun -bUb -aVA -pun -eES -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -imC -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -dBB -dBB -dBB -dBB -dBB -dBB -qYo -bUb -pun -pun -hQh -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -hTO -hTO -hTO -hrj -hrj -hrj -hrj -hrj -qDO -jjw -bBV -wQH -qZf -wQH -wQH -pGC -hBZ -fyb -cyO -dZR -uQl -iRf -iRf -iRf -iRf -bfk -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(111,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -xyE -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -vnP -amD -vgl -vDI -lFV -sfp -vgl -vnP -uUV -bUb -pun -pun -pun -pun -pun -pun -imC -pun -qYo -pun -pun -pun -pun -pun -pun -qOv -mwM -kTf -bUb -xyE -pun -icW -pun -pun -imC -khv -pun -bUb -bUb -pun -pun -qYo -pun -pun -pun -pun -pun -pun -pun -pun -kxF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -icW -pun -pun -bUb -pun -dBB -dBB -dBB -dBB -dBB -pun -qYo -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -xdC -nGn -vDF -vDF -hTO -hTO -hrj -hrj -hrj -hrj -hrj -dHG -pTk -ygP -ygP -ygP -ygP -gLA -sIc -pqu -srQ -srQ -tHV -tHV -iRf -iRf -iRf -iRf -bfk -hTO -tOE -lcJ -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(112,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -xyE -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -nin -xyE -pun -pun -bUb -pun -aVA -pun -pun -imC -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -xyE -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -qYo -pun -vnP -jEa -vgl -vgl -vgl -sMl -uMp -vnP -vnP -vnP -pun -ltg -ltg -ltg -ltg -ltg -ltg -ltg -jiI -gDg -ltg -ltg -ltg -pun -pun -qOv -byM -kTf -pun -pun -aPl -ltg -jrf -ltg -sDF -ltg -ltg -ltg -ltg -ltg -ltg -jiI -ltg -ltg -ltg -ltg -ltg -ltg -ltg -ltg -bUb -tTO -tTO -tTO -tTO -tTO -tTO -tTO -tTO -tTO -tTO -tTO -tTO -tTO -tTO -pun -pun -pun -dBB -dBB -dBB -dBB -dBB -pun -qYo -pun -pvg -bUb -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -hTO -hTO -hrj -hrj -hrj -hrj -hrj -dHG -uut -oDp -nli -yft -oDp -qhx -jFQ -hrj -aiX -srQ -arr -igK -iRf -iRf -iRf -bfk -bfk -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(113,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -nin -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hTO -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -qYo -pun -vnP -lve -vDI -vgl -sMl -avt -ckB -uoX -kNJ -bBU -hQr -gsu -vAc -vAc -gsu -gsu -gsu -iOB -iOB -iOB -iOB -iOB -gsu -edK -vAc -tpt -mJR -edK -vAc -tpt -iOB -iOB -gsu -gsu -vAc -vAc -gsu -gsu -iOB -iOB -gsu -vAc -vAc -vAc -gsu -iOB -gsu -gsu -vAc -vAc -edK -jBW -wSz -vhC -nSC -czk -oJX -tTO -rSm -oJX -mNF -oJX -kYV -nkF -tTO -pun -pun -pun -pun -pun -dBB -dBB -dBB -pun -qYo -pun -pun -icW -imC -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -hTO -hTO -hrj -hrj -hrj -hrj -hrj -irs -uut -oDp -rpz -frj -oDp -qhx -kNi -kzi -dKR -gmg -srQ -cyK -iRf -iRf -bfk -bfk -bfk -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(114,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -nin -pun -pun -pun -pun -aVA -pun -pun -xyE -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hTO -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -aVA -pun -icW -pun -pun -pun -pun -pun -pun -pun -pun -qYo -imC -vnP -cjJ -vgl -vDI -vDI -rMo -pAp -vnP -vde -vnP -pun -gPX -eNq -eNq -eNq -eNq -eNq -eNq -uhC -eNq -eNq -eNq -eNq -pun -pun -pun -eNq -pun -pun -pun -eNq -otE -eNq -ghQ -pNW -eNq -ghQ -eNq -hCo -eNq -eNq -ryu -eNq -eNq -eNq -eNq -eNq -eNq -eNq -eNq -pun -tTO -xeQ -tTO -ntD -xGV -hgD -tTO -fYL -oJX -oJX -tGB -dHL -sCX -feZ -pun -pun -pun -kNs -dBB -dBB -dBB -dBB -pun -iRz -pun -pun -bUb -xyE -pvg -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -vDF -hTO -hrj -hrj -hrj -hrj -hrj -dHG -uut -oDp -rpz -frj -oDp -qhx -bBV -hAp -eoL -srQ -srQ -vaM -iRf -iRf -bfk -bfk -bfk -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(115,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -icW -pun -pun -pun -imC -pun -pun -pun -imC -pun -bUb -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hTO -hTO -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -qYo -pun -vnP -vnP -ycX -vnP -vnP -vnP -bAX -vnP -vnP -vnP -bUb -pun -pun -pun -pun -pun -bUb -pun -nWe -icW -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -bUb -pun -pun -xyE -pun -khv -pun -pun -pun -pun -pun -nWe -pun -pun -bUb -pun -pun -pun -pun -pun -pun -tTO -tTO -tTO -oKF -tGB -hgD -tTO -oJX -oJX -oJX -oJX -oJX -oJX -feZ -bUb -pun -pun -dBB -dBB -dBB -dBB -dBB -pun -qYo -pun -pun -pun -imC -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -vDF -hTO -hrj -hrj -hrj -hrj -hrj -dHG -uut -oDp -fxn -oLt -oDp -qhx -dAC -bMc -xxU -dLU -tHV -aqV -iRf -iRf -bfk -bfk -bfk -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(116,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -xyE -pun -aVA -pun -pun -pun -pun -pun -pun -pun -ubt -pun -icW -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -vnP -dEV -vDI -vDI -mUx -mUx -pER -vnP -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -icW -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -xyE -qYo -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -tTO -rDV -oJX -oJX -tTO -oJX -oJX -oJX -oJX -oJX -oJX -tTO -viX -pun -pun -dBB -dBB -dBB -dBB -pun -pun -qYo -pun -pun -pun -pun -bUb -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -vDF -hTO -hrj -hrj -hrj -hrj -hrj -dHG -uut -oDp -new -jyr -kmt -bBV -iDn -tsZ -nIJ -srQ -tHV -srQ -iRf -iRf -iRf -bfk -bfk -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(117,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -icW -pun -pun -xyE -cju -pun -pun -pun -xyE -pun -bUb -pun -pun -imC -pun -pun -pun -pun -xyE -pun -imC -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -bUb -gaS -pun -pun -cju -pun -pun -pun -xyE -pun -pun -pun -pun -qYo -pun -vnP -vgl -tDe -kqw -sfp -bQl -xeg -vnP -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -imC -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -aVA -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -tTO -oJX -oJX -oJX -vfB -oJX -oJX -oJX -oJX -oJX -oJX -vfB -pun -pun -pun -dBB -dBB -dBB -dBB -pun -kNs -qYo -pun -pun -imC -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -hTO -hTO -hrj -hrj -hrj -hrj -hrj -dHG -uut -oDp -vRM -ayQ -dvn -qhx -wXd -gMa -ewH -pIi -gWN -srQ -iRf -iRf -iRf -bfk -bfk -hTO -tOE -cNS -tOE -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(118,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -nin -pun -pun -nin -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -xyE -pun -pun -pun -pun -pun -qYo -pun -vnP -vgl -vgl -yeM -fND -rHk -hIo -vnP -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -xyE -pun -pun -pun -pun -aVA -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -imC -pun -xyE -pun -pun -pun -tTO -oJX -oJX -bLU -tTO -jZM -cgH -rNT -sSl -aMa -aMa -tTO -pun -pun -pun -dBB -dBB -dBB -kNs -pun -pun -nWe -pun -pun -icW -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -xdC -nGn -vDF -vDF -hTO -hTO -hrj -hrj -hrj -hrj -hrj -irs -uut -oDp -xmu -qij -obI -qhx -kNi -ibJ -ewH -doC -ltZ -srQ -iRf -iRf -iRf -bfk -bfk -hTO -nGn -mmY -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(119,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -aVA -pun -pun -pun -bUb -pun -pun -pun -pun -aVA -pun -bUb -pun -pun -pun -rLF -pun -pun -aVA -pun -aVA -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -nin -icW -pun -xyE -pun -aVA -pun -pun -pun -pun -pun -pun -qYo -pun -vnP -vnP -vnP -vnP -vnP -vnP -vnP -vnP -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -icW -pun -pun -pun -qYo -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -tTO -tTO -tTO -tTO -tTO -tTO -tTO -tTO -tTO -tTO -tTO -tTO -pun -pun -pun -dBB -dBB -dBB -kNs -pun -pun -qYo -pun -imC -bUb -xyE -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -hTO -hTO -hrj -hrj -hrj -hrj -hrj -dHG -sKk -oDp -cNE -jdW -xWw -qhx -qhV -ibJ -knS -ylT -srQ -gCH -iRf -iRf -iRf -bfk -bfk -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(120,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -imC -icW -imC -ttf -pun -pun -imC -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -xyE -pun -bUb -pun -icW -pun -pun -pun -pun -pun -pun -qYo -pun -pun -xyE -pun -pun -bUb -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -imC -pun -pun -qYo -pun -pun -pun -pun -bUb -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -dBB -dBB -pun -pun -kNs -pun -bUb -qYo -pun -pun -hQh -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -hTO -hTO -hrj -hrj -hrj -hrj -hrj -dHG -uut -oDp -oWy -oGV -exb -qhx -qhV -hBm -xbR -gJu -tHV -srQ -iRf -iRf -iRf -bfk -bfk -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(121,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -icW -pun -pun -pun -imC -pun -pun -imC -nin -bUb -pun -pun -pun -pun -pun -bUb -pun -pun -nin -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -xyE -gaS -pun -pun -nin -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -bUb -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qYo -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -icW -pun -pun -qYo -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -cGx -dBB -dBB -pun -pun -dBB -dBB -bUb -qYo -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xhl -vZL -nGn -vDF -vDF -hTO -hTO -hrj -hrj -hrj -hrj -hrj -dHG -uut -oDp -dMv -stI -nsC -bBV -rdy -bMc -tHV -gJu -gJu -lDF -iRf -iRf -iRf -bfk -bfk -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(122,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -aaH -pun -pun -pun -pun -pun -pun -pun -pun -nin -pun -pun -xyE -pun -pun -pun -nin -icW -pun -xyE -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -xyE -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -ksW -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -njJ -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -njJ -bsH -bsH -bsH -bsH -daH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -bsH -uyr -pGl -pGl -pGl -wTC -pGl -pGl -wTC -uyr -bsH -aKJ -bsH -uyr -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -hTO -hTO -hrj -hrj -hrj -hrj -hrj -dHG -uut -oDp -sUc -htH -gwq -qhx -wXd -kzi -wdl -vnj -uln -hsn -iRf -iRf -iRf -iRf -bfk -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(123,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -nin -pun -pun -pun -pun -bUb -ubt -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -aVA -icW -pun -pun -pun -pun -bUb -icW -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -uUj -kNs -dBB -dBB -dBB -dBB -pun -pun -uUj -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -hTO -hTO -hTO -hrj -hrj -hrj -hrj -hrj -ugQ -uut -oDp -aNA -vSW -frZ -qhx -kNi -jEF -mfp -srQ -ltZ -tHV -iRf -iRf -iRf -iRf -bfk -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(124,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -imC -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -xyE -xyE -pun -pun -bUb -pun -pun -pun -xyE -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -imC -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -dBB -dBB -dBB -dBB -dBB -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -hTO -hTO -hTO -hrj -hrj -hrj -hrj -hrj -bBV -uut -oDp -rdQ -isM -jfU -qhx -kNi -fve -eUS -srQ -tHV -gRe -iRf -iRf -iRf -bfk -bfk -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(125,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -xyE -pun -pun -jaX -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -imC -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -bUb -pun -pun -dBB -dBB -dBB -dBB -dBB -dBB -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -xdC -nGn -vDF -hTO -hTO -hTO -hrj -hrj -hrj -hrj -bMc -bBV -dds -ezz -ezz -bBV -vrJ -bYW -kNi -ibJ -hiZ -srQ -soY -gJu -iRf -iRf -iRf -bfk -bfk -hTO -nGn -mmY -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(126,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -aVA -pun -bUb -pun -pun -pun -pun -nin -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -imC -pun -imC -pun -pun -pun -pun -pun -cju -pun -pun -pun -pun -pun -pun -pun -pun -pun -kNs -dBB -dBB -dBB -dBB -pun -icW -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -hTO -hTO -hTO -hrj -hrj -hrj -hrj -bMc -bBV -hlA -ilg -bBV -bBV -nBi -dCV -gRc -kbh -dKR -srQ -gJu -rwS -nNX -iRf -bfk -bfk -bfk -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(127,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -jvp -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -cju -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -imC -bUb -pun -pun -xyE -icW -pun -pun -pun -pun -pun -pun -pun -kNs -pun -dBB -dBB -dBB -dBB -dBB -pun -pun -imC -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -hTO -hTO -hTO -hTO -hrj -hrj -hrj -hrj -bMc -bMc -bMc -mQm -qom -qom -spJ -bMc -bMc -bMc -wWw -cGR -gJu -ctp -tjp -iRf -bfk -bfk -bfk -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(128,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -nin -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -imC -pun -imC -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -bUb -pun -pun -pun -pun -pun -pun -kNs -pun -dBB -dBB -dBB -pun -dBB -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -hTO -hTO -hTO -hTO -hTO -bfk -bfk -iRf -iRf -iRf -dtC -fOz -tHV -tHV -reQ -mbT -srQ -yev -tHV -cGR -gJu -gJu -iRf -iRf -bfk -bfk -hTO -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(129,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -nin -pun -pun -pun -pun -pun -bUb -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -imC -pun -pun -pun -pun -pun -xyE -pun -pun -pun -icW -pun -imC -pun -icW -pun -pun -pun -jaX -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -kNs -pun -dBB -dBB -dBB -pun -dBB -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -hTO -hTO -hTO -hTO -hTO -bfk -bfk -iRf -iRf -iRf -srQ -tHV -srQ -srQ -srQ -tHV -srQ -ehC -tHV -tHV -ltZ -loh -iRf -iRf -bfk -bfk -hTO -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(130,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -aVA -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -tET -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -dBB -dBB -dBB -dBB -dBB -bUb -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -hTO -hTO -hTO -bfk -bfk -iRf -iRf -iRf -tHV -srQ -fJP -nxB -otF -tgp -iPW -iRf -cMA -tHV -srQ -igK -iRf -iRf -bfk -bfk -hTO -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(131,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -cju -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -xyE -pun -nin -pun -imC -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -icW -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -dBB -pun -dBB -dBB -kNs -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -hTO -hTO -hTO -bfk -bfk -iRf -iRf -iRf -chG -srQ -xge -gPa -oOF -vAm -tHV -iRf -srQ -srQ -gla -cyK -iRf -iRf -bfk -bfk -hTO -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(132,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qqw -qqw -qqw -qqw -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -xkl -hHj -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -nin -pun -pun -pun -pun -xyE -pun -xyE -pun -xyE -pun -pun -icW -pun -eES -xyE -pun -pun -imC -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -glF -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -dBB -dBB -dBB -pun -kNs -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -xdC -nGn -vDF -vDF -hTO -hTO -hTO -bfk -bfk -iRf -iRf -iRf -tHV -srQ -tKo -bDz -lHx -srQ -tHV -iRf -snB -srQ -srQ -tHV -iRf -iRf -bfk -bfk -hTO -hTO -nGn -mmY -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(133,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qqw -qqw -qqw -qqw -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -bFn -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -imC -pun -imC -pun -pun -pun -pun -pun -pun -xyE -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -cju -pun -pun -pun -pun -pun -pun -pun -pun -bUb -xyE -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -dBB -kNs -dBB -dBB -kNs -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -hTO -hTO -hTO -bfk -bfk -iRf -iRf -iRf -jpM -rcg -srQ -srQ -srQ -srQ -tHV -lcC -srQ -rTy -ltZ -srQ -iRf -iRf -bfk -bfk -hTO -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(134,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qqw -qqw -qqw -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -bFn -xkl -xkl -hHj -hHj -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -nin -pun -pun -pun -nin -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -xyE -xyE -pun -pun -pun -pun -eVa -pun -pun -pun -pun -pun -pun -dBB -pun -dBB -dBB -dBB -dBB -kNs -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -hTO -hTO -hTO -bfk -bfk -bfk -iRf -iRf -xwl -tHV -srQ -tHV -srQ -tXc -bEQ -sVG -gnN -omU -srQ -tHV -iRf -iRf -bfk -bfk -hTO -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(135,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -qqw -pun -pun -pun -pun -pun -pun -pun -tKQ -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -xkl -xkl -xkl -xkl -xkl -nse -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -dBB -dBB -dBB -dBB -dBB -dBB -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -vDF -hTO -hTO -bfk -bfk -bfk -bfk -iRf -bfk -iRf -iRf -iRf -iRf -iRf -iRf -iRf -iRf -iRf -iRf -iRf -iRf -bfk -bfk -bfk -hTO -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(136,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -bUb -icW -pun -pun -pun -pun -pun -qqw -qqw -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -xkl -xkl -xkl -xkl -xkl -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -imC -pun -pun -imC -pun -pun -pun -pun -imC -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -bUb -pun -xyE -xyE -pun -xyE -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -dBB -dBB -dBB -pun -pun -dBB -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -vDF -hTO -hTO -bfk -bfk -bfk -bfk -iRf -iRf -iRf -iRf -iRf -iRf -iRf -iRf -iRf -iRf -iRf -iRf -iRf -iRf -bfk -bfk -bfk -hTO -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(137,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -nin -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -aVA -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -dda -xkl -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -dBB -dBB -dBB -pun -pun -dBB -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -tpP -nGn -vDF -vDF -vDF -hTO -hTO -bfk -bfk -bfk -bfk -bfk -bfk -iRf -iRf -iRf -iRf -iRf -iRf -iRf -iRf -iRf -iRf -iRf -bfk -bfk -bfk -bfk -hTO -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(138,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -nin -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -vDF -vDF -vDF -qVU -mEn -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -xyE -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -nin -pun -cju -pun -xyE -pun -pun -imC -pun -pun -pun -pun -pun -dBB -dBB -dBB -pun -pun -dBB -bUb -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -vDF -vDF -vDF -hTO -hTO -bfk -bfk -bfk -bfk -bfk -bfk -iRf -iRf -iRf -bfk -bfk -iRf -iRf -iRf -iRf -iRf -iRf -bfk -bfk -bfk -bfk -hTO -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(139,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -vDF -vDF -bvd -mEn -xkl -cKO -mEn -xkl -xkl -xkl -xkl -bFn -nse -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pIZ -pun -icW -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -dBB -dBB -dBB -pun -dBB -dBB -dBB -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -bjO -nGn -vDF -vDF -vDF -hTO -hTO -bfk -bfk -bfk -bfk -bfk -bfk -iRf -iRf -iRf -bfk -bfk -iRf -iRf -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -hTO -hTO -nGn -mmY -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(140,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xyE -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bvd -cKO -mEn -xkl -xkl -xkl -xkl -xkl -mEn -xkl -xkl -hHj -nse -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -icW -pun -bUb -pun -pun -pun -pun -pun -pun -pun -dBB -dBB -dBB -pun -dBB -dBB -dBB -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -tpP -nGn -vDF -vDF -vDF -hTO -hTO -bfk -bfk -bfk -bfk -bfk -bfk -iRf -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -hTO -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(141,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bvd -mEn -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -eAM -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -imC -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -kNs -pun -pun -dBB -kNs -dBB -dBB -dBB -kNs -kNs -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -tpP -nGn -vDF -vDF -vDF -hTO -hTO -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -hTO -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(142,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -nin -xyE -pun -pun -pun -pun -cKO -mEn -xkl -xkl -dJm -xkl -xkl -xkl -xkl -xkl -xkl -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -dBB -kNs -kNs -dBB -dBB -kNs -kNs -kNs -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -rpP -qRU -vDF -vDF -vDF -hTO -hTO -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -hTO -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(143,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -bvd -mEn -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -nse -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -kNs -pun -kNs -kNs -kNs -kNs -kNs -kNs -kNs -kNs -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -qRU -fjb -vvG -vDF -vDF -vDF -hTO -hTO -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -hTO -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(144,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -vDF -vDF -xkl -xkl -cKO -xkl -xkl -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -kNs -kNs -kNs -kNs -kNs -kNs -kNs -kNs -kNs -kNs -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -qRU -uMu -qRU -vDF -vDF -vDF -hTO -hTO -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -bfk -hTO -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(145,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -nse -vjJ -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -kNs -kNs -qYG -nqx -qym -pun -qym -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -kNs -kNs -kNs -kNs -kNs -kNs -kNs -kNs -kNs -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xgt -iZl -vDF -vDF -vDF -vDF -vDF -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(146,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nse -xkl -xkl -hHj -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -kNs -kNs -pun -pun -pun -pun -pun -pun -pun -pun -pun -mEn -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -kNs -kNs -kNs -kNs -kNs -kNs -kNs -nqx -qqw -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -eAM -eAM -vDF -vDF -vDF -vDF -vDF -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -vDF -vDF -vDF -vDF -vDF -hTO -hTO -nGn -mmY -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(147,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -ksW -bsH -pun -qym -raG -bsH -bsH -pun -pun -agi -raG -bUb -fyf -pun -pun -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -imb -hZj -kNs -hZj -qym -kNs -kNs -kmf -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xgt -xgt -mEn -vDF -vDF -vDF -vDF -vDF -vDF -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -hTO -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(148,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -imC -pun -pun -xmk -pun -pun -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xgt -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -qym -kNs -kNs -kNs -kNs -kNs -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -eAM -eAM -vDF -vDF -vDF -vDF -vDF -vDF -hTO -hTO -hTO -hTO -hTO -hTO -hTO -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -hTO -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(149,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xgt -mEn -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nse -vDF -vDF -vDF -vDF -vDF -kmf -qTN -xkl -xkl -xkl -qTN -qTN -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -kvd -tKC -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(150,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -nin -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -qVU -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -imC -vnP -vnP -vnP -vnP -vnP -gCG -vnP -vnP -pun -pun -aVA -qYo -qym -imC -pun -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uWs -xXN -vDF -vDF -vDF -vDF -kmf -qVU -xkl -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -tOE -ojW -tOE -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(151,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -qVU -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -bUb -vnP -wUL -wzI -szJ -ikg -pCd -cpd -vnP -pun -pun -pun -xmk -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nse -bFn -quk -xkl -xkl -xkl -xkl -mEn -mEn -mEn -xkl -qVU -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -mEn -mEn -vDF -vDF -vDF -vDF -xkl -xkl -xkl -xkl -xkl -xkl -bFn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -tOE -ggJ -tOE -tOE -tOE -wqG -tKC -tMR -tMR -vDF -vDF -vDF -vDF -vDF -uif -qRU -uwH -bke -qRU -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -vZL -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(152,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -vnP -jTB -jmh -ikg -gom -jmh -bjY -vnP -pun -pun -pun -qYo -pun -pun -imC -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -mEn -mEn -vjJ -hLq -fSZ -qCv -uWs -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -bFn -xgt -vDF -vDF -vDF -vDF -vDF -vDF -xkl -mEn -mEn -xkl -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -bFn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -tOE -vcx -whg -whg -ggJ -cNS -rjQ -eym -aSS -dYg -cMe -vDF -vDF -tfQ -xAr -onD -onD -fjb -vvG -ybf -tpP -vZL -vZL -vZL -vZL -meq -vZL -vZL -vZL -vZL -vZL -vZL -mmY -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(153,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -bUb -pun -vnP -mGU -ikg -pCd -pCd -jmh -mWM -vnP -pun -pun -pun -pun -pun -pun -pun -kNs -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nse -xgt -eDk -qCv -xXN -eAM -mEn -mEn -mEn -mEn -xkl -xkl -xkl -xkl -quk -xgt -vDF -vDF -vDF -vDF -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xgt -xgt -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -tOE -eSa -vcx -vcx -tOE -tOE -tOE -tKC -wqG -tMR -ghF -beY -vDF -xgt -hAS -xAr -psI -qRU -nGn -qRU -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -nGn -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(154,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -vnP -szJ -kOY -oyB -rVw -pCd -hnu -vnP -pun -pun -qZA -pun -pun -qym -pun -pun -pfs -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vjJ -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -tOE -whg -vcx -nTf -tOE -vDF -vDF -vDF -vDF -vDF -vJp -ghF -dZP -beY -ghF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(155,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -vnP -vnP -vnP -vnP -vnP -xNQ -vnP -vnP -pun -pun -pun -pun -pun -qym -hEz -pun -toP -lgS -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nGn -qxn -nGn -nGn -nGn -vDF -vDF -vDF -vDF -ghF -tic -gwC -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(156,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -cKO -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -vnP -oPh -cQg -ocj -kxY -jmh -wNk -vnP -pDp -pun -pun -qym -pun -pun -pun -kNs -ayK -xdV -gwC -gwC -eAM -taE -kyF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xgt -lgS -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xkl -xkl -mEn -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -vDF -vDF -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -twy -vvG -nZe -bmw -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(157,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -imC -pun -pun -pun -pun -pdB -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -lRa -gpv -rVw -rVw -pCd -jmh -pCd -mRr -vnP -adK -pun -pDp -qYo -pun -pun -aWG -ayK -eOr -vPa -gwC -xuF -xgt -taE -iGk -tzG -vDF -vDF -vDF -vDF -vDF -vDF -iGk -iGk -iGk -gwC -beY -uYW -xgt -mEn -mEn -iGk -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -lgS -mEn -mEn -mEn -xkl -xkl -xkl -xkl -lgS -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nJK -nyG -ghF -gwC -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(158,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -soJ -pun -kKm -mJs -dkH -dkH -xnd -wwy -pCd -nwu -pun -pun -pun -hRh -pun -pun -pun -pun -tMW -xdV -vdz -dzD -mEn -beY -ghF -mEn -vDF -vDF -vDF -vDF -vDF -vDF -xkl -iGk -beY -kyF -beY -iNW -mEn -qCv -iGk -iGk -xkl -bFn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xBm -xBm -vDF -vDF -vDF -xBm -iGk -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(159,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pdB -pun -pun -pun -pun -pun -pun -nin -pun -pun -pun -icW -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -gMg -mcZ -ikg -rVw -rVw -pCd -arB -vnP -pun -pun -pun -pun -pun -pfs -pun -qym -pfs -qqw -kNs -gwC -eAM -xkl -xkl -xkl -lgS -bFn -xkl -xkl -xkl -lgS -xkl -xkl -vyE -gwC -xBm -iNe -iGk -vyE -xkl -xkl -iGk -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -lgS -xkl -xkl -xkl -quk -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -mEn -mEn -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xgt -kyF -vDF -vDF -gwC -xBm -vDF -xBm -xBm -pWV -xkl -eAM -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(160,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -aVA -pun -pun -pun -pun -bUb -pun -pun -pun -pun -qqw -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -vnP -xph -tcL -tcL -kHE -pJX -pAj -vnP -pun -pun -pun -pun -pun -pun -pun -kNs -mNZ -mNZ -knc -beY -mEn -iGk -xkl -iGk -xkl -xkl -xkl -xkl -xkl -xkl -iGk -mEn -xkl -xgt -lgS -qVU -qpU -xkl -iGk -mEn -xkl -xkl -xkl -xkl -xkl -lgS -xkl -xkl -xkl -xkl -lgS -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -mEn -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -xkl -xkl -xkl -xkl -xkl -xkl -vDF -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -iNe -iGk -iGk -xBm -fag -gwC -eAM -gwC -gwC -iGk -xkl -xkl -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(161,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -imC -imC -pun -pun -bUb -pun -pun -pun -pun -bUb -pun -pun -pun -qqw -qqw -qqw -qqw -qqw -pun -pun -pun -pun -pun -pun -imC -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -vnP -vnP -vnP -gpv -gpv -vnP -vnP -vnP -pDp -pun -qym -qym -pun -ayK -cLC -kNs -pKR -xdV -toP -gwC -quk -xkl -xkl -xkl -nJK -vDF -vDF -vDF -xkl -xkl -xkl -iGk -xkl -quk -vDF -vDF -vDF -qVU -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -qVU -vDF -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -hHj -lgS -xkl -xkl -xkl -xkl -xkl -xkl -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xgt -gwC -iGk -vyE -cpS -kyF -mEn -xgt -gwC -vyE -xXN -mEn -xkl -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(162,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -aVA -pun -pun -pun -pun -pun -pun -pun -qqw -qqw -qqw -qqw -qqw -qqw -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -gRd -pun -pun -ayK -xdV -mNZ -laC -xtX -xBm -iGk -gwC -xkl -xkl -vDF -vDF -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -vDF -vDF -qVU -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -qVU -vDF -vDF -vDF -mEn -xkl -mEn -mEn -xkl -syv -quk -bFn -vDF -vDF -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nse -xkl -xkl -xBm -iGk -gwC -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -xkl -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(163,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -aVA -pun -pun -pun -pun -pun -pun -imC -pun -qqw -qqw -qqw -qqw -qqw -qqw -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -qym -pun -pun -pun -bUb -pun -pun -pun -pun -pun -qYo -pun -pfs -ayK -oLM -xdV -xdV -gwC -kOM -vyE -iGk -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -xkl -xkl -iGk -xkl -qVU -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -qCv -mEn -mEn -xkl -xkl -xkl -xkl -xkl -xkl -bFn -dUy -bFn -vDF -vDF -mEn -qCv -mEn -xkl -xkl -xkl -lgS -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -xkl -vDF -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xgt -mEn -xkl -gwC -xkl -vDF -vDF -vDF -vDF -nse -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -mEn -nse -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(164,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -nin -pun -pun -pun -pun -cju -pun -imC -pun -pun -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -qym -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bFn -xkl -xkl -xkl -lgS -xkl -xkl -xkl -xkl -xkl -xkl -quk -tzG -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -lgS -bpn -xkl -xkl -xkl -quk -xkl -xkl -xkl -bFn -lgS -xkl -qVU -qVU -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -xkl -vDF -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -xgt -xkl -vDF -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -mEn -mEn -hHj -xkl -xkl -vDF -vDF -xgt -sLn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(165,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -imC -imC -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -qym -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xkl -xkl -bFn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -quk -xkl -xkl -xkl -xkl -lgS -sHU -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xkl -xkl -xkl -xkl -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -mEn -xkl -xkl -xkl -xkl -xkl -xkl -gwC -xgt -vDF -vDF -vDF -vDF -vDF -xBm -gwC -xBm -xBm -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -xXN -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(166,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pdB -pun -imC -pun -pun -pun -imC -pdB -pun -bUb -pun -aVA -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -lgS -mEn -qym -pun -pun -qym -qym -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bFn -eDk -xkl -xkl -xkl -hHj -bFn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -mEn -xkl -xkl -qVU -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -iGk -gwC -kyF -xBm -xBm -kyF -gwC -ghF -xkl -mEn -mEn -xkl -xkl -xkl -mEn -mEn -mEn -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -xkl -xkl -mEn -mEn -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(167,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -nin -imC -pun -pun -pun -pun -pun -nin -pun -pun -pun -pun -pun -pun -pun -pun -icW -pdB -pun -pun -xyE -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -mEn -mEn -mEn -eAM -mEn -mEn -qym -qym -qym -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -mEn -qCv -nse -hRS -qCv -syv -xkl -xXN -bFn -dUy -wXm -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -mEn -mEn -xkl -xkl -vDF -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -gwC -iGk -gwC -gwC -taE -gwC -xBm -iGk -xkl -xkl -xkl -xkl -xkl -xkl -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(168,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -pun -bUb -icW -pun -pun -pun -nin -bUb -pun -aVA -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xBm -nBY -gwC -gwC -mEn -lgS -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nse -mEn -mEn -mEn -xkl -mEn -mEn -nse -quk -qVU -bpn -quk -xkl -hHj -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -gwC -gwC -mEn -mEn -xBm -gwC -kyF -taE -iGk -iGk -nJK -iGk -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(169,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -icW -pun -pun -pun -pun -pun -pun -pun -xyE -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -aVA -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vmf -mqa -iGk -nJK -nJK -xgt -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xgt -xkl -qVU -gEd -bhQ -qCv -xkl -xkl -mEn -xkl -xkl -qVU -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -iGk -iGk -iGk -bpn -gwC -gwC -kyF -xBm -gwC -gwC -mEn -qVU -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -mEn -mEn -mEn -mEn -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(170,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -nin -pun -bUb -pun -pun -pun -pun -pun -nin -pdB -pun -imC -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -iGk -iGk -wCM -iGk -nJK -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -mEn -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -mEn -xBm -xgt -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nse -eAM -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(171,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -bUb -imC -pun -imC -pun -pun -vFQ -icW -imC -pun -pun -pun -bUb -pun -pun -pun -pun -pun -imC -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -iGk -iGk -vyE -vyE -wLL -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vjJ -vjJ -nse -qCv -mEn -hRS -eAM -mEn -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(172,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -imC -imC -aVA -pun -pun -imC -xyE -pun -imC -pun -pun -pun -cju -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -iGk -rKf -rKf -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -nse -xkl -xkl -xkl -xkl -mEn -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(173,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -nin -imC -pun -pun -pun -pun -pun -pun -pdB -bUb -pun -pun -pdB -imC -pun -nin -pun -pun -pun -pun -pun -pun -pun -pun -icW -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bFc -lgS -vDF -iGk -iGk -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xkl -xkl -xkl -xkl -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(174,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -aVA -pun -pun -pun -pun -pun -pun -pun -nin -pun -pun -wnY -xyE -pun -pun -lJR -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -oxR -oxR -iGk -iGk -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bFn -xkl -xkl -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(175,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -imC -pun -pun -aVA -pun -pun -pun -pun -pun -pun -pun -nin -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -iGk -wCM -oxR -iGk -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(176,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -ubt -pun -pun -pun -pun -pun -lBV -imC -pun -pun -bUb -pun -pun -pun -pun -nin -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -xBm -gwC -pGv -iGk -iGk -oxR -bFc -dZP -beY -lgS -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(177,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -aVA -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -dBB -bvd -bvd -nse -lgS -oxR -vDF -nse -vDF -lgS -gwC -xkl -xkl -xkl -bFc -oxR -eAM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(178,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -pun -nin -pdB -pun -pun -pun -pun -pun -pun -pun -pun -imC -pun -dBB -bvd -mEn -mEn -mEn -gwC -oxR -vDF -bmw -ghF -iGk -xkl -xkl -xkl -qrz -hHj -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(179,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -imC -pun -imC -pun -icW -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bvd -mEn -gwC -mqa -iGk -gwC -hHj -xkl -xkl -xkl -xkl -xkl -eAM -xgt -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(180,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -lBV -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -dBB -dBB -dBB -dBB -vDF -bvd -mEn -mEn -iGk -iGk -iGk -xkl -xkl -xkl -xkl -nyG -gwC -vyE -lgS -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(181,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -cju -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -qym -mEn -mEn -mEn -mEn -xkl -xkl -xkl -xkl -xkl -xkl -tzG -xgt -nse -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(182,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -mEn -mEn -mEn -nse -oxR -iGk -iGk -xkl -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(183,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -dBB -dBB -dBB -bvd -kMr -mEn -mEn -lgS -xgt -xgt -vjJ -qVU -lgS -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -dCq -szB -"} -(184,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -exB -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -dCq -szB -"} -(185,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(186,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(187,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -nin -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(188,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(189,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(190,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -nin -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(191,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -nin -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(192,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bUb -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(193,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pdB -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(194,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(195,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -cju -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -nin -pun -xyE -pun -icW -pun -pun -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(196,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -xyE -pun -pun -pun -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(197,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bZP -bZP -pun -pun -pun -pun -pun -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(198,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -cVw -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(199,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -euC -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(200,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -pun -pun -pun -pun -eCr -pun -bZP -lbS -iDF -iDF -iDF -gBO -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(201,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -pun -pun -pun -bZP -bZP -bZP -bZP -lbS -iDF -iDF -iDF -gBO -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(202,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -pun -pun -pun -bZP -bZP -bZP -bZP -bZP -bZP -lbS -iDF -iDF -iDF -gBO -bZP -bZP -bZP -bZP -bZP -bZP -bZP -aON -aON -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(203,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -lbS -iDF -iDF -iDF -gBO -bZP -bZP -bZP -bZP -bZP -bZP -bZP -aON -aON -aON -aON -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(204,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -cVw -bZP -bZP -bZP -bZP -bZP -bZP -lbS -iDF -iDF -iDF -gBO -bZP -bZP -bZP -bZP -bZP -bZP -aON -aON -aON -aON -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(205,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -euC -bGu -iDF -iDF -iDF -gBO -bZP -bZP -bZP -bZP -bZP -bZP -bZP -aON -aON -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(206,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bGu -iDF -iDF -iDF -bYR -bZP -bZP -bZP -bZP -bZP -bZP -bZP -aON -aON -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(207,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -aON -aON -aON -aON -aON -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(208,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -aON -aON -aON -aON -aON -aON -aON -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(209,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -aON -aON -bZP -aON -aON -aON -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(210,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -aON -aON -aON -aON -aON -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(211,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -aON -bZP -bZP -bZP -bZP -bZP -bZP -bZP -aON -aON -aON -aON -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(212,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -aON -aON -aON -aON -aON -bZP -bZP -bZP -bZP -euC -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(213,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -aON -aON -aON -aON -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -aON -aON -aON -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(214,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -aON -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(215,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(216,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(217,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -euC -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(218,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(219,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(220,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(221,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(222,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(223,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(224,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(225,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(226,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(227,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(228,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -bZP -vDF -vDF -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(229,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -bZP -bZP -bZP -bZP -vDF -vDF -vDF -vDF -vDF -bZP -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(230,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -bZP -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(231,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(232,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(233,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(234,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(235,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(236,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(237,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(238,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(239,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(240,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(241,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(242,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(243,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(244,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(245,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(246,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -vDF -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(247,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(248,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(249,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(250,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(251,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(252,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(253,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(254,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(255,1,1) = {" -szB -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -uoM -szB -"} -(256,1,1) = {" -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -szB -"} diff --git a/maps/southern_sun/submaps/gateway/snowfield_ch.dm b/maps/southern_sun/submaps/gateway/snowfield_ch.dm deleted file mode 100644 index 25669602ce..0000000000 --- a/maps/southern_sun/submaps/gateway/snowfield_ch.dm +++ /dev/null @@ -1,694 +0,0 @@ -// -- Areas -- // - -/area/awaymission/snowfield - icon_state = "blank" - base_turf = /turf/simulated/floor/outdoors/dirt - -/area/awaymission/snowfield/cavern - icon_state = "blue" - ambience = list('sound/ambience/ambimine.ogg', 'sound/ambience/song_game.ogg', 'sound/music/LRRMenu.ogg', 'sound/music/LRRTrack3.ogg', \ - 'sound/ambience/cave/AmbCaveDebriA.ogg', 'sound/ambience/cave/AmbCaveDebriB.ogg', 'sound/ambience/cave/AmbCaveDebriC.ogg', \ - 'sound/ambience/cave/AmbCaveDebriD.ogg') - always_unpowered = 1 - -/area/awaymission/snowfield/outside - icon_state = "green" - always_unpowered = 1 - dynamic_lighting = 1 - outdoors = 1 - -/area/awaymission/snowfield/checkpoint - name = "Checkpoint" - icon_state = "checkpoint1" - requires_power = 0 - -/area/awaymission/snowfield/solarshack - name = "Solarshack" - icon_state = "panelsA" - -/area/awaymission/snowfield/checkpointunpowered // Limiting powered area - name = "Checkpoint" - icon_state = "darkred" - always_unpowered = 1 - power_equip = 0 - power_environ = 0 - power_light = 0 - -/area/awaymission/snowfield/emergency_pathway/EP_powered - name = "Emergency Pathway" - icon_state = "green" - requires_power = 0 - -/area/awaymission/snowfield/emergency_pathway/EP_unpowered - name = "Emergency Pathway" - icon_state = "darkred" - always_unpowered = 1 - power_equip = 0 - power_environ = 0 - power_light = 0 - -/area/awaymission/snowfield/restricted - icon_state = "red" - -// Base Area - -/area/awaymission/snowfield/hallway/checkpointhallway - name = "Gate Hallway" - icon_state = "entry_1" - requires_power = 0 - -/area/awaymission/snowfield/hallway/northhallway - name = "Northern Hallway" - icon_state = "north" - -/area/awaymission/snowfield/hallway/centerhallway - name = "Center Hallway" - icon_state = "center" - -/area/awaymission/snowfield/hallway/southhallway - name = "Southern Hallway" - icon_state = "south" - -/area/awaymission/snowfield/hallway/dormhallway - name = "Dorm Hallway" - icon_state = "hallC" - -/area/awaymission/snowfield/hallway/commandhallway - name = "Command Hallway" - icon_state = "hallC1" - -/area/awaymission/snowfield/hallway/frontgate_substation - name = "Front Gate Substation" - icon_state = "substation" - -/area/awaymission/snowfield/hallway/commandhallway_substation - name = "Command Substation" - icon_state = "substation" - -// Security - -/area/awaymission/snowfield/security/frontgate - name = "Front Gate Checkpoint" - icon_state = "checkpoint1" - requires_power = 0 - power_equip = 1 // Powering entry - -/area/awaymission/snowfield/security/seconddesk - name = "Second Gate Checkpoint" - icon_state = "checkpoint2" - requires_power = 0 - power_equip = 1 // Powering entry - -/area/awaymission/snowfield/security/lobby - name = "Security Lobby" - icon_state = "security" - -/area/awaymission/snowfield/security/security_restroom - name = "Security Restroom" - icon_state = "security_bathroom" - -/area/awaymission/snowfield/security/hallway - name = "Security Hallway" - icon_state = "red" - -/area/awaymission/snowfield/security/detective - name = "Detective's Office" - icon_state = "detective" - -/area/awaymission/snowfield/security/evidence_storage - name = "Evidence Storage" - icon_state = "evidence_storage" - -/area/awaymission/snowfield/security/security_lockerroom - name = "Security Locker Room" - icon_state = "security_lockerroom" - -/area/awaymission/snowfield/security/interrogation - name = "Security Interrogation Room" - icon_state = "interrogation" - -/area/awaymission/snowfield/security/observatory - name = "Security Observation Room" - icon_state = "observatory" - -/area/awaymission/snowfield/security/warden - name = "Warden's Office" - icon_state = "Warden" - -/area/awaymission/snowfield/security/armory_entrance - name = "Armory Entrance" - icon_state = "armory_entrance" - -/area/awaymission/snowfield/security/armory - name = "Armory" - icon_state = "armory" - requires_power = 0 - -/area/awaymission/snowfield/security/heavy_armory - name = "Heavy Armory" - icon_state = "riot_control" - requires_power = 0 - -/area/awaymission/snowfield/security/hallway2 - name = "Security South Hallway" - icon_state = "red" - -/area/awaymission/snowfield/security/firingrange - name = "Firing Range" - icon_state = "firingrange" - -/area/awaymission/snowfield/security/security_cell_hallway - name = "Cell Hallway" - icon_state = "security_cell_hallway" - -/area/awaymission/snowfield/security/security_cell - name = "Security Cell" - icon_state = "brig" - -// Medical - -/area/awaymission/snowfield/medical/front_desk - name = "Medical Front Desk" - icon_state = "medbay" - -/area/awaymission/snowfield/medical/hallway - name = "Medical Hallway" - icon_state = "medbay4" - -/area/awaymission/snowfield/medical/patients - name = "Medical Patients Room" - icon_state = "patients" - -/area/awaymission/snowfield/medical/medical_restroom - name = "Medical Restroom" - icon_state = "restrooms" - -/area/awaymission/snowfield/medical/patient_restroom - name = "Medical Patient Restroom" - icon_state = "restrooms" - -/area/awaymission/snowfield/medical/medical_locker - name = "Medical Locker Room" - icon_state = "medbay3" - -/area/awaymission/snowfield/medical/chemistry - name = "Chemistry" - icon_state = "chem" - -/area/awaymission/snowfield/medical/surgery - name = "Surgery" - icon_state = "surgery" - -/area/awaymission/snowfield/medical/medbay_breakroom - name = "Medical Breakroom" - icon_state = "medbay_breakroom" - -/area/awaymission/snowfield/medical/staff_room - name = "Medical Staffroom" - icon_state = "medbay2" - -/area/awaymission/snowfield/medical/storage_room - name = "Medical Storage Room" - icon_state = "medbay_primary_storage" - -/area/awaymission/snowfield/medical/morgue - name = "Morgue" - icon_state = "morgue" - -//Engineering - -/area/awaymission/snowfield/engineering/hallway - name = "Engineering Hallway" - icon_state = "yellow" - -/area/awaymission/snowfield/engineering/tech_storage - name = "Engineering Tech Storage" - icon_state = "storage" - -/area/awaymission/snowfield/engineering/secure_tech_storage - name = "Engineering Secure Tech Storage" - icon_state = "auxstorage" - -/area/awaymission/snowfield/engineering/primary_storage - name = "Engineering Primary Storage" - icon_state = "primarystorage" - -/area/awaymission/snowfield/engineering/staff_room - name = "Engineering Staffroom" - icon_state = "engineering_break" - -/area/awaymission/snowfield/engineering/locker_room - name = "Engineering Locker Room" - icon_state = "engineering_locker" - -/area/awaymission/snowfield/engineering/restroom - name = "Engineering Restroom" - icon_state = "restrooms" - -/area/awaymission/snowfield/engineering/monitor_room - name = "Engine Monitor Room" - icon_state = "engine_monitoring" - -/area/awaymission/snowfield/engineering/engine_checkpoint - name = "Engine Checkpoint" - icon_state = "security" - -/area/awaymission/snowfield/engineering/engine - name = "Engine Room" - icon_state = "engine" - -//Public/Service area - -/area/awaymission/snowfield/service/janitor - name = "Custodial Closet" - icon_state = "janitor" - -/area/awaymission/snowfield/service/fridge - name = "Fridge" - icon_state = "fridge" - -/area/awaymission/snowfield/service/kitchen - name = "Kitchen" - icon_state = "kitchen" - -/area/awaymission/snowfield/service/hydro - name = "Hydroponics" - icon_state = "hydro" - -/area/awaymission/snowfield/service/cafeteria - name = "Canteen" - icon_state = "cafeteria" - -/area/awaymission/snowfield/service/publicstaff - name = "Public Staffroom" - icon_state = "recreation_area" - -/area/awaymission/snowfield/public/charger - name = "Tool Storage" - icon_state = "yellow" - -/area/awaymission/snowfield/public/toolstorage1 - name = "Tool Storage 2" - icon_state = "emergencystorage" - -/area/awaymission/snowfield/public/toolstroage2 - name = "Command Toolstorage" - icon_state = "emergencystorage" - -/area/awaymission/snowfield/public/publicrestroom - name = "Public Restroom" - icon_state = "restrooms" - -/area/awaymission/snowfield/public/cafeteria_restroom - name = "Canteen Restroom" - icon_state = "restrooms" - -//dorms - -/area/awaymission/snowfield/dorms/dorm1 - name = "Room 1" - -/area/awaymission/snowfield/dorms/dorm2 - name = "Room 2" - -/area/awaymission/snowfield/dorms/dorm3 - name = "Room 3" - -/area/awaymission/snowfield/dorms/dorm4 - name = "Room 4" - -/area/awaymission/snowfield/dorms/dorm5 - name = "Room 5" - -/area/awaymission/snowfield/dorms/dorm6 - name = "Room 6" - -/area/awaymission/snowfield/dorms/dorm7 - name = "Room 7" - -/area/awaymission/snowfield/dorms/dorm8 - name = "Room 8" - -/area/awaymission/snowfield/dorms/dorm9 - name = "Room 9" - -/area/awaymission/snowfield/dorms/dorm10 - name = "Room 10" - -/area/awaymission/snowfield/dorms/dorm11 - name = "Room 11" - -/area/awaymission/snowfield/dorms/dorm12 - name = "Room 12" - -/area/awaymission/snowfield/dorms/dorm13 - name = "Room 13" - -/area/awaymission/snowfield/dorms/dorm14 - name = "Room 14" - -/area/awaymission/snowfield/dorms/dorm15 - name = "Room 15" - -/area/awaymission/snowfield/dorms/dorm16 - name = "Room 16" - -/area/awaymission/snowfield/dorms/panicroom - name = "Panic Room" - icon_state = "purple" - requires_power = 0 - -//commandroom - -/area/awaymission/snowfield/command/server - name = "Server/Blackbox Room" - icon_state = "dark128" - requires_power = 0 - -/area/awaymission/snowfield/command/bridge - name = "Main Control/Monitoring Room" - icon_state = "bridge" - -/area/awaymission/snowfield/command/observatory_path - name = "Observation Hallway" - icon_state = "entry_4" - -/area/awaymission/snowfield/command/observatory - name = "Observation Room" - icon_state = "research" - requires_power = 0 - -/area/awaymission/snowfield/command/testroom - name = "Testing Chamber" - icon_state = "thunder" - requires_power = 0 - -/area/awaymission/snowfield/command/commandarmory - name = "Emergency Armory" - icon_state = "armory" - -/area/awaymission/snowfield/command/monitorroom - name = "BSA Monitoring Room" - icon_state = "entry_1" - -/area/awaymission/snowfield/command/sub_chamber - name = "BSA Sub-Chamber" - icon_state = "entry_2" - -/area/awaymission/snowfield/command/gateway - name = "BSA-Gateway Chamber" - icon_state = "teleporter" - -/area/awaymission/snowfield/command/bsa - name = "BSA Chamber" - icon_state = "security_sub" - requires_power = 0 - -//Limited function - -/area/awaymission/snowfield/base // Limiting powered areas - icon_state = "away" - requires_power = 0 - power_equip = 1 - power_environ = 1 - power_light = 1 - -/area/awaymission/snowfield/powerless // Limiting powered areas - icon_state = "darkred" - always_unpowered = 1 - power_equip = 0 - power_environ = 0 - power_light = 0 - -// -- Items -- // - -// For fake solar power. -/obj/machinery/power/fractal_reactor/fluff/smes - name = "power storage unit" - desc = "A high-capacity superconducting magnetic energy storage (SMES) unit. The controls are locked." - icon_state = "smes" - -//For fake engine -/obj/machinery/power/rtg/fake_reactor - name = "Nuclear Reactor" - desc = "PTTO-3, an industrial all-in-one nuclear power plant by Neo-Chernobyl GmbH. The controls are locked." - power_gen = 150000 - icon_state = "potatoon" - -/obj/effect/landmark/away - name = "awaystart" - -//Gateway mission exclusive special loot - -/obj/item/gun/projectile/automatic/serdy/sr25c - name = "SR-25 Carbine" - icon_state="m4" - desc = "Heavily modified, this gun uses 7.62mm rather than 5.54mm and still has its automated fire mode. Equipped with suppressor, telescopic sight and the red dot sight on its side, it has a capability of handling the CQC and both in long range combat, without making much noises. Multi-dozens of accessories provides the improvement on the recoil, too. An old terran flag stamp and a spec-ops mark on the receiver approves its authentic state. Unmodified, cheep slack-off can be found just about everywhere, but this versions are very hard to come by. Chambered in 7.62x51mm." - description_info = "This is a ballistic weapon. To fire the weapon, ensure your intent is *not* set to 'help', have your gun mode set to 'fire', then click where you want to fire. To reload, click the weapon in your hand to unload (if needed), then add the appropriate ammo. To use the scope, use the appropriate verb in the object tab. The description will tell you what caliber you need." - caliber = "7.62mm" - magazine_type = /obj/item/ammo_magazine/m762 - allowed_magazines = list(/obj/item/ammo_magazine/m762, /obj/item/ammo_magazine/m762/ext) - projectile_type = /obj/item/projectile/bullet/rifle/a762 - firemodes = list( - list(mode_name="semiauto", burst=1, fire_delay=0, move_delay=null, burst_accuracy=null, dispersion=null), - list(mode_name="3-round bursts", burst=3, fire_delay=null, move_delay=4, burst_accuracy=list(0,-5,-5), dispersion=list(0.0, 0.2, 0.4)) - ) - auto_loading_type = CLOSED_BOLT | LOCK_OPEN_EMPTY | LOCK_SLAPPABLE - load_method = MAGAZINE - muzzle_velocity = 880 - w_class = ITEMSIZE_HUGE - actions_types = list(/datum/action/item_action/use_scope) - accuracy = 10 - scoped_accuracy = 20 - one_handed_penalty = 65 - silenced = 1 - recoil = 0.5 - -/obj/item/gun/projectile/automatic/serdy/sr25c/ui_action_click() - scope() - -/obj/item/gun/projectile/automatic/serdy/sr25c/verb/scope() - set category = "Object" - set name = "Use Scope" - set popup_menu = 1 - - toggle_scope(2.0) - -/obj/item/gun/launcher/scopedrocket - name = "scoped rocket launcher" - desc = "Upon looking into the scope, you see the word on its center: MAGGOT." - icon_state = "rocket" - item_state = "rocket" - w_class = ITEMSIZE_HUGE //CHOMP Edit. - actions_types = list(/datum/action/item_action/use_scope) - scoped_accuracy = 20 - one_handed_penalty = 150 //Good luck shooting one handed. - throw_speed = 2 - throw_range = 10 - force = 5.0 - slot_flags = 0 - origin_tech = list(TECH_COMBAT = 8, TECH_MATERIAL = 5) - fire_sound = 'sound/weapons/rpg.ogg' - - release_force = 15 - throw_distance = 30 - var/max_rockets = 1 - var/list/rockets = new/list() - -/obj/item/gun/launcher/scopedrocket/examine(mob/user) - . = ..() - if(get_dist(user, src) <= 2) - . += span_blue("[rockets.len] / [max_rockets] rockets.") - -/obj/item/gun/launcher/scopedrocket/attackby(obj/item/I as obj, mob/user as mob) - if(istype(I, /obj/item/ammo_casing/rocket)) - if(rockets.len < max_rockets) - user.drop_item() - I.loc = src - rockets += I - to_chat(user, span_blue("You put the rocket in [src].")) - to_chat(user, span_blue("[rockets.len] / [max_rockets] rockets.")) - else - to_chat(usr, span_red("[src] cannot hold more rockets.")) - -/obj/item/gun/launcher/scopedrocket/consume_next_projectile() - if(rockets.len) - var/obj/item/ammo_casing/rocket/I = rockets[1] - rockets -= I - return new I.projectile_type(src) - return null - -/obj/item/gun/launcher/scopedrocket/handle_post_fire(mob/user, atom/target) - message_admins("[key_name_admin(user)] fired a rocket from a rocket launcher ([src.name]) at [target].") - log_game("[key_name_admin(user)] used a rocket launcher ([src.name]) at [target].") - ..() - -/obj/item/gun/launcher/scopedrocket/ui_action_click() - scope() - -/obj/item/gun/launcher/scopedrocket/verb/scope() - set category = "Object" - set name = "Use Scope" - set popup_menu = 1 - - toggle_scope(2.0) - -//Lore Notes - -/obj/item/paper/awaygate/snowfield/evacuation_order - name = "Order Directives" - info = "
" + span_bold(span_giganteus("HIGH PRIORITY ORDERS")) + "


ORDERS \ - TO " + span_bold("ALL CLASS 1, 2, 3 PERSONNEL") + "
Date of Order : " + span_bold("April 10, 1979") + ".



\ - Directives : " + span_bold("Evacuation preparation from Facility.
All related personnel, EXCLUDING 3M personnel \ - must head to Chelyabinsk until 2100, April 10 and await for further directives.
Base MUST \ - maintain necessary items only.") + "

Further directives and details shall be guided by " + span_bold("Class 4 \ - or above personnel.") - -/obj/item/paper/awaygate/snowfield/evacuation_order2 - name = "Mid Command Order Directives" - info = "
" + span_bold(span_giganteus("HIGH PRIORITY ORDERS")) + "


ORDERS \ - TO " + span_bold("ALL CLASS 4 PERSONNEL") + "
Date of Order : " + span_bold("April 10, 1979") + ".



\ - Directives : " + span_bold("Evacuation preparation from Facility.
All class 1,2,3 personnel must head to \ - Chelyabinsk and empty the facility, EXCLUDING Medical team. (3M)
Base MUST maintain necessary items only \ - to operate 'Tunguska' and supplies for the crews who remains. 'Tunguska' Activation time at 0300, April 11, \ - 1979.") + "

Further directives and details shall be guided by " + span_bold("Class 6 or above personnel.") + "" - -/obj/item/paper/awaygate/snowfield/evacuation_order3 - name = "High Command Order Directives" - info = "
" + span_bold(span_giganteus("HIGH PRIORITY ORDERS")) + "


ORDERS \ - TO " + span_bold("ALL CLASS 5, 6 PERSONNEL") + "
Date of Order : " + span_bold("April 10, 1979") + ".



\ - Directives : " + span_bold("Evacuation preparation from Facility.
All Class 1, 2, 3 personnel must head to \ - Chelyabinsk and empty the facility, excluding Class 3M, guided by Class 4 personnel.
All Class 5, 6 must \ - check the stability of 'Tunguska' before the operation. Activation time at 0300, April 11, 1979.") - -/obj/item/paper/awaygate/snowfield/activation_order - name = "High Command Order Directives" - info = "
" + span_bold(span_giganteus("HIGH PRIORITY ORDERS")) + "


ORDERS \ - TO " + span_bold("ALL CLASS 5, 6 PERSONNEL") + "
Date of Order : " + span_bold("April 11, 1979") + ".



\ - Directives : " + span_bold("Activation of 'Tunguska.'
All class 5, 6 personnel must have a full search by \ - Class 4 before entering the operation room.
Any personnel who is not on the operations area shall \ - be terminated on the spot. Notify to nearest Class 4 and 6 personnel if necessary.") + "

Further directives \ - and details shall be guided by " + span_bold("Class 6 Personnel.") - -/obj/item/paper/awaygate/snowfield/interrogation - name = "Interrogation note" - info = "(Recording Start)
(00:00) This is Yemelyan Fedoro, the Warden of Sector 108.
(00:09) Time of the \ - record...
(00:14) Twenty one-Fourty.
(00:17) Three months of interrogation is finally coming up with \ - a progress.
(00:20) The lizard finally speaks, telling us the key points of the blueprint.
(00:25) \ - There are missing important componant followed by the blueprint,
(00:32) however, we may manage to get enough \ - from the asteroid back from 1908.
(00:39) Exactly what the research team needs, whatever they say. Something \ - they won't be able to get in their lifetime, what they say.
(00:52) Vlad is just using the lizard as their \ - Punching bag, now.
(00:59) Gosh, their screams are worser than my grandma. Who would know an overgrown lizard \ - would sound like that..
(01:07) Best to finish up, now. We can get more informations from'em. Yemelyan Fedoro, out." - -/obj/item/paper/awaygate/snowfield/final_note - name = "Final note" - info = "Gosh. We have opened up the hell's gate...
Everyone is screaming and yelling into mid-air like a mania, \ - and this... Whispering voice!
" + span_bold("It's in my head!") + "

Peoples who managed to escape after the initial lockdown \ - are now trying their damnnest to break back INSIDE the base!

I tried my best to ignore the voice and cornered \ - in this security outpost, but I'm not sure how long I will maintain sane, unlike those peoples out there...\ - The voice is now " + span_bold("yelling, SCREAMING") + " at me as the time passes by!

I can't take this anymore longer, \ - it is madness... Pure madness...
I blew up the fastest way to the command center, so these maniacs won't be able to \ - get to the command center, where the voice is echoing... But they have guns now...
I'm not sure how long the blockade \ - will last with that much firepower and manpower... And their pure will of madness...

I don't want to be one of them..." - -/obj/item/paper/awaygate/snowfield/note // Little easter egg for appreciation. - desc = "A gift card with a heart on the cover. Hey, there's a scribble on its back..." - name = "letter" - icon_state = "greetingcard_heart" - info = "
" + span_bold(span_giganteus("Congradulations!")) + "


You have just found a paper that \ - was sitting at out of nowhere.
Let there be a celebration to you, finding this tiny paper. But leaving this empty \ - will be awkward, so, some few honorable mentions shall be here.

" + span_bold("Maker of the Map:") + " H.K

" + span_bold("Huge \ - Emotional Support (And my life changer):") + " BlackMajor, Salty S

" + span_bold("Supporters in the most troubled times") + ": \ - BlackMajor, Ender, Jack, Lone/Einarr, Mango, Nickner, Salty S, Serdy, Skitz, Verkister

" + span_bold("Helpers on the map work:") + " \ - BlackMajor, Blitzkrieg, Dan 'Clanker' Neposh, Kassc, Mango, Rykka Stormheart, Salty S, Serdy, Verkister

\ - " + span_bold("Map recovery helper (Curse you github, almost deleting the project):") + " BlackMajor, Helmian, Jennard.L, Kashtan
\ - " + span_bold("Also, not to forget - Huge thank you to") + ":You, who is reading this note.


Let this be my 25c to remember." - -/obj/item/paper/awaygate/snowfield/diary - desc = "A part of a ripped paper, likely from the book." - name = "diary, 18 of January, 1971" - info = "Dear diary.

This will be the last diary I write in this little outpost.

Militsiya \ - has came today, to this middle-out-of-nowhere outpost,
telling us to leave at once.
Thankfully, \ - cave is almost dry of coal, and Dmitry wasn't drunk for once just by the time militsiya came. \ - Thank goodness.
What the militsiya says it is from the government's orders. We had to leave \ - sometime soon and find another coal vein, anyways.

Anatoly, two days ago, said he saw the army \ - truck passing by few times around the mountains, so I think this is one of it.

Best to \ - take our stuffs tomorrow. And some vodka bottles I have hidden.



" + span_bold("BLAST, \ - IT'S EMPTY! DIMITRY, THAT SCUMBAG - HOW DID HE EVEN KNEW THE BOTTLE'S THERE?!") - -/obj/item/card/id/gateway/snowfield // Basic access - name = "Class 1 ID" - desc = "An ID card with a basic access for the base. There's a mark of a \ - red star in the corner with hammer and sickle inside." - initial_sprite_stack = list("base-stamp", "top-generic", "stamp-s", "clip") - -/obj/item/card/id/gateway/snowfield/class2 // Service - name = "Class 2 ID" - desc = "An ID card with a service work access for the base.There's a mark of \ - a red star in the corner with hammer and sickle inside." - initial_sprite_stack = list("base-stamp","top-green", "stamp-s", "clip") - access = list(26, 28) - -/obj/item/card/id/gateway/snowfield/class3M // Medical - name = "Class 3M ID" - desc = "An ID card with an advanced medical support access for the base. \ - There's a mark of a red star in the corner with hammer and sickle inside." - initial_sprite_stack = list("base-stamp","top-medblu", "stamp-s", "pips-medblu", "clip") - access = list(5, 33, 45) - -/obj/item/card/id/gateway/snowfield/class3E // Engineering Part time worker - name = "Class 3E ID" - desc = "An ID card with a basic engineering support access for the base. \ - There's a mark of a red star in the corner with hammer and sickle inside." - initial_sprite_stack = list("base-stamp", "top-orange", "stamp-s", "clip") - access = list (10) - -/obj/item/card/id/gateway/snowfield/class4 // Security - name = "Class 4 ID" - desc = "An ID card with a security access for the base. There's a mark of a \ - red star in the corner with hammer and sickle inside." - initial_sprite_stack = list("base-stamp", "top-red", "stamp-s", "clip") - access = list (1, 2) - -/obj/item/card/id/gateway/snowfield/class4D // Detective - name = "Class 4D ID" - desc = "An ID card with a forensic security access for the base. There's a mark \ - of a red star in the corner with hammer and sickle inside." - initial_sprite_stack = list("base-stamp", "top-red", "pips-brown", "stamp-s", "clip") - access = list (1, 2, 4) - -/obj/item/card/id/gateway/snowfield/class5R // Researcher - name = "Class 5R ID" - desc = "An ID card with a research access for the base. There's a mark of a red \ - star in the corner with hammer and sickle inside." - initial_sprite_stack = list("base-stamp", "top-purple", "stamp-s", "clip") - access = list (47, 61) - -/obj/item/card/id/gateway/snowfield/class5E // Engineering - name = "Class 5E ID" - desc = "An ID card with an advanced engineering access for the base. There's a mark \ - of a red star in the corner with hammer and sickle inside." - initial_sprite_stack = list("base-stamp-dark", "top-orange", "stripe-white", "stamp-s", "clip") - access = list (10, 11) - -/obj/item/card/id/gateway/snowfield/class6S // Head of Security-Warden - name = "Class 6S ID" - desc = "An ID card with a full access towards the security of the base. There's a \ - mark of a red star in the corner with hammer and sickle inside." - initial_sprite_stack = list("base-stamp-dark", "top-red", "stripe-gold", "stamp-s", "clip") - access = list (1, 2, 3, 4) - -/obj/item/card/id/gateway/snowfield/class6R // Research Director - name = "Class 6R ID" - desc = "An ID card with a full access towards the secrets of the base. There's a mark of a red \ - star in the corner with hammer and sickle inside." - initial_sprite_stack = list("base-stamp-dark", "top-purple", "stripe-gold", "stamp-s", "clip") - access = list (30, 47, 61) - -/obj/item/card/id/gateway/snowfield/class7 // Facility Director - name = "Class 7" - desc = "An ID card with a full access through out the base. There's a mark of a red \ - star in the corner with hammer and sickle inside." - initial_sprite_stack = list("base-stamp-dark", "top-blue", "pips-gold", "stripe-gold", "stamp-s", "clip") - access = list (1, 2, 3, 4, 5, 10, 11, 20, 26, 28, 30, 33, 45, 47, 53, 56, 61) diff --git a/maps/southern_sun/submaps/sc_belt_miner.dmm b/maps/southern_sun/submaps/sc_belt_miner.dmm deleted file mode 100644 index cd7e5cef3a..0000000000 --- a/maps/southern_sun/submaps/sc_belt_miner.dmm +++ /dev/null @@ -1,68181 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/simulated/mineral/vacuum, -/area/mine/unexplored/belt_miner) -"ab" = ( -/turf/space, -/area/mine/unexplored/belt_miner) -"ac" = ( -/turf/space, -/area/shuttle/beltferry/belt) -"ad" = ( -/obj/item/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"ae" = ( -/obj/structure/ore_box, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"af" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"ag" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"ah" = ( -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"ai" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/airless, -/area/mine/explored/belt_miner) -"aj" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"ak" = ( -/obj/machinery/power/solar, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"al" = ( -/obj/machinery/power/solar, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"am" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"an" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"ao" = ( -/turf/simulated/wall, -/area/outpost/mining_main/belt_outpost/airlock) -"ap" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 2252; - id_tag = "belt_airlock_vent" - }, -/obj/structure/grille, -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/belt_outpost/airlock) -"aq" = ( -/turf/simulated/mineral/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"ar" = ( -/turf/simulated/wall, -/area/outpost/mining_main/belt_outpost) -"as" = ( -/turf/simulated/mineral/vacuum, -/area/mine/explored/belt_miner) -"at" = ( -/turf/simulated/wall, -/area/outpost/mining_main/belt_outpost/dorms) -"au" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"av" = ( -/obj/structure/bed/double, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"aw" = ( -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"ax" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"ay" = ( -/turf/simulated/wall, -/area/outpost/mining_main/belt_outpost/atmos) -"az" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 6; - pixel_y = 32 - }, -/obj/machinery/button/remote/airlock{ - id = "belt_dorm1"; - name = "Room 1 Door Control"; - pixel_y = 25; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"aA" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/belt_outpost/airlock) -"aB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/atmos) -"aC" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/atmos) -"aD" = ( -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"aE" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/atmos) -"aF" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/atmos) -"aG" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/atmos) -"aH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance/cargo{ - name = "Belt Outpost Atmospherics"; - req_one_access = list(48) - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/atmos) -"aI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/atmos) -"aJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/atmos) -"aK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"aL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/atmos) -"aM" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - icon_state = "map"; - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/atmos) -"aN" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/atmos) -"aO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 9 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/atmos) -"aP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"aQ" = ( -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/belt_outpost/airlock) -"aR" = ( -/obj/structure/sign/vacuum, -/turf/simulated/wall, -/area/outpost/mining_main/belt_outpost/airlock) -"aS" = ( -/obj/machinery/airlock_sensor{ - frequency = 2252; - id_tag = "belt_miner_airlock_sensor"; - pixel_x = 25; - pixel_y = -10 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - cycle_to_external_air = 1; - frequency = 2252; - id_tag = "belt_miner_airlock"; - pixel_x = 25; - tag_airpump = "belt_airlock_vent"; - tag_chamber_sensor = "belt_miner_airlock_sensor"; - tag_exterior_door = "belt_outpost_airlock_outer"; - tag_exterior_sensor = "belt_miner_exterior_sensor"; - tag_interior_door = "belt_outpost_airlock_inner" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/belt_outpost/airlock) -"aT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/apc{ - dir = 8; - locked = 0; - name = "west bump"; - operating = 1; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/belt_outpost/airlock) -"aU" = ( -/obj/structure/grille, -/obj/structure/railing, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 2252; - id_tag = "belt_airlock_vent" - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/belt_outpost/airlock) -"aV" = ( -/obj/machinery/door/firedoor/glass/hidden{ - icon_state = "door_open"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"aW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/belt_outpost/airlock) -"aX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 2252; - icon_state = "door_locked"; - id_tag = "belt_outpost_airlock_inner"; - locked = 1; - name = "Belt Mining Outpost Airlock"; - req_one_access = list(48) - }, -/obj/machinery/access_button/airlock_interior{ - frequency = 2252; - master_tag = "belt_miner_airlock"; - pixel_y = -25; - req_one_access = list(48) - }, -/obj/machinery/access_button/airlock_interior{ - frequency = 2252; - master_tag = "belt_miner_airlock"; - pixel_y = 25; - req_one_access = list(48) - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/belt_outpost/airlock) -"aY" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"aZ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/belt_outpost/airlock) -"ba" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"bb" = ( -/turf/simulated/wall, -/area/outpost/mining_main/belt_outpost/substation) -"bc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - icon_state = "map_universal"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/atmos) -"bd" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"be" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"bf" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"bg" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/belt_outpost/airlock) -"bh" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/substation) -"bi" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"bj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/substation) -"bk" = ( -/obj/machinery/power/solar_control, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/substation) -"bl" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 2252; - id_tag = "belt_airlock_vent" - }, -/obj/structure/grille, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/belt_outpost/airlock) -"bm" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"bn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"bo" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"bp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"bq" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/smes/buildable{ - input_level_max = 350000; - output_level_max = 300000; - RCon_tag = "Belt_Mining_Outpost" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/substation) -"br" = ( -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/airlock) -"bs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/belt_outpost/airlock) -"bt" = ( -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"bu" = ( -/obj/machinery/door/firedoor/glass/hidden, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"bv" = ( -/obj/machinery/alarm{ - pixel_y = 25 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"bw" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"bx" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/substation) -"by" = ( -/obj/machinery/door/firedoor/glass/hidden{ - icon_state = "door_open"; - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"bz" = ( -/obj/machinery/power/solar, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"bA" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/substation) -"bB" = ( -/obj/machinery/power/terminal, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/substation) -"bC" = ( -/obj/machinery/power/solar, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"bD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"bE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"bF" = ( -/obj/machinery/door/firedoor/glass/hidden{ - icon_state = "door_open"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"bG" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/substation) -"bH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/alarm{ - alarm_id = "pen_nine"; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"bI" = ( -/obj/item/roller, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/belt_outpost/dorms) -"bJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"bK" = ( -/obj/machinery/door/firedoor/glass/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"bL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"bM" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/machinery/door/firedoor/glass/hidden{ - icon_state = "door_open"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"bN" = ( -/obj/machinery/door/firedoor/glass/hidden{ - icon_state = "door_open"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"bO" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"bP" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"bQ" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"bR" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/light, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"bS" = ( -/obj/machinery/alarm{ - breach_detection = 0; - dir = 8; - icon_state = "alarm0"; - pixel_x = 25; - rcon_setting = 3; - report_danger_level = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"bT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"bU" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"bV" = ( -/obj/machinery/door/airlock/mining{ - frequency = 1480; - id_tag = "beltferry_belt_doors" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"bW" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"bX" = ( -/obj/machinery/alarm{ - breach_detection = 0; - dir = 8; - icon_state = "alarm0"; - pixel_x = 25; - rcon_setting = 3; - report_danger_level = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"bY" = ( -/obj/machinery/vending/fitness, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"bZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"ca" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"cb" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"cc" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/table/woodentable, -/obj/item/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/storage/box/donkpockets, -/obj/item/pizzabox/meat, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"cd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/hidden{ - icon_state = "door_open"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"ce" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/belt_outpost/dorms) -"cf" = ( -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/substation) -"cg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/hidden{ - icon_state = "door_open"; - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"ch" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/hidden{ - icon_state = "door_open"; - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"ci" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; - icon_state = "map" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/belt_outpost/airlock) -"cj" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"ck" = ( -/obj/machinery/sleeper/survival_pod, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/belt_outpost/dorms) -"cl" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/belt_outpost/dorms) -"cn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"co" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cp" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"cq" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 2252; - icon_state = "door_locked"; - id_tag = "belt_outpost_airlock_outer"; - locked = 1; - name = "Belt Mining Outpost Airlock"; - req_one_access = list(48) - }, -/obj/machinery/access_button/airlock_exterior{ - frequency = 2252; - master_tag = "belt_miner_airlock"; - pixel_y = -25; - req_one_access = list(48) - }, -/obj/machinery/access_button/airlock_exterior{ - frequency = 2252; - master_tag = "belt_miner_airlock"; - pixel_y = 25; - req_one_access = list(48) - }, -/obj/machinery/airlock_sensor/airlock_exterior{ - id_tag = "belt_miner_exterior_sensor"; - master_tag = "belt_miner_airlock"; - pixel_y = -35 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/belt_outpost/airlock) -"cr" = ( -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"cs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/belt_outpost/dorms) -"ct" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cu" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28; - pixel_y = -10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"cy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"cz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/airlock/mining{ - name = "Quarters" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost) -"cD" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cE" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/glass, -/obj/random/firstaid, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/belt_outpost/dorms) -"cG" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cL" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/door/airlock/mining{ - id_tag = "belt_dorm2"; - name = "Dorm 2" - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"cN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/hidden{ - icon_state = "door_open"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"cO" = ( -/obj/machinery/door/firedoor/glass/hidden{ - icon_state = "door_open"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"cP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/belt_outpost/dorms) -"cQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/random/medical, -/obj/item/stack/medical/splint, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/bruise_pack, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/belt_outpost/dorms) -"cS" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/substation) -"cU" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"cW" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/machinery/door/firedoor/glass/hidden{ - icon_state = "door_open"; - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/hidden{ - icon_state = "door_open"; - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"cY" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"cZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"da" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"db" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"dc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/airlock/mining{ - id_tag = "belt_dorm1"; - name = "Dorm 1" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"dd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"de" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"df" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor/glass/hidden{ - icon_state = "door_open"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"di" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor/glass/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/door/airlock/mining{ - name = "Break/Medical Room" - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"dn" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"do" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dq" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dr" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"ds" = ( -/obj/machinery/alarm{ - alarm_id = null; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - icon_state = "intact"; - dir = 9 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/atmos) -"du" = ( -/obj/machinery/telecomms/relay/preset/belt_outpost, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/substation) -"dv" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"dw" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"dx" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/sensor, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/substation) -"dy" = ( -/obj/machinery/power/breakerbox/activated, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/substation) -"dz" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/belt_outpost/airlock) -"dA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/cargo{ - name = "Belt Outpost Power and Relay"; - req_one_access = list(48) - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/belt_outpost/substation) -"dB" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"dC" = ( -/turf/space, -/area/mine/explored/belt_miner) -"dD" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall, -/area/outpost/mining_main/belt_outpost/airlock) -"dE" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"dF" = ( -/obj/machinery/power/tracker, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"dG" = ( -/obj/machinery/alarm{ - breach_detection = 0; - dir = 8; - icon_state = "alarm0"; - pixel_x = 25; - rcon_setting = 3; - report_danger_level = 0 - }, -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"dH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"dI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = -25 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/dorms) -"dJ" = ( -/obj/item/radio/intercom{ - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dK" = ( -/turf/simulated/wall, -/area/outpost/mining_main/belt_outpost/tank_storage) -"dL" = ( -/obj/structure/grille, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 2252; - id_tag = "belt_airlock_vent" - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/belt_outpost/airlock) -"dM" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 2; - pixel_y = -28 - }, -/obj/machinery/button/remote/airlock{ - id = "belt_dorm2"; - name = "Room 2 Door Control"; - pixel_x = -10; - pixel_y = -25; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/outpost/mining_main/belt_outpost/dorms) -"dN" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/belt_outpost/airlock) -"dO" = ( -/turf/simulated/mineral/floor/vacuum, -/area/mine/unexplored/belt_miner) -"dP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dQ" = ( -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 2; - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dR" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dS" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dT" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dU" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28; - pixel_y = -10 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/tank_storage) -"dW" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dX" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"dY" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"dZ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"ea" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"eb" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"ec" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/railing, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"ed" = ( -/turf/simulated/wall, -/area/mine/explored/belt_miner) -"ee" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"ef" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"eg" = ( -/obj/effect/step_trigger/teleporter/debrisfield_loop/north, -/obj/effect/step_trigger/teleporter/debrisfield_loop/west, -/turf/space, -/area/mine/explored/belt_miner) -"eh" = ( -/obj/effect/step_trigger/teleporter/debrisfield_loop/north, -/turf/space, -/area/mine/explored/belt_miner) -"ei" = ( -/obj/effect/step_trigger/teleporter/debrisfield_loop/north, -/obj/effect/step_trigger/teleporter/debrisfield_loop/east, -/turf/space, -/area/mine/explored/belt_miner) -"ej" = ( -/obj/effect/step_trigger/teleporter/debrisfield_loop/east, -/turf/space, -/area/mine/explored/belt_miner) -"ek" = ( -/obj/effect/step_trigger/teleporter/debrisfield_loop/west, -/obj/effect/step_trigger/teleporter/debrisfield_loop/south, -/turf/space, -/area/mine/explored/belt_miner) -"el" = ( -/obj/effect/step_trigger/teleporter/debrisfield_loop/west, -/turf/space, -/area/mine/explored/belt_miner) -"em" = ( -/obj/effect/step_trigger/teleporter/debrisfield_loop/south, -/turf/space, -/area/mine/explored/belt_miner) -"en" = ( -/obj/effect/step_trigger/teleporter/debrisfield_loop/east, -/obj/effect/step_trigger/teleporter/debrisfield_loop/south, -/turf/space, -/area/mine/explored/belt_miner) -"eo" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"ep" = ( -/obj/machinery/vending/wallmed1, -/turf/simulated/wall, -/area/outpost/mining_main/belt_outpost/dorms) -"eq" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/white, -/area/outpost/mining_main/belt_outpost/dorms) -"er" = ( -/obj/structure/sign/department/medbay, -/turf/simulated/wall, -/area/outpost/mining_main/belt_outpost/dorms) -"es" = ( -/obj/structure/sign/department/miner_dock, -/turf/simulated/wall, -/area/outpost/mining_main/belt_outpost) -"et" = ( -/obj/structure/sign/department/miner_dock, -/obj/structure/sign/vacuum, -/turf/simulated/wall, -/area/outpost/mining_main/belt_outpost) -"eu" = ( -/obj/structure/sign/department/atmos, -/turf/simulated/wall, -/area/outpost/mining_main/belt_outpost/atmos) -"ev" = ( -/obj/structure/sign/department/eng, -/turf/simulated/wall, -/area/outpost/mining_main/belt_outpost/substation) -"ew" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28; - pixel_y = -10 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"ex" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"ey" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/tank_storage) -"ez" = ( -/obj/machinery/computer/shuttle_control/beltferry, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/tank_storage) -"eA" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/obj/machinery/door/firedoor/glass/hidden{ - icon_state = "door_open"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost/tank_storage) -"eB" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost/tank_storage) -"eC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/tank_storage) -"eD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/tank_storage) -"eE" = ( -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/tank_storage) -"eF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance/cargo{ - name = "Belt Outpost Tank Storage and Console Access"; - req_one_access = list(48) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/tank_storage) -"eG" = ( -/obj/machinery/door/firedoor/glass/hidden{ - icon_state = "door_open"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost/tank_storage) -"eH" = ( -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/tank_storage) -"eI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"eJ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/tank_storage) -"eK" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/door/firedoor/glass/hidden{ - icon_state = "door_open"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost/tank_storage) -"eL" = ( -/obj/structure/sign/department/atmos, -/turf/simulated/wall, -/area/outpost/mining_main/belt_outpost/tank_storage) -"eM" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/steel, -/area/outpost/mining_main/belt_outpost/tank_storage) -"eN" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost/tank_storage) -"eO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"eP" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"eQ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"eR" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/railing, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"eS" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/railing, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"eT" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/railing, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"eU" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/railing, -/turf/simulated/floor/airless, -/area/outpost/mining_main/belt_outpost/solars) -"eV" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1480; - id_tag = "beltferry_beltpost"; - name = "Belter Station Controller"; - pixel_y = -25; - tag_door = "beltferry_belt_doors" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"eW" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/mineral/floor/ignore_mapgen/vacuum, -/area/mine/explored/belt_miner) -"eX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6; - icon_state = "intact" - }, -/obj/machinery/alarm{ - pixel_y = 25 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) -"eY" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/belt_outpost) - -(1,1,1) = {" -eg -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -el -ek -"} -(2,1,1) = {" -eh -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -as -as -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -em -"} -(3,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(4,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(5,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(6,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(7,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(8,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(9,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(10,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(11,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(12,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(13,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(14,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(15,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -dC -em -"} -(16,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -dC -em -"} -(17,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -dC -em -"} -(18,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -dC -em -"} -(19,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -dC -em -"} -(20,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(21,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(22,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(23,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(24,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(25,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(26,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(27,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(28,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(29,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(30,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(31,1,1) = {" -eh -dC -ab -ab -aa -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(32,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(33,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(34,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -ab -ab -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dC -em -"} -(35,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -aa -aa -aa -ab -ab -ab -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dC -em -"} -(36,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -ab -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dC -em -"} -(37,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dC -em -"} -(38,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -ab -ab -ab -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(39,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -ab -ab -ab -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(40,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(41,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -ab -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(42,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(43,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -aa -ab -ab -ab -aa -ab -ab -aa -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(44,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(45,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(46,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(47,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -dO -dO -dO -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(48,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -ab -aa -ab -dO -dO -dO -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(49,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dO -dO -dO -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(50,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -dC -em -"} -(51,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -dC -em -"} -(52,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -ab -ab -aa -aa -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -dC -em -"} -(53,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -dC -em -"} -(54,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -dC -em -"} -(55,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -dC -em -"} -(56,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -dC -em -"} -(57,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(58,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -aa -ab -ab -ab -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -dO -dO -aa -dO -dO -dO -dO -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -dC -em -"} -(59,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -aa -aa -dO -dO -dO -dO -dO -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(60,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -dO -dO -dO -dO -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(61,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -dO -aa -aa -dO -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(62,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -aa -aa -aa -aa -aa -aa -aa -aa -dO -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(63,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(64,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -dO -ab -dO -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -dC -em -"} -(65,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -dC -em -"} -(66,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -dO -dO -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -dC -em -"} -(67,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -dO -dO -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -dC -em -"} -(68,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -dO -dO -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -dC -em -"} -(69,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -aa -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -dC -em -"} -(70,1,1) = {" -eh -dC -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(71,1,1) = {" -eh -dC -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(72,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(73,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(74,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -aa -aa -ab -aa -aa -ab -ab -ab -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(75,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(76,1,1) = {" -eh -dC -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(77,1,1) = {" -eh -dC -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(78,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dC -em -"} -(79,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -dC -em -"} -(80,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -ab -dC -em -"} -(81,1,1) = {" -eh -dC -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(82,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(83,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -dC -em -"} -(84,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(85,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(86,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(87,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(88,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(89,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(90,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -ab -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(91,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -dC -em -"} -(92,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -dC -em -"} -(93,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -dC -em -"} -(94,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -dC -em -"} -(95,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -ab -ab -ab -dC -em -"} -(96,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -dC -em -"} -(97,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(98,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -ab -ab -aa -aa -aa -ab -ab -ab -dC -em -"} -(99,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -ab -ab -ab -dC -em -"} -(100,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -ab -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -ab -ab -ab -dC -em -"} -(101,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -aa -aa -aa -ab -ab -ab -dC -em -"} -(102,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -dC -em -"} -(103,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(104,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(105,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(106,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(107,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(108,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(109,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(110,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ak -ax -bz -ax -bz -ax -bz -ax -bz -ex -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -dO -dO -aa -dO -dO -aa -aa -dO -dO -dO -aa -aa -dO -dO -dO -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(111,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -al -bf -bC -bf -bC -bf -bC -bf -bC -eR -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(112,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -al -bf -bC -bf -bC -bf -bC -bf -bC -eS -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(113,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -dC -af -au -au -au -au -au -au -au -au -at -au -au -au -au -dv -dC -dC -dC -dC -al -bf -bC -bf -bC -bf -bC -bf -bC -eS -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(114,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -dC -ag -av -bd -bQ -at -bY -aw -bI -eq -ck -at -bQ -cb -av -dw -dC -dC -dC -dC -al -bf -bC -bf -bC -bf -bC -bf -bC -eS -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(115,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -dC -ag -aw -bm -bR -at -bW -bZ -ce -cs -cP -at -cY -cZ -aw -dw -dC -dC -dC -dC -am -bi -cr -dB -dF -dY -cr -bi -cr -eT -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(116,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -at -az -bn -bS -at -dG -cc -cm -cF -cR -at -bS -bn -dM -at -aq -as -as -as -an -bw -dn -dE -dH -dZ -ee -ef -ee -eU -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(117,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -at -at -dc -at -at -at -at -dm -ep -er -at -at -cM -at -at -aq -as -as -as -as -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(118,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -as -aq -at -aK -bO -bT -bT -bT -cg -cx -cN -bT -bT -bT -db -dh -at -aq -as -as -as -as -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(119,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -as -aq -at -aP -bP -bU -bX -ca -ch -cy -cO -cV -bX -bU -bP -dI -at -aq -as -as -as -as -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(120,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ar -ar -ar -ar -ar -ar -ar -cC -ar -ar -ar -ar -ar -ar -ar -aq -as -as -as -as -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -dO -dO -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(121,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -aa -ab -ab -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -as -aq -ar -bv -bD -bM -cj -co -cw -cD -cI -cQ -cQ -cW -dd -ds -ar -aq -as -as -as -as -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -dO -ab -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(122,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -ab -ab -aa -ab -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -as -aq -ar -ba -bE -bN -cl -ct -cz -cE -cJ -cK -cK -cX -de -eY -ar -aq -as -as -as -as -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -dO -dO -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(123,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -ab -ab -ab -aa -aa -aa -ab -ab -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ar -aV -bF -ar -ar -dT -dT -ar -dT -dT -ar -ar -df -aV -ar -aq -as -as -as -as -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(124,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ar -aD -bE -dW -dC -dC -dC -dC -dC -dC -dC -dW -dg -aD -ar -aq -aq -aq -aq -aq -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(125,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -aa -ab -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ar -aD -bE -dX -dC -ac -ac -ac -ac -ac -dC -dX -di -eI -dK -dK -dK -dK -dK -aq -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(126,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ar -aD -bE -ar -dC -ac -ac -ac -ac -ac -dC -ar -do -eo -eF -dV -eC -eH -dK -aq -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(127,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ar -ba -bE -es -ar -ac -ac -ac -ac -ac -ar -es -dj -dp -eL -ey -eD -eM -dK -aq -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(128,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -dO -aa -aa -aa -aa -as -aq -ar -be -bE -aD -bV -ac -ac -ac -ac -ac -bV -aD -dg -dq -ar -ez -eE -eJ -dK -aq -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(129,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -dO -aa -aa -aa -aa -as -aq -ar -ad -bE -et -ar -ac -ac -ac -ac -ac -ar -et -dg -dr -ar -eA -eG -eK -dK -aq -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(130,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -dO -dO -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ar -bo -bH -ar -dC -ac -ac -ac -ac -ac -dC -ar -dg -dJ -ar -eB -eB -eB -dK -aq -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -ab -aa -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(131,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -dO -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -as -aq -ar -bp -bJ -dR -dC -ac -ac -ac -ac -ac -dC -dW -dg -ds -ar -eB -eN -eB -dK -aq -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(132,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -dO -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ar -aD -bE -dS -dC -dC -ac -ac -ac -dC -dC -dX -dg -dQ -ar -dK -dK -dK -dK -aq -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(133,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -dO -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ar -aD -ea -ar -dC -dC -dC -dC -dC -dC -dC -ar -dg -eV -ar -aq -aq -aq -aq -aq -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(134,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -ab -aa -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dO -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ar -bu -bK -ar -ar -dU -dU -dU -dU -dU -ar -ar -dk -bu -ar -aq -as -as -as -as -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(135,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ar -ba -bE -bN -cu -dP -cA -cG -cK -cK -ew -cX -dl -eY -ar -aq -as -as -as -as -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(136,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ar -eX -bL -cd -cn -cv -cB -cH -cL -cS -cU -by -da -ds -ar -aq -as -as -as -as -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(137,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -aa -dO -dO -aa -aa -aa -aa -aa -aa -as -aq -ay -aB -aH -eu -ao -ao -ao -aX -br -ao -ao -cf -dA -ev -bb -aq -as -as -as -as -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(138,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -dO -aa -aa -aa -aa -aa -as -aq -ay -aC -aI -aN -ao -ap -aT -aZ -bs -bl -ao -bh -bj -dx -bb -aq -as -as -as -as -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(139,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ay -aE -aJ -aO -ao -aA -aQ -aW -bg -dz -ao -bx -bB -bq -bb -aq -as -as -as -as -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(140,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ay -aF -aL -bc -ao -dN -aQ -aW -bg -dN -ao -bA -bG -dy -bb -aq -as -as -as -as -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -aa -aa -aa -ab -aa -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(141,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ay -aG -aM -dt -ao -aU -aS -ci -bs -dL -ao -bk -cT -du -bb -aq -as -as -as -as -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -aa -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -ab -aa -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(142,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ay -ay -ay -ay -ao -aR -ao -cq -dD -aR -ao -bb -bb -bb -bb -aq -as -as -as -as -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(143,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ed -ae -ae -ae -ae -aY -cp -eO -eP -bt -aq -aq -aq -aq -aq -aq -as -as -as -as -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(144,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ed -ah -ah -ah -ah -ah -bt -bt -eQ -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -eb -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(145,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ed -ae -ae -ae -ai -ah -bt -bt -eW -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ec -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(146,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -ed -ed -ed -ed -ed -ed -bt -bt -bt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(147,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -aq -aq -aq -aq -aq -aq -bt -bt -bt -bt -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(148,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(149,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(150,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(151,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(152,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(153,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(154,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(155,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(156,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -ab -ab -ab -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(157,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(158,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -dO -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -ab -aa -ab -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(159,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -ab -ab -aa -ab -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(160,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(161,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(162,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -aa -aa -dO -dO -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -dO -dO -dO -dO -aa -aa -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(163,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -aa -aa -aa -ab -dO -dO -aa -aa -aa -aa -dO -dO -dO -aa -aa -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -dC -em -"} -(164,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -aa -dO -dO -aa -aa -aa -aa -dO -dO -dO -dO -dO -aa -aa -dO -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(165,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -aa -aa -ab -aa -aa -aa -aa -dO -dO -aa -dO -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -dC -em -"} -(166,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -aa -aa -ab -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(167,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(168,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dC -em -"} -(169,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dC -em -"} -(170,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -ab -ab -aa -ab -ab -ab -aa -aa -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -aa -aa -aa -ab -ab -aa -ab -aa -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dC -em -"} -(171,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dC -em -"} -(172,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -dO -aa -dO -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(173,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -dO -dO -dO -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(174,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -dO -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(175,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(176,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -dO -aa -aa -aa -dO -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(177,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -aa -aa -dO -dO -aa -aa -dO -dO -dO -dO -dO -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -dC -em -"} -(178,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -aa -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -dC -em -"} -(179,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(180,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(181,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -ab -dC -em -"} -(182,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dC -em -"} -(183,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dC -em -"} -(184,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -ab -ab -ab -ab -aa -aa -ab -dC -em -"} -(185,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -dC -em -"} -(186,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -ab -ab -ab -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -dO -ab -ab -ab -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(187,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -aa -aa -dO -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -dO -dO -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -dC -em -"} -(188,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -dO -dO -aa -ab -ab -ab -aa -ab -dO -dO -dO -dO -ab -ab -ab -ab -dO -dO -dO -dO -dO -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -dO -dO -dO -dO -dO -dO -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(189,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -dO -dO -dO -dO -ab -ab -ab -ab -ab -dO -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(190,1,1) = {" -eh -dC -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -dO -ab -ab -ab -ab -aa -dO -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -dO -dO -dO -dO -dO -dO -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(191,1,1) = {" -eh -dC -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -dC -em -"} -(192,1,1) = {" -eh -dC -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -ab -ab -ab -aa -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(193,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -dO -aa -dO -aa -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -aa -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -aa -ab -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(194,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -ab -ab -aa -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(195,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(196,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(197,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -ab -ab -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(198,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(199,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(200,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(201,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(202,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -dC -em -"} -(203,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -dO -dO -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(204,1,1) = {" -eh -dC -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -dO -dO -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -dC -em -"} -(205,1,1) = {" -eh -dC -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -dO -dO -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -dC -em -"} -(206,1,1) = {" -eh -dC -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -dO -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -dC -em -"} -(207,1,1) = {" -eh -dC -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -dO -dO -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(208,1,1) = {" -eh -dC -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -dO -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(209,1,1) = {" -eh -dC -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(210,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(211,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(212,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -dO -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(213,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -dO -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(214,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -dC -em -"} -(215,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -dO -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -dC -em -"} -(216,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -dO -dO -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -dC -em -"} -(217,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -dO -aa -ab -ab -ab -ab -ab -ab -ab -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(218,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -dO -dO -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -ab -ab -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -ab -ab -dC -em -"} -(219,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -dO -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(220,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -dO -ab -ab -ab -ab -ab -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -dC -em -"} -(221,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -dC -em -"} -(222,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -dC -em -"} -(223,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -dC -em -"} -(224,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -ab -ab -ab -ab -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -dC -em -"} -(225,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dC -em -"} -(226,1,1) = {" -eh -dC -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dC -em -"} -(227,1,1) = {" -eh -dC -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dC -em -"} -(228,1,1) = {" -eh -dC -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(229,1,1) = {" -eh -dC -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(230,1,1) = {" -eh -dC -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(231,1,1) = {" -eh -dC -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(232,1,1) = {" -eh -dC -ab -aa -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dC -em -"} -(233,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dC -em -"} -(234,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dC -em -"} -(235,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -dC -em -"} -(236,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -dO -dO -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -dC -em -"} -(237,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -dC -em -"} -(238,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -dC -em -"} -(239,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -dC -em -"} -(240,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -ab -ab -ab -ab -ab -dC -em -"} -(241,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -ab -ab -ab -ab -ab -dC -em -"} -(242,1,1) = {" -eh -dC -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -dO -aa -aa -aa -dO -dO -aa -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -dC -em -"} -(243,1,1) = {" -eh -dC -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -ab -ab -dO -dO -dO -dO -dO -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -dC -em -"} -(244,1,1) = {" -eh -dC -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -dO -dO -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -dC -em -"} -(245,1,1) = {" -eh -dC -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -dO -dO -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(246,1,1) = {" -eh -dC -ab -ab -ab -aa -ab -ab -ab -ab -aa -aa -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -dO -dO -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(247,1,1) = {" -eh -dC -ab -ab -ab -aa -ab -ab -ab -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -dO -dO -dO -dO -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(248,1,1) = {" -eh -dC -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -ab -ab -ab -ab -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(249,1,1) = {" -eh -dC -ab -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(250,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(251,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(252,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(253,1,1) = {" -eh -dC -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dC -em -"} -(254,1,1) = {" -eh -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -dC -em -"} -(255,1,1) = {" -ei -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -ej -en -"} diff --git a/maps/southern_sun/turfs/outdoors.dm b/maps/southern_sun/turfs/outdoors.dm deleted file mode 100644 index 90b961c3b3..0000000000 --- a/maps/southern_sun/turfs/outdoors.dm +++ /dev/null @@ -1,222 +0,0 @@ -// Sif Planetside stuff -#define O2SIF 0.181 -#define N2SIF 0.819 - -#define MOLES_CELLSIF 114.50978 - -#define MOLES_O2SIF (MOLES_CELLSIF * O2SIF) // O2 value on Sif(18%) -#define MOLES_N2SIF (MOLES_CELLSIF * N2SIF) // N2 value on Sif(82%) - -#define TEMPERATURE_SIF 243.15 // Roughly -30C / -22F -#define TEMPERATURE_ALTSIF 225.15 - - -/turf/simulated/floor/outdoors/mud/sif/planetuse - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/floor/outdoors/rocks/sif/planetuse - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/floor/tiled/sif/planetuse - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - outdoors = OUTDOORS_YES - -/turf/simulated/floor/tiled/steel/sif/planetuse - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - outdoors = OUTDOORS_YES - -/turf/simulated/floor/plating/sif/planetuse - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - outdoors = OUTDOORS_YES - -/turf/simulated/floor/outdoors/snow/sif/planetuse - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/floor/outdoors/grass/sif/planetuse - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/floor/outdoors/grass/sif/forest/planetuse - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/floor/outdoors/dirt/sif/planetuse - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/mineral/sif - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/mineral/ignore_mapgen/sif - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/mineral/floor/sif - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/mineral/floor/ignore_mapgen/sif - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/floor/outdoors/mud/sif/planetuse - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/open/sif //CHOMP Edit now I'm adding shit here now too. Skylands - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_ALTSIF - -// PoI compatability, to stop active edges. -// In hindsight it would've been better to do this first instead of making a billion /sif subtypes above, -// but maybe we can transition to this instead now and over time get rid of the /sif subtypes. -// The downside is if someone wants to use this in normal/vaccum they'll need to make a new subtype, but since the typical use case has changed, this might be acceptable. - -/turf/simulated/mineral - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/floor/outdoors - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/floor/water - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/shuttle/floor/alienplating/external - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/shuttle/floor/voidcraft/external - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/shuttle/floor/voidcraft/external/dark - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/shuttle/floor/voidcraft/external/light - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/floor/plating/external - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/floor/tiled/external - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_SIF - -/turf/simulated/sky - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_ALTSIF -/turf/simulated/floor/tiled/asteroid_steel //CHOMP Edit now I'm adding shit here now too. Abandoned temple. - oxygen = MOLES_O2SIF - nitrogen = MOLES_N2SIF - temperature = TEMPERATURE_ALTSIF - -// Space mineral tiles are now not the default, so they get demoted to subtype status. - -/turf/simulated/mineral/vacuum - oxygen = 0 - nitrogen = 0 - temperature = TCMB - -/turf/simulated/mineral/ignore_mapgen/vacuum - oxygen = 0 - nitrogen = 0 - temperature = TCMB - -/turf/simulated/mineral/floor/vacuum - oxygen = 0 - nitrogen = 0 - temperature = TCMB - -/turf/simulated/mineral/floor/ignore_mapgen/vacuum - oxygen = 0 - nitrogen = 0 - temperature = TCMB - -// Step trigger to fall down to planet Sif -/obj/effect/step_trigger/teleporter/planetary_fall/sif/find_planet() - planet = planet_sif - -//CHOMPedit: Changes to sif/planetuse snow to make it work properly as it does on Polaris, it was broken by YW edits. -/turf/simulated/floor/outdoors/snow/sif/planetuse - name = "snow" - icon_state = "snow" - edge_blending_priority = 6 - movement_cost = 2 - initial_flooring = /decl/flooring/snow - turf_layers = list( - /turf/simulated/floor/outdoors/rocks, - /turf/simulated/floor/outdoors/dirt - ) - -/turf/simulated/floor/outdoors/snow/sif/planetuse/Entered(atom/A) - if(isliving(A)) - var/mob/living/L = A - if(L.hovering) // Flying things shouldn't make footprints. - return ..() - var/mdir = "[A.dir]" - crossed_dirs[mdir] = 1 - update_icon() - . = ..() - -/turf/simulated/floor/outdoors/snow/sif/planetuse/update_icon() - ..() - for(var/d in crossed_dirs) - add_overlay(image(icon = 'icons/turf/outdoors.dmi', icon_state = "snow_footprints", dir = text2num(d))) - -/turf/simulated/floor/outdoors/snow/sif/planetuse/attackby(var/obj/item/W, var/mob/user) - if(istype(W, /obj/item/shovel)) - to_chat(user, "You begin to remove \the [src] with your [W].") - if(do_after(user, 4 SECONDS * W.toolspeed)) - to_chat(user, "\The [src] has been dug up, and now lies in a pile nearby.") - new /obj/item/stack/material/snow(src) - demote() - else - to_chat(user, "You decide to not finish removing \the [src].") - else - ..() - -/turf/simulated/floor/outdoors/snow/sif/planetuse/attack_hand(mob/user as mob) - visible_message("[user] starts scooping up some snow.", "You start scooping up some snow.") - if(do_after(user, 1 SECOND)) - var/obj/S = new /obj/item/stack/material/snow(user.loc) - user.put_in_hands(S) - visible_message("[user] scoops up a pile of snow.", "You scoop up a pile of snow.") - return diff --git a/modular_chomp/maps/soluna_nexus/overmap/sectors_sn.dm b/modular_chomp/maps/soluna_nexus/overmap/sectors_sn.dm new file mode 100644 index 0000000000..51b85861b7 --- /dev/null +++ b/modular_chomp/maps/soluna_nexus/overmap/sectors_sn.dm @@ -0,0 +1,86 @@ +/obj/effect/overmap/visitable/sector/Southern_Cross + name = "Soluna Nexus" + icon = 'modular_chomp/icons/obj/overmap.dmi' + icon_state = "southerncross" + desc = "Soluna Nexus station, orbiting Sif." + scanner_desc = @{"[i]Registration[/i]: NLS Soluna Nexus +[i]Class[/i]: Installation +[i]Transponder[/i]: Transmitting (NT), NanoTrasen IFF +[b]Notice[/b]: NanoTrasen communications station, authorized personnel only"} + base = 1 + in_space = 1 + start_x = 10 + start_y = 10 + known = 1 // lets Sectors appear on shuttle navigation for easy finding. + + extra_z_levels = list(Z_LEVEL_TRANSIT, Z_LEVEL_MISC,Z_LEVEL_SURFACE, Z_LEVEL_SURFACE_MINE, Z_LEVEL_SURFACE_WILD) //This should allow for comms to reach people from the station. Basically this defines all the areas of Southern Cross and the Sif local system on the overmap. + // "Z_LEVEL_SURFACE_SKYLANDS, " //removed due to lack of use + var/mob_announce_cooldown = 0 + + + initial_generic_waypoints = list( + "d1_aux_a", + "d1_aux_b", + "d1_aux_c", + "d1_aux_d", + "d1_near_ne", + "d1_near_nw", + "d1_near_se", + "d1_near_sw", + "d2_w1_a", + "d2_w1_c", + "d2_w1_e", + "d2_w2_e", + "d2_w3_a", + "d2_w3_c", + "d2_w3_e", + "hangar_2", + "d2_near_ne", + "d2_near_nw", + "d2_near_se", + "d2_near_sw", + "d3_near_w", + "d3_near_se", + "baby_mammoth_dock", + "ursula_dock", + "stargazer_dock", + "needle_dock", + "echidna_dock" + ) + +/obj/effect/overmap/visitable/sector/Southern_Cross/get_space_zlevels() //These are the primary levels that our space station resides in. This also indicates what levels astronauts can drift into. + return list( + Z_LEVEL_STATION_ONE, + Z_LEVEL_STATION_TWO, + Z_LEVEL_STATION_THREE, + Z_LEVEL_MISC) + +/obj/effect/overmap/visitable/sector/Southern_Cross/Crossed(var/atom/movable/AM) + . = ..() + announce_atc(AM,going = FALSE) + +/obj/effect/overmap/visitable/sector/Southern_Cross/Uncrossed(var/atom/movable/AM) + . = ..() + announce_atc(AM,going = TRUE) + +/obj/effect/overmap/visitable/sector/Southern_Cross/proc/announce_atc(var/atom/movable/AM, var/going = FALSE) + if(istype(AM, /obj/effect/overmap/visitable/ship/simplemob)) + if(world.time < mob_announce_cooldown) + return + else + mob_announce_cooldown = world.time + 5 MINUTES + var/message = "Sensor contact for vessel '[AM.name]' has [going ? "left" : "entered"] ATC control area." + //For landables, we need to see if their shuttle is cloaked + if(istype(AM, /obj/effect/overmap/visitable/ship/landable)) + var/obj/effect/overmap/visitable/ship/landable/SL = AM //Phew + var/datum/shuttle/autodock/multi/shuttle = SSshuttles.shuttles[SL.shuttle] + if(!istype(shuttle) || !shuttle.cloaked) //Not a multishuttle (the only kind that can cloak) or not cloaked + atc.msg(message) + + //For ships, it's safe to assume they're big enough to not be sneaky + else if(istype(AM, /obj/effect/overmap/visitable/ship)) + atc.msg(message) + +/obj/effect/overmap/visitable/planet/Sif/Initialize() + . = ..() + docking_codes = null diff --git a/maps/southern_sun/southern_cross-1.dmm b/modular_chomp/maps/soluna_nexus/soluna_nexus-1.dmm similarity index 83% rename from maps/southern_sun/southern_cross-1.dmm rename to modular_chomp/maps/soluna_nexus/soluna_nexus-1.dmm index 3c186bb7e0..4229f9044e 100644 --- a/maps/southern_sun/southern_cross-1.dmm +++ b/modular_chomp/maps/soluna_nexus/soluna_nexus-1.dmm @@ -8,7 +8,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "aac" = ( /obj/machinery/telecomms/server/presets/security, /obj/effect/catwalk_plated/dark, @@ -17,7 +17,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "aad" = ( /obj/structure/cable/white{ d1 = 1; @@ -25,7 +25,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "aae" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -40,17 +40,17 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "aaf" = ( /obj/structure/lattice, /turf/space, /area/space) "aag" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "aaj" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "aal" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4; @@ -60,10 +60,10 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "aan" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) "aao" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -78,10 +78,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "aap" = ( /turf/space/internal_edge/bottomright, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "aas" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4 @@ -103,7 +103,7 @@ dir = 9 }, /turf/simulated/shuttle/floor/voidcraft/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "aau" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -120,7 +120,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "aav" = ( /obj/structure/shuttle/engine/heater, /obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ @@ -136,7 +136,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "aaz" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -165,7 +165,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "aaC" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/visible{ @@ -178,7 +178,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "aaD" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -187,7 +187,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "aaF" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -207,13 +207,13 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "aaM" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "aaU" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "aaX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -230,19 +230,19 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "aaY" = ( /obj/effect/floor_decal/corner/white{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "abe" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "abh" = ( /obj/machinery/light{ dir = 1; @@ -256,15 +256,15 @@ pixel_y = 24 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "abi" = ( /obj/effect/floor_decal/industrial/loading, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "abm" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "abn" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/floor_decal/industrial/outline/yellow, @@ -272,7 +272,7 @@ pixel_y = 22 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "abo" = ( /obj/structure/window/titanium{ dir = 4 @@ -287,11 +287,13 @@ /obj/item/seeds/glowshroom{ icon_state = "seed" }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "abs" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "abt" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -308,7 +310,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "abx" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -335,18 +337,18 @@ /area/shuttle/ursula) "abF" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "abT" = ( /obj/structure/girder, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "abY" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "acd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -358,7 +360,7 @@ req_one_access = list(50) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "acg" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -369,7 +371,7 @@ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "aci" = ( /obj/structure/janitorialcart{ dir = 4 @@ -381,7 +383,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "acj" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -393,7 +395,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "ack" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/steeldecal/steel_decals9, @@ -407,11 +409,11 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "acn" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "aco" = ( /obj/effect/floor_decal/industrial/stand_clear, /obj/structure/railing/grey{ @@ -421,14 +423,14 @@ dir = 2 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "acp" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 6 }, /obj/machinery/meter, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "acs" = ( /obj/effect/floor_decal/industrial/stand_clear/blue{ dir = 1 @@ -450,7 +452,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "act" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -467,7 +469,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "acu" = ( /obj/machinery/computer/telecomms/monitor{ dir = 4; @@ -483,7 +485,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "acv" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -492,12 +494,12 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "acx" = ( /obj/machinery/suit_storage_unit/mining, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "acy" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -506,7 +508,7 @@ /obj/random/cash, /obj/random/toolbox, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1) +/area/maintenance/Deck1_Security_PortChamber1) "acD" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -520,7 +522,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "acE" = ( /obj/machinery/power/apc{ dir = 8; @@ -542,7 +544,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "acF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -563,7 +565,7 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "acK" = ( /obj/machinery/firealarm{ dir = 8; @@ -584,7 +586,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "acL" = ( /obj/structure/cable{ d1 = 4; @@ -592,7 +594,7 @@ icon_state = "4-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "acN" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/loading/blue, @@ -604,7 +606,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "acP" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -613,11 +615,11 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "acR" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "acW" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, @@ -625,10 +627,10 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "acY" = ( /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "ada" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -640,7 +642,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "add" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/mask/gas{ @@ -669,12 +671,12 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "ade" = ( /obj/structure/table/standard, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "adk" = ( /obj/machinery/atmospheric_field_generator/perma/underdoors{ color = "Yellow" @@ -685,20 +687,20 @@ name = "Primary Docking Gate" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "adl" = ( /obj/structure/closet/malf/suits, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "adm" = ( /obj/structure/railing/grey{ dir = 1 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "adn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 6 @@ -710,12 +712,12 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "adt" = ( /obj/structure/table/rack, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "adB" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -727,7 +729,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "adC" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -735,7 +737,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "adI" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -743,12 +745,12 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "adJ" = ( /obj/random/trash_pile, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "adN" = ( /obj/machinery/atmospheric_field_generator/perma/underdoors{ color = "Yellow" @@ -766,17 +768,17 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "adO" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/security, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "adP" = ( /obj/structure/bed/chair/bay, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "adQ" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -796,11 +798,11 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "adR" = ( /obj/structure/sign/warning/docking_area, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "adS" = ( /obj/machinery/door/airlock/multi_tile/metal/mait{ id_tag = "echidna_hatch"; @@ -813,12 +815,12 @@ /area/shuttle/echidna) "adT" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Harbor_Substation) +/area/maintenance/Harbor_Substation) "adV" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "adW" = ( /obj/machinery/turretid/stun{ check_access = 0; @@ -836,16 +838,16 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "adX" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "adY" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "adZ" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -864,7 +866,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "aed" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port{ frequency = 1380; @@ -876,13 +878,13 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "ael" = ( /obj/structure/table/standard, /obj/item/storage/box/beakers, /obj/machinery/reagentgrinder, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "aem" = ( /obj/machinery/computer/cryopod/gateway{ pixel_x = -32 @@ -891,7 +893,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "aep" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -907,13 +909,13 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "aer" = ( /obj/effect/floor_decal/road/center{ dir = 4 }, /turf/simulated/floor/grass2/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "aes" = ( /obj/structure/bed/chair/bay/shuttle, /obj/structure/closet/walllocker/emerglocker/north, @@ -927,15 +929,15 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "aew" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "aex" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "aez" = ( /obj/structure/closet/l3closet/janitor, /obj/effect/floor_decal/borderfloorblack{ @@ -944,12 +946,13 @@ /obj/effect/floor_decal/corner/mauve/border{ dir = 5 }, +/obj/random/soap, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "aeA" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "aeN" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/visible{ @@ -962,14 +965,19 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "aeY" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /obj/structure/table/reinforced, +/obj/machinery/door/blast/shutters{ + layer = 3.5; + name = "Market Stall Shutters"; + id = "sc-GCMarket2" + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "aeZ" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -978,7 +986,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "afa" = ( /obj/structure/cable/green{ d1 = 4; @@ -996,11 +1004,11 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "afd" = ( /obj/structure/table/glass, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "afl" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -1009,7 +1017,7 @@ /area/shuttle/escape_pod2/station) "afm" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1) +/area/maintenance/Deck1_Security_PortChamber1) "afo" = ( /turf/space, /area/shuttle/arrival/station) @@ -1030,7 +1038,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "afw" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ frequency = 1380; @@ -1040,12 +1048,12 @@ req_one_access = list(13) }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "afz" = ( /obj/structure/closet/crate/nanotrasen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "afV" = ( /obj/machinery/light{ dir = 1; @@ -1053,7 +1061,7 @@ }, /obj/structure/table/bench/sifwooden/padded, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "afX" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -1073,7 +1081,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "afY" = ( /obj/structure/cable/green{ d1 = 4; @@ -1090,7 +1098,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "aga" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -1108,7 +1116,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "agb" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -1121,7 +1129,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "age" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = 28; @@ -1129,10 +1137,10 @@ }, /obj/structure/table/glass, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "agf" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "agi" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -1141,7 +1149,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "agk" = ( /obj/machinery/light{ dir = 8 @@ -1164,19 +1172,19 @@ /area/shuttle/escape_pod3/station) "agl" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "agq" = ( /obj/machinery/pipedispenser, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "agr" = ( /obj/effect/floor_decal/industrial/stand_clear, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "agv" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "agw" = ( /obj/structure/cable{ d1 = 2; @@ -1193,7 +1201,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "agy" = ( /obj/machinery/turretid/lethal{ ailock = 1; @@ -1205,22 +1213,22 @@ check_records = 0; req_one_access = list(17,11,24) }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "agD" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -1235,7 +1243,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "agE" = ( /obj/effect/shuttle_landmark{ base_area = /area/hangar/two; @@ -1245,14 +1253,14 @@ docking_controller = "sc-D1_H4" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "agF" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "agG" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "agI" = ( /obj/machinery/iv_drip, /obj/item/reagent_containers/blood/prelabeled/OMinus{ @@ -1288,7 +1296,7 @@ dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "agL" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -1305,7 +1313,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "agR" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -1317,7 +1325,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "agT" = ( /obj/machinery/conveyor_switch/oneway{ id = "SC-CBcargobay1" @@ -1325,12 +1333,12 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central4, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "agZ" = ( /obj/structure/closet, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "aha" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -1339,7 +1347,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "ahc" = ( /obj/machinery/camera/network/security{ dir = 10; @@ -1349,7 +1357,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "ahh" = ( /obj/structure/table/marble, /obj/structure/disposalpipe/segment{ @@ -1357,10 +1365,10 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "ahi" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "ahk" = ( /obj/structure/sign/securearea{ icon_state = "radiation_small"; @@ -1378,14 +1386,15 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "aho" = ( -/obj/machinery/light{ +/obj/machinery/light/spot{ dir = 1; - name = "1N-lighting fixture" + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "ahp" = ( /obj/structure/cable/green{ d1 = 1; @@ -1407,7 +1416,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "ahq" = ( /obj/structure/table/marble, /obj/structure/sink/countertop{ @@ -1421,7 +1430,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "aht" = ( /obj/machinery/autolathe, /obj/effect/floor_decal/milspec/color/purple, @@ -1432,7 +1441,7 @@ dir = 4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "ahC" = ( /obj/machinery/portable_atmospherics/canister/empty/phoron, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -1447,12 +1456,12 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "ahD" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "ahF" = ( /obj/effect/floor_decal/shuttle/handicap{ pixel_x = -1; @@ -1462,7 +1471,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "ahH" = ( /obj/item/geiger/wall/west, /obj/effect/floor_decal/borderfloor{ @@ -1472,10 +1481,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "ahK" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "ahN" = ( /obj/structure/table/marble, /obj/machinery/requests_console{ @@ -1492,7 +1501,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "ahO" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -1505,7 +1514,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "ahQ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/firealarm{ @@ -1515,7 +1524,7 @@ }, /obj/machinery/suit_storage_unit/mining_alt, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "ahR" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -1524,27 +1533,12 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "ahV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/orange/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_Cargo_Corridor2) "ahX" = ( /obj/structure/table/rack{ dir = 8; @@ -1579,7 +1573,7 @@ /obj/machinery/door/window/westright, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "ahY" = ( /obj/structure/cable{ d1 = 1; @@ -1600,11 +1594,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "ahZ" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "aic" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -1618,7 +1612,7 @@ "aif" = ( /obj/machinery/light/small, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "aig" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -1634,7 +1628,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) "aij" = ( /obj/structure/dispenser/oxygen, /obj/effect/floor_decal/borderfloorblack{ @@ -1645,7 +1639,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "ain" = ( /obj/effect/catwalk_plated/white, /obj/structure/cable/green{ @@ -1666,7 +1660,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "aip" = ( /obj/machinery/firealarm{ dir = 1; @@ -1684,7 +1678,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "ais" = ( /obj/structure/bed/chair/backed_red{ dir = 1 @@ -1694,7 +1688,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "aiu" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -1710,7 +1704,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "aiw" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -1719,19 +1713,19 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "aiz" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "aiA" = ( /obj/structure/table/steel, /obj/machinery/light/small, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "aiB" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "aiD" = ( /obj/structure/bed/chair/sofa/corner/teal{ dir = 4 @@ -1743,7 +1737,7 @@ pixel_y = 32 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "aiI" = ( /obj/structure/cable/white{ d1 = 2; @@ -1751,10 +1745,10 @@ icon_state = "2-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "aiL" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "aiM" = ( /obj/machinery/power/apc{ dir = 4; @@ -1782,7 +1776,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "aiN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloorwhite{ @@ -1792,10 +1786,10 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "aiO" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "aiP" = ( /obj/machinery/light{ dir = 8; @@ -1803,7 +1797,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Deck1_Transit_Hall) "aiS" = ( /obj/structure/table/rack{ dir = 8; @@ -1861,26 +1855,21 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "aiU" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "aiX" = ( -/obj/structure/particle_accelerator/particle_emitter/right{ - anchored = 1; - construction_state = 1; - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/purple{ dir = 6 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "aiY" = ( /obj/structure/cable/green{ d1 = 4; @@ -1898,7 +1887,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "aja" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -1914,11 +1903,11 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "ajb" = ( /obj/effect/floor_decal/industrial/stand_clear, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "ajd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -1942,21 +1931,21 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "ajg" = ( /obj/structure/table/rack, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "ajl" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "ajn" = ( /obj/structure/sign/warning/lethal_turrets, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "ajy" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -1978,7 +1967,7 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "ajD" = ( /obj/machinery/teleport/station, /obj/effect/floor_decal/borderfloorblack{ @@ -1988,13 +1977,13 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "ajE" = ( /obj/structure/bed/chair/backed_grey{ color = "grey" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "ajM" = ( /obj/structure/bed/chair/shuttle{ dir = 1 @@ -2008,19 +1997,19 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "ajR" = ( /obj/structure/table/standard, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "ajS" = ( /obj/structure/sign/warning/docking_area, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "ajZ" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "aka" = ( /obj/structure/table/rack, /obj/item/circuitboard/telecomms/server{ @@ -2047,7 +2036,7 @@ pixel_x = -3 }, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "akd" = ( /obj/machinery/light/small/emergency{ dir = 1 @@ -2060,7 +2049,7 @@ pixel_y = 28 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "akf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -2079,7 +2068,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "akg" = ( /obj/structure/bed/chair/sofa/left/sif_ora{ dir = 4 @@ -2088,26 +2077,26 @@ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "akk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "akm" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "akp" = ( /obj/effect/floor_decal/industrial/loading{ dir = 4 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "akw" = ( /obj/structure/closet/secure_closet/miner{ pixel_x = -27 @@ -2122,7 +2111,7 @@ pixel_y = 22 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "akH" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -2135,7 +2124,7 @@ pixel_x = -3 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "akN" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -2144,10 +2133,10 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "akQ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "akR" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -2156,7 +2145,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "akS" = ( /obj/structure/cable/white{ d1 = 1; @@ -2164,7 +2153,7 @@ icon_state = "1-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "akV" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor{ @@ -2177,7 +2166,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "alf" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -2191,7 +2180,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "alg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -2200,7 +2189,7 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "alh" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -2217,7 +2206,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "ali" = ( /obj/machinery/mineral/equipment_vendor, /obj/effect/floor_decal/borderfloorblack{ @@ -2227,10 +2216,10 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "alk" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "aln" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -2246,7 +2235,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "alr" = ( /obj/structure/bed/chair/bay/shuttle, /obj/structure/closet/walllocker/emerglocker{ @@ -2276,7 +2265,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "alw" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -2285,7 +2274,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "alA" = ( /obj/structure/cable{ d1 = 1; @@ -2309,7 +2298,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "alC" = ( /obj/structure/bed/chair/sofa/right/green{ dir = 1 @@ -2319,17 +2308,17 @@ name = "1S-newscaster" }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "alF" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "alL" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "alZ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "amb" = ( /obj/structure/table/steel_reinforced, /obj/item/clothing/gloves/brown{ @@ -2355,7 +2344,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "amc" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; @@ -2387,7 +2376,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "amp" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -2411,7 +2400,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "amq" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -2427,8 +2416,13 @@ /obj/structure/window/basic{ dir = 4 }, +/obj/structure/sign/directions/science/exploration{ + pixel_y = 9; + dir = 4; + layer = 3.5 + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "ams" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 @@ -2437,7 +2431,7 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "amu" = ( /obj/machinery/processor, /obj/effect/floor_decal/corner/purple/diagonal, @@ -2446,11 +2440,11 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "amv" = ( /obj/random/tank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "amz" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -2459,14 +2453,14 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "amC" = ( /obj/structure/bed/chair/wood{ dir = 1 }, /obj/effect/catwalk_plated/dark, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "amK" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -2476,7 +2470,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "amM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -2489,19 +2483,19 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "amV" = ( /obj/structure/table/rack, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "amX" = ( /obj/machinery/conveyor{ dir = 4; id = "SC-CBcargobay2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "amY" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -2523,7 +2517,7 @@ dir = 1 }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "amZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -2544,7 +2538,7 @@ frequency = 1380 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "ang" = ( /obj/structure/grille, /obj/structure/shuttle/window, @@ -2561,16 +2555,16 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "ani" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "ans" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "ant" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "anv" = ( /obj/machinery/portable_atmospherics/powered/pump/huge, /obj/effect/floor_decal/industrial/hatch/blue, @@ -2581,7 +2575,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "anw" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -2596,7 +2590,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "anx" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -2618,10 +2612,10 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "anz" = ( /turf/space/internal_edge/bottom, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "anA" = ( /obj/structure/closet/emergsuit_wall{ dir = 4; @@ -2629,7 +2623,7 @@ name = "1E-emergency suit storage" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "anB" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -2642,7 +2636,7 @@ pixel_x = -3 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "anC" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, @@ -2650,29 +2644,29 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "anI" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "anK" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "anL" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "anM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "anO" = ( /obj/machinery/cryopod/robot/door/gateway, /obj/machinery/gateway{ @@ -2681,7 +2675,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "anP" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -2692,7 +2686,7 @@ name = "Public Gateway" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "anQ" = ( /obj/machinery/alarm{ dir = 4; @@ -2701,7 +2695,7 @@ /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "anR" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -2713,11 +2707,11 @@ name = "Emergency EVA" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "anS" = ( /obj/structure/bed/chair/sofa/left/beige, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "anV" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small, @@ -2726,7 +2720,7 @@ pixel_y = -32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "aod" = ( /obj/structure/stasis_cage, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -2737,19 +2731,19 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "aok" = ( /obj/machinery/suit_cycler/mining, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "aol" = ( /obj/structure/sign/directions/evac{ dir = 4; pixel_y = 9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "aos" = ( /obj/effect/floor_decal/corner/white{ dir = 1 @@ -2763,7 +2757,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "aou" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -2772,7 +2766,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "aov" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -2796,10 +2790,10 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "aoy" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "aoD" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -2808,7 +2802,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "aoE" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -2833,11 +2827,11 @@ color = "#989898" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "aoG" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "aoH" = ( /obj/structure/cable{ d1 = 1; @@ -2845,7 +2839,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "aoI" = ( /obj/machinery/light{ dir = 1; @@ -2868,18 +2862,20 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "aoJ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "aoV" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/structure/flora/ausbushes/ppflowers, /obj/structure/bed/chair/wood{ dir = 4 }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "ape" = ( /obj/structure/cable/green{ d1 = 1; @@ -2893,7 +2889,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "apn" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -2914,7 +2910,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "apw" = ( /obj/structure/grille, /obj/structure/shuttle/window, @@ -2941,17 +2937,17 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "apC" = ( /obj/structure/sign/directions/evac{ dir = 1; pixel_y = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "apD" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "apI" = ( /obj/structure/cable/green{ d1 = 4; @@ -2959,10 +2955,10 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "apJ" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "apK" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -2971,8 +2967,14 @@ dir = 1; name = "1N-lighting fixture" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "apM" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -2983,13 +2985,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "apV" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "apY" = ( /obj/machinery/light{ dir = 4; @@ -3002,7 +3004,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "aqc" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -3010,7 +3012,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "aqe" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -3031,7 +3033,7 @@ color = "Yellow" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "aqg" = ( /obj/structure/window/titanium{ dir = 4 @@ -3047,19 +3049,21 @@ }, /obj/machinery/door/firedoor/glass/hidden, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "aqk" = ( /obj/effect/catwalk_plated/dark, /turf/simulated/floor, /area/shuttle/echidna) "aql" = ( /obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "aqp" = ( /obj/structure/flora/lily2, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "aqv" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -3076,7 +3080,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "aqx" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/portable_atmospherics/powered/pump/huge, @@ -3084,7 +3088,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "aqD" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -3117,7 +3121,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "aqG" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -3134,20 +3138,22 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "aqH" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "aqK" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "aqL" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -3176,7 +3182,7 @@ dir = 6 }, /turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "aqN" = ( /obj/machinery/alarm{ dir = 8; @@ -3189,7 +3195,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "aqR" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -3198,7 +3204,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "aqU" = ( /obj/structure/cable/white{ d1 = 1; @@ -3206,7 +3212,7 @@ icon_state = "1-2" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "aqW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ dir = 8 @@ -3215,7 +3221,7 @@ dir = 5 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "aqX" = ( /obj/machinery/alarm{ dir = 4; @@ -3234,7 +3240,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "ara" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -3243,7 +3249,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "arc" = ( /obj/structure/bed/chair/wheelchair/smallmotor, /obj/effect/floor_decal/industrial/hatch/blue, @@ -3252,11 +3258,11 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "arl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "ary" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -3273,7 +3279,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "arz" = ( /obj/structure/sign/directions/cargo/mining{ dir = 9 @@ -3283,7 +3289,7 @@ dir = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "arE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -3295,7 +3301,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "arG" = ( /obj/machinery/reagentgrinder, /obj/structure/table/glass, @@ -3304,15 +3310,15 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "arM" = ( /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "arN" = ( /obj/structure/table/steel, /obj/item/binoculars, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "arO" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -3328,15 +3334,15 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "arR" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "arV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "arX" = ( /obj/structure/table/rack/shelf, /obj/item/bluespace_crystal/artificial{ @@ -3362,17 +3368,17 @@ pixel_y = -4 }, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "asc" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "asl" = ( /mob/living/simple_mob/animal/passive/fish/solarfish{ name = "Sol"; faction = "nanotrasen" }, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "asm" = ( /obj/machinery/alarm{ dir = 8; @@ -3386,10 +3392,10 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "asp" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "asw" = ( /obj/structure/grille, /obj/structure/shuttle/window, @@ -3415,7 +3421,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "asG" = ( /obj/machinery/suit_cycler/engineering{ req_one_access = list(11,24); @@ -3434,7 +3440,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "asI" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor{ @@ -3445,27 +3451,27 @@ }, /obj/effect/floor_decal/techfloor/orange/corner, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "asJ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "asK" = ( /obj/structure/sign/warning/evac, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "asO" = ( /obj/effect/floor_decal/corner/white{ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "asR" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "asS" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1; @@ -3473,7 +3479,7 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "asT" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ @@ -3492,7 +3498,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "asU" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -3506,7 +3512,8 @@ /obj/machinery/door/airlock/angled_bay/double/glass/research{ name = "Research Ship Bay"; dir = 8; - req_one_access = list(7,47) + req_one_access = list(7,47,5); + req_access = null }, /obj/structure/cable/white{ d1 = 1; @@ -3514,13 +3521,13 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "asV" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "asX" = ( /obj/random/obstruction, /obj/structure/cable{ @@ -3529,7 +3536,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "ati" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -3538,7 +3545,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "atm" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -3555,11 +3562,11 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "atu" = ( /obj/structure/inflatable, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "atD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -3568,14 +3575,14 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "atJ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/shieldgen{ req_access = list(47) }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "atM" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -3585,7 +3592,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "atP" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 @@ -3595,7 +3602,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "atV" = ( /obj/machinery/disposal/deliveryChute{ dir = 8 @@ -3608,7 +3615,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "atZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -3631,21 +3638,21 @@ layer = 2.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "auh" = ( /obj/machinery/conveyor{ dir = 4; id = "SC-CBcargobay1" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "auk" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "aum" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "aun" = ( /obj/structure/closet/wardrobe/suit, /obj/machinery/status_display{ @@ -3655,7 +3662,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "auo" = ( /obj/machinery/lapvend, /obj/machinery/firealarm{ @@ -3666,7 +3673,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "aur" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -3689,7 +3696,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "auB" = ( /obj/structure/table/rack{ dir = 8; @@ -3732,7 +3739,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "auG" = ( /obj/structure/cable/green{ d1 = 4; @@ -3752,7 +3759,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "auH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -3765,12 +3772,19 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "auI" = ( /obj/structure/closet/secure_closet/freezer/kitchen/mining, /obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "auR" = ( /obj/structure/cable/white{ d1 = 1; @@ -3778,19 +3792,14 @@ icon_state = "1-2" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "auT" = ( -/obj/structure/particle_accelerator/particle_emitter/center{ - anchored = 1; - construction_state = 1; - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "auX" = ( /obj/machinery/light/small{ dir = 4 @@ -3806,7 +3815,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "avb" = ( /obj/item/gun/energy/locked/frontier/rifle{ pixel_y = 9 @@ -3855,7 +3864,7 @@ }, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "avd" = ( /obj/item/gps{ pixel_x = 3; @@ -3891,7 +3900,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "avf" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -3925,7 +3934,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "avg" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -3934,7 +3943,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "avj" = ( /obj/structure/cable/green{ d1 = 1; @@ -3947,11 +3956,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "avl" = ( /obj/structure/sign/level/one/large, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "avm" = ( /obj/structure/railing/grey{ dir = 8 @@ -3970,7 +3979,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "avx" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3980,12 +3989,12 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "avy" = ( /obj/effect/decal/cleanable/blood, /obj/item/material/twohanded/baseballbat, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "avz" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/pink/border, @@ -3996,7 +4005,7 @@ }, /obj/machinery/light, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "avE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -4007,7 +4016,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "avF" = ( /obj/structure/closet/radiation, /obj/effect/floor_decal/borderfloorblack{ @@ -4017,7 +4026,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "avI" = ( /obj/effect/floor_decal/industrial/loading{ dir = 4 @@ -4033,12 +4042,12 @@ pixel_y = 22 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "avO" = ( /obj/structure/table/standard, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "avP" = ( /obj/machinery/gateway{ dir = 4 @@ -4049,11 +4058,11 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "awe" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "awo" = ( /obj/structure/bed/chair/backed_red{ dir = 1 @@ -4064,20 +4073,24 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "awv" = ( /obj/structure/bed/chair/sofa/right/lime, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "aww" = ( /obj/structure/bed/chair/oldsofa{ dir = 4 }, /turf/simulated/floor/carpet/sblucarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "awx" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "awy" = ( /obj/structure/grille, /obj/structure/shuttle/window, @@ -4115,11 +4128,11 @@ pixel_y = 28 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "awK" = ( /obj/structure/grille/broken, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "awL" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4; @@ -4136,7 +4149,7 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "awR" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -4153,7 +4166,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "awU" = ( /obj/effect/floor_decal/shuttle/loading, /obj/structure/railing/grey{ @@ -4163,10 +4176,10 @@ dir = 2 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "awX" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "axa" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -4183,15 +4196,15 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "axc" = ( /obj/random/humanoidremains, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "axi" = ( /obj/machinery/vending/altevian, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "axo" = ( /obj/machinery/camera/network/security{ dir = 6; @@ -4205,7 +4218,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "axv" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -4216,20 +4229,21 @@ name = "Cryostorage hall" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "axL" = ( /obj/structure/table/hardwoodtable, -/obj/machinery/light{ - name = "1S-light fixture" - }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/light/spot{ + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "axM" = ( /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "axP" = ( /obj/item/radio/intercom{ dir = 1; @@ -4246,7 +4260,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Deck1_Transit_Hall) "axR" = ( /obj/structure/bed/chair/wheelchair/motor, /obj/effect/floor_decal/industrial/hatch/blue, @@ -4258,10 +4272,10 @@ name = "1N-AI display" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "ayb" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "ayc" = ( /obj/structure/table/glass, /obj/item/radio/intercom{ @@ -4270,7 +4284,7 @@ pixel_x = 22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "aye" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -4278,36 +4292,48 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "ayf" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 +/obj/effect/catwalk_plated/techmaint, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_Security_PortCorridor1) "ayg" = ( /obj/structure/railing/grey{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "ayh" = ( /obj/effect/floor_decal/shuttle/loading{ dir = 1 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "ayp" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 }, /obj/machinery/meter, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "ayE" = ( /obj/item/stool/padded, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "ayH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -4321,7 +4347,7 @@ icon_state = "1-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "ayK" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/directions/medical{ @@ -4332,7 +4358,7 @@ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "ayN" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -4362,14 +4388,14 @@ /obj/random/maintenance/research, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "azk" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/turf/simulated/floor/glass, +/area/hallway/Deck1_Transit_Hall) "azl" = ( /obj/structure/shuttle/engine/heater, /obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ @@ -4380,7 +4406,7 @@ "azp" = ( /obj/structure/stairs/spawner/east, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "azv" = ( /obj/structure/sign/nanotrasen, /turf/simulated/shuttle/wall/no_join{ @@ -4391,7 +4417,7 @@ /area/shuttle/large_escape_pod1/station) "azD" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "azG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -4407,7 +4433,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Deck1_Transit_Hall) "azQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -4417,15 +4443,15 @@ /obj/machinery/door/airlock/maintenance/common, /obj/item/tape/engineering, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "azR" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "azW" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "azY" = ( /obj/structure/cable/green{ d1 = 4; @@ -4443,13 +4469,13 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "azZ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "aAa" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "aAl" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4 @@ -4459,19 +4485,19 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "aAn" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "aAq" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "aAs" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/structure/sign/poster/nanotrasen, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "aAu" = ( /obj/structure/cable/white{ d1 = 2; @@ -4479,7 +4505,7 @@ icon_state = "2-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "aAz" = ( /obj/structure/sign/warning/evac, /turf/simulated/shuttle/wall/no_join{ @@ -4494,7 +4520,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "aAK" = ( /obj/machinery/shipsensors, /obj/effect/catwalk_plated/dark, @@ -4557,18 +4583,18 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "aAR" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/structure/table/glass, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "aAT" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "aAU" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -4577,34 +4603,34 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "aAW" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "aAX" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "aAY" = ( /obj/structure/table/bench/sifwooden/padded, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "aBa" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "aBb" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "aBc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/purple, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "aBe" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -4621,7 +4647,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "aBf" = ( /obj/structure/cable/white{ d1 = 1; @@ -4629,7 +4655,7 @@ icon_state = "1-2" }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "aBh" = ( /obj/machinery/telecomms/processor/preset_three, /obj/effect/catwalk_plated/dark, @@ -4638,11 +4664,11 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "aBq" = ( /obj/effect/graffitispawner, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "aBt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 8 @@ -4654,22 +4680,28 @@ dir = 10 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "aBD" = ( /obj/structure/flora/tree/sif, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "aBE" = ( /obj/random/junk, /obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "aBK" = ( /obj/effect/floor_decal/corner/white{ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "aBL" = ( /obj/structure/bed/chair/backed_red{ dir = 4 @@ -4686,7 +4718,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "aBS" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -4695,7 +4727,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "aBU" = ( /obj/machinery/firealarm{ dir = 8; @@ -4708,8 +4740,16 @@ /obj/effect/floor_decal/corner/red/border{ dir = 8 }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "aBX" = ( /turf/simulated/floor/tiled/milspec, /area/shuttle/echidna) @@ -4734,8 +4774,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "aCj" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -4748,22 +4791,22 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "aCk" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "aCl" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "aCm" = ( /obj/structure/girder, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "aCp" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/porta_turret/industrial/teleport_defense, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "aCB" = ( /obj/machinery/pointdefense{ id_tag = "PD Primary" @@ -4784,10 +4827,10 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "aCE" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "aCG" = ( /obj/structure/closet/secure_closet/personal, /obj/machinery/camera/network/security{ @@ -4800,26 +4843,29 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "aCK" = ( /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "aCL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/structure/reagent_dispensers/watertank/high, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "aCO" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/area/maintenance/ab_Kitchen) "aCR" = ( /obj/structure/table/rack, /obj/random/maintenance/cargo, /obj/random/maintenance/cargo, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "aCV" = ( /obj/structure/table/bench/sifwooden/padded, /obj/machinery/alarm{ @@ -4827,7 +4873,7 @@ pixel_x = 22 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "aCX" = ( /obj/structure/closet/wardrobe/xenos, /obj/effect/floor_decal/borderfloorblack{ @@ -4837,11 +4883,11 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "aCY" = ( /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "aDg" = ( /obj/structure/cable/blue{ d1 = 4; @@ -4861,16 +4907,16 @@ name = "Waste to Scrubbers" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "aDi" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "aDj" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "aDk" = ( /obj/machinery/power/apc{ dir = 4; @@ -4892,13 +4938,13 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "aDl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "aDo" = ( /obj/machinery/computer/ship/engines{ dir = 8 @@ -4919,24 +4965,24 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "aDr" = ( /obj/machinery/portable_atmospherics/canister/empty/phoron, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "aDs" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "aDA" = ( /obj/structure/closet/crate/large/nanotrasen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "aDE" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -4949,13 +4995,13 @@ pixel_x = 3 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "aDG" = ( /obj/machinery/light/small, /obj/structure/table/standard, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "aDM" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -4977,7 +5023,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "aDN" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/floor_decal/borderfloorblack{ @@ -4987,7 +5033,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "aDR" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, @@ -5001,12 +5047,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "aDT" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/watertank/high, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "aDW" = ( /obj/structure/railing/grey{ dir = 8 @@ -5014,7 +5060,7 @@ /obj/machinery/firework_launcher, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "aDZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -5023,32 +5069,34 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "aEy" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "aED" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/industrial/danger/corner, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "aEE" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "aEI" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "aEJ" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /obj/random/maintenance/security, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "aEN" = ( /obj/structure/cable/white{ d1 = 4; @@ -5062,7 +5110,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "aEU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -5079,11 +5127,11 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "aEZ" = ( /obj/structure/sign/hangar/two, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "aFb" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -5094,7 +5142,7 @@ id_tag = "sc-RagecageEXT" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "aFd" = ( /obj/machinery/light{ dir = 1; @@ -5109,11 +5157,11 @@ }, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "aFe" = ( /obj/effect/floor_decal/shuttle/loading, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "aFf" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -5138,7 +5186,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "aFh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -5150,10 +5198,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "aFj" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "aFk" = ( /obj/structure/window/titanium{ dir = 8 @@ -5172,11 +5220,11 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "aFn" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "aFz" = ( /obj/machinery/alarm{ dir = 8; @@ -5189,7 +5237,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "aFG" = ( /obj/machinery/light{ dir = 4; @@ -5205,23 +5253,25 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "aFI" = ( /obj/structure/table, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "aFL" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "aGb" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "aGd" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "aGe" = ( /obj/machinery/alarm{ dir = 8; @@ -5235,10 +5285,10 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "aGh" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "aGk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -5255,12 +5305,12 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "aGl" = ( /obj/structure/table/standard, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "aGo" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/accessory/collar/collarplanet_earth, @@ -5269,10 +5319,10 @@ /obj/random/action_figure, /obj/random/forgotten_tram, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "aGq" = ( /turf/simulated/floor/airless, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "aGt" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 @@ -5283,7 +5333,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "aGB" = ( /obj/machinery/firealarm{ dir = 8; @@ -5297,13 +5347,13 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "aGR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "aGT" = ( /obj/structure/cable/white{ d1 = 4; @@ -5311,7 +5361,7 @@ icon_state = "4-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "aHg" = ( /obj/machinery/firealarm{ pixel_y = -25; @@ -5321,7 +5371,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "aHh" = ( /obj/structure/bed/chair/sofa/left/teal, /obj/machinery/computer/security/telescreen/entertainment{ @@ -5329,13 +5379,13 @@ name = "1N-entertainment monitor" }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "aHn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "aHo" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 5 @@ -5345,19 +5395,19 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "aHq" = ( /obj/effect/floor_decal/shuttle/loading{ dir = 1 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "aHD" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "aHH" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "aHI" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/meter, @@ -5376,11 +5426,11 @@ /obj/random/maintenance/cargo, /obj/random/coin, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "aHU" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "aHV" = ( /obj/machinery/sleeper{ dir = 4 @@ -5395,7 +5445,7 @@ /obj/effect/floor_decal/industrial/hatch/blue, /obj/structure/window/basic, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "aIq" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -5412,7 +5462,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "aIr" = ( /obj/item/toy/chewtoy/poly, /obj/item/toy/chewtoy/tall/poly{ @@ -5435,7 +5485,7 @@ }, /obj/item/toy/plushie/crab, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "aIw" = ( /obj/machinery/sleeper{ dir = 8 @@ -5461,14 +5511,14 @@ /area/shuttle/escape_pod4/station) "aIH" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "aIM" = ( /obj/machinery/camera/network/security{ c_tag = "D1-Eng-Substation Harbor"; network = list("engineering") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Harbor_Substation) +/area/maintenance/Harbor_Substation) "aIN" = ( /obj/structure/cable/green{ d1 = 1; @@ -5495,19 +5545,19 @@ pixel_y = -27 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "aIW" = ( /obj/machinery/atmospherics/binary/pump/high_power{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "aJa" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "aJj" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/white{ @@ -5520,19 +5570,19 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "aJk" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "aJl" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "aJn" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "aJt" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -5548,7 +5598,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "aJv" = ( /obj/structure/table/glass, /obj/item/glass_jar, @@ -5558,7 +5608,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "aJy" = ( /obj/item/gps{ pixel_x = 3; @@ -5586,7 +5636,7 @@ /area/shuttle/escape_pod8/station) "aJz" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "aJA" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -5597,7 +5647,7 @@ name = "Aft Harbor" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "aJM" = ( /obj/structure/bed/chair/sofa/right/teal, /obj/machinery/computer/security/telescreen/entertainment{ @@ -5605,11 +5655,11 @@ name = "1N-entertainment monitor" }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "aJQ" = ( /obj/machinery/light/small, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "aJT" = ( /obj/structure/closet/emcloset, /obj/machinery/light{ @@ -5618,7 +5668,7 @@ /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "aJU" = ( /obj/structure/cable/green{ d1 = 4; @@ -5632,8 +5682,11 @@ dir = 4 }, /obj/effect/catwalk_plated/techmaint, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "aJX" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/canister/empty/phoron, @@ -5644,7 +5697,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "aJY" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -5679,11 +5732,11 @@ pixel_x = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "aKa" = ( /obj/effect/floor_decal/industrial/stand_clear, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "aKb" = ( /obj/machinery/vending/wallmed1{ dir = 4; @@ -5697,10 +5750,10 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "aKi" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "aKj" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 @@ -5715,27 +5768,24 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "aKp" = ( /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 }, /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 9 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "aKw" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -5744,14 +5794,13 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "aKC" = ( /obj/structure/reagent_dispensers/watertank/high, /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "aKE" = ( -/obj/item/geiger/wall/south, /obj/effect/floor_decal/borderfloorblack{ dir = 10 }, @@ -5759,7 +5808,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "aKF" = ( /obj/structure/closet/secure_closet/personal, /obj/machinery/alarm{ @@ -5769,7 +5818,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "aKJ" = ( /obj/machinery/atmospherics/unary/engine/biggest{ dir = 1 @@ -5783,7 +5832,7 @@ pixel_y = 22 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "aKQ" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -5795,7 +5844,8 @@ dir = 8 }, /obj/machinery/door/airlock/angled_bay/double/glass/common{ - dir = 8 + dir = 8; + name = "Starboard Arrivals Harbor" }, /obj/structure/cable/green{ d1 = 4; @@ -5815,13 +5865,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "aKU" = ( /obj/machinery/atmospherics/valve, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "aLc" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -5830,18 +5880,20 @@ /obj/effect/floor_decal/industrial/arrows/blue, /obj/machinery/door/airlock/angled_bay/standard/color/common{ dir = 4; - name = "Port Harbor" + name = "Port Departures Harbor" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "aLf" = ( /obj/structure/flora/tree/sif, /obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "aLh" = ( /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "aLi" = ( /obj/structure/shuttle/engine/heater, /obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, @@ -5855,7 +5907,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "aLl" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass/hidden/steel, @@ -5899,7 +5951,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "aLm" = ( /obj/structure/table/reinforced, /obj/item/form_printer{ @@ -5916,7 +5968,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "aLo" = ( /obj/machinery/atmospheric_field_generator/perma/underdoors{ color = "Yellow" @@ -5935,10 +5987,10 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "aLu" = ( /turf/simulated/floor/airless, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "aLw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 @@ -5958,11 +6010,11 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "aLz" = ( /obj/structure/table/bench/sifwooden/padded, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "aLA" = ( /obj/machinery/portable_atmospherics/canister/empty, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -5972,10 +6024,10 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "aLB" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "aLI" = ( /obj/structure/cable/green{ d1 = 1; @@ -5983,12 +6035,12 @@ icon_state = "1-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "aLJ" = ( /obj/machinery/portable_atmospherics/canister/empty/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "aLM" = ( /obj/machinery/power/apc{ dir = 1; @@ -6010,7 +6062,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "aLQ" = ( /obj/item/material/shard, /obj/item/material/shard{ @@ -6019,22 +6071,22 @@ pixel_x = -3 }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "aLS" = ( /obj/structure/bed/chair/sofa/left/teal{ dir = 8 }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "aLW" = ( /obj/random/flashlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "aLY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "aLZ" = ( /obj/structure/cable/white{ d1 = 4; @@ -6042,7 +6094,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "aMa" = ( /obj/structure/closet/secure_closet/miner, /obj/machinery/power/apc{ @@ -6063,14 +6115,14 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "aMb" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "aMf" = ( /obj/structure/table/bench/wooden, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "aMh" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -6083,7 +6135,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "aMi" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -6095,7 +6147,7 @@ }, /obj/machinery/door/airlock/maintenance/command, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "aMt" = ( /obj/machinery/button/remote/blast_door{ id = "SC-BDxenobiodivider3"; @@ -6111,7 +6163,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "aMv" = ( /obj/structure/cable/green{ d1 = 1; @@ -6122,7 +6174,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "aMD" = ( /obj/item/radio/intercom{ dir = 8; @@ -6136,10 +6188,10 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "aMF" = ( /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "aMJ" = ( /obj/machinery/firealarm{ dir = 1; @@ -6161,12 +6213,12 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "aMN" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "aMP" = ( /obj/structure/closet/secure_closet/guncabinet/phase{ req_one_access = list(7,47) @@ -6179,7 +6231,7 @@ }, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "aMU" = ( /obj/structure/table/rack, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -6223,7 +6275,7 @@ pixel_y = 2 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "aNe" = ( /obj/effect/floor_decal/shuttle/loading, /obj/structure/railing/grey{ @@ -6234,7 +6286,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "aNh" = ( /obj/structure/table/steel_reinforced, /obj/item/retail_scanner/cargo{ @@ -6259,7 +6311,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "aNk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -6268,8 +6320,7 @@ }, /obj/machinery/door/airlock/maintenance/rnd{ name = "Shuttle Bay Access"; - req_one_access = list(7,47); - req_access = list(47); + req_one_access = list(5,7,47); id_tag = "Sci Lockdown" }, /obj/machinery/door/blast/regular/open{ @@ -6286,7 +6337,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "aNm" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -6297,21 +6348,21 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "aNo" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "aNp" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "aNq" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "aNt" = ( /obj/machinery/telecomms/server/presets/engineering, /obj/effect/catwalk_plated/dark, @@ -6320,7 +6371,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "aNv" = ( /obj/effect/catwalk_plated/dark, /obj/machinery/telecomms/server/presets/unused, @@ -6329,7 +6380,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "aNx" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 @@ -6343,7 +6394,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "aNy" = ( /obj/structure/reagent_dispensers/fueltank/high, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -6352,7 +6403,7 @@ name = "S-status display" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "aNz" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor{ @@ -6365,7 +6416,7 @@ dir = 1 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "aND" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -6385,10 +6436,10 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "aNF" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "aNG" = ( /obj/structure/extinguisher_cabinet{ name = "1N-extinguisher cabinet"; @@ -6401,15 +6452,15 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "aNJ" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "aNL" = ( /obj/structure/table/steel, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "aNX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -6437,7 +6488,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "aNY" = ( /obj/machinery/light{ dir = 1; @@ -6445,7 +6496,7 @@ }, /obj/structure/table/bench/sifwooden/padded, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "aOb" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -6457,10 +6508,10 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "aOh" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "aOm" = ( /obj/structure/closet/secure_closet/miner, /obj/item/radio/intercom{ @@ -6470,11 +6521,11 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "aOt" = ( /obj/structure/sign/warning/evac, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "aOu" = ( /obj/structure/railing{ dir = 4 @@ -6486,7 +6537,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "aOv" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -6511,7 +6562,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "aOw" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/panic_button{ @@ -6543,7 +6594,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "aOM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor{ @@ -6553,26 +6604,26 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "aPa" = ( /obj/effect/floor_decal/corner/white{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "aPd" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "aPe" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "aPg" = ( /obj/structure/bed/chair/sofa/purp{ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "aPh" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -6584,7 +6635,7 @@ req_access = list(55) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "aPn" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -6593,7 +6644,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "aPC" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -6617,7 +6668,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "aPF" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -6627,12 +6678,12 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "aPM" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "aPT" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -6645,7 +6696,7 @@ pixel_y = -27 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "aPU" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ @@ -6653,23 +6704,19 @@ health = 1e+006 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "aPZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/structure/cable, +/obj/machinery/shield_capacitor{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/department/shield{ + desc = "Sign of some important station compartment."; + pixel_y = -32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/orange/bordercorner, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/turf/simulated/floor/plating, +/area/engineering/Telecomms_Foyer) "aQg" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 @@ -6688,7 +6735,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "aQp" = ( /obj/machinery/firealarm{ pixel_y = 25; @@ -6705,7 +6752,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "aQA" = ( /obj/item/bone/ribs, /obj/effect/decal/cleanable/blood/splatter{ @@ -6714,25 +6761,25 @@ icon_state = "mfloor2" }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "aQG" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "aQM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "aQO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "aQV" = ( /obj/structure/sign/painting/public, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "aQW" = ( /obj/machinery/light{ dir = 1; @@ -6740,7 +6787,7 @@ }, /obj/structure/table/bench/sifwooden/padded, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "aQX" = ( /obj/machinery/light{ dir = 4; @@ -6761,10 +6808,10 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "aQY" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "aRa" = ( /obj/effect/floor_decal/industrial/stand_clear, /obj/structure/railing/grey{ @@ -6775,10 +6822,10 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "aRd" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "aRf" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -6787,15 +6834,21 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "aRj" = ( /obj/machinery/bluespace_beacon, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) +"aRm" = ( +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_ForStar_Corridor2) "aRr" = ( /obj/effect/floor_decal/shuttle/loading, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "aRs" = ( /obj/structure/cable/white{ d1 = 2; @@ -6803,19 +6856,21 @@ icon_state = "2-4" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "aRt" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "aRv" = ( /obj/structure/filingcabinet/security, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "aRz" = ( /obj/structure/closet/emcloset, /obj/item/storage/toolbox/emergency, @@ -6837,7 +6892,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "aRI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -6857,10 +6912,10 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "aRJ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "aRL" = ( /obj/machinery/light{ dir = 8; @@ -6889,8 +6944,12 @@ /obj/effect/floor_decal/corner/red/border{ dir = 8 }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "aRN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -6907,20 +6966,20 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "aRU" = ( /obj/structure/sign/hangar/one, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "aRY" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "aSb" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "aSf" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 1 @@ -6953,7 +7012,7 @@ /obj/structure/table/reinforced, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "aSi" = ( /obj/structure/bed/chair/sofa/left/beige{ dir = 1 @@ -6962,10 +7021,10 @@ name = "1S-light fixture" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "aSk" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "aSu" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -6992,7 +7051,7 @@ name = "W-fire alarm" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "aSC" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -7006,7 +7065,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "aSF" = ( /obj/effect/decal/cleanable/blood/splatter{ color = "#ffc43b"; @@ -7015,7 +7074,7 @@ }, /obj/item/bone, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "aSH" = ( /obj/structure/table/standard, /obj/item/tool/wirecutters/clippers{ @@ -7044,18 +7103,18 @@ name = "N-status display" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "aSU" = ( /obj/machinery/mineral/unloading_machine{ icon_state = "unloader-corner" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "aTg" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "aTh" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -7063,7 +7122,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "aTj" = ( /obj/machinery/power/apc{ dir = 4; @@ -7085,7 +7144,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "aTk" = ( /obj/structure/table/standard, /obj/item/stock_parts/subspace/transmitter, @@ -7094,14 +7153,14 @@ pixel_x = 2 }, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "aTl" = ( /obj/machinery/computer/card{ dir = 1 }, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "aTt" = ( /obj/machinery/ai_status_display{ name = "1N-AI display"; @@ -7111,7 +7170,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "aTA" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 @@ -7122,7 +7181,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "aTB" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -7138,14 +7197,14 @@ name = "Western Courtyard" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "aTD" = ( /obj/machinery/atmospherics/unary/heater{ dir = 8; icon_state = "heater" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "aTE" = ( /turf/simulated/shuttle/floor/yellow, /area/shuttle/large_escape_pod1/station) @@ -7157,16 +7216,17 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "aTG" = ( /obj/structure/bed/chair/sofa/purp{ dir = 1 }, -/obj/machinery/light{ - name = "1S-light fixture" +/obj/machinery/light/spot{ + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "aTJ" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -7175,7 +7235,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "aTL" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 @@ -7196,7 +7256,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "aTN" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/blast/regular{ @@ -7205,7 +7265,7 @@ name = "Containment Divider Doors" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "aTP" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -7214,7 +7274,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "aTU" = ( /obj/structure/cable/green{ d1 = 4; @@ -7238,7 +7298,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "aTZ" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -7251,13 +7311,13 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "aUb" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "aUd" = ( /obj/structure/cryofeed{ dir = 1 @@ -7279,7 +7339,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "aUh" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -7288,7 +7348,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "aUH" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 @@ -7296,11 +7356,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "aUI" = ( /obj/structure/bed/chair/bar_stool, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "aUK" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -7310,16 +7370,16 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "aVc" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "aVf" = ( /obj/machinery/light/small, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "aVg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -7336,12 +7396,14 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "aVh" = ( /obj/structure/flora/ausbushes/genericbush, /obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "aVi" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -7350,11 +7412,15 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "aVl" = ( /obj/structure/table/rack, +/obj/item/storage/box/wormcan{ + pixel_y = 2; + pixel_x = 3 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "aVm" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -7363,22 +7429,22 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "aVn" = ( /obj/effect/floor_decal/shuttle/loading/yellow{ dir = 8 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "aVp" = ( /obj/structure/sign/painting/public, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "aVr" = ( /obj/structure/table/glass, /turf/simulated/floor/carpet/sblucarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "aVs" = ( /obj/machinery/light{ dir = 4; @@ -7391,9 +7457,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "aVt" = ( -/obj/machinery/vending/altevian, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -7405,8 +7470,9 @@ c_tag = "D1-Com-Port Atrium4"; network = list("Commons") }, +/obj/machinery/vending/foodveggie, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "aVv" = ( /obj/structure/cable/green{ d1 = 4; @@ -7445,7 +7511,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "aVA" = ( /obj/structure/cable/green{ d1 = 2; @@ -7462,10 +7528,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "aVB" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "aVC" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -7482,12 +7548,12 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "aVF" = ( /obj/structure/table/steel, /obj/item/binoculars, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "aVH" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 @@ -7501,7 +7567,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "aVI" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/zpipe/up/supply{ @@ -7511,7 +7577,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "aVL" = ( /obj/machinery/atmospherics/pipe/tank/air/full{ dir = 4 @@ -7521,10 +7587,10 @@ pixel_x = -32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "aVS" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "aVU" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -7537,16 +7603,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "aVV" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "aVW" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "aWa" = ( /obj/machinery/ai_status_display{ name = "1N-AI display"; @@ -7559,14 +7625,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "aWb" = ( /obj/effect/floor_decal/shuttle/loading/yellow{ dir = 1 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "aWf" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -7595,10 +7661,10 @@ id = "sc-GCtelecoms" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "aWg" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "aWk" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, @@ -7610,11 +7676,11 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "aWl" = ( /obj/structure/grille/broken, /turf/simulated/floor/bmarble, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "aWu" = ( /obj/machinery/button/remote/blast_door{ id = "sc-GCtelecoms"; @@ -7623,11 +7689,27 @@ req_access = list(61); req_one_access = list(61) }, -/turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/obj/effect/floor_decal/shuttle/blue{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/Telecomms_Foyer) "aWv" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "aWw" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -7658,12 +7740,12 @@ id = "sc-GCsouthsecpoint" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "aWC" = ( /obj/effect/catwalk_plated/dark, /obj/structure/closet/secure_closet/personal/cabinet, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "aWF" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable{ @@ -7677,14 +7759,14 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "aWM" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "aWS" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -7692,7 +7774,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "aWX" = ( /obj/machinery/vending/snack, /obj/effect/floor_decal/borderfloorblack{ @@ -7702,18 +7784,18 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "aXm" = ( /obj/machinery/ai_status_display, /obj/structure/disposalpipe/segment{ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "aXq" = ( /obj/structure/simple_door/wood, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "aXB" = ( /obj/effect/floor_decal/shuttles{ dir = 8 @@ -7722,14 +7804,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "aXL" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "aXT" = ( /obj/machinery/light{ dir = 8; @@ -7742,7 +7824,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "aXZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal{ color = "#0000ff" @@ -7758,7 +7840,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "aYb" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -7768,7 +7850,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "aYo" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -7782,7 +7864,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "aYG" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 @@ -7796,7 +7878,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "aYK" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -7807,7 +7889,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "aYT" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -7816,10 +7898,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "aZd" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "aZH" = ( /obj/machinery/power/apc{ dir = 1; @@ -7831,7 +7913,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "aZO" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -7844,11 +7926,11 @@ }, /obj/effect/floor_decal/industrial/hatch, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "aZU" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "aZX" = ( /obj/structure/cable/green{ d1 = 4; @@ -7867,14 +7949,14 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "bae" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "bai" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 @@ -7884,7 +7966,7 @@ }, /obj/structure/table/reinforced, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "bap" = ( /obj/structure/closet/emcloset, /obj/machinery/alarm{ @@ -7894,7 +7976,7 @@ /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "baw" = ( /obj/machinery/light{ dir = 4; @@ -7910,13 +7992,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "baF" = ( /obj/effect/floor_decal/road/center{ dir = 8 }, /turf/simulated/floor/grass2/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "baL" = ( /obj/machinery/vending/nifsoft_shop, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7926,20 +8008,20 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "baM" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "baN" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "baX" = ( /obj/machinery/light{ dir = 4; @@ -7951,7 +8033,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "baY" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/basic{ @@ -7965,7 +8047,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "bbi" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -7974,7 +8056,7 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "bbl" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -7990,13 +8072,13 @@ "bbm" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "bbJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "bbL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -8005,26 +8087,26 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "bbQ" = ( /obj/item/reagent_containers/food/snacks/monkeycube/wrapped/stokcube, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "bce" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "bcg" = ( /obj/structure/table/darkglass, /obj/item/storage/toolbox/electrical, /turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "bci" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "bco" = ( /obj/machinery/alarm{ dir = 1; @@ -8037,7 +8119,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "bcq" = ( /obj/machinery/atmospherics/unary/engine/bigger{ dir = 1 @@ -8050,7 +8132,7 @@ network = list("Commons") }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "bcL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8063,17 +8145,17 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "bcV" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "bdc" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "bde" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -8082,16 +8164,16 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "bdj" = ( /obj/random/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "bdm" = ( /obj/structure/loot_pile/maint/boxfort, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "bdB" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -8100,7 +8182,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "bdG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -8117,7 +8199,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "bdR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden{ @@ -8135,10 +8217,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "beg" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "bek" = ( /obj/structure/bed/chair/bay/shuttle, /turf/simulated/shuttle/floor/white, @@ -8153,7 +8235,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "beG" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 @@ -8162,19 +8244,19 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "beP" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "beQ" = ( /obj/item/geiger/wall/west, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "beS" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -8190,7 +8272,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "beT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -8203,7 +8285,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "bfs" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -8216,34 +8298,33 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "bfF" = ( /obj/structure/sign/small/warning/server_room, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "bfM" = ( /obj/machinery/light/small, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "bgb" = ( +/obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_Security_PortCorridor2) "bgU" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "bhd" = ( /obj/structure/cable/green{ d1 = 4; @@ -8256,15 +8337,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "bhg" = ( /obj/effect/catwalk_plated/white, /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "bhm" = ( /obj/structure/sign/mining, /turf/simulated/wall/rshull, @@ -8292,13 +8376,13 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "bho" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "bhp" = ( /obj/structure/table/standard, /obj/item/clothing/gloves/botanic_leather{ @@ -8310,13 +8394,13 @@ pixel_y = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "bhD" = ( /obj/random/trash, /obj/structure/table/standard, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "biz" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -8337,7 +8421,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "biH" = ( /obj/structure/cable/green{ d1 = 1; @@ -8360,8 +8444,9 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Deck1_Transit_Hall) "bjg" = ( /obj/structure/table/steel, /obj/item/toy/figure/miner{ @@ -8390,11 +8475,20 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "bjk" = ( /obj/structure/window/reinforced/survival_pod, /turf/simulated/floor/tiled/milspec, /area/shuttle/echidna) +"bjp" = ( +/obj/item/stool/baystool/padded, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "bjM" = ( /obj/machinery/shower{ pixel_y = 16 @@ -8408,7 +8502,7 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "bjY" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, @@ -8418,7 +8512,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "bkb" = ( /obj/structure/closet/crate/large, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -8429,7 +8523,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "bkk" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -8438,7 +8532,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "bkv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -8458,7 +8552,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "bkD" = ( /obj/structure/cable{ d1 = 1; @@ -8467,24 +8561,24 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "bkE" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "blz" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "blD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "blL" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ frequency = 1380; @@ -8499,7 +8593,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "blP" = ( /obj/item/storage/box/flare{ pixel_y = 1; @@ -8537,7 +8631,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "blX" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -8560,7 +8654,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "bmt" = ( /obj/item/gps{ pixel_x = 3; @@ -8587,28 +8681,19 @@ /turf/simulated/shuttle/floor, /area/shuttle/escape_pod7/station) "bmu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "bmA" = ( /obj/structure/table/darkglass, /obj/effect/floor_decal/spline/plain{ dir = 4 }, +/obj/item/spacecasinocash/c1, /turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "bmG" = ( /obj/machinery/alarm{ dir = 8; @@ -8616,7 +8701,7 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "bmJ" = ( /obj/structure/bed/pillowpile/teal, /obj/item/storage/vore_egg/tajaran{ @@ -8628,7 +8713,7 @@ pixel_x = -4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "bnt" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -8646,7 +8731,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "bnw" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = 28; @@ -8654,7 +8739,7 @@ }, /obj/structure/table/glass, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "bnA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/structure/cable/green{ @@ -8670,7 +8755,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "bor" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -8684,7 +8769,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "bot" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -8695,7 +8780,7 @@ /obj/effect/map_helper/airlock/door/ext_door, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "boC" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -8703,23 +8788,23 @@ }, /obj/structure/sign/directions/eva, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "bpv" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "bpA" = ( /obj/random/plushie, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "bpD" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "bpK" = ( /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "bqb" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -8727,14 +8812,14 @@ id = "sc-WTmaintgamble2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "bqf" = ( /obj/structure/hyperball_goal/red, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "bqm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8742,7 +8827,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "bqn" = ( /obj/structure/bed/pillowpilefront/orange, /obj/item/storage/vore_egg/chocolate{ @@ -8754,7 +8839,7 @@ pixel_x = -4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "bqo" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/loading/blue, @@ -8765,7 +8850,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "bqv" = ( /obj/structure/window/plastitanium/full, /obj/structure/window/reinforced/survival_pod{ @@ -8802,10 +8887,10 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1) +/area/maintenance/Deck1_Security_PortChamber1) "bra" = ( /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "brc" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -8819,11 +8904,11 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "brk" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "brr" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -8853,14 +8938,14 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "brx" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "bry" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -8883,21 +8968,21 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "brQ" = ( /turf/simulated/wall/rthull, /area/shuttle/escape_pod14/station) "bsf" = ( /obj/random/tank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "bsl" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "bsw" = ( /obj/structure/closet/walllocker/emerglocker{ pixel_x = -25; @@ -8921,7 +9006,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "bsP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -8940,17 +9025,27 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "bsU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_Security_PortCorridor2) "bsY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -8962,7 +9057,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "bta" = ( /obj/structure/cable{ d1 = 2; @@ -8986,7 +9081,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "btl" = ( /obj/structure/cable/white{ d1 = 1; @@ -8994,14 +9089,14 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "btm" = ( /obj/structure/table/standard, /obj/random/maintenance/security, /obj/random/maintenance/clean, /obj/random/soap, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "btZ" = ( /obj/machinery/light{ dir = 8; @@ -9023,7 +9118,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "buj" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -9032,7 +9127,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "buo" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -9048,7 +9143,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "buw" = ( /obj/effect/floor_decal/rust, /obj/effect/floor_decal/rust, @@ -9058,7 +9153,7 @@ pixel_x = -11 }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "buI" = ( /obj/machinery/power/apc{ dir = 8; @@ -9081,7 +9176,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "buZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -9091,15 +9186,16 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "bvd" = ( /obj/structure/table/rack, /obj/item/material/fishing_rod/modern/cheap, -/obj/item/material/fishing_rod/modern/cheap, -/obj/item/material/fishing_rod/modern/cheap, -/obj/item/material/fishing_rod/modern/cheap, +/obj/item/material/fishing_rod/modern/strong{ + pixel_y = 3; + pixel_x = -2 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "bvo" = ( /obj/structure/table/reinforced, /obj/machinery/light{ @@ -9115,25 +9211,25 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "bvs" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "bvZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "bwf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/purple{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "bws" = ( /obj/item/reagent_containers/chem_disp_cartridge/mercury, /obj/item/reagent_containers/chem_disp_cartridge/sugar{ @@ -9153,7 +9249,7 @@ }, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "bwv" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -9167,16 +9263,16 @@ dir = 8 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "bwy" = ( /obj/structure/table/darkglass, /obj/random/drinkbottle, /turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "bwz" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "bwI" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -9201,7 +9297,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "bwJ" = ( /obj/structure/shuttle/engine/propulsion/burst, /obj/structure/window/titanium{ @@ -9218,7 +9314,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "bxe" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -9235,7 +9331,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "bxA" = ( /obj/structure/cable/green{ d1 = 2; @@ -9247,7 +9343,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "bxD" = ( /obj/item/material/shard{ icon_state = "medium" @@ -9259,7 +9355,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "byq" = ( /obj/machinery/camera/network/security{ dir = 4; @@ -9274,7 +9370,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "byL" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -9289,9 +9385,11 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "byQ" = ( -/obj/machinery/computer/ship/helm, +/obj/machinery/computer/ship/helm{ + req_one_access = list(1,19,67) + }, /turf/simulated/floor/tiled/milspec, /area/shuttle/needle) "bzk" = ( @@ -9302,10 +9400,10 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "bzn" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "bzt" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/steeldecal/steel_decals9, @@ -9324,7 +9422,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "bzz" = ( /obj/structure/cable/green{ d1 = 2; @@ -9340,7 +9438,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/machinery/porta_turret/industrial/teleport_defense, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "bzS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /obj/structure/cable/green{ @@ -9349,7 +9447,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "bzT" = ( /obj/structure/cable{ d1 = 4; @@ -9358,7 +9456,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "bzX" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 28; @@ -9371,7 +9469,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "bAl" = ( /obj/machinery/power/smes/buildable/power_shuttle{ charge = 2e+006; @@ -9403,17 +9501,17 @@ dir = 4 }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "bAM" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "bBn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 9 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "bBx" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -9424,14 +9522,15 @@ name = "Docking lane 5" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "bBA" = ( -/obj/machinery/light{ +/obj/machinery/light/spot{ dir = 1; - name = "1N-lighting fixture" + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." }, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "bBI" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -9443,25 +9542,25 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "bBJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "bBM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "bBQ" = ( /obj/structure/bed/chair/sofa/corner/purp{ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "bCn" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -9504,7 +9603,7 @@ name = "S-status display" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "bCp" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -9513,7 +9612,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "bCq" = ( /obj/machinery/sleeper{ dir = 8 @@ -9544,7 +9643,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "bCu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -9558,7 +9657,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "bCA" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -9569,7 +9668,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "bCH" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ dir = 1; @@ -9580,10 +9679,10 @@ req_one_access = list(13) }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "bCN" = ( /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "bCX" = ( /obj/structure/cable/green{ d2 = 8; @@ -9609,7 +9708,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "bDh" = ( /obj/machinery/power/apc{ dir = 4; @@ -9622,7 +9721,7 @@ }, /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1) +/area/maintenance/Deck1_Security_PortChamber1) "bDN" = ( /obj/machinery/light{ dir = 4; @@ -9643,11 +9742,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "bDO" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "bDS" = ( /obj/machinery/light{ dir = 8; @@ -9672,27 +9771,27 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "bEi" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "bEm" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "bEn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "bEp" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "bEr" = ( /obj/machinery/telecomms/server/presets/supply, /obj/effect/catwalk_plated/dark, @@ -9701,11 +9800,11 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "bEH" = ( /obj/structure/closet/crate/wooden, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "bER" = ( /obj/machinery/power/port_gen/pacman, /obj/structure/cable/green{ @@ -9716,7 +9815,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "bFo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -9729,11 +9828,11 @@ dir = 10 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "bFB" = ( /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "bFD" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -9747,7 +9846,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "bFI" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -9769,11 +9868,11 @@ color = "#989898" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "bFJ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "bFR" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/steeldecal/steel_decals9, @@ -9792,13 +9891,13 @@ network = list("Science","Xenoflora") }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "bFU" = ( /obj/effect/floor_decal/corner/white{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "bFZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -9829,11 +9928,11 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "bGi" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "bGr" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4 @@ -9849,14 +9948,14 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "bGw" = ( /obj/machinery/light/small, /obj/structure/table/rack, /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "bGL" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -9868,20 +9967,20 @@ req_one_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Harbor_Substation) +/area/maintenance/Harbor_Substation) "bGU" = ( /obj/vehicle/train/trolley{ dir = 8 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "bHe" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "bHz" = ( /obj/structure/window/titanium{ dir = 8 @@ -9899,7 +9998,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "bHO" = ( /obj/machinery/button/remote/blast_door{ dir = 1; @@ -9910,7 +10009,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "bHR" = ( /obj/structure/table/rack/shelf, /obj/random/tool, @@ -9923,19 +10022,19 @@ /obj/random/mech_toy, /obj/random/forgotten_tram, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "bIB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "bIO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "bJc" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/outline/yellow, @@ -9946,14 +10045,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "bJd" = ( /obj/structure/sign/directions/teleporter{ pixel_y = 9; dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "bJj" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9963,7 +10062,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "bJq" = ( /obj/structure/cable/white{ d1 = 1; @@ -9974,7 +10073,7 @@ id_tag = "sc-ChimeSci" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "bJF" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -9983,12 +10082,12 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "bJP" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/coolanttank, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "bJW" = ( /obj/structure/cable/green{ d1 = 2; @@ -10010,10 +10109,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "bJY" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "bKn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -10025,10 +10124,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "bKR" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "bLd" = ( /obj/structure/sign/warning/evac, /turf/simulated/shuttle/wall/no_join{ @@ -10050,14 +10149,14 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "bLu" = ( /obj/structure/stairs/spawner/east, /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "bLA" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -10074,7 +10173,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "bLE" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -10083,16 +10182,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "bLF" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "bLO" = ( /obj/random/junk, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "bLW" = ( /obj/item/material/kitchen/utensil/fork{ pixel_y = 21; @@ -10107,19 +10206,21 @@ pixel_x = 1 }, /obj/structure/table/fancyblack, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "bMe" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "bMh" = ( /obj/structure/table/woodentable, /obj/item/deck/tarot, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "bMq" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -10140,22 +10241,22 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "bMw" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "bMN" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "bMX" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "bNe" = ( /obj/effect/floor_decal/industrial/hatch, /obj/machinery/shield_diffuser, @@ -10164,7 +10265,7 @@ name = "Containment Vent Doors" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "bNk" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27; @@ -10179,29 +10280,20 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "bNq" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 4 - }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "bNF" = ( /obj/structure/table/standard, /obj/random/soap, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "bNP" = ( /obj/structure/sign/warning/evac, /turf/simulated/shuttle/wall/no_join{ @@ -10215,17 +10307,17 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "bNT" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "bNU" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "bOk" = ( /obj/machinery/newscaster{ name = "1N-newscaster"; @@ -10239,7 +10331,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "bOw" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -10248,7 +10340,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "bOS" = ( /obj/machinery/light{ dir = 8; @@ -10270,7 +10362,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "bOT" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -10278,11 +10370,11 @@ network = list("Commons") }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "bOY" = ( /obj/structure/salvageable/slotmachine2, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "bPd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -10295,8 +10387,17 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "bPh" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -10315,7 +10416,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "bPm" = ( /obj/effect/floor_decal/techfloor/orange, /obj/effect/floor_decal/techfloor/hole/right, @@ -10323,19 +10424,16 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "bPp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "bPy" = ( /obj/structure/cable{ d1 = 1; @@ -10348,30 +10446,34 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "bPz" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "bPD" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "bPT" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "bQe" = ( /obj/structure/table/standard, /obj/item/tool/wirecutters/clippers/trimmers, +/obj/machinery/light{ + dir = 1; + name = "1N-lighting fixture" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "bQl" = ( /obj/random/trash, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "bQm" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -10400,7 +10502,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "bQp" = ( /obj/structure/grille, /obj/structure/shuttle/window, @@ -10414,16 +10516,16 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "bQW" = ( -/obj/structure/particle_accelerator/fuel_chamber{ - anchored = 1; - construction_state = 1; - dir = 4 +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/PA_Chamber) +/obj/effect/catwalk_plated/white, +/turf/simulated/floor/plating/turfpack/airless, +/area/harbor/Dock4) "bRj" = ( /obj/structure/closet, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -10449,7 +10551,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "bRE" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -10458,14 +10560,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "bRF" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "bRL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -10490,7 +10592,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "bSj" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -10502,7 +10604,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "bSu" = ( /obj/machinery/light{ dir = 4; @@ -10524,7 +10626,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "bSz" = ( /obj/machinery/light{ dir = 1; @@ -10537,7 +10639,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "bSD" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/meter, @@ -10548,7 +10650,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "bSH" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 @@ -10561,12 +10663,12 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "bSS" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "bST" = ( /obj/machinery/light{ dir = 1; @@ -10579,7 +10681,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "bSW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -10587,7 +10689,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "bTL" = ( /obj/structure/railing/grey{ dir = 1 @@ -10597,7 +10699,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "bUP" = ( /obj/machinery/shower{ dir = 1 @@ -10611,11 +10713,11 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "bUT" = ( /obj/structure/sign/warning/evac, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "bUY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -10627,13 +10729,13 @@ pixel_y = -22 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "bVl" = ( /obj/structure/bed/chair/bay{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "bVF" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 1 @@ -10658,34 +10760,24 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "bWj" = ( /obj/structure/bed/chair/oldsofa/right{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "bWq" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 1 +/obj/effect/catwalk_plated/techmaint, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/arrows/blue, -/obj/machinery/door/airlock/angled_bay/standard{ - dir = 4; - name = "Cryostorage hall" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_Security_PortCorridor2) "bWt" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -10694,7 +10786,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "bWv" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -10722,7 +10814,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "bWK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -10738,7 +10830,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "bWN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -10755,32 +10847,24 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "bWQ" = ( /obj/random/cutout, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "bWY" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) -"bXo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/maintenance/Deck1_AftStar1_Corridor2) "bXr" = ( /obj/structure/bed/chair/office/light, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "bXB" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "bXK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -10796,7 +10880,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) "bYa" = ( /obj/machinery/firealarm{ dir = 8; @@ -10810,7 +10894,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "bYk" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume, /obj/effect/map_helper/airlock/atmos/chamber_pump, @@ -10819,29 +10903,30 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "bYG" = ( /obj/structure/table/darkglass, /obj/item/toy/balloon, +/obj/item/spacecasinocash/c500, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "bZe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_AftStar1_Corridor1) "bZt" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "bZu" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "bZv" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -10862,7 +10947,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "bZA" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -10871,7 +10956,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "bZJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -10890,7 +10975,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "bZN" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -10924,14 +11009,14 @@ icon_state = "pipe-j2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "bZV" = ( /obj/structure/table/rack, /obj/item/seeds/wurmwoad{ icon_state = "" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "caq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -10944,13 +11029,9 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "caC" = ( /obj/structure/table/reinforced, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, /obj/item/tool/wrench, /obj/item/flashlight/color/yellow{ pixel_y = 6; @@ -10962,8 +11043,23 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + name = "E-light switch"; + pixel_x = 27; + pixel_y = -12 + }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "caL" = ( /obj/structure/cable/green{ d1 = 1; @@ -10979,11 +11075,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "caP" = ( /obj/structure/frame, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "caY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -10992,7 +11088,7 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/sec, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "cbx" = ( /obj/structure/bed/chair/oldsofa/left{ dir = 1 @@ -11002,7 +11098,16 @@ pixel_y = -22 }, /turf/simulated/floor/carpet/sblucarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) +"cbA" = ( +/obj/structure/bed/chair/bay, +/obj/machinery/light/spot{ + dir = 1; + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, +/turf/simulated/floor/plating, +/area/maintenance/ab_SportsField) "ccf" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -11013,7 +11118,7 @@ "ccD" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "ccF" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -11022,7 +11127,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) +"ccR" = ( +/obj/machinery/light_construct{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/Market_Stall_5) "cda" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -11032,7 +11143,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "cdz" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -11043,7 +11154,7 @@ /area/shuttle/ursula) "cdE" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "cdJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -11052,14 +11163,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "cdQ" = ( /obj/machinery/atm{ pixel_y = 22; name = "1N-Automatic Teller Machine" }, /turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "cdY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -11069,8 +11180,22 @@ /obj/machinery/door/airlock/maintenance/int{ name = "Equipment Access" }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "ceo" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -11086,7 +11211,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "cet" = ( /obj/structure/cable/green{ d1 = 1; @@ -11098,11 +11223,11 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "ceA" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "ceC" = ( /obj/structure/cable/green{ d1 = 4; @@ -11110,13 +11235,13 @@ icon_state = "4-8" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "cfa" = ( /obj/effect/floor_decal/spline/fancy{ dir = 9 }, /turf/simulated/floor/carpet/purcarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "cfj" = ( /obj/structure/sign/nanotrasen, /turf/simulated/shuttle/wall/no_join{ @@ -11133,10 +11258,10 @@ /area/shuttle/escape_pod8/station) "cfo" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "cfp" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "cfS" = ( /obj/effect/shuttle_landmark/southern_cross/cryostorage_station, /turf/simulated/shuttle/floor, @@ -11152,11 +11277,19 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) +"cgh" = ( +/obj/structure/sign/directions/science/exploration{ + pixel_y = 9; + dir = 5; + layer = 3.5 + }, +/turf/simulated/wall, +/area/hallway/Cryostorage_Lounge) "cgD" = ( /obj/structure/table/marble, /turf/simulated/floor/bmarble, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "cgH" = ( /obj/item/radio/intercom{ dir = 8; @@ -11164,7 +11297,7 @@ pixel_x = -22 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "cgT" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -11178,17 +11311,17 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "cgV" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "cha" = ( /obj/machinery/light_construct/floortube{ dir = 4 }, /turf/simulated/floor/grass2/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "chu" = ( /obj/structure/cable{ d1 = 4; @@ -11198,7 +11331,7 @@ /obj/structure/table/standard, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "chC" = ( /obj/structure/cable/white{ d1 = 4; @@ -11209,13 +11342,13 @@ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "chI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "chO" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 8; @@ -11232,7 +11365,7 @@ use_power = 1 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "chQ" = ( /obj/machinery/atmospheric_field_generator/perma/underdoors{ color = "Yellow" @@ -11243,7 +11376,7 @@ name = "Primary Docking Gate" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "cit" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 1 @@ -11259,7 +11392,7 @@ /obj/structure/table/standard, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "cjd" = ( /obj/structure/cable/white{ d1 = 4; @@ -11270,7 +11403,7 @@ name = "Security Checkpoint" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "cji" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -11290,7 +11423,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "cjo" = ( /obj/machinery/artifact_scanpad, /obj/machinery/camera/network/security{ @@ -11305,7 +11438,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "cjE" = ( /obj/machinery/telecomms/server/presets/service/southerncross, /obj/effect/catwalk_plated/dark, @@ -11314,7 +11447,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "cjG" = ( /obj/effect/catwalk_plated/dark, /turf/simulated/floor/plating{ @@ -11322,23 +11455,23 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "ckb" = ( -/obj/machinery/status_display{ - name = "E-status display"; - pixel_x = 32 - }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /obj/effect/floor_decal/borderfloor{ - dir = 5 + dir = 1 }, /obj/effect/floor_decal/corner/white/border{ - dir = 5 + dir = 1 + }, +/obj/machinery/firealarm{ + name = "N-fire alarm"; + pixel_y = 25 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "ckg" = ( /obj/structure/bed/chair/shuttle, /turf/simulated/shuttle/floor/darkred, @@ -11352,7 +11485,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "ckt" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -11363,7 +11496,7 @@ /obj/effect/floor_decal/rust, /obj/random/crate, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "cky" = ( /obj/structure/window/plastitanium/full, /obj/structure/window/reinforced/survival_pod{ @@ -11382,7 +11515,7 @@ "ckD" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "ckG" = ( /obj/effect/decal/cleanable/filth, /obj/structure/cable/green{ @@ -11391,7 +11524,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "cld" = ( /obj/structure/table/steel, /obj/item/storage/briefcase/inflatable{ @@ -11437,7 +11570,7 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "clj" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/northleft{ @@ -11453,7 +11586,7 @@ id = "sc-GCcustodian" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "clC" = ( /obj/structure/cable/green{ d1 = 4; @@ -11464,7 +11597,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "clD" = ( /obj/structure/table/steel, /obj/item/clamp{ @@ -11520,10 +11653,10 @@ pixel_x = 2 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "clF" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "clT" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -11532,7 +11665,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "clV" = ( /turf/simulated/wall/rthull, /area/shuttle/escape_pod2/station) @@ -11544,7 +11677,7 @@ /obj/structure/table/rack, /obj/random/flashlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "cmm" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -11557,11 +11690,11 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "cmq" = ( /obj/structure/grille/rustic, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "cmx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -11576,13 +11709,13 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "cmF" = ( /obj/structure/disposalpipe/tagger{ sort_tag = "transit_crew" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "cmI" = ( /obj/machinery/pointdefense{ id_tag = "PD Primary" @@ -11610,7 +11743,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "cnf" = ( /obj/effect/floor_decal/techfloor/orange, /obj/machinery/light/floortube{ @@ -11621,13 +11754,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "cni" = ( /obj/effect/floor_decal/corner/white{ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "cnq" = ( /obj/structure/table/rack/shelf, /obj/random/thermalponcho, @@ -11639,7 +11772,7 @@ /obj/random/material/refined, /obj/random/trash, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "cnx" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -11660,7 +11793,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "cnG" = ( /obj/machinery/power/apc{ dir = 8; @@ -11672,10 +11805,10 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "cnK" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "cnN" = ( /obj/machinery/exonet_node{ anchored = 1 @@ -11686,7 +11819,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "cnZ" = ( /obj/effect/catwalk_plated/dark, /obj/machinery/pda_multicaster, @@ -11695,10 +11828,10 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "cof" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "com" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -11711,13 +11844,13 @@ /obj/effect/map_helper/airlock/door/ext_door, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "cop" = ( /obj/structure/salvageable/data{ pixel_x = -9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "coq" = ( /obj/structure/table/steel_reinforced, /obj/item/destTagger{ @@ -11730,17 +11863,17 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "cpd" = ( /obj/random/trash, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "cpg" = ( /obj/random/trash, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "cpC" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -11757,7 +11890,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "cpE" = ( /obj/machinery/telecomms/server/presets/common, /obj/effect/catwalk_plated/dark, @@ -11766,7 +11899,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "cpG" = ( /obj/machinery/light{ dir = 8; @@ -11787,7 +11920,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "cpH" = ( /obj/structure/table/standard, /obj/item/storage/toolbox/mechanical{ @@ -11807,12 +11940,12 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "cpR" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "cqu" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -11833,40 +11966,40 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "cqF" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "cqN" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ dir = 1 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "cqS" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "crj" = ( /obj/machinery/light/small{ dir = 4 }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "cru" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "crv" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "crG" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "crI" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -11875,12 +12008,12 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "crV" = ( /obj/item/clothing/mask/muzzle/ballgag, /obj/effect/decal/remains/human, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "csE" = ( /obj/structure/table/standard, /obj/item/stock_parts/subspace/ansible{ @@ -11899,7 +12032,7 @@ pixel_x = 2 }, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "csT" = ( /obj/structure/sign/nanotrasen, /turf/simulated/wall/thull, @@ -11912,7 +12045,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "ctG" = ( /obj/machinery/computer/ship/navigation, /turf/simulated/floor/tiled/milspec, @@ -11922,25 +12055,25 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "cui" = ( /obj/structure/table/rack, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "cuI" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "cuO" = ( /obj/structure/closet, /obj/random/maintenance/engineering, /obj/random/junk, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "cuS" = ( /obj/effect/overmap/visitable/ship/landable/echidna, /turf/simulated/floor/tiled/milspec, @@ -11951,7 +12084,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "cuX" = ( /obj/structure/cable/green{ d1 = 1; @@ -11970,7 +12103,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "cva" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 @@ -11979,7 +12112,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "cvj" = ( /obj/structure/table/rack/shelf, /obj/random/material, @@ -11987,7 +12120,7 @@ /obj/item/seeds/random, /obj/random/multiple/voidsuit/vintage, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "cvs" = ( /obj/machinery/light/small{ dir = 8 @@ -11997,7 +12130,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "cvF" = ( /obj/structure/table/woodentable, /obj/item/paper_bin{ @@ -12022,7 +12155,7 @@ pixel_y = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "cvH" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -12031,8 +12164,9 @@ /area/shuttle/cryo/station) "cvO" = ( /obj/machinery/vending/sovietsoda, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "cvY" = ( /obj/structure/sink{ dir = 1; @@ -12053,7 +12187,13 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) +"cwq" = ( +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_ForPort_Corridor3) "cwx" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -12062,13 +12202,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "cwz" = ( /obj/structure/table, /obj/random/flashlight, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "cwI" = ( /obj/machinery/computer/atmos_alert{ dir = 8 @@ -12080,11 +12220,11 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "cwL" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "cxg" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -12093,7 +12233,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "cxj" = ( /obj/structure/table/rack/shelf, /obj/random/tool, @@ -12103,7 +12243,7 @@ /obj/random/maintenance, /obj/random/mainttoyloot, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "cxr" = ( /obj/structure/window/titanium{ dir = 1 @@ -12115,36 +12255,39 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "cxz" = ( /obj/structure/stairs/spawner/west, /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "cxF" = ( -/obj/structure/closet/crate/mimic/closet/cointoss, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/obj/machinery/firealarm{ + name = "N-fire alarm"; + pixel_y = 25 + }, +/turf/simulated/floor/glass/reinforced, +/area/hallway/Port_1Deck_Central_Corridor_1) "cxK" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "cxX" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "cyc" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) "cyg" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "cyo" = ( /obj/structure/sign/warning/evac, /turf/simulated/shuttle/wall/no_join{ @@ -12156,7 +12299,7 @@ "cyp" = ( /obj/structure/table, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "cys" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -12165,7 +12308,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "cyL" = ( /turf/simulated/wall/rshull, /area/shuttle/echidna) @@ -12174,7 +12317,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "cyO" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -12187,7 +12330,7 @@ pixel_x = -3 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "cyR" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -12196,7 +12339,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "cyT" = ( /obj/structure/cable/green{ d1 = 2; @@ -12204,7 +12347,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "cyW" = ( /obj/structure/cable/green{ d1 = 1; @@ -12220,10 +12363,10 @@ network = list("Science") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "cyY" = ( /turf/simulated/floor/grass2/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "czn" = ( /obj/structure/dispenser/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -12234,7 +12377,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "czr" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -12243,13 +12386,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "czv" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/simulated/shuttle/floor/voidcraft/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "czG" = ( /obj/effect/floor_decal/industrial/loading/blue{ dir = 1 @@ -12267,36 +12410,43 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "czJ" = ( /obj/random/mainttoyloot, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "czN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "czX" = ( /obj/structure/stairs/spawner/north, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "cAs" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "cAC" = ( /obj/structure/cable{ d1 = 2; d2 = 4; icon_state = "2-4" }, -/turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel/broken{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen broken" + }, +/area/maintenance/ab_Kitchen) "cAK" = ( /obj/structure/sign/nanotrasen, /turf/simulated/shuttle/wall/no_join{ @@ -12311,20 +12461,24 @@ /obj/effect/floor_decal/industrial/arrows/yellow{ dir = 1 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "cAM" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "cAP" = ( /obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "cAX" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -12333,7 +12487,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "cBw" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -12342,7 +12496,7 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "cBL" = ( /obj/item/reagent_containers/chem_disp_cartridge/water, /obj/item/reagent_containers/chem_disp_cartridge/ethanol{ @@ -12355,13 +12509,13 @@ /obj/effect/decal/cleanable/cobweb2, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "cBS" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "cBZ" = ( /obj/structure/cable/white{ d1 = 4; @@ -12369,7 +12523,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "cCj" = ( /obj/machinery/telecomms/receiver/preset_right/southerncross, /obj/effect/catwalk_plated/dark, @@ -12378,7 +12532,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "cCn" = ( /obj/structure/table/rack/shelf, /obj/item/honey_frame{ @@ -12427,7 +12581,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "cCp" = ( /obj/structure/table/rack/shelf, /obj/item/bee_smoker{ @@ -12465,25 +12619,25 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "cCw" = ( /obj/structure/table/rack/shelf/steel, /obj/random/flashlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "cCz" = ( /obj/structure/window/basic, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "cCF" = ( /obj/machinery/light/floortube{ dir = 8 }, /turf/simulated/floor/grass2/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "cDf" = ( /obj/machinery/power/apc{ dir = 1; @@ -12495,7 +12649,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "cDj" = ( /obj/machinery/computer/security/engineering{ dir = 8 @@ -12510,11 +12664,11 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "cDx" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "cDB" = ( /obj/structure/bed/chair/wood{ dir = 1 @@ -12522,7 +12676,7 @@ /obj/effect/catwalk_plated/dark, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "cDF" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 @@ -12537,13 +12691,13 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "cDG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "cDT" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -12572,7 +12726,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "cDX" = ( /obj/structure/cable{ d1 = 4; @@ -12582,7 +12736,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "cEg" = ( /obj/item/stool/padded, /obj/effect/floor_decal/borderfloorwhite{ @@ -12592,7 +12746,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "cEI" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloorwhite{ @@ -12602,7 +12756,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "cFh" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/industrial/danger/corner, @@ -12612,34 +12766,48 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "cFn" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "cFC" = ( /obj/item/clothing/head/collectable/chef, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "cFX" = ( /obj/structure/closet/crate/large, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "cGe" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "cGn" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "cGE" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 @@ -12648,7 +12816,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "cHa" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -12662,16 +12830,16 @@ }, /obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "cHi" = ( /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "cHx" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "cHS" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -12680,7 +12848,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "cHT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -12690,10 +12858,10 @@ pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "cIq" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Harbor_Substation) +/area/maintenance/Harbor_Substation) "cIr" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -12702,7 +12870,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "cIs" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -12712,7 +12880,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "cIN" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, @@ -12720,7 +12888,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "cIO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -12732,7 +12900,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "cIR" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -12742,17 +12910,17 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "cIS" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1) +/area/maintenance/Deck1_Security_PortChamber1) "cJk" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "cJw" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/steeldecal/steel_decals9, @@ -12766,7 +12934,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "cJx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -12775,23 +12943,23 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "cKs" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "cKX" = ( /obj/machinery/light/small{ dir = 1 }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "cLc" = ( /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "cLo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -12800,13 +12968,13 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "cLt" = ( /obj/machinery/doorbell_chime{ id_tag = "sc-ChimeCar" }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "cLv" = ( /obj/structure/cable{ d1 = 1; @@ -12823,20 +12991,20 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "cMg" = ( /obj/structure/closet/crate/mimic/closet/guaranteed, /obj/effect/floor_decal/borderfloor{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "cMm" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "cMo" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/random{ @@ -12863,7 +13031,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "cMD" = ( /obj/effect/floor_decal/industrial/stand_clear, /obj/structure/railing/grey{ @@ -12875,14 +13043,14 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "cMG" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "cMJ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -12908,7 +13076,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "cML" = ( /obj/structure/cable/green{ d1 = 4; @@ -12932,25 +13100,27 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "cMO" = ( /obj/effect/floor_decal/rust, /obj/random/trash, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "cNg" = ( -/obj/structure/lattice, -/obj/machinery/light/small/emergency, -/turf/space, -/area/space) +/turf/simulated/floor/tiled/dark, +/area/harbor/Dock1) "cNi" = ( /obj/structure/table/marble, /obj/random/junk, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "cNt" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "cNP" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -12959,20 +13129,20 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "cNT" = ( /obj/structure/disposalpipe/segment, /obj/random/trash, /obj/random/maintenance/clean, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "cNU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "cOf" = ( /obj/effect/landmark{ name = "lightsout" @@ -12984,13 +13154,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "cOl" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "cOF" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -13013,7 +13183,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "cOQ" = ( /obj/machinery/light{ dir = 1; @@ -13027,17 +13197,16 @@ pixel_y = 24 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "cPd" = ( -/obj/structure/railing{ - dir = 1 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/light/bigfloorlamp{ - density = 0; - pixel_y = 30 - }, -/turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/engineering/Telecomms_Foyer) "cPe" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -13051,23 +13220,23 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "cPf" = ( /obj/machinery/light/small, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "cPi" = ( /obj/structure/table/marble, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "cPr" = ( /obj/structure/table/glass, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "cPy" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "cPL" = ( /obj/machinery/light{ dir = 8; @@ -13091,7 +13260,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "cPO" = ( /obj/structure/cable/green{ d1 = 4; @@ -13103,20 +13272,20 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "cPS" = ( /obj/structure/table/steel, /obj/random/maintenance/cargo, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "cQf" = ( /obj/structure/table/rack, /obj/item/seeds/ghostchiliseed{ icon_state = "" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "cQB" = ( /obj/structure/cable/green{ d1 = 4; @@ -13134,11 +13303,11 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "cQS" = ( /obj/structure/sign/warning/secure_area, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "cQX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -13158,7 +13327,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "cQZ" = ( /obj/structure/curtain/black{ icon_state = "open"; @@ -13167,7 +13336,7 @@ opacity = 0 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "cRa" = ( /obj/item/clothing/under/pants/khaki, /obj/item/clothing/shoes/footwraps{ @@ -13184,7 +13353,7 @@ }, /obj/random/junk, /turf/simulated/floor/wood/alt/tile/broken, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "cRb" = ( /obj/structure/cable/green{ d1 = 1; @@ -13201,7 +13370,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "cRm" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -13219,7 +13388,11 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) +"cRo" = ( +/obj/structure/mob_spawner/mouse_nest, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_AftPort_Chamber1) "cRu" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -13236,7 +13409,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "cRM" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -13248,7 +13421,7 @@ dir = 10 }, /turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "cRQ" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 @@ -13260,11 +13433,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "cRX" = ( /obj/machinery/door/window/survival_pod{ dir = 1; - req_one_access = list(67) + req_one_access = list(1,19,67) }, /turf/simulated/floor/tiled/milspec, /area/shuttle/needle) @@ -13273,7 +13446,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "cSw" = ( /obj/structure/cable/white{ d1 = 1; @@ -13281,14 +13454,14 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "cSG" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "cSP" = ( /obj/effect/floor_decal/techfloor/orange, /obj/effect/floor_decal/techfloor/hole/right, @@ -13299,7 +13472,7 @@ icon_state = "2-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "cSV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -13311,7 +13484,7 @@ }, /obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "cTd" = ( /obj/machinery/smartfridge/secure/extract, /obj/structure/cable/white{ @@ -13320,7 +13493,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "cTv" = ( /obj/structure/bed/chair/backed_red{ dir = 1 @@ -13333,17 +13506,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "cTx" = ( /obj/structure/urinal{ pixel_y = 28 }, -/obj/structure/disposalpipe/tagger{ - sort_tag = "Resleeving"; - dir = 4 - }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "cTW" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -13352,7 +13521,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "cUb" = ( /obj/item/vac_attachment, /obj/structure/closet/jequipcloset, @@ -13367,7 +13536,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "cUy" = ( /obj/machinery/light{ dir = 8; @@ -13381,13 +13550,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "cUA" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "cUK" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "cUO" = ( /obj/structure/cable{ d1 = 1; @@ -13396,7 +13565,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "cVn" = ( /obj/machinery/pointdefense{ id_tag = "PD Primary" @@ -13414,18 +13583,18 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "cVF" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/shuttle/blue{ - pixel_x = -1; - pixel_y = 1 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/turf/simulated/floor/tiled, +/area/security/Quantum_Pad_Storage) "cVJ" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -13434,7 +13603,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "cWh" = ( /obj/structure/cable{ d1 = 4; @@ -13447,12 +13616,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "sc-GCMarket6"; + name = "Market Shutters Control"; + pixel_y = -24 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "cWo" = ( /obj/random/mainttoyloot, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "cWs" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -13462,7 +13637,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "cWF" = ( /obj/structure/closet/secure_closet/bar{ locked = 0 @@ -13471,13 +13646,13 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "cWQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "cXa" = ( /obj/structure/cable/green{ d1 = 1; @@ -13488,17 +13663,17 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "cXm" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "cXx" = ( /obj/machinery/gravity_generator/main/station/admin, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "cXM" = ( /obj/structure/toilet{ dir = 1 @@ -13510,8 +13685,12 @@ }, /obj/effect/decal/cleanable/greenglow, /obj/effect/decal/cleanable/filth, -/turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/kafel_full{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen floor" + }, +/area/maintenance/ab_Kitchen) "cXY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -13530,7 +13709,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "cXZ" = ( /obj/effect/floor_decal/shuttle/handicap{ pixel_x = -1; @@ -13545,7 +13724,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "cYb" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 @@ -13577,13 +13756,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "cYg" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "cYH" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -13602,13 +13781,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "cYN" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "cZm" = ( /obj/structure/closet/secure_closet/freezer/fridge{ starts_with = null @@ -13625,7 +13804,7 @@ /obj/random/drinksoft, /obj/random/drinksoft, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "cZn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -13639,7 +13818,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "cZt" = ( /obj/machinery/telecomms/relay/preset/southerncross/d2, /obj/effect/catwalk_plated/dark, @@ -13648,7 +13827,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "cZL" = ( /obj/structure/cable/green{ d1 = 1; @@ -13658,7 +13837,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "cZP" = ( /obj/structure/cable/green{ d1 = 1; @@ -13672,7 +13851,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "cZV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -13694,7 +13873,7 @@ color = "Yellow" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "dag" = ( /obj/structure/closet/crate/engineering, /obj/fiftyspawner/steel, @@ -13735,24 +13914,33 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "daD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/obj/effect/catwalk_plated/techmaint, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_Security_PortCorridor2) "daH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "daQ" = ( /obj/machinery/holoposter, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "daR" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -13772,13 +13960,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "daS" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "dbc" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ frequency = 1380; @@ -13804,7 +13992,7 @@ /obj/random/maintenance/misc, /obj/random/medical/pillbottle, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "dbs" = ( /obj/effect/floor_decal/corner/white{ dir = 5 @@ -13818,7 +14006,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "dbz" = ( /obj/effect/decal/cleanable/blood/splatter{ color = "#ffc43b"; @@ -13826,7 +14014,7 @@ icon_state = "mfloor6" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "dbO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -13838,7 +14026,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "dcd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -13847,7 +14035,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "dce" = ( /obj/structure/cable/green{ d1 = 1; @@ -13867,10 +14055,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "dcA" = ( /turf/unsimulated/mask, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "dcI" = ( /obj/structure/bed/chair/wheelchair/motor, /obj/effect/floor_decal/industrial/hatch/blue, @@ -13879,7 +14067,7 @@ }, /obj/structure/window/basic, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "ddb" = ( /obj/structure/table/steel_reinforced, /obj/item/hand_labeler, @@ -13889,7 +14077,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "ddh" = ( /obj/machinery/gateway, /obj/effect/floor_decal/techfloor/orange, @@ -13897,7 +14085,7 @@ name = "JoinLateStationGateway" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "ddn" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -13905,7 +14093,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "ddr" = ( /obj/effect/catwalk_plated/white, /obj/structure/cable/green{ @@ -13926,61 +14114,64 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "ddt" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "ddA" = ( /obj/structure/sign/flag/catpirate/right{ desc = "Rattle my bones, horned skull cuisuine!"; name = "Horned skull flag" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "ddP" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ color = "#989898"; dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "ddS" = ( -/obj/machinery/light{ - name = "1S-light fixture" +/obj/machinery/light/spot{ + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "dea" = ( /obj/effect/catwalk_plated/white, /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "deb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "dec" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "dem" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "det" = ( /obj/machinery/portable_atmospherics/canister/empty/nitrous_oxide, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "deu" = ( /obj/machinery/pointdefense{ id_tag = "PD Primary" @@ -13990,15 +14181,16 @@ d2 = 8; icon_state = "0-8" }, +/obj/effect/catwalk_plated/white, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "deI" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "deM" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -14008,7 +14200,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "deY" = ( /obj/structure/cable/green{ d1 = 4; @@ -14032,7 +14224,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "dfh" = ( /obj/structure/table/bench/sifwooden/padded, /obj/machinery/camera/network/security{ @@ -14041,7 +14233,7 @@ network = list("Harbor") }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "dfC" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -14055,11 +14247,11 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "dfJ" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "dfZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -14088,13 +14280,13 @@ frequency = 1380 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "dgg" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/cargo, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "dgm" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -14108,7 +14300,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "dgp" = ( /obj/machinery/light{ dir = 8; @@ -14125,11 +14317,11 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "dgA" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "dgC" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor{ @@ -14139,11 +14331,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "dgD" = ( /obj/structure/window/reinforced, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "dgH" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 1 @@ -14168,19 +14360,19 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/black/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "dhq" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "dht" = ( /obj/structure/bed/chair/sofa/right/beige{ dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "dhx" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 @@ -14189,14 +14381,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "dhy" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/cargo, /obj/random/maintenance/clean, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "dig" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -14205,7 +14397,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "dih" = ( /obj/structure/cable/green{ d1 = 1; @@ -14215,8 +14407,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "din" = ( /obj/machinery/pointdefense{ id_tag = "PD Primary" @@ -14240,7 +14433,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "dix" = ( /obj/effect/overmap/visitable/sector/Southern_Cross, /turf/space, @@ -14253,25 +14446,11 @@ pixel_x = 22 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) -"diz" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/rnd/Xenobotany_Isolation_Chamber) "diR" = ( /obj/random/tank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "djd" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -14289,14 +14468,14 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "djh" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "djt" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -14307,20 +14486,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "djA" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "djE" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "djI" = ( /obj/structure/closet/walllocker/medical/west, /turf/simulated/shuttle/floor, @@ -14338,7 +14517,7 @@ pixel_y = 26 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "djQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -14346,11 +14525,11 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "djX" = ( /obj/machinery/oxygen_pump/mobile/anesthetic, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "dkj" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -14371,10 +14550,15 @@ /area/shuttle/large_escape_pod2/station) "dkt" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "dkw" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/window/brigdoor/eastleft{ @@ -14395,7 +14579,7 @@ layer = 3.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dkz" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -14404,7 +14588,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "dla" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -14414,7 +14598,7 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "dld" = ( /obj/structure/cable/green{ d1 = 1; @@ -14425,14 +14609,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "dlj" = ( /obj/structure/closet, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "dlW" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -14445,26 +14629,33 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "dlZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dmb" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "dmc" = ( /obj/structure/table/marble, /obj/item/coin/phoron, /obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "dmf" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "dml" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -14486,22 +14677,22 @@ color = "#989898" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "dmr" = ( /obj/random/junk, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "dmB" = ( /obj/random/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "dmD" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "dnB" = ( /obj/item/radio/intercom{ dir = 1; @@ -14515,11 +14706,11 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "dnC" = ( /obj/machinery/vending/hydronutrients, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "dnH" = ( /obj/machinery/door/window/survival_pod{ dir = 2 @@ -14533,7 +14724,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "doa" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -14552,32 +14743,32 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "doo" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "dow" = ( /obj/structure/railing, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "dox" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "doz" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "doD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "doP" = ( /obj/effect/floor_decal/shuttles{ dir = 8 @@ -14591,7 +14782,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "doR" = ( /obj/effect/floor_decal/corner/orange/border{ dir = 1 @@ -14599,7 +14790,20 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) +"doV" = ( +/obj/machinery/ai_status_display{ + name = "1N-AI display"; + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/Deck1_Star_Corridor) "doW" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -14608,7 +14812,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "dpe" = ( /obj/machinery/chem_master, /obj/effect/floor_decal/milspec/color/purple, @@ -14626,7 +14830,7 @@ "dpG" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "dpJ" = ( /obj/random/medical/pillbottle, /obj/random/medical/pillbottle, @@ -14668,14 +14872,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "dqg" = ( /obj/structure/bed/chair/oldsofa, /obj/machinery/light_construct/small{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "dqo" = ( /obj/structure/cable/green{ d1 = 4; @@ -14693,13 +14897,13 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "dqQ" = ( /obj/random/junk, /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "drQ" = ( /obj/machinery/computer/security/mining{ desc = "Used to access the various cameras on the station."; @@ -14713,7 +14917,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "drX" = ( /obj/effect/catwalk_plated/white, /obj/machinery/camera/network/security{ @@ -14722,7 +14926,7 @@ network = list("Harbor") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "dsn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -14730,12 +14934,12 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "dso" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "dsz" = ( /obj/machinery/alarm{ dir = 8; @@ -14749,7 +14953,7 @@ }, /obj/effect/catwalk_plated/white, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "dsC" = ( /obj/machinery/computer/shuttle_control/exploration{ dir = 8 @@ -14768,7 +14972,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "dsS" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -14788,7 +14992,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "dsU" = ( /obj/structure/closet/crate/wooden, /obj/random/junk, @@ -14796,7 +15000,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "dtt" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -14820,16 +15024,16 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "dtz" = ( /obj/effect/graffitispawner, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "dtR" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "dtT" = ( /obj/machinery/computer/secure_data{ dir = 1 @@ -14854,21 +15058,21 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "dtX" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "dun" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "duw" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "duC" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14877,7 +15081,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "duN" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -14885,7 +15089,7 @@ id = "sc-WTxenoflora" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "dvd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -14899,7 +15103,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "dvf" = ( /obj/structure/cable/white{ d1 = 4; @@ -14918,7 +15122,7 @@ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "dvj" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -14944,7 +15148,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "dvt" = ( /obj/structure/cable/green{ d1 = 1; @@ -14958,7 +15162,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "dvD" = ( /obj/structure/table/reinforced, /obj/machinery/cash_register/science{ @@ -14974,7 +15178,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "dvJ" = ( /obj/structure/bed/chair/backed_red{ dir = 8 @@ -14985,7 +15189,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "dvW" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/southleft{ @@ -15002,7 +15206,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "dwh" = ( /obj/structure/bed/chair/backed_red{ dir = 1 @@ -15012,7 +15216,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "dwk" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -15030,7 +15234,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dww" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -15045,7 +15249,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "dwT" = ( /obj/machinery/light{ dir = 4; @@ -15058,7 +15262,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "dwU" = ( /obj/random/junk, /obj/effect/catwalk_plated/dark, @@ -15068,7 +15272,7 @@ }, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "dxb" = ( /obj/structure/bed/pillowpilefront/white, /obj/item/storage/vore_egg/rainbow{ @@ -15079,7 +15283,7 @@ pixel_x = -2 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "dxk" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -15088,7 +15292,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "dxC" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15097,7 +15301,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "dxD" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -15120,13 +15324,13 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "dxJ" = ( /obj/structure/closet/crate/engineering, /obj/fiftyspawner/steel, /obj/fiftyspawner/glass, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "dxN" = ( /obj/structure/table/rack/shelf, /obj/random/fishing_junk, @@ -15136,19 +15340,19 @@ /obj/random/tool/powermaint, /obj/random/mouseray, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "dxP" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "dxQ" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "dyd" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/mask/gas{ @@ -15173,7 +15377,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "dyp" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 9 @@ -15182,11 +15386,12 @@ dir = 10 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "dyu" = ( /obj/effect/floor_decal/industrial/danger/corner, +/obj/item/geiger/wall/south, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "dyP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 6 @@ -15207,7 +15412,7 @@ "dyW" = ( /obj/structure/sign/level/one/large, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "dzm" = ( /obj/machinery/alarm{ dir = 4; @@ -15221,13 +15426,13 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "dzu" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "dzB" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 @@ -15236,7 +15441,7 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dzI" = ( /obj/structure/extinguisher_cabinet{ name = "1N-extinguisher cabinet"; @@ -15249,7 +15454,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "dAc" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -15257,7 +15462,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "dAi" = ( /obj/structure/table/rack/shelf, /obj/random/medical/pillbottle, @@ -15271,11 +15476,11 @@ /obj/random/mech_toy, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "dAy" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "dAz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -15293,7 +15498,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "dAE" = ( /obj/machinery/light{ dir = 4; @@ -15316,7 +15521,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "dAT" = ( /obj/machinery/light/small{ dir = 4 @@ -15324,18 +15529,18 @@ /obj/random/trash, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "dAU" = ( /obj/structure/table/woodentable, /obj/item/paper_bin, /obj/item/pen/fountain, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "dAV" = ( /obj/effect/decal/cleanable/greenglow, /obj/item/implant/sizecontrol, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "dBh" = ( /obj/effect/catwalk_plated/white, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -15345,12 +15550,12 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "dBn" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "dBE" = ( /obj/structure/cable/white{ d1 = 4; @@ -15362,7 +15567,7 @@ icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dBM" = ( /obj/structure/cable/green{ d1 = 2; @@ -15385,13 +15590,20 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) +"dBV" = ( +/obj/machinery/light{ + dir = 1; + name = "1N-lighting fixture" + }, +/turf/simulated/floor/tiled, +/area/maintenance/Market_Stall_3) "dCc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "dCm" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -15400,7 +15612,24 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) +"dCC" = ( +/obj/structure/sign/directions/cargo{ + pixel_y = 9; + dir = 4; + layer = 3.5 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + layer = 3.5 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = -9; + layer = 3.5 + }, +/turf/simulated/wall/r_wall, +/area/harbor/Dock2) "dDc" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/porta_turret/industrial/teleport_defense, @@ -15413,7 +15642,7 @@ network = list("Engineering") }, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "dDh" = ( /obj/effect/shuttle_landmark{ base_area = /area/hangar/two; @@ -15437,7 +15666,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "dDx" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -15446,16 +15675,16 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "dDR" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "dDV" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "dEi" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -15477,16 +15706,17 @@ "dEs" = ( /obj/structure/table/rack, /obj/item/material/fishing_net, -/obj/item/material/fishing_net, -/obj/item/material/fishing_net, -/obj/item/material/fishing_net, +/obj/item/material/fishing_net{ + pixel_y = 3; + pixel_x = 3 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "dEw" = ( /obj/item/stack/rods, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "dEH" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloorwhite{ @@ -15496,7 +15726,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dFb" = ( /obj/item/stool{ color = "grey" @@ -15504,8 +15734,13 @@ /obj/structure/sign/poster{ dir = 4 }, -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/item/organ/internal/kidneys/vox, +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "dFh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -15524,7 +15759,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "dFr" = ( /obj/effect/catwalk_plated/white, /obj/machinery/camera/network/security{ @@ -15533,14 +15768,14 @@ network = list("Harbor") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "dFt" = ( /obj/item/reagent_containers/glass/bucket{ pixel_x = 6; pixel_y = 7 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "dFA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 8 @@ -15549,8 +15784,12 @@ /area/shuttle/spacebus) "dFB" = ( /obj/structure/grille/rustic, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "dFO" = ( /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; @@ -15558,7 +15797,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "dGe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /obj/machinery/light{ @@ -15571,7 +15810,14 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) +"dGh" = ( +/obj/machinery/light{ + dir = 1; + name = "1N-lighting fixture" + }, +/turf/simulated/floor/glass/reinforced, +/area/hallway/ForStar_1_Deck_Observatory) "dGJ" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 @@ -15582,7 +15828,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "dGL" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/outline/yellow, @@ -15598,11 +15844,11 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "dGO" = ( /obj/structure/closet/radiation, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "dGQ" = ( /obj/structure/closet/walllocker/emerglocker{ pixel_x = -25; @@ -15614,7 +15860,7 @@ /obj/structure/loot_pile/maint/boxfort, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "dHg" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -15623,7 +15869,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "dHq" = ( /obj/machinery/telecomms/processor/preset_two, /obj/effect/catwalk_plated/dark, @@ -15632,7 +15878,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "dHs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -15648,7 +15894,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "dHv" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/borderfloorblack{ @@ -15658,7 +15904,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "dHz" = ( /obj/structure/cable/white{ d1 = 1; @@ -15666,7 +15912,7 @@ icon_state = "1-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "dHE" = ( /obj/structure/cable{ d1 = 4; @@ -15674,7 +15920,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "dHF" = ( /obj/structure/cable/green{ d1 = 2; @@ -15708,7 +15954,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "dHZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -15720,7 +15966,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dIc" = ( /obj/structure/bed/chair/wood/wings{ dir = 4 @@ -15729,21 +15975,16 @@ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "dId" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) +"dIh" = ( +/obj/machinery/light_construct, +/turf/simulated/floor/plating, +/area/maintenance/Market_Stall_3) "dIn" = ( /obj/structure/cable/green{ d1 = 4; @@ -15754,7 +15995,7 @@ dir = 4 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "dIq" = ( /obj/machinery/telecomms/relay/preset/southerncross/d1, /obj/effect/catwalk_plated/dark, @@ -15763,14 +16004,19 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "dIC" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /obj/structure/table/reinforced, +/obj/machinery/door/blast/shutters{ + layer = 3.5; + name = "Market Stall Shutters"; + id = "sc-GCMarket5" + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "dIE" = ( /obj/machinery/door/window/survival_pod{ dir = 2 @@ -15780,7 +16026,7 @@ "dIO" = ( /obj/item/storage/box/lights/mixed, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "dIT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -15797,17 +16043,17 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "dIX" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "dJh" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "dJi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -15820,7 +16066,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "dJp" = ( /obj/structure/cable/green{ d1 = 4; @@ -15829,16 +16075,20 @@ }, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "dKt" = ( /obj/random/trash, -/turf/simulated/floor/wood/alt/panel/broken, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "dKv" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/dispenser/oxygen, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "dKC" = ( /obj/structure/cable/white{ d1 = 1; @@ -15846,11 +16096,11 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "dLd" = ( /obj/structure/inflatable, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "dLu" = ( /obj/machinery/firealarm{ pixel_y = 25; @@ -15874,7 +16124,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "dLA" = ( /obj/structure/cable/green{ d1 = 1; @@ -15888,7 +16138,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "dLH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -15900,12 +16150,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "dLN" = ( /obj/random/tech_supply, /obj/structure/table, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "dLR" = ( /obj/machinery/light/small/emergency{ dir = 8 @@ -15942,20 +16192,20 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "dLX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "dMc" = ( /obj/structure/table/rack, /obj/item/seeds/megashroom{ icon_state = "" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "dMh" = ( /obj/item/storage/firstaid/regular{ empty = 1; @@ -15968,7 +16218,7 @@ name = "First-Aid (empty)" }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "dMi" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -15976,8 +16226,12 @@ dir = 1 }, /obj/structure/simple_door/wood, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "dMl" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/security, @@ -15986,10 +16240,10 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "dMr" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "dMT" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 8; @@ -15997,15 +16251,15 @@ use_power = 1 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "dMW" = ( /obj/random/junk, /obj/random/contraband, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "dMY" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "dNp" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -16024,7 +16278,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "dNz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 10 @@ -16035,18 +16289,18 @@ "dNN" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "dNS" = ( /obj/effect/floor_decal/spline/fancy{ dir = 6 }, /turf/simulated/floor/carpet/sblucarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "dOg" = ( /obj/structure/table/rack, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "dOB" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/basic{ @@ -16064,14 +16318,16 @@ c_tag = "D1-Sec-forlockeroom1" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "dOW" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/seeds/rose{ icon_state = "seed" }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "dPk" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -16080,7 +16336,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dPz" = ( /obj/machinery/light{ dir = 4; @@ -16089,7 +16345,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/blue/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "dPH" = ( /obj/structure/table/steel_reinforced, /obj/machinery/light{ @@ -16102,7 +16358,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "dPJ" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/white/border, @@ -16110,7 +16366,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "dPY" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -16120,14 +16376,14 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "dQd" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "dQh" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -16140,15 +16396,15 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "dQk" = ( /obj/structure/table/rack, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "dQm" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "dQu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -16163,13 +16419,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "dQz" = ( /obj/effect/floor_decal/rust, /obj/item/ruinedvirusdish, /obj/effect/decal/cleanable/blood, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "dQF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -16186,7 +16442,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "dQY" = ( /obj/structure/cable/green{ d1 = 4; @@ -16200,14 +16456,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "dRk" = ( /obj/structure/closet/radiation, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "dRz" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "dRF" = ( /obj/machinery/atmospherics/unary/engine/bigger{ dir = 1 @@ -16220,7 +16476,7 @@ pixel_y = 10 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "dRS" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/engineering, @@ -16229,19 +16485,19 @@ /obj/structure/curtain/black, /obj/item/stolenpackage, /turf/simulated/floor/bmarble, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "dRV" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/industrial/danger/corner, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "dRW" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "dSc" = ( /obj/effect/overmap/visitable/ship/landable/needle, /turf/simulated/floor/tiled/milspec, @@ -16249,7 +16505,7 @@ "dSo" = ( /obj/effect/floor_decal/industrial/stand_clear, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "dSs" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -16266,12 +16522,12 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "dSv" = ( /obj/machinery/mining/drill, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "dSy" = ( /obj/structure/cable/green{ d1 = 4; @@ -16288,7 +16544,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "dSB" = ( /obj/structure/cable/green{ d1 = 1; @@ -16306,25 +16562,18 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "dSK" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "dTn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/obj/machinery/light/small, +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_AftPort_Corridor3) "dTG" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -16345,18 +16594,20 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "dTJ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "dTP" = ( /obj/item/flame/candle/candelabra/everburn{ pixel_y = -6; pixel_x = 9 }, /obj/structure/table/fancyblack, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "dTR" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -16368,14 +16619,14 @@ }, /obj/machinery/door/airlock/maintenance/command, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "dTS" = ( /obj/machinery/light{ dir = 1; name = "1N-lighting fixture" }, /turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "dTW" = ( /obj/structure/cable/green{ d1 = 1; @@ -16383,7 +16634,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "dUf" = ( /obj/structure/bed/chair/oldsofa/left, /obj/item/handcuffs/fuzzy, @@ -16393,7 +16644,7 @@ id = "sc-WTmaintgamble1" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "dUu" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -16414,7 +16665,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "dUE" = ( /obj/machinery/light/small{ dir = 1 @@ -16422,7 +16673,7 @@ /obj/structure/table/standard, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "dVd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -16431,7 +16682,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "dVf" = ( /obj/effect/floor_decal/shuttle/handicap{ pixel_x = -1; @@ -16446,7 +16697,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "dVi" = ( /obj/structure/table/rack{ dir = 8; @@ -16485,14 +16736,14 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "dVr" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/disposalpipe/up{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "dVs" = ( /turf/simulated/wall/rthull, /area/shuttle/escape_pod5/station) @@ -16506,7 +16757,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "dVH" = ( /obj/structure/table/glass, /obj/item/clipboard, @@ -16515,7 +16766,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dVI" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/loading/blue{ @@ -16524,7 +16775,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "dVJ" = ( /obj/machinery/computer/operating{ name = "Xenobiology Operating Computer" @@ -16534,7 +16785,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dVK" = ( /obj/structure/table/glass, /obj/item/clothing/glasses/science{ @@ -16549,7 +16800,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dVL" = ( /obj/machinery/optable{ name = "Xenobiology Operating Table" @@ -16559,7 +16810,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dVM" = ( /obj/structure/disposalpipe/segment, /obj/machinery/button/remote/blast_door{ @@ -16580,14 +16831,14 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dVN" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dVP" = ( /turf/simulated/shuttle/plating/airless/carry, /area/shuttle/echidna) @@ -16601,7 +16852,7 @@ /obj/effect/map_helper/airlock/door/int_door, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "dVU" = ( /obj/machinery/telecomms/relay/preset/southerncross/d3, /obj/effect/catwalk_plated/dark, @@ -16610,11 +16861,11 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "dVV" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "dVW" = ( /obj/machinery/telecomms/bus/preset_one, /obj/effect/catwalk_plated/dark, @@ -16623,7 +16874,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "dVX" = ( /obj/machinery/telecomms/processor/preset_one, /obj/effect/catwalk_plated/dark, @@ -16632,7 +16883,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "dVZ" = ( /obj/effect/floor_decal/shuttle/loading/yellow{ dir = 8 @@ -16642,7 +16893,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "dWa" = ( /obj/machinery/power/apc{ dir = 1; @@ -16654,7 +16905,7 @@ icon_state = "0-2" }, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "dWb" = ( /obj/structure/cable/white{ d1 = 2; @@ -16662,7 +16913,7 @@ icon_state = "2-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "dWe" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/steeldecal/steel_decals9, @@ -16680,7 +16931,7 @@ name = "1N-AI display" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "dWf" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -16702,7 +16953,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "dWh" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -16742,7 +16993,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "dWk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -16767,7 +17018,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "dWp" = ( /obj/machinery/atmospherics/binary/passive_gate{ dir = 1; @@ -16789,7 +17040,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "dWy" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/pipe/simple/visible, @@ -16802,7 +17053,7 @@ name = "Fueldepo Shutters" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "dWz" = ( /obj/structure/table/reinforced, /obj/item/storage/firstaid/regular{ @@ -16824,7 +17075,7 @@ /area/shuttle/large_escape_pod1/station) "dWC" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "dWD" = ( /obj/machinery/station_map{ dir = 1; @@ -16835,17 +17086,17 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "dWG" = ( /obj/structure/bed/chair/office/dark, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "dWI" = ( /obj/item/stool/padded{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "dWL" = ( /obj/structure/shuttle/engine/router, /obj/machinery/atmospherics/pipe/manifold/hidden/yellow, @@ -16865,18 +17116,18 @@ }, /obj/item/tape/engineering, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "dWO" = ( /obj/structure/closet, /obj/item/bikehorn/rubberducky/grey, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "dWP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "dWS" = ( /obj/structure/table/glass, /obj/item/surgical/circular_saw, @@ -16888,7 +17139,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dWT" = ( /obj/structure/cable/white{ d1 = 1; @@ -16896,7 +17147,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "dWU" = ( /obj/machinery/seed_storage/xenobotany, /obj/machinery/ai_status_display{ @@ -16908,7 +17159,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "dWV" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -16938,13 +17189,14 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dWW" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/turf/simulated/floor/tiled, +/area/hallway/For_Transit_Foyer) "dWX" = ( /obj/structure/sign/painting/public{ pixel_y = 32 @@ -16962,7 +17214,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "dWY" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -16992,7 +17244,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dWZ" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -17004,7 +17256,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dXa" = ( /obj/structure/grille, /obj/structure/shuttle/window, @@ -17017,7 +17269,7 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "dXe" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -17031,7 +17283,7 @@ }, /obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "dXf" = ( /obj/structure/cable{ d1 = 4; @@ -17039,20 +17291,20 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "dXg" = ( /obj/structure/table/glass, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "dXh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "dXi" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "dXk" = ( /obj/item/stock_parts/subspace/crystal{ pixel_x = -7; @@ -17078,7 +17330,7 @@ }, /obj/structure/table/rack/shelf, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "dXm" = ( /obj/structure/sign/warning/evac, /turf/simulated/shuttle/wall/no_join{ @@ -17120,13 +17372,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "dXr" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "dXt" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "dXu" = ( /obj/structure/cable/white{ d1 = 1; @@ -17134,16 +17386,14 @@ icon_state = "1-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "dXv" = ( -/obj/structure/particle_accelerator/power_box{ - anchored = 1; - construction_state = 1; - dir = 4 +/obj/machinery/firealarm{ + name = "N-fire alarm"; + pixel_y = 25 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/PA_Chamber) +/turf/simulated/floor/glass/reinforced, +/area/hallway/Star_1Deck_Central_Corridor_1) "dXw" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/loading/blue{ @@ -17155,11 +17405,11 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "dXx" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "dXE" = ( /obj/machinery/telecomms/relay/preset/southerncross/centcomm, /obj/effect/catwalk_plated/dark, @@ -17168,7 +17418,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "dXF" = ( /obj/structure/table/woodentable, /obj/machinery/newscaster{ @@ -17176,10 +17426,10 @@ name = "1N-newscaster" }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "dXG" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/area/maintenance/ab_Kitchen) "dXH" = ( /obj/machinery/atmospherics/pipe/tank/phoron/full{ dir = 1 @@ -17188,7 +17438,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "dXI" = ( /obj/structure/ore_box, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -17196,7 +17446,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "dXK" = ( /obj/structure/bed/chair/sofa/left/green{ dir = 4 @@ -17210,14 +17460,14 @@ dir = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "dXL" = ( /obj/structure/table/sifwoodentable, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "dXM" = ( /obj/machinery/firealarm{ dir = 4; @@ -17225,14 +17475,14 @@ name = "E-fire alarm" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "dXN" = ( /obj/effect/floor_decal/corner/purple/diagonal, /obj/effect/floor_decal/corner/purple/diagonal{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dXP" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/window/brigdoor/eastright{ @@ -17253,9 +17503,8 @@ layer = 3.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dXQ" = ( -/obj/structure/stasis_cage, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/light{ dir = 1; @@ -17268,13 +17517,13 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "dXU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "dXV" = ( /obj/machinery/telecomms/server/presets/science, /obj/effect/catwalk_plated/dark, @@ -17283,7 +17532,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "dXW" = ( /obj/structure/sign/warning/nosmoking_2, /obj/structure/cable/white{ @@ -17292,7 +17541,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "dXX" = ( /obj/machinery/computer/telecomms/server{ dir = 4; @@ -17305,16 +17554,16 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "dXY" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "dXZ" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "dYb" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -17322,7 +17571,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "dYc" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -17339,7 +17588,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "dYd" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -17361,10 +17610,10 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "dYe" = ( /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "dYf" = ( /obj/machinery/alarm{ dir = 8; @@ -17374,7 +17623,7 @@ dir = 1 }, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "dYl" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -17384,7 +17633,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "dYn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -17401,7 +17650,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "dYo" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -17413,24 +17662,13 @@ name = "Doorframe mounted flash"; layer = 2.5 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/door/airlock/angled_bay/standard/color/security{ dir = 4; name = "Security Checkpoint"; req_one_access = list(1) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "dYt" = ( /obj/structure/bed/chair/bay/shuttle, /turf/simulated/shuttle/floor/white, @@ -17487,13 +17725,13 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "dYz" = ( /obj/structure/bed/chair/sofa/corner/green{ dir = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "dYA" = ( /obj/structure/bed/chair/sofa/green{ dir = 1 @@ -17506,17 +17744,17 @@ name = "S-status display" }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "dYC" = ( /obj/structure/bed/chair/sofa/left/green{ dir = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "dYD" = ( /obj/machinery/vending/snack, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "dYE" = ( /obj/machinery/disposal, /obj/item/radio/intercom{ @@ -17527,11 +17765,11 @@ dir = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "dYF" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "dYG" = ( /obj/structure/bed/chair/sofa/green{ dir = 1 @@ -17544,7 +17782,7 @@ name = "1S-AI display" }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "dYJ" = ( /obj/item/radio/intercom{ name = "1S-Station Intercom (General)"; @@ -17554,7 +17792,7 @@ /obj/effect/floor_decal/corner/green/border, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "dYL" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/alarm{ @@ -17569,7 +17807,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "dYO" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -17578,18 +17816,18 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/sec, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "dYQ" = ( /obj/structure/bed/chair/backed_red, /obj/structure/window/basic{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "dYV" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "dYZ" = ( /obj/structure/table/standard, /obj/item/storage/box/syringes{ @@ -17619,14 +17857,14 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "dZb" = ( /obj/machinery/mining/brace{ dir = 4 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "dZd" = ( /obj/structure/bed/chair/sofa/corner/green{ dir = 8 @@ -17635,7 +17873,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "dZe" = ( /obj/machinery/telecomms/bus/preset_three, /obj/effect/catwalk_plated/dark, @@ -17644,10 +17882,10 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "dZg" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "dZh" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -17655,7 +17893,7 @@ /obj/machinery/portable_atmospherics/canister, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "dZi" = ( /obj/machinery/chemical_dispenser/full{ density = 1; @@ -17675,7 +17913,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dZk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -17687,11 +17925,11 @@ /obj/effect/map_helper/airlock/door/ext_door, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "dZl" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dZn" = ( /obj/machinery/disposal, /obj/structure/window/reinforced{ @@ -17705,7 +17943,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dZp" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -17738,21 +17976,21 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dZr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dZs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "dZt" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -17764,12 +18002,12 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "dZv" = ( /obj/structure/stasis_cage, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "dZy" = ( /obj/machinery/vending/nifsoft_shop, /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ @@ -17782,7 +18020,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "dZF" = ( /obj/structure/cable/white{ d1 = 1; @@ -17795,7 +18033,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "dZH" = ( /obj/structure/cable/white{ d1 = 4; @@ -17803,7 +18041,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "dZJ" = ( /obj/effect/catwalk_plated/white, /obj/structure/cable/green{ @@ -17824,7 +18062,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "dZK" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 1 @@ -17838,7 +18076,7 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "dZN" = ( /obj/machinery/suit_storage_unit/engineering, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -17848,14 +18086,14 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "dZO" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "dZQ" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "dZR" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume, /obj/effect/map_helper/airlock/atmos/chamber_pump, @@ -17864,7 +18102,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "dZS" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -17894,23 +18132,23 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "dZV" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "dZW" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/industrial/danger/corner, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "eab" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "eae" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "eaf" = ( /obj/machinery/computer/ship/helm, /turf/simulated/floor/tiled/dark, @@ -17920,8 +18158,10 @@ /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "eaj" = ( /obj/machinery/portable_atmospherics/canister/empty/phoron, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -17932,11 +18172,11 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "eal" = ( /obj/structure/table/woodentable, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "eam" = ( /obj/structure/closet/crate/nanotrasen{ dir = 2; @@ -17958,10 +18198,10 @@ dir = 10 }, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "ean" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "eao" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -17970,16 +18210,16 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "eap" = ( /obj/structure/girder, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "eaq" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "ear" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -17992,11 +18232,11 @@ pixel_x = 3 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "eat" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "eau" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -18026,7 +18266,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "eaz" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -18045,7 +18285,7 @@ pixel_x = 22 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "eaB" = ( /obj/structure/sign/nanotrasen, /turf/simulated/shuttle/wall/no_join{ @@ -18056,7 +18296,7 @@ /area/shuttle/escape_pod2/station) "eaE" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "eaF" = ( /obj/machinery/computer/ship/sensors, /turf/simulated/floor/tiled/dark, @@ -18072,13 +18312,13 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "eaH" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "eaI" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 @@ -18091,10 +18331,10 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "eaL" = ( /turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "eaM" = ( /obj/machinery/alarm{ dir = 1; @@ -18103,7 +18343,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "eaO" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -18120,7 +18360,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "eaP" = ( /obj/item/stock_parts/micro_laser{ pixel_x = 9 @@ -18174,7 +18414,7 @@ name = "1E-light fixture" }, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "eaQ" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -18184,7 +18424,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "eaS" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/item/rig/industrial/equipped{ @@ -18206,11 +18446,11 @@ pixel_x = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "eaU" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "eaV" = ( /obj/machinery/light{ dir = 8; @@ -18240,11 +18480,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "eaW" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "eaX" = ( /obj/structure/disposalpipe/segment, /obj/machinery/button/remote/blast_door{ @@ -18261,10 +18501,10 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "eaY" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "ebd" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -18273,10 +18513,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "ebf" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "ebg" = ( /obj/structure/cable/white{ d1 = 2; @@ -18284,7 +18524,7 @@ icon_state = "2-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "ebh" = ( /obj/machinery/deployable/barrier, /obj/effect/floor_decal/industrial/hatch/red, @@ -18304,7 +18544,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "ebj" = ( /obj/machinery/light{ dir = 8; @@ -18312,12 +18552,12 @@ name = "1W-light fixture" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "ebD" = ( /obj/random/trash, /obj/effect/landmark/event_spawn/morphspawn, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "ebN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -18330,12 +18570,12 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "ecU" = ( /obj/item/stack/rods, /obj/random/maintenance/medical, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "ecV" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/blast/regular{ @@ -18344,7 +18584,24 @@ name = "Containment Divider Doors" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) +"edb" = ( +/obj/structure/sign/directions/cargo{ + pixel_y = 9; + dir = 8; + layer = 3.5 + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + layer = 3.5 + }, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = -9; + layer = 3.5 + }, +/turf/simulated/wall/r_wall, +/area/harbor/Dock3) "edh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -18355,13 +18612,13 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "edn" = ( /obj/machinery/power/breakerbox{ name = "Rusty Breaker Box" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "edq" = ( /obj/machinery/vending/coffee, /obj/effect/floor_decal/borderfloorblack{ @@ -18371,7 +18628,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "edy" = ( /obj/structure/table/steel_reinforced, /obj/item/sticky_pad/random{ @@ -18386,7 +18643,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "edC" = ( /obj/machinery/vending/wallmed1{ dir = 1; @@ -18421,7 +18678,7 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "edU" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -18450,7 +18707,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "edV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -18459,7 +18716,7 @@ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "eeh" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -18476,19 +18733,23 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "eew" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "eeZ" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "efy" = ( /obj/random/humanoidremains, /obj/random/trash, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "efC" = ( /obj/structure/sign/directions/teleporter{ layer = 3.5 @@ -18501,7 +18762,7 @@ dir = 6 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "efI" = ( /obj/structure/cable{ d1 = 4; @@ -18519,7 +18780,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "efN" = ( /obj/machinery/vending/fitness, /obj/effect/floor_decal/borderfloor{ @@ -18529,14 +18790,14 @@ dir = 5 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "efO" = ( /obj/machinery/optable, /obj/random/organ, /obj/random/organ, /obj/effect/decal/cleanable/filth, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "efW" = ( /obj/structure/cable/green{ d1 = 4; @@ -18555,8 +18816,11 @@ d2 = 8; icon_state = "1-8" }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "egp" = ( /obj/structure/sign/directions/cargo/mining{ dir = 9 @@ -18566,7 +18830,7 @@ dir = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "egq" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -18580,10 +18844,11 @@ /obj/machinery/door/airlock/angled_bay/double/glass/research{ name = "Particle Accelerator Atrium"; dir = 8; - req_one_access = list(7,47) + req_one_access = list(7,47,5); + req_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "egX" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -18592,7 +18857,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "ehp" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor{ @@ -18605,7 +18870,7 @@ dir = 1 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "eht" = ( /obj/item/toy/balloon, /obj/effect/decal/cleanable/blood/splatter{ @@ -18613,7 +18878,7 @@ icon_state = "gibmid3" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "ehx" = ( /obj/random/multiple/corp_crate/no_weapons, /obj/random/junk, @@ -18630,7 +18895,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "eid" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -18646,7 +18911,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "ein" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 @@ -18668,10 +18933,6 @@ }, /turf/simulated/floor, /area/shuttle/echidna) -"eiE" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) "eiO" = ( /obj/machinery/power/apc{ dir = 1; @@ -18683,7 +18944,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "eiS" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -18693,7 +18954,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "ejO" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -18720,7 +18981,7 @@ pixel_y = -25 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "ejX" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -18734,7 +18995,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "ejZ" = ( /obj/machinery/botany/editor, /obj/effect/floor_decal/borderfloorwhite{ @@ -18744,7 +19005,7 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "ekb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -18763,7 +19024,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "ekf" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -18771,7 +19032,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "ekq" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/sign/small/warning/emerg_only{ @@ -18779,20 +19040,20 @@ pixel_y = 32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "ekr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "ekA" = ( /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "ekI" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "elp" = ( /obj/structure/sign/securearea{ icon_state = "radiation_small"; @@ -18800,7 +19061,7 @@ desc = "A warning sign which reads 'RADIATION SHIELDING IN THIS AREA'." }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "elr" = ( /obj/machinery/door/window/westright{ dir = 2 @@ -18809,17 +19070,17 @@ name = "curtain" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "elz" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "elL" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "elP" = ( /obj/structure/cable/green{ d1 = 1; @@ -18833,30 +19094,32 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "elY" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "emj" = ( /obj/machinery/suit_storage_unit/engineering, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "emw" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/seeds/lustflower{ icon_state = "seed" }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "emE" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "emP" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -18865,7 +19128,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "enb" = ( /obj/machinery/light/small{ dir = 8 @@ -18874,7 +19137,7 @@ /obj/random/maintenance/engineering, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "enc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -18882,7 +19145,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "eng" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -18891,29 +19154,29 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "eni" = ( /obj/structure/table/woodentable, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "enw" = ( /obj/structure/disposalpipe/sortjunction/wildcard/flipped{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "enY" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "enZ" = ( /obj/item/clothing/mask/breath/anesthetic, /obj/random/organ, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "eof" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor/corner{ @@ -18923,7 +19186,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "eol" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -18932,7 +19195,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "eov" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -18954,7 +19217,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "eoT" = ( /obj/structure/window/reinforced/survival_pod, /obj/structure/bed/chair/bay/shuttle{ @@ -18964,18 +19227,20 @@ /area/shuttle/needle) "eoU" = ( /obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "epb" = ( /obj/structure/bed/chair/bay, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "epy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "epU" = ( /obj/structure/bed/pillowpilefront/orange, /obj/item/storage/vore_egg/chicken{ @@ -18988,7 +19253,7 @@ }, /obj/item/storage/vore_egg/red, /turf/simulated/floor/wood/alt/tile/broken, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "eqf" = ( /obj/structure/sign/warning/evac, /turf/simulated/shuttle/wall/no_join{ @@ -19010,7 +19275,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "eqy" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 @@ -19024,17 +19289,17 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "eqE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "eqM" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -19044,7 +19309,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "eqZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor{ @@ -19054,7 +19319,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "erb" = ( /obj/structure/cable{ d1 = 1; @@ -19062,7 +19327,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "erH" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 8 @@ -19073,7 +19338,7 @@ pixel_y = -25 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "erI" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ frequency = 1380; @@ -19088,7 +19353,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "erV" = ( /obj/structure/bed/chair/sofa/corner/teal, /obj/structure/sign/securearea{ @@ -19098,18 +19363,14 @@ pixel_y = 32 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "esa" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/machinery/door/blast/regular/open{ - layer = 3.5; - id = "For Lockdown"; - name = "Lockdown Gate"; - desc = "A heavily reinforced gate, sector lockdown!"; - dir = 4 +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/tree/sif, +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Star_1Deck_Atrium) "esc" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 @@ -19120,7 +19381,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "esd" = ( /obj/structure/cable/green{ d1 = 1; @@ -19134,16 +19395,16 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "ese" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "esf" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "est" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -19163,7 +19424,7 @@ dir = 4 }, /turf/simulated/floor/carpet/sblucarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "esS" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/loading/blue{ @@ -19177,7 +19438,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "esZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -19186,7 +19447,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "ets" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 @@ -19197,10 +19458,10 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "ett" = ( /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "etG" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/canister/empty, @@ -19211,7 +19472,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "eue" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, @@ -19219,7 +19480,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "euF" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, @@ -19231,7 +19492,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "euM" = ( /obj/structure/cable{ d1 = 4; @@ -19243,7 +19504,7 @@ pixel_x = -3 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "euY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 5 @@ -19277,7 +19538,7 @@ /obj/item/bikehorn/rubberducky/pink, /obj/item/storage/vore_egg/rock, /turf/simulated/floor/wood/alt/tile/broken, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "ewn" = ( /obj/item/gps{ pixel_x = 3; @@ -19312,12 +19573,12 @@ dir = 8 }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "exh" = ( /obj/item/reagent_containers/hypospray/autoinjector/biginjector/expired, /obj/machinery/light/small, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "ext" = ( /obj/structure/table/woodentable, /obj/item/deck/cards/casino{ @@ -19328,7 +19589,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "exI" = ( /obj/structure/table/standard, /obj/item/material/knife/butch{ @@ -19339,8 +19600,12 @@ pixel_x = -3; pixel_y = 3 }, -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "exL" = ( /obj/machinery/power/apc{ dir = 8; @@ -19364,7 +19629,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "exS" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -19375,21 +19640,21 @@ /obj/structure/table/reinforced, /obj/item/reagent_containers/syringe/ld50_syringe/choral, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "exY" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1) +/area/maintenance/Deck1_Security_PortChamber1) "exZ" = ( /obj/structure/table/steel, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "eyf" = ( /obj/structure/table/standard, /obj/random/maintenance/cargo, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "eyu" = ( /obj/structure/table/standard, /obj/item/storage/rollingpapers{ @@ -19418,7 +19683,7 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "eyx" = ( /obj/machinery/light/small{ dir = 4 @@ -19426,14 +19691,14 @@ /obj/structure/table/rack, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "eyD" = ( /turf/simulated/wall/rthull, /area/shuttle/escape_pod3/station) "eyJ" = ( /obj/machinery/smartfridge/drying_rack, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "eyT" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -19443,7 +19708,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "ezh" = ( /obj/effect/floor_decal/shuttle/loading{ dir = 8; @@ -19451,7 +19716,7 @@ }, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "ezj" = ( /obj/machinery/atmospherics/binary/pump, /obj/effect/floor_decal/borderfloorblack{ @@ -19461,11 +19726,11 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "ezl" = ( /obj/structure/sign/level/one/large, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "ezu" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -19484,13 +19749,13 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "ezv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "eAa" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -19508,7 +19773,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "eAh" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -19523,7 +19788,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "eAk" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -19532,18 +19797,18 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "eAm" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "eAp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) "eAA" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "eAF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -19553,10 +19818,10 @@ /obj/machinery/door/airlock/angled_bay/external/glass, /obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "eBp" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "eBw" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -19566,7 +19831,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "eBZ" = ( /obj/machinery/light{ dir = 8; @@ -19583,7 +19848,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "eCe" = ( /obj/effect/catwalk_plated/dark, /obj/machinery/button/remote/airlock{ @@ -19594,7 +19859,7 @@ specialfunctions = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "eCo" = ( /obj/structure/table/bench/sifwooden/padded, /obj/machinery/camera/network/security{ @@ -19603,7 +19868,7 @@ network = list("Harbor") }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "eCS" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 1 @@ -19627,7 +19892,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "eDh" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/white{ @@ -19639,7 +19904,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "eDm" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -19648,18 +19913,18 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "eDr" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "eDy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/purple{ dir = 5 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "eDP" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -19676,7 +19941,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "eEb" = ( /obj/effect/floor_decal/road/center{ dir = 8 @@ -19685,10 +19950,11 @@ dir = 8 }, /turf/simulated/floor/grass2/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "eEv" = ( /obj/machinery/computer/ship/helm{ - dir = 4 + dir = 4; + req_one_access = list(5,47,67) }, /turf/simulated/floor/tiled/milspec, /area/shuttle/ursula) @@ -19716,7 +19982,7 @@ pixel_x = -22 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "eEC" = ( /obj/item/toy/plushie/borgplushie/drake/mine, /obj/item/toy/plushie/carp/ice{ @@ -19732,7 +19998,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "eED" = ( /obj/structure/table/rack/shelf, /obj/item/radio/subspace{ @@ -19743,7 +20009,7 @@ /obj/random/maintenance/clean, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "eEN" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/atmospherics/portables_connector, @@ -19757,7 +20023,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "eEW" = ( /obj/structure/cable/green{ d1 = 1; @@ -19765,7 +20031,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "eEX" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ frequency = 1380; @@ -19775,7 +20041,7 @@ req_one_access = list(13) }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "eFs" = ( /obj/machinery/atmospherics/pipe/tank/air/full{ dir = 1 @@ -19783,10 +20049,10 @@ /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/light_construct, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "eFv" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "eFH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -19795,7 +20061,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "eFT" = ( /obj/structure/cable/white{ d1 = 1; @@ -19803,7 +20069,7 @@ icon_state = "1-4" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "eGu" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 9 @@ -19822,7 +20088,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "eGF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -19839,45 +20105,40 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "eGR" = ( /obj/structure/table/woodentable, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "eGT" = ( /obj/structure/bed/chair/oldsofa/corner{ dir = 4 }, /turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "eHa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "eHg" = ( -/obj/machinery/disposal/wall/cleaner{ - name = "1W-Resleeving lost & found bin"; - dir = 4; - pixel_x = -34 +/obj/machinery/light{ + name = "1S-light fixture" }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/For_Restroom) +/turf/simulated/floor/glass/reinforced, +/area/hallway/AftPort_1_Deck_Observatory) "eHi" = ( /obj/structure/table/wooden_reinforced, /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "eHl" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "eHo" = ( /obj/structure/cable/green{ d1 = 1; @@ -19891,29 +20152,13 @@ dir = 10 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "eHr" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 4 }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "eHx" = ( /obj/machinery/disposal, /obj/machinery/ai_status_display{ @@ -19926,7 +20171,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "eHD" = ( /obj/machinery/button/remote/blast_door{ dir = 4; @@ -19950,14 +20195,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "eHM" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "eHQ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -19969,20 +20214,20 @@ name = "Cryostorage hall" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "eHU" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "eHV" = ( /obj/structure/loot_pile/maint/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "eHX" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Harbor_Substation) +/area/maintenance/Harbor_Substation) "eIf" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -19994,11 +20239,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "eIg" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "eIn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -20013,11 +20258,39 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "eIS" = ( /obj/structure/table/rack, +/obj/item/storage/box/wormcan/sickly{ + pixel_y = 5; + pixel_x = -5 + }, +/obj/item/storage/box/wormcan/sickly{ + pixel_y = 3; + pixel_x = 5 + }, +/obj/item/storage/box/wormcan/sickly{ + pixel_y = -4 + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) +"eJe" = ( +/obj/structure/sign/directions/security{ + pixel_y = 9; + dir = 8; + layer = 3.5 + }, +/obj/structure/sign/directions/science{ + dir = 8; + layer = 3.5 + }, +/obj/structure/sign/directions/command{ + pixel_y = -9; + dir = 8; + layer = 3.5 + }, +/turf/simulated/wall/r_wall, +/area/harbor/Dock4) "eJf" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -20026,7 +20299,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "eJE" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 @@ -20038,17 +20311,17 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "eJN" = ( /obj/structure/table/steel, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "eKg" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "eKl" = ( /obj/machinery/light{ dir = 8; @@ -20066,7 +20339,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "eKA" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/visible{ @@ -20084,7 +20357,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "eKG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -20099,7 +20372,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "eKP" = ( /obj/structure/cable/green{ d1 = 4; @@ -20114,10 +20387,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "eKQ" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "eKS" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/shieldgen{ @@ -20135,7 +20408,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "eKX" = ( /obj/machinery/door/window/survival_pod{ dir = 8 @@ -20152,7 +20425,7 @@ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "eLa" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -20161,7 +20434,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "eLm" = ( /obj/machinery/light/small/emergency, /obj/structure/cable/white{ @@ -20179,14 +20452,14 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "eLr" = ( /obj/structure/sign/department/dock{ name = "SHIP DOCKS"; desc = "Sign of some important station compartment." }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "eLt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 @@ -20195,7 +20468,7 @@ dir = 10 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "eMu" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -20209,14 +20482,14 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "eMv" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "eMB" = ( /obj/structure/cable/green{ d1 = 4; @@ -20227,7 +20500,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Harbor_Substation) +/area/maintenance/Harbor_Substation) "eMT" = ( /obj/structure/cable/green{ d1 = 1; @@ -20241,7 +20514,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "eNe" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -20249,11 +20522,11 @@ network = list("Domicile") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "eNj" = ( /obj/structure/inflatable, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "eNk" = ( /obj/machinery/ai_status_display{ name = "1E-AI display"; @@ -20274,20 +20547,20 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "eNl" = ( /obj/item/bee_smoker{ pixel_y = -1; pixel_x = 8 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "eNu" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "eOj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -20296,17 +20569,17 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "eOx" = ( /obj/structure/table/standard, /obj/random/maintenance/medical, /obj/effect/decal/cleanable/filth, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "eOy" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "eOW" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 @@ -20315,7 +20588,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "ePu" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -20329,7 +20602,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "ePv" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -20343,7 +20616,7 @@ "ePx" = ( /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "ePC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -20361,11 +20634,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "ePK" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "eQg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -20375,7 +20648,7 @@ /obj/machinery/door/airlock/maintenance/medical, /obj/item/tape/police, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "eQn" = ( /obj/structure/table/steel, /obj/item/toy/figure/janitor{ @@ -20399,17 +20672,21 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "eQy" = ( /obj/structure/table/marble, /obj/item/gun/projectile/revolver/capgun, /obj/random/maintenance/foodstuff, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "eQD" = ( /obj/structure/girder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "eQQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -20427,7 +20704,7 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "eQS" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -20436,14 +20713,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "eRm" = ( /turf/simulated/floor/bmarble, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "eRn" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "eRr" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -20462,7 +20739,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "eRZ" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/effect/floor_decal/corner/orange/border{ @@ -20472,27 +20749,31 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "eSe" = ( /obj/structure/table/sifwoodentable, /obj/random/maintenance/foodstuff, -/turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "eSo" = ( /obj/item/flashlight, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "eSz" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "eSM" = ( /obj/random/junk, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "eSR" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "eTc" = ( /obj/machinery/atmospherics/binary/pump, /obj/structure/cable/blue{ @@ -20517,7 +20798,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "eTC" = ( /obj/structure/cable/green{ d1 = 4; @@ -20537,7 +20818,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "eTN" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -20554,12 +20835,12 @@ }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "eTP" = ( /obj/effect/floor_decal/rust, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "eTV" = ( /obj/effect/floor_decal/industrial/stand_clear, /obj/structure/railing/grey{ @@ -20574,7 +20855,7 @@ network = list("Harbor") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "eTZ" = ( /obj/structure/disposalpipe/sortjunction/wildcard{ dir = 1 @@ -20585,7 +20866,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "eUd" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -20601,17 +20882,21 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "eUh" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/closet/crate/wooden, /obj/random/multiple/underdark/ores, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "eUj" = ( /obj/structure/table, -/turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "eUo" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -20620,7 +20905,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "eUq" = ( /obj/structure/table/rack, /obj/item/circuitboard/telecomms/receiver{ @@ -20647,7 +20932,7 @@ pixel_x = -3 }, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "eUr" = ( /obj/structure/table/standard, /obj/item/clothing/suit/storage/teshari/cloak/standard/dark_retrowave, @@ -20661,13 +20946,13 @@ }, /obj/random/junk, /turf/simulated/floor/wood/alt/tile/broken, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "eUC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "eUN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -20682,14 +20967,14 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "eUP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/structure/sign/xenobio, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "eUR" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -20713,12 +20998,12 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "eVf" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "eVl" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -20739,17 +21024,17 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "eVu" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "eVQ" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "eWa" = ( /obj/machinery/alarm{ dir = 8; @@ -20768,7 +21053,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/green/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "eWc" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -20788,7 +21073,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "eWd" = ( /obj/machinery/light{ dir = 8; @@ -20802,7 +21087,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "eWB" = ( /obj/structure/closet/lasertag/blue, /obj/item/tvcamera{ @@ -20814,7 +21099,7 @@ name = "hyperball camera drone" }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "eWF" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -20838,7 +21123,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "eWM" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 10 @@ -20847,7 +21132,7 @@ dir = 9 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "eXt" = ( /obj/structure/cable/green{ d1 = 1; @@ -20859,7 +21144,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "eXA" = ( /obj/structure/cable/white{ d1 = 2; @@ -20867,7 +21152,7 @@ icon_state = "2-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "eXC" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/directions/engineering{ @@ -20878,14 +21163,14 @@ dir = 8 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "eXR" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "eXX" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -20904,7 +21189,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "eXZ" = ( /obj/machinery/light/small{ dir = 4 @@ -20915,7 +21200,7 @@ pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "eYm" = ( /mob/living/bot/cleanbot/edCLN{ name = "ED_CLN"; @@ -20927,25 +21212,25 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "eYq" = ( /obj/effect/floor_decal/rust, /obj/random/trash, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "eYA" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "eZc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "eZh" = ( /obj/structure/bed/chair/office/dark, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "eZp" = ( /obj/structure/table/standard, /obj/structure/sink/kitchen{ @@ -20961,7 +21246,7 @@ pixel_y = 7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "eZA" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -20975,7 +21260,7 @@ }, /obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "eZD" = ( /obj/structure/bed/chair/backed_red{ dir = 1 @@ -20988,7 +21273,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "eZG" = ( /obj/structure/table/rack/shelf/steel, /obj/item/radio/off{ @@ -21038,14 +21323,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "eZM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "eZQ" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ color = "#989898" @@ -21057,11 +21342,11 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "eZR" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "eZW" = ( /obj/machinery/firealarm{ dir = 1; @@ -21084,7 +21369,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "faz" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/industrial/warning{ @@ -21095,7 +21380,7 @@ pixel_y = 28 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "faM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -21107,7 +21392,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "faX" = ( /obj/structure/sink{ pixel_y = 16 @@ -21127,7 +21412,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "faY" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -21140,7 +21425,7 @@ pixel_x = -3 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "fbh" = ( /obj/structure/cable/green{ d1 = 4; @@ -21160,7 +21445,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "fbm" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -21177,13 +21462,13 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "fbC" = ( /obj/structure/bed/chair/sofa/right/beige{ dir = 4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "fbT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -21198,7 +21483,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "fcH" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -21207,7 +21492,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "fcN" = ( /obj/structure/closet/firecloset/full/double{ name = "fire-safety closet" @@ -21223,7 +21508,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "fcU" = ( /obj/machinery/light{ dir = 4; @@ -21236,13 +21521,13 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "fcV" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "fdh" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -21260,7 +21545,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "fdq" = ( /obj/structure/cable/green{ d1 = 4; @@ -21278,7 +21563,7 @@ icon_state = "pipe-j2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "fdJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -21302,15 +21587,19 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "fdW" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "fed" = ( /obj/item/pda/chef, /obj/random/trash, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "fes" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -21319,11 +21608,11 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "feA" = ( /obj/structure/girder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "feE" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -21332,14 +21621,14 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "feH" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "feV" = ( /obj/structure/stairs/spawner/west, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "ffk" = ( /obj/machinery/atmospherics/unary/freezer{ icon_state = "freezer_1"; @@ -21350,7 +21639,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "ffz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -21368,18 +21657,18 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "ffB" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/green/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "ffL" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "ffU" = ( /obj/machinery/sleeper{ dir = 4 @@ -21397,11 +21686,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "fgc" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "fgd" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/foam, @@ -21413,11 +21702,11 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "fgr" = ( /obj/structure/sign/warning/secure_area, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "fgJ" = ( /obj/structure/closet/emcloset, /obj/machinery/camera/network/security{ @@ -21426,21 +21715,21 @@ network = list("Commons") }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "fgX" = ( /obj/machinery/vending/fishing, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "fha" = ( /obj/structure/loot_pile/surface/medicine_cabinet/fresh{ pixel_y = 25 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "fhm" = ( /obj/item/clothing/under/swimsuit/stripper/mankini, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "fhH" = ( /obj/structure/table/rack/shelf, /obj/random/tool, @@ -21448,10 +21737,10 @@ /obj/random/mug, /obj/random/forgotten_tram, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "fhM" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "fiA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal{ color = "#ff0000" @@ -21463,7 +21752,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "fiB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -21473,7 +21762,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "fiF" = ( /obj/item/material/kitchen/utensil/foon{ pixel_x = -6; @@ -21488,19 +21777,21 @@ pixel_x = 1 }, /obj/structure/table/fancyblack, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "fiK" = ( /obj/structure/disposalpipe/segment, /obj/structure/table/standard, /obj/random/soap, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "fiV" = ( /obj/item/reagent_containers/food/snacks/monkeycube/wrapped/wolpincube, /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "fjy" = ( /obj/machinery/door/window/survival_pod{ dir = 2; @@ -21511,7 +21802,7 @@ "fjB" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "fjL" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -21523,12 +21814,12 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "fjQ" = ( /obj/structure/table/steel, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "fjS" = ( /obj/effect/floor_decal/industrial/hatch, /obj/machinery/shield_diffuser, @@ -21537,16 +21828,16 @@ name = "Containment Vent Doors" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "fjY" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "fkz" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "fkB" = ( /obj/structure/cable/white{ d1 = 1; @@ -21554,11 +21845,11 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "fkD" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "fkN" = ( /obj/structure/cable/green{ d1 = 2; @@ -21578,7 +21869,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "fkW" = ( /obj/structure/cable/green{ d1 = 4; @@ -21597,7 +21888,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "flc" = ( /obj/structure/cable/green{ d1 = 1; @@ -21626,7 +21917,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "flx" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -21657,26 +21948,26 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "flI" = ( /obj/effect/decal/cleanable/filth, /obj/machinery/light_construct/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "flL" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "flN" = ( /obj/effect/floor_decal/corner/white{ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "flY" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/alarm{ @@ -21690,7 +21981,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "fme" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, @@ -21704,7 +21995,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "fmg" = ( /obj/structure/cable/green{ d1 = 1; @@ -21719,7 +22010,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "fmu" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -21728,7 +22019,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "fmF" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 @@ -21742,7 +22033,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "fmK" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 @@ -21764,7 +22055,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "fnu" = ( /obj/machinery/light{ dir = 4; @@ -21781,7 +22072,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "fnx" = ( /obj/structure/bed/pillowpilefront/white, /obj/item/storage/vore_egg/badrecipe{ @@ -21793,16 +22084,16 @@ pixel_x = -9 }, /turf/simulated/floor/wood/alt/tile/broken, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "fny" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "fnQ" = ( /obj/structure/table/standard, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "fnS" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -21810,11 +22101,11 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "fnV" = ( /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "foi" = ( /obj/machinery/firealarm{ dir = 1; @@ -21827,12 +22118,12 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "fou" = ( /obj/effect/decal/cleanable/flour, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "foQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/floor/tiled/milspec, @@ -21840,7 +22131,7 @@ "fpd" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/area/maintenance/ab_Kitchen) "fph" = ( /turf/simulated/floor/tiled/milspec, /area/shuttle/ursula) @@ -21854,42 +22145,47 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "fpt" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4; color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "fpw" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Deck1_Transit_Hall) "fpF" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "fpP" = ( /obj/machinery/appliance/cooker/oven/yeoldoven, /obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/machinery/light_construct, +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "fpW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "fqf" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "fql" = ( /obj/structure/table, /turf/simulated/floor/bmarble, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "fqn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -21903,7 +22199,7 @@ req_one_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "fqr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ @@ -21917,7 +22213,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "fqs" = ( /obj/structure/cable/green{ d1 = 1; @@ -21933,17 +22229,17 @@ network = list("Science") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "fqx" = ( /obj/structure/salvageable/console_os, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "fqC" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "fqJ" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -21956,13 +22252,13 @@ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "frd" = ( /obj/machinery/alarm{ pixel_y = 25 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "frh" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -21986,7 +22282,7 @@ dir = 4 }, /turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "frQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -21997,30 +22293,30 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "frW" = ( /obj/structure/bed/chair/office/dark, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "fsf" = ( /obj/machinery/vending/wardrobe/janidrobe, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "fss" = ( /obj/effect/floor_decal/stairs{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "fsK" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "fsP" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -22032,17 +22328,17 @@ dir = 6 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "ftc" = ( /obj/structure/table/standard, /obj/random/maintenance/engineering, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "ftl" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "ftR" = ( /obj/machinery/alarm{ dir = 4; @@ -22055,15 +22351,15 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "fup" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "fuq" = ( /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "fuB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -22075,19 +22371,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "fuV" = ( /obj/structure/railing/grey, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "fvd" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "fvr" = ( /obj/machinery/alarm{ dir = 8; @@ -22100,13 +22396,13 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "fvx" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 + dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "fvB" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, @@ -22116,7 +22412,7 @@ name = "1E-station holomap" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "fvD" = ( /obj/structure/cable{ d1 = 2; @@ -22126,7 +22422,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "fvL" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -22140,20 +22436,20 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "fvM" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "fwc" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "fwh" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "fwv" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/southright{ @@ -22170,13 +22466,13 @@ id = "sc-GCcustodian" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "fwG" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "fwR" = ( /obj/effect/catwalk_plated/white, /obj/machinery/firealarm{ @@ -22184,17 +22480,17 @@ name = "N-fire alarm" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "fwT" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "fxb" = ( /obj/structure/table/rack/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "fxn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -22206,13 +22502,33 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "fxC" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) +"fxQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/Telecomms_Foyer) "fxR" = ( /obj/machinery/door/airlock/voidcraft/vertical{ id_tag = "needle_hatch"; @@ -22246,7 +22562,7 @@ pixel_x = 24 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "fyf" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -22256,39 +22572,13 @@ /obj/machinery/door/airlock/multi_tile/glass, /turf/simulated/floor/tiled/milspec, /area/shuttle/spacebus) -"fyJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) "fyP" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "fyT" = ( /obj/machinery/shower{ dir = 1 @@ -22305,14 +22595,14 @@ }, /obj/machinery/door/window/northright, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "fzm" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/yellow, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "fzv" = ( /obj/structure/sign/directions/science{ pixel_y = 9; @@ -22322,7 +22612,7 @@ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "fzE" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27; @@ -22340,11 +22630,11 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "fzF" = ( /obj/structure/girder, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "fAa" = ( /obj/machinery/power/apc{ dir = 8; @@ -22368,7 +22658,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "fAe" = ( /obj/structure/closet/emcloset, /obj/machinery/alarm{ @@ -22376,7 +22666,7 @@ pixel_x = 22 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "fAx" = ( /obj/structure/cable/green{ d1 = 1; @@ -22397,7 +22687,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "fBA" = ( /obj/item/gun/energy/locked/frontier/rifle{ pixel_y = 9 @@ -22440,7 +22730,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "fBC" = ( /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 1 @@ -22449,7 +22739,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "fCd" = ( /obj/structure/cable{ d1 = 4; @@ -22458,7 +22748,7 @@ }, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "fCA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 @@ -22469,7 +22759,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "fCC" = ( /obj/structure/railing{ dir = 8 @@ -22484,7 +22774,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "fCD" = ( /obj/machinery/firealarm{ dir = 4; @@ -22501,7 +22791,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "fCM" = ( /obj/machinery/light/small{ dir = 8 @@ -22509,14 +22799,14 @@ /obj/structure/table/standard, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "fDb" = ( /obj/structure/sign/directions/shuttle_bay{ pixel_y = 9; dir = 9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "fDe" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -22527,11 +22817,11 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "fDi" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "fDl" = ( /obj/effect/catwalk_plated/white, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -22541,12 +22831,12 @@ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "fDx" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "fEB" = ( /obj/machinery/alarm{ dir = 8; @@ -22559,7 +22849,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "fFh" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -22568,7 +22858,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "fFA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -22578,14 +22868,14 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "fFB" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "fFD" = ( /obj/effect/catwalk_plated/white, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "fFU" = ( /obj/machinery/camera/network/security{ dir = 4; @@ -22600,16 +22890,16 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "fGb" = ( /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "fGi" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "fGn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -22619,7 +22909,7 @@ /obj/machinery/door/airlock/maintenance/common, /obj/item/tape/police, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "fGv" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -22638,7 +22928,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "fGO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -22649,7 +22939,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "fHi" = ( /obj/structure/cable/green{ d1 = 1; @@ -22661,7 +22951,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "fHj" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/industrial/warning{ @@ -22673,7 +22963,7 @@ pixel_y = -27 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "fHt" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -22682,7 +22972,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "fHQ" = ( /obj/structure/window/titanium, /obj/structure/window/titanium{ @@ -22695,7 +22985,7 @@ /area/shuttle/cryo/station) "fHV" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "fIm" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/camera/network/security{ @@ -22709,7 +22999,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "fIw" = ( /obj/structure/table/reinforced, /obj/item/storage/box/survival/comp{ @@ -22724,12 +23014,11 @@ /turf/simulated/shuttle/floor/white, /area/shuttle/large_escape_pod1/station) "fID" = ( -/obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "fIN" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -22738,7 +23027,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "fIQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -22754,13 +23043,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "fJi" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/flashlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1) +/area/maintenance/Deck1_Security_PortChamber1) "fJx" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -22769,24 +23058,18 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "fJB" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Tcoms Substation Bypass" - }, -/obj/machinery/ai_status_display{ - name = "1S-AI display"; - pixel_y = -32 - }, +/obj/random/trash_pile, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/maintenance/Deck1_Cargo_Corridor1) "fJG" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "fJK" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -22801,7 +23084,7 @@ }, /obj/item/tape/police, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "fJP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -22814,15 +23097,15 @@ }, /obj/item/depth_scanner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "fKo" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "fKp" = ( /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "fKF" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 @@ -22831,14 +23114,14 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "fKG" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "fKK" = ( /obj/machinery/conveyor, /obj/machinery/light{ @@ -22846,7 +23129,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "fKQ" = ( /obj/effect/floor_decal/shuttles/right{ dir = 8 @@ -22860,23 +23143,23 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "fLv" = ( /obj/effect/decal/cleanable/blood, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "fLw" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/yellow, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "fLI" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "fLM" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22890,7 +23173,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "fLW" = ( /obj/structure/grille, /obj/structure/shuttle/window, @@ -22905,22 +23188,22 @@ pixel_y = 29; req_access = list(61) }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "fMw" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -22935,7 +23218,7 @@ /obj/machinery/flasher/portable, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "fMR" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ @@ -22950,23 +23233,22 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "fMV" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "fNc" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "fNi" = ( -/obj/structure/bed/chair/backed_red{ - dir = 8 - }, -/turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/structure/table/rack, +/obj/item/material/harpoon, +/turf/simulated/floor/plating, +/area/maintenance/Market_Stall_6) "fNn" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /obj/machinery/atmospherics/portables_connector{ @@ -22974,11 +23256,11 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "fNq" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "fNU" = ( /obj/structure/cable/green{ d1 = 4; @@ -22991,7 +23273,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "fOm" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -23000,13 +23282,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "fOv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "fOy" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -23029,7 +23311,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "fOP" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -23044,7 +23326,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "fOR" = ( /obj/structure/toilet, /obj/structure/closet/emergsuit_wall{ @@ -23063,7 +23345,7 @@ specialfunctions = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "fOX" = ( /obj/structure/bed/chair/backed_red{ dir = 4 @@ -23078,7 +23360,11 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) +"fPd" = ( +/obj/structure/mob_spawner/mouse_nest, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_AftStar1_Corridor3) "fPg" = ( /obj/item/reagent_containers/blood/prelabeled/OMinus{ pixel_y = 6; @@ -23099,12 +23385,12 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "fQn" = ( /obj/item/binoculars, /obj/structure/table/glass, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "fQt" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ @@ -23112,7 +23398,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "fQw" = ( /obj/structure/table/glass, /obj/machinery/chemical_dispenser/xenoflora/full{ @@ -23129,23 +23415,23 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "fQx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "fQD" = ( /obj/structure/closet, /obj/random/junk, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "fQE" = ( /obj/item/reagent_containers/food/snacks/monkeycube/wrapped/sparracube, /obj/random/tool, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "fQH" = ( /obj/structure/table/rack{ dir = 8; @@ -23183,12 +23469,12 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "fQK" = ( /obj/structure/table/rack, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "fQX" = ( /obj/structure/cable{ d1 = 4; @@ -23196,20 +23482,25 @@ icon_state = "4-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "fRp" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "fRs" = ( /obj/machinery/light/small{ dir = 4 }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) +"fRB" = ( +/obj/structure/table/rack, +/obj/item/material/fishing_net/butterfly_net, +/turf/simulated/floor/tiled, +/area/maintenance/Market_Stall_6) "fRD" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -23235,7 +23526,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "fRP" = ( /obj/structure/girder/reinforced, /obj/structure/cable/green{ @@ -23244,7 +23535,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "fRW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -23264,13 +23555,13 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "fRY" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "fSr" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/shieldgen{ @@ -23283,7 +23574,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "fSQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -23294,8 +23585,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "fST" = ( /obj/structure/cable/green{ d1 = 4; @@ -23314,18 +23606,18 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "fSV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "fTl" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "fTv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -23341,7 +23633,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "fTY" = ( /obj/machinery/power/apc{ dir = 4; @@ -23363,7 +23655,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "fTZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -23374,7 +23666,7 @@ /obj/effect/map_helper/airlock/door/ext_door, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "fUe" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -23391,7 +23683,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "fUt" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ @@ -23410,7 +23702,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "fUB" = ( /obj/machinery/light{ dir = 8 @@ -23436,21 +23728,21 @@ /obj/random/junk, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "fUU" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "fVc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "fVh" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "fVq" = ( /obj/machinery/vending/wallmed1{ dir = 8; @@ -23458,20 +23750,21 @@ name = "1E-NanoMed" }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "fVs" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Planetside_Equipment) "fVu" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -23479,10 +23772,11 @@ dir = 1 }, /obj/machinery/door/airlock/maintenance/rnd{ - name = "Atrium Access" + name = "Atrium Access"; + req_one_access = list(5,47) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "fVA" = ( /obj/structure/table/bench/marble, /obj/machinery/disposal/wall{ @@ -23494,12 +23788,12 @@ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "fVJ" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "fWg" = ( /obj/structure/cable{ d1 = 2; @@ -23507,7 +23801,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "fWk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -23538,7 +23832,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "fWo" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 @@ -23552,7 +23846,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "fWu" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -23570,7 +23864,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "fWC" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -23579,11 +23873,32 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "fWD" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) +"fWW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/small/warning/emerg_only{ + desc = "Ladder for emergency use only"; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_Star_Corridor) "fXa" = ( /obj/effect/landmark{ name = "JoinLateCryo" @@ -23598,11 +23913,11 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "fXj" = ( /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "fXk" = ( /obj/machinery/station_map{ dir = 8; @@ -23618,13 +23933,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "fXm" = ( /obj/structure/loot_pile/maint/technical, /obj/random/junk, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "fXn" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -23641,7 +23956,7 @@ name = "lightsout" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "fXq" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -23650,7 +23965,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "fXu" = ( /obj/machinery/atmospherics/pipe/tank/air/full{ dir = 1 @@ -23660,7 +23975,7 @@ pixel_y = -26 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "fXC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/purple{ dir = 4 @@ -23669,7 +23984,7 @@ name = "PA-Loop meter" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "fXM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -23693,7 +24008,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "fXS" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -23717,7 +24032,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "fXY" = ( /obj/machinery/reagentgrinder, /obj/structure/table/glass, @@ -23732,13 +24047,13 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "fYe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "fYh" = ( /obj/structure/table/glass, /obj/item/reagent_containers/glass/beaker{ @@ -23757,25 +24072,25 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "fYk" = ( /obj/structure/railing/grey{ dir = 8 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "fYw" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "fYQ" = ( /mob/living/simple_mob/animal/passive/fish/rockfish{ name = "Pon"; faction = "nanotrasen" }, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "fYR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -23791,7 +24106,7 @@ network = list("Commons") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "fYT" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 10 @@ -23801,7 +24116,7 @@ }, /obj/structure/table/reinforced, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "fYZ" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/white/border, @@ -23809,14 +24124,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "fZi" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "fZn" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -23838,17 +24153,17 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "fZo" = ( /obj/structure/sign/warning/radioactive, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "fZp" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "fZx" = ( /obj/machinery/atmospherics/valve{ dir = 4; @@ -23860,7 +24175,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "fZP" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable{ @@ -23874,7 +24189,7 @@ }, /obj/structure/disposalpipe/up, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Harbor_Substation) +/area/maintenance/Harbor_Substation) "fZV" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -23883,7 +24198,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "fZW" = ( /obj/machinery/pointdefense{ id_tag = "PD Primary" @@ -23893,20 +24208,21 @@ d2 = 4; icon_state = "0-4" }, +/obj/effect/catwalk_plated/white, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "fZY" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/ladder/up, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "gab" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "gaf" = ( /obj/machinery/firealarm{ dir = 8; @@ -23920,7 +24236,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "gbj" = ( /obj/structure/sign/directions/cargo{ dir = 9 @@ -23930,7 +24246,7 @@ dir = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "gbv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -23949,7 +24265,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "gbw" = ( /obj/machinery/button/remote/blast_door{ id = "SC-BDxenobiopen2"; @@ -23966,11 +24282,11 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "gbH" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "gcq" = ( /obj/structure/window/reinforced, /obj/structure/table/reinforced, @@ -23982,30 +24298,30 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "gct" = ( /obj/random/junk, /obj/random/tech_supply/component, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "gcF" = ( /obj/structure/flora/pottedplant/dead, /obj/random/trash, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "gcK" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "gcP" = ( /obj/effect/decal/cleanable/flour, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "gda" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "gdi" = ( /obj/structure/sign/nanotrasen, /turf/simulated/wall/rthull, @@ -24026,7 +24342,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "gdB" = ( /obj/structure/cable/green{ d1 = 2; @@ -24041,7 +24357,7 @@ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "gdM" = ( /obj/item/storage/box/monkeycubes/wolpincubes, /obj/item/storage/box/monkeycubes/sparracubes, @@ -24049,7 +24365,7 @@ /obj/structure/table/rack/shelf/steel, /obj/item/reagent_containers/food/snacks/monkeycube/wrapped/farwacube, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "gdQ" = ( /obj/structure/table/marble, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -24066,8 +24382,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/door/blast/shutters{ + dir = 8; + layer = 3.5; + name = "Market Stall Shutters"; + id = "sc-GCMarket6" + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "gdS" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -24075,7 +24397,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "gdZ" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -24100,7 +24422,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "geu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -24120,12 +24442,12 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "gev" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "geK" = ( /obj/machinery/computer/secure_data, /obj/structure/disposalpipe/segment, @@ -24140,13 +24462,13 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "geY" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "gfe" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; @@ -24156,15 +24478,15 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "gfy" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "gfC" = ( /obj/effect/catwalk_plated/dark, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "gfJ" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -24186,13 +24508,13 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "gfL" = ( /obj/structure/railing/grey{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "gfU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -24205,15 +24527,14 @@ layer = 2.5 }, /obj/machinery/door/airlock/angled_bay/standard/color/security{ - req_one_access = list(19,1); req_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "gfV" = ( /obj/structure/sign/warning/evac, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "gfX" = ( /obj/structure/cable/green{ d1 = 4; @@ -24236,7 +24557,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "ggi" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -24247,12 +24568,12 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "ggp" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "ggs" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -24266,6 +24587,23 @@ }, /turf/simulated/floor/plating/turfpack/airless, /area/shuttle/large_escape_pod1/station) +"ggA" = ( +/obj/structure/sign/directions/security{ + pixel_y = 9; + dir = 4; + layer = 3.5 + }, +/obj/structure/sign/directions/science{ + dir = 4; + layer = 3.5 + }, +/obj/structure/sign/directions/command{ + pixel_y = -9; + dir = 4; + layer = 3.5 + }, +/turf/simulated/wall/r_wall, +/area/harbor/Dock2) "ggE" = ( /obj/structure/window/plastitanium/full, /obj/structure/window/reinforced/survival_pod{ @@ -24290,11 +24628,11 @@ name = "Horned skull flag" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "gha" = ( /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "ghn" = ( /obj/structure/cable/green{ d1 = 2; @@ -24311,7 +24649,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "ghB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -24321,12 +24659,23 @@ /obj/machinery/door/airlock/maintenance/sec{ name = "Checkpoint Access" }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "ghJ" = ( /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "ghS" = ( /obj/structure/closet/secure_closet/security, /obj/machinery/status_display{ @@ -24341,7 +24690,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "gia" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -24362,7 +24711,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "giw" = ( /obj/machinery/light{ dir = 1; @@ -24375,7 +24724,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "giJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -24384,7 +24733,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "giO" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 1 @@ -24397,7 +24746,7 @@ pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "gjb" = ( /obj/structure/cable{ d1 = 1; @@ -24406,18 +24755,18 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "gjl" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Exploration Substation Bypass" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "gjp" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "gjq" = ( /obj/structure/window/plastitanium/full, /obj/structure/window/reinforced/survival_pod{ @@ -24442,7 +24791,7 @@ /obj/structure/table/rack/shelf/steel, /obj/random/toolbox, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "gjz" = ( /obj/structure/reagent_dispensers/fueltank/high, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -24451,7 +24800,7 @@ pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "gjG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -24460,13 +24809,13 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "gjH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "gkb" = ( /obj/machinery/sleeper{ dir = 8 @@ -24483,13 +24832,31 @@ network = list("Harbor") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) -"gld" = ( -/obj/structure/disposalpipe/segment{ +/area/harbor/Dock1) +"gkS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, -/turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/For_Restroom) +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/Telecomms_Foyer) +"gld" = ( +/obj/structure/sign/atmos/n2, +/turf/simulated/wall, +/area/maintenance/Deck1_ForStar_Chamber2) "glk" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -24498,18 +24865,18 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "gll" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "glw" = ( /obj/effect/floor_decal/borderfloorblack, /obj/structure/sign/poster/custom, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "glO" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; @@ -24519,7 +24886,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "glP" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/blue, @@ -24545,7 +24912,12 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) +"gmF" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_AftPort_Corridor2) "gmJ" = ( /obj/machinery/power/apc{ dir = 4; @@ -24558,7 +24930,7 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "gmO" = ( /obj/structure/bed/chair/oldsofa{ dir = 4 @@ -24569,7 +24941,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "gmP" = ( /obj/structure/bed/roller, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -24588,17 +24960,34 @@ pixel_x = 2 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "gmR" = ( -/turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/Telecomms_Foyer) "gne" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "gnl" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "gnt" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -24612,7 +25001,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "gnw" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 1 @@ -24621,7 +25010,7 @@ dir = 8 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "gnM" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/sign/securearea{ @@ -24631,7 +25020,7 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "gnX" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -24648,13 +25037,13 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "goi" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "goA" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -24665,7 +25054,7 @@ /obj/random/maintenance/engineering, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "goL" = ( /obj/machinery/power/apc{ dir = 4; @@ -24677,7 +25066,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "goW" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume, /obj/effect/map_helper/airlock/atmos/chamber_pump, @@ -24686,7 +25075,16 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) +"gpa" = ( +/obj/structure/table/rack, +/obj/item/material/fishing_rod/modern/cheap, +/obj/item/material/fishing_rod/modern/cheap{ + pixel_y = 3; + pixel_x = -3 + }, +/turf/simulated/floor/tiled, +/area/maintenance/Market_Stall_6) "gpk" = ( /obj/item/storage/mre/random, /obj/item/storage/mre/random, @@ -24713,13 +25111,13 @@ icon_state = "1-2" }, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "gpK" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "gpT" = ( /obj/machinery/camera/network/security{ dir = 6; @@ -24727,18 +25125,29 @@ network = list("Commons") }, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "gqi" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "gqG" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/catwalk_plated/techmaint, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "gqL" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/small, @@ -24747,7 +25156,7 @@ /obj/random/maintenance/research, /obj/random/flashlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "gqM" = ( /obj/random/organ, /obj/machinery/alarm{ @@ -24755,17 +25164,17 @@ pixel_x = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "gqN" = ( /obj/machinery/light/small{ dir = 4 }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "grb" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "grs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -24776,7 +25185,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "gry" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 @@ -24796,11 +25205,11 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "gsj" = ( /obj/effect/decal/cleanable/flour, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "gsI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -24827,12 +25236,12 @@ icon_state = "2-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "gti" = ( /obj/effect/decal/cleanable/greenglow, /obj/item/implant/dud, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "gtm" = ( /obj/structure/cable/blue{ d1 = 4; @@ -24854,14 +25263,14 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "gtU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) "guf" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -24885,19 +25294,19 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "guj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "guo" = ( /obj/effect/floor_decal/stairs{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "gux" = ( /obj/effect/floor_decal/industrial/stand_clear, /obj/structure/railing/grey{ @@ -24908,7 +25317,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "guy" = ( /obj/machinery/computer/ship/sensors, /turf/simulated/floor/tiled/milspec, @@ -24919,13 +25328,13 @@ }, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "guJ" = ( /obj/structure/table/steel, /obj/random/maintenance/cargo, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "guZ" = ( /obj/machinery/alarm{ dir = 8; @@ -24938,7 +25347,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "gva" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -24961,11 +25370,11 @@ }, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "gvu" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "gvO" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -24982,11 +25391,11 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "gwS" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "gwU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -25007,17 +25416,22 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "gwX" = ( +/obj/effect/catwalk_plated/techmaint, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /obj/structure/cable/green{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 4; + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/turf/simulated/floor/plating, +/area/maintenance/Deck1_Security_PortCorridor2) "gxg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -25038,16 +25452,16 @@ frequency = 1380 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "gxr" = ( /obj/structure/loot_pile/maint/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "gxv" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "gxx" = ( /obj/effect/catwalk_plated/white, /obj/machinery/firealarm{ @@ -25055,11 +25469,11 @@ name = "N-fire alarm" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "gxB" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "gxH" = ( /obj/structure/cable/green{ d1 = 1; @@ -25073,7 +25487,7 @@ icon_state = "pipe-j2" }, /turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "gxR" = ( /obj/item/reagent_containers/syringe/drugs{ pixel_y = 5; @@ -25093,7 +25507,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "gyr" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1 @@ -25105,7 +25519,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "gyA" = ( /obj/machinery/power/apc{ dir = 1; @@ -25134,7 +25548,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "gyD" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/loading/blue, @@ -25145,7 +25559,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "gyN" = ( /obj/structure/sign/directions/science{ pixel_y = 9; @@ -25155,19 +25569,19 @@ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "gyQ" = ( /obj/effect/graffitispawner, /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "gzf" = ( /obj/structure/bed/chair/sofa/purp{ dir = 1 }, /obj/structure/sign/poster/nanotrasen, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "gzH" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -25187,7 +25601,7 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "gzV" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -25196,14 +25610,14 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "gzY" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "gAi" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/random{ @@ -25230,7 +25644,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "gAk" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -25238,7 +25652,7 @@ network = list("Harbor") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "gAK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -25250,7 +25664,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "gAQ" = ( /obj/structure/closet/bombcloset, /obj/effect/floor_decal/corner/purple/diagonal, @@ -25258,7 +25672,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "gBk" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 6 @@ -25270,14 +25684,20 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "gBw" = ( /obj/structure/girder, /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) +"gBJ" = ( +/obj/machinery/light_construct{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/Market_Stall_4) "gBT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -25292,7 +25712,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "gCc" = ( /obj/machinery/door/airlock/voidcraft/vertical{ frequency = 1380; @@ -25330,20 +25750,20 @@ "gCs" = ( /obj/random/cargopod, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "gCt" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "gCD" = ( /obj/structure/table/rack/shelf/steel, /obj/fiftyspawner/cardboard, /obj/fiftyspawner/cardboard, /obj/fiftyspawner/plastic, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "gCW" = ( /obj/effect/floor_decal/industrial/stand_clear, /obj/structure/railing/grey{ @@ -25358,7 +25778,7 @@ network = list("Harbor") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "gDe" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -25372,7 +25792,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "gDf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -25391,23 +25811,23 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "gDj" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "gDq" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "gDs" = ( /obj/structure/bed/chair/sofa/left/sif_ora{ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "gDz" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "gDB" = ( /obj/machinery/mining/brace{ dir = 8 @@ -25417,7 +25837,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "gEd" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -25434,19 +25854,23 @@ pixel_y = -27 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "gEe" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "gEr" = ( /obj/machinery/microwave/cookingpot{ pixel_y = 2 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "gEu" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "gEE" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -25473,7 +25897,7 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "gEQ" = ( /obj/machinery/computer/shuttle_control/explore/spacebus, /turf/simulated/floor/tiled/dark, @@ -25486,7 +25910,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "gFM" = ( /obj/structure/cable/green{ d1 = 4; @@ -25512,7 +25936,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "gFQ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -25521,7 +25945,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "gGm" = ( /obj/structure/railing/grey, /turf/space, @@ -25529,29 +25953,24 @@ "gGZ" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) -"gHC" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/quartermaster/Supply_Ship_Bay) "gHK" = ( /obj/item/clothing/suit/chef/classic, /obj/structure/sign/poster{ dir = 4 }, /obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "gHL" = ( /obj/structure/table/marble, /obj/random/maintenance, /turf/simulated/floor/bmarble, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "gHQ" = ( /obj/structure/table/standard, /obj/random_multi/single_item/hand_tele, @@ -25561,7 +25980,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "gIx" = ( /obj/machinery/vending/wallmed1{ dir = 1; @@ -25571,7 +25990,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "gID" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor{ @@ -25581,14 +26000,25 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "gIN" = ( /obj/structure/table/marble, /obj/machinery/chemical_dispenser/kettle/full{ pixel_y = 7 }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/machinery/light{ + name = "1S-light fixture" + }, +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) +"gIQ" = ( +/obj/machinery/light_construct, +/turf/simulated/floor/tiled, +/area/maintenance/Market_Stall_1) "gIW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 @@ -25598,40 +26028,40 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "gJd" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "gJq" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "gJs" = ( /obj/effect/floor_decal/shuttle/loading, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "gJz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "gJP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "gKc" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "gKh" = ( /obj/machinery/firealarm{ dir = 8; @@ -25641,36 +26071,36 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "gKm" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "gKO" = ( /obj/machinery/light/small{ dir = 1 }, /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "gLy" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "gLF" = ( /obj/structure/hyperball_goal/blue, /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "gLY" = ( /obj/structure/girder, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "gMb" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -25689,7 +26119,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "gMl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -25702,7 +26132,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "gMv" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -25716,14 +26146,14 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "gMA" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "gMC" = ( /obj/effect/floor_decal/road/center, /turf/simulated/floor/grass2/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "gMM" = ( /obj/structure/cable/green{ d1 = 4; @@ -25736,7 +26166,7 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/mauve/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "gMT" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -25746,7 +26176,7 @@ "gNe" = ( /obj/structure/girder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "gNf" = ( /obj/structure/cable/white{ d1 = 4; @@ -25754,7 +26184,7 @@ icon_state = "4-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "gNh" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -25768,7 +26198,7 @@ network = list("Harbor") }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "gNA" = ( /obj/machinery/light, /obj/machinery/power/terminal{ @@ -25789,7 +26219,7 @@ /obj/machinery/door/airlock/maintenance/common, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "gNJ" = ( /obj/structure/cable/white{ d1 = 1; @@ -25797,7 +26227,7 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "gNP" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 @@ -25808,7 +26238,7 @@ /obj/machinery/flasher/portable, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "gOf" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -25824,7 +26254,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "gOj" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 10 @@ -25833,7 +26263,7 @@ dir = 9 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "gOt" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -25843,31 +26273,31 @@ }, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "gOv" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "gOF" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1) +/area/maintenance/Deck1_Security_PortChamber1) "gPf" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "gPj" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "gPG" = ( /obj/structure/bed/chair/wheelchair/smallmotor, /obj/effect/floor_decal/industrial/hatch/blue, @@ -25877,19 +26307,19 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "gPH" = ( /obj/structure/table/standard, /obj/random/maintenance/research, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "gPS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "gPY" = ( /obj/item/stool/padded{ dir = 1 @@ -25902,7 +26332,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "gQe" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -25925,7 +26355,7 @@ pixel_y = -27 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "gQt" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -25940,7 +26370,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "gQI" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/porta_turret/industrial/teleport_defense, @@ -25948,11 +26378,11 @@ name = "1S-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "gQV" = ( /obj/random/maintenance/medical, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "gRm" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/suit_storage_unit/engineering, @@ -25963,7 +26393,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "gRn" = ( /obj/item/uv_light{ pixel_y = 3; @@ -25971,7 +26401,7 @@ }, /obj/random/trash, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "gRy" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -25981,7 +26411,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "gRB" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -26000,21 +26430,24 @@ pixel_x = -11 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "gRM" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "gRO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Deck1_Transit_Hall) "gRQ" = ( /obj/effect/catwalk_plated/white, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -26024,7 +26457,7 @@ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "gRV" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 4 @@ -26033,11 +26466,11 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "gSf" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "gSP" = ( /obj/machinery/firealarm{ dir = 8; @@ -26056,11 +26489,13 @@ /obj/effect/floor_decal/corner/red/border{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "gSQ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "gSR" = ( /obj/machinery/portable_atmospherics/canister/empty, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -26071,7 +26506,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "gSS" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -26083,7 +26518,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "gST" = ( /obj/structure/table/rack/shelf, /obj/random/mainttoyloot, @@ -26096,14 +26531,14 @@ /obj/random/forgotten_tram, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "gSU" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/misc, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "gSY" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -26113,13 +26548,17 @@ /obj/machinery/door/airlock/silver{ name = "Restroom" }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "gTf" = ( /obj/item/paper/awaygate/snowfield/final_note, /obj/random/trash, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "gTl" = ( /obj/structure/cable/green{ d1 = 4; @@ -26137,12 +26576,12 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "gTv" = ( /obj/structure/table/steel, /obj/random/maintenance/security, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "gTJ" = ( /obj/structure/cable/green{ d1 = 4; @@ -26165,7 +26604,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "gTN" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor{ @@ -26178,7 +26617,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "gTW" = ( /obj/machinery/door/window/brigdoor/westright{ name = "Containment Pen"; @@ -26188,7 +26627,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "gUf" = ( /obj/machinery/alarm{ dir = 1; @@ -26207,7 +26646,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "gUu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/structure/cable/blue{ @@ -26229,7 +26668,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "gUA" = ( /obj/machinery/power/apc{ dir = 1; @@ -26262,7 +26701,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "gUG" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -26271,7 +26710,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "gUX" = ( /obj/structure/grille, /obj/structure/shuttle/window, @@ -26285,7 +26724,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "gVA" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -26297,17 +26736,17 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "gVY" = ( /obj/structure/table/rack, /obj/random/maintenance/engineering, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "gVZ" = ( /obj/structure/salvageable/server, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "gWa" = ( /obj/effect/catwalk_plated/white, /obj/machinery/camera/network/security{ @@ -26315,7 +26754,7 @@ network = list("Harbor") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "gWg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -26330,7 +26769,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "gWn" = ( /obj/machinery/alarm{ dir = 1; @@ -26340,24 +26779,31 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "gWo" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "gWH" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" }, -/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "gXk" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "gXl" = ( /obj/effect/shuttle_landmark/southern_cross/arrivals_station, /turf/space, @@ -26382,7 +26828,7 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "gXE" = ( /obj/structure/cable/green{ d1 = 1; @@ -26399,7 +26845,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "gXH" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/window/brigdoor/eastright{ @@ -26420,13 +26866,13 @@ layer = 3.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "gXO" = ( /obj/effect/floor_decal/industrial/caution/yellow{ dir = 4 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "gYk" = ( /obj/machinery/airlock_sensor{ dir = 8; @@ -26443,11 +26889,11 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "gYs" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "gYt" = ( /obj/item/binoculars, /obj/structure/table/glass, @@ -26457,13 +26903,17 @@ pixel_x = 22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "gYy" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/shuttle/floor/voidcraft/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) +"gYP" = ( +/obj/machinery/light_construct, +/turf/simulated/floor/tiled, +/area/maintenance/Market_Stall_2) "gZx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -26480,11 +26930,11 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "gZE" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "gZG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -26500,7 +26950,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "gZH" = ( /obj/effect/floor_decal/shuttle/loading, /obj/structure/railing/grey{ @@ -26514,7 +26964,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "gZS" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, @@ -26524,13 +26974,13 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "gZX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/purple{ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "hab" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -26542,10 +26992,10 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "hak" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "ham" = ( /obj/structure/table/reinforced, /obj/item/tool/screwdriver{ @@ -26560,7 +27010,7 @@ pixel_x = -4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "haB" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -26569,7 +27019,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "haN" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -26578,7 +27028,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "haX" = ( /obj/structure/cable/green{ d1 = 1; @@ -26595,7 +27045,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "hbd" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -26610,7 +27060,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "hbf" = ( /obj/machinery/portable_atmospherics/canister/empty/nitrous_oxide, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -26621,15 +27071,15 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "hbs" = ( /obj/effect/catwalk_plated/white, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "hbu" = ( /obj/machinery/computer/arcade/clawmachine, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "hbD" = ( /obj/machinery/portable_atmospherics/canister/empty/nitrous_oxide, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -26644,14 +27094,14 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "hbF" = ( /obj/effect/catwalk_plated/white, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "hbO" = ( /obj/effect/floor_decal/shuttle/loading, /obj/structure/railing/grey{ @@ -26665,7 +27115,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "hcd" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -26685,7 +27135,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "hcx" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -26697,7 +27147,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "hcA" = ( /obj/structure/grille, /obj/structure/shuttle/window, @@ -26706,16 +27156,16 @@ "hcO" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "hcU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, /obj/effect/floor_decal/industrial/arrows/yellow{ dir = 1 }, -/obj/structure/closet/crate/mimic/airlock/cointoss, +/obj/structure/closet/crate/mimic/airlock/safe, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "hdB" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/canister/empty, @@ -26726,7 +27176,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "hdP" = ( /obj/structure/sign/warning/evac, /turf/simulated/shuttle/wall/no_join{ @@ -26743,7 +27193,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "hdW" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/steeldecal/steel_decals9, @@ -26757,7 +27207,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "hed" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -26774,7 +27224,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "hen" = ( /obj/effect/catwalk_plated/dark, /obj/machinery/shipsensors, @@ -26783,18 +27233,18 @@ "heo" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "heT" = ( /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "heY" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "hfA" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -26803,7 +27253,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "hga" = ( /obj/item/radio/intercom{ dir = 1; @@ -26832,7 +27282,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "hgd" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/canister/empty/phoron, @@ -26843,12 +27293,12 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "hgB" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "hgD" = ( /obj/structure/table/reinforced, /obj/machinery/cash_register/engineering{ @@ -26876,13 +27326,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "hgS" = ( /obj/structure/table/reinforced, /obj/item/melee/baton/loaded, /obj/item/multitool, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "hgW" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/hyperpad/centre{ @@ -26890,11 +27340,11 @@ map_pad_link_id = "pad_1_away" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "hhh" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "hhu" = ( /obj/item/storage/firstaid/o2, /obj/item/storage/firstaid/fire, @@ -26912,12 +27362,12 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "hhL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) "hhP" = ( /obj/machinery/status_display{ name = "S-status display"; @@ -26926,17 +27376,17 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "hhZ" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "hie" = ( /obj/structure/bed/chair/oldsofa/right{ dir = 4 }, /turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "hik" = ( /obj/machinery/power/apc{ dir = 4; @@ -26948,7 +27398,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "hir" = ( /obj/structure/table/rack/shelf, /obj/random/toolbox, @@ -26965,7 +27415,7 @@ /obj/effect/floor_decal/rust, /obj/random/mainttoyloot, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "hiv" = ( /obj/item/bone/skull/unknown, /obj/effect/decal/cleanable/blood/splatter{ @@ -26973,12 +27423,12 @@ name = "Honey splatter" }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "hjd" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/green/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "hjj" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -26987,7 +27437,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "hjr" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -26997,7 +27447,7 @@ }, /obj/structure/salvageable/computer_os, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "hjy" = ( /obj/machinery/power/apc{ dir = 4; @@ -27009,7 +27459,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "hjG" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -27021,20 +27471,20 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "hjK" = ( /obj/structure/window/basic{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "hjP" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "hjR" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -27060,7 +27510,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "hkK" = ( /obj/machinery/camera/network/security{ dir = 9; @@ -27073,7 +27523,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "hkN" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -27089,7 +27539,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "hkY" = ( /obj/machinery/biogenerator, /obj/effect/floor_decal/borderfloorwhite{ @@ -27099,7 +27549,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "hlK" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -27108,22 +27558,22 @@ dir = 1 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "hma" = ( /obj/structure/bed/chair/sofa/left/beige, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "hmu" = ( /obj/effect/floor_decal/corner/white{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "hmG" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/orange/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "hmU" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -27132,14 +27582,14 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "hne" = ( /obj/structure/sign/directions/evac{ dir = 1; pixel_y = 9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "hnJ" = ( /obj/structure/table/wooden_reinforced, /obj/item/deck/tarot, @@ -27147,14 +27597,14 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "hnP" = ( /obj/structure/sign/directions/evac{ dir = 8; pixel_y = 9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "hon" = ( /obj/item/radio/intercom{ dir = 8; @@ -27168,11 +27618,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "hov" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "hoP" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -27180,7 +27630,7 @@ network = list("Harbor") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "hoU" = ( /obj/machinery/camera/network/security{ dir = 10; @@ -27190,7 +27640,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "hpk" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -27209,13 +27659,18 @@ pixel_y = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "hpn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ dir = 1 }, /obj/effect/floor_decal/industrial/arrows/red, +/obj/machinery/flasher{ + id = "SC-FLquantumpad"; + name = "Doorframe mounted flash"; + layer = 2.5 + }, /obj/structure/cable/white{ d1 = 4; d2 = 8; @@ -27226,15 +27681,16 @@ name = "Inner Checkpoint Airlock"; id_tag = "SC-DCqpinner" }, -/obj/machinery/flasher{ - id = "SC-FLquantumpad"; - name = "Doorframe mounted flash"; - layer = 2.5 +/obj/machinery/door/blast/regular/open{ + layer = 3.5; + id = "For Lockdown"; + name = "Lockdown Gate"; + desc = "A heavily reinforced gate, sector lockdown!"; + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "hpp" = ( /obj/effect/floor_decal/industrial/stand_clear/blue{ dir = 8 @@ -27248,7 +27704,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "hpu" = ( /obj/structure/table/bench/marble, /obj/structure/flora/pottedplant/unusual{ @@ -27264,7 +27720,7 @@ dir = 1 }, /turf/simulated/floor/carpet/purcarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "hpI" = ( /obj/structure/cable/green{ d1 = 4; @@ -27279,7 +27735,7 @@ }, /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "hpO" = ( /obj/machinery/alarm{ dir = 8; @@ -27302,25 +27758,25 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "hpQ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "hqi" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/structure/table/glass, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "hqp" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "hqr" = ( /obj/structure/table/standard, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "hqx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -27334,7 +27790,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "hqB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -27351,38 +27807,38 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "hqK" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "hqT" = ( /obj/structure/reagent_dispensers/beerkeg/fakenuke, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "hqU" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "hqX" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "hre" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "hrD" = ( /obj/structure/table, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "hrV" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "hsh" = ( /obj/structure/cable/green{ d1 = 1; @@ -27397,7 +27853,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "hsD" = ( /obj/structure/disposalpipe/sortjunction/wildcard/flipped{ dir = 1 @@ -27417,7 +27873,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "htm" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -27439,7 +27895,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "hts" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -27448,7 +27904,7 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/sec, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "htH" = ( /obj/structure/cable/white{ d1 = 1; @@ -27456,7 +27912,7 @@ icon_state = "1-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "htI" = ( /obj/machinery/power/apc{ dir = 4; @@ -27468,7 +27924,7 @@ icon_state = "0-8" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "htL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -27478,7 +27934,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "htS" = ( /obj/machinery/pointdefense{ id_tag = "PD Primary" @@ -27504,7 +27960,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "htY" = ( /obj/machinery/light{ dir = 8; @@ -27518,11 +27974,11 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "hut" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "huv" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -27531,7 +27987,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "huC" = ( /obj/machinery/alarm{ dir = 1; @@ -27539,11 +27995,11 @@ }, /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "huX" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "hvg" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -27571,7 +28027,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "hvq" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/power/apc{ @@ -27584,7 +28040,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "hvD" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -27592,16 +28048,17 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/pink/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "hvN" = ( /obj/structure/bed/chair/bay, -/obj/machinery/light{ - dir = 1; - name = "1N-lighting fixture" - }, /obj/effect/floor_decal/rust, +/obj/machinery/light/spot{ + dir = 1; + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "hvT" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -27617,7 +28074,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "hwj" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -27633,10 +28090,10 @@ color = "yellow" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "hwu" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "hww" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/steeldecal/steel_decals9, @@ -27650,7 +28107,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "hwH" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -27662,7 +28119,7 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "hwI" = ( /obj/structure/railing{ dir = 1 @@ -27672,7 +28129,7 @@ faction = "nanotrasen" }, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "hwK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -27692,7 +28149,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "hwX" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -27701,7 +28158,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "hxs" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -27722,7 +28179,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "hxD" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ @@ -27740,7 +28197,24 @@ id = "sc-GCcustodian" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) +"hxK" = ( +/obj/structure/sign/directions/cargo{ + pixel_y = 9; + dir = 8; + layer = 3.5 + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + layer = 3.5 + }, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = -9; + layer = 3.5 + }, +/turf/simulated/wall/r_wall, +/area/harbor/Dock4) "hxU" = ( /obj/structure/window/phoronreinforced/full, /obj/structure/window/reinforced/survival_pod{ @@ -27765,15 +28239,19 @@ dir = 10 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "hyY" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "hyZ" = ( /obj/random/trash, -/turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "hza" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -27783,21 +28261,21 @@ "hzk" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "hzu" = ( /obj/structure/table/rack/shelf/steel, /obj/fiftyspawner/wood, /obj/fiftyspawner/wood, /obj/fiftyspawner/glass, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "hzy" = ( /obj/structure/disposalpipe/tagger{ sort_tag = "Resleeving"; dir = 2 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "hzI" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -27814,14 +28292,16 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "hzU" = ( /obj/structure/flora/ausbushes/brflowers, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "hAh" = ( /obj/structure/closet/emcloset/legacy, /obj/effect/floor_decal/borderfloorblack{ @@ -27831,7 +28311,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "hAm" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -27850,14 +28330,18 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "hAv" = ( /mob/living/simple_mob/vore/rabbit/black{ name = "Kilo" }, /obj/random/trash, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "hAD" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -27865,11 +28349,11 @@ network = list("Science","PA Room") }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "hAK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "hAP" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -27877,7 +28361,7 @@ network = list("Commons") }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "hAX" = ( /obj/machinery/button/remote/blast_door{ id = "SC-BDxenobiopen5"; @@ -27894,7 +28378,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "hBp" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -27929,7 +28413,7 @@ "hBK" = ( /obj/structure/table/rack/shelf, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "hBP" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -27938,7 +28422,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "hBQ" = ( /obj/structure/sign/directions/science{ pixel_y = 9; @@ -27948,14 +28432,14 @@ dir = 5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "hCf" = ( /obj/machinery/atmospherics/pipe/tank/air/full{ dir = 4 }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "hCh" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 10 @@ -27964,7 +28448,7 @@ dir = 9 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "hCn" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -27973,11 +28457,16 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "hCr" = ( /obj/item/clothing/head/helmet/space/vox/civ/chef, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "hCy" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -27988,7 +28477,7 @@ /obj/effect/map_helper/airlock/door/int_door, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "hCF" = ( /obj/effect/floor_decal/industrial/stand_clear, /obj/structure/railing/grey{ @@ -27998,14 +28487,14 @@ dir = 2 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "hCW" = ( /obj/machinery/atmospherics/pipe/tank/air/full{ dir = 1 }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "hDo" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/borderfloorblack{ @@ -28015,7 +28504,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "hDt" = ( /obj/structure/railing/grey{ dir = 8 @@ -28051,7 +28540,7 @@ /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "hDP" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -28064,7 +28553,7 @@ req_one_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "hEt" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -28073,7 +28562,7 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/sec, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "hEF" = ( /obj/machinery/camera/network/security{ dir = 10; @@ -28082,12 +28571,12 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "hEH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "hEV" = ( /obj/structure/cable/green{ d1 = 1; @@ -28098,7 +28587,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "hEW" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -28110,34 +28599,34 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "hFx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "hFI" = ( /obj/structure/bed/chair/backed_red, /obj/structure/window/basic{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "hFJ" = ( /obj/machinery/computer/shuttle_control/exploration{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "hGe" = ( /obj/machinery/atmospherics/unary/freezer{ icon_state = "freezer" }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "hGg" = ( /obj/structure/shuttle/engine/heater, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -28171,7 +28660,7 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "hGk" = ( /obj/structure/cable/white{ d1 = 2; @@ -28180,23 +28669,23 @@ }, /obj/structure/sign/xenobio, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "hGq" = ( /obj/structure/table/steel, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "hGD" = ( /obj/structure/table/standard, /obj/random/maintenance/research, /obj/random/contraband, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "hGI" = ( /obj/random/multiple/large_corp_crate/no_weapons, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "hGP" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -28205,7 +28694,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "hHn" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/accessory/bowtie, @@ -28215,7 +28704,7 @@ /obj/item/rectape/random, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "hHF" = ( /obj/item/bodybag/cryobag, /obj/item/bodybag/cryobag{ @@ -28228,7 +28717,7 @@ pixel_x = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "hHT" = ( /obj/structure/cable{ d1 = 4; @@ -28245,14 +28734,14 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "hIf" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "hIg" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -28266,7 +28755,7 @@ pixel_y = 22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "hIE" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 @@ -28276,7 +28765,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "hIN" = ( /obj/effect/floor_decal/shuttle/loading, /obj/structure/railing/grey{ @@ -28288,7 +28777,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "hJp" = ( /obj/structure/bed/chair/oldsofa/right{ dir = 4 @@ -28299,18 +28788,18 @@ }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/sblucarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "hJW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "hKf" = ( /obj/structure/table/standard, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "hKn" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -28319,7 +28808,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "hKv" = ( /obj/structure/table/marble, /obj/random/mainttoyloot, @@ -28327,19 +28816,13 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "hKy" = ( /obj/machinery/light{ name = "1S-light fixture" }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 4 - }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "hKJ" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/basic{ @@ -28347,13 +28830,13 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "hKV" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "hKX" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -28365,19 +28848,19 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "hLb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "hLg" = ( /obj/structure/stairs/spawner/north, /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "hLn" = ( /obj/machinery/light/small{ dir = 4 @@ -28385,20 +28868,20 @@ /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "hLo" = ( /obj/structure/closet/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "hLt" = ( /obj/random/drinkbottle, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "hLA" = ( /obj/structure/table/steel, /obj/item/binoculars, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "hLC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -28421,18 +28904,18 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1) +/area/maintenance/Deck1_Security_PortChamber1) "hLG" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "hLP" = ( /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "hMs" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -28448,7 +28931,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "hME" = ( /obj/effect/catwalk_plated/white, /obj/machinery/camera/network/security{ @@ -28456,7 +28939,7 @@ network = list("Harbor") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "hMO" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 9 @@ -28477,7 +28960,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "hMY" = ( /obj/machinery/deployable/barrier, /obj/effect/floor_decal/industrial/hatch/red, @@ -28488,13 +28971,13 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "hNe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "hNt" = ( /obj/structure/cable/green{ d1 = 1; @@ -28511,14 +28994,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "hNx" = ( /obj/item/stack/material/marble{ amount = 25 }, /obj/random/trash, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "hNA" = ( /obj/machinery/alarm{ dir = 1; @@ -28527,7 +29010,7 @@ /obj/random/trash_pile, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "hOd" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -28536,7 +29019,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "hOi" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/loading/blue, @@ -28547,7 +29030,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "hOn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -28556,7 +29039,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "hOB" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -28565,31 +29048,35 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "hOL" = ( /obj/structure/curtain/black{ name = "privacy curtain"; dir = 8 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "hOO" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /obj/effect/catwalk_plated/white, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "hOT" = ( /obj/structure/sign/department/dock{ name = "SHIP DOCKS"; desc = "Sign of some important station compartment." }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "hPd" = ( /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "hPg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -28606,15 +29093,8 @@ name = "Security Checkpoint"; req_one_access = list(1) }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "hPn" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume, /obj/effect/map_helper/airlock/atmos/chamber_pump, @@ -28623,11 +29103,11 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "hPA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "hPL" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 @@ -28638,14 +29118,14 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "hPN" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "hPP" = ( /obj/structure/cable/green{ d1 = 2; @@ -28677,7 +29157,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "hPY" = ( /obj/structure/closet/crate/mimic/cointoss, /obj/effect/floor_decal/borderfloor{ @@ -28688,7 +29168,7 @@ }, /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "hQh" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -28700,7 +29180,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "hQx" = ( /obj/machinery/deployable/barrier, /obj/effect/floor_decal/industrial/hatch/red, @@ -28711,7 +29191,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "hQV" = ( /obj/structure/cable/white{ d1 = 1; @@ -28719,7 +29199,7 @@ icon_state = "1-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "hQZ" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -28734,7 +29214,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "hRf" = ( /obj/structure/cable/white{ d1 = 1; @@ -28742,7 +29222,7 @@ icon_state = "1-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "hRp" = ( /obj/structure/bed/chair/backed_red{ dir = 1 @@ -28753,13 +29233,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "hRx" = ( /obj/item/material/shard, /obj/item/reagent_containers/glass/beaker, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "hRQ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -28776,7 +29256,7 @@ }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "hSi" = ( /obj/machinery/camera/network/security{ dir = 4; @@ -28784,24 +29264,24 @@ network = list("Science","Xenoflora") }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "hSv" = ( /obj/effect/floor_decal/rust, /obj/random/drinksoft, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "hSP" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "hTb" = ( /obj/structure/table/standard, /obj/random/toolbox, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "hTg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -28821,7 +29301,7 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "hTO" = ( /obj/machinery/alarm{ dir = 1; @@ -28833,7 +29313,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "hUK" = ( /obj/structure/cable/green{ d1 = 1; @@ -28846,7 +29326,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "hUO" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/green{ @@ -28860,7 +29340,7 @@ network = list("engineering") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "hUW" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 @@ -28870,14 +29350,16 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "hVl" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/seeds/sunflowerseed{ icon_state = "seed" }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "hVG" = ( /obj/structure/sign/directions/cargo{ dir = 8 @@ -28887,7 +29369,7 @@ dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "hVQ" = ( /obj/machinery/atmospherics/binary/passive_gate{ regulate_mode = 0; @@ -28895,11 +29377,11 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "hWg" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "hWo" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -28926,21 +29408,23 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "hWt" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/structure/flora/ausbushes/ppflowers, /obj/structure/bed/chair/wood{ dir = 8 }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "hWv" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "hWK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -28955,7 +29439,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "hWP" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -28968,7 +29452,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "hWZ" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -28981,7 +29465,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "hXB" = ( /obj/structure/cable/green{ d1 = 1; @@ -29003,12 +29487,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "hXE" = ( /obj/random/junk, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "hXN" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -29018,25 +29502,25 @@ icon_state = "pipe-c" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "hXO" = ( /obj/structure/sign/directions/evac{ dir = 1; pixel_y = 9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "hXX" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "hYb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "hYg" = ( /obj/effect/catwalk_plated/dark, /obj/machinery/button/remote/airlock{ @@ -29047,7 +29531,7 @@ specialfunctions = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "hYr" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -29059,10 +29543,10 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "hZj" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "hZk" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -29074,7 +29558,7 @@ pixel_y = -3 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "hZH" = ( /obj/structure/window/titanium{ dir = 4 @@ -29086,7 +29570,7 @@ /area/shuttle/large_escape_pod1/station) "hZI" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "hZV" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -29111,8 +29595,13 @@ dir = 4; layer = 3.5 }, +/obj/structure/sign/directions/science/exploration{ + pixel_y = 9; + dir = 5; + layer = 3.5 + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "iab" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -29133,7 +29622,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "iam" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -29143,21 +29632,25 @@ }, /obj/effect/catwalk_plated/white, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "iau" = ( /obj/structure/flora/sif/eyes, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "iaC" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "iaE" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "ibt" = ( /obj/machinery/vending/desatti, /obj/machinery/status_display{ @@ -29166,23 +29659,23 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "ibE" = ( /obj/structure/table/woodentable, /obj/item/deck/egy, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "ibZ" = ( /obj/structure/stairs/spawner/east, /obj/structure/railing, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "icg" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "icl" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -29192,11 +29685,11 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "icx" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "icJ" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -29211,7 +29704,7 @@ /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "idc" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = 28; @@ -29219,12 +29712,12 @@ }, /obj/structure/table/glass, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "idd" = ( /obj/random/maintenance/clean, /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "ido" = ( /obj/structure/closet/secure_closet/guncabinet/rifle{ req_one_access = list(7,47) @@ -29237,7 +29730,7 @@ }, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "idr" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ @@ -29247,29 +29740,29 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "idv" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "idy" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "idC" = ( /obj/structure/table/marble, /obj/machinery/cash_register, /turf/simulated/floor/bmarble, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "idD" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "idL" = ( /obj/structure/table/reinforced, /obj/item/handcuffs{ @@ -29311,7 +29804,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "idN" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -29320,7 +29813,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "iea" = ( /obj/machinery/shower{ dir = 1 @@ -29337,17 +29830,17 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "ief" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "iem" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "iev" = ( /obj/machinery/light{ dir = 1; @@ -29355,13 +29848,13 @@ }, /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "ieT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "ieW" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -29376,12 +29869,12 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "ifc" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "ife" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -29400,7 +29893,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "ifh" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -29409,7 +29902,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "ifn" = ( /obj/effect/floor_decal/corner/purple/diagonal, /obj/effect/floor_decal/borderfloorwhite{ @@ -29419,24 +29912,24 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "ify" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "ifA" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "iga" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "igk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -29452,7 +29945,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "igo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -29474,13 +29967,13 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "igv" = ( /obj/structure/closet/crate, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "igA" = ( /obj/structure/cable/green{ d1 = 4; @@ -29500,7 +29993,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "igN" = ( /obj/machinery/alarm{ dir = 4; @@ -29513,7 +30006,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "igQ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -29525,13 +30018,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "ihk" = ( /obj/structure/bed/chair/sofa/left/beige{ dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "ihI" = ( /obj/machinery/light/floortube, /turf/simulated/floor/tiled/milspec, @@ -29547,26 +30040,26 @@ name = "1E-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "iid" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "iih" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "iij" = ( /obj/structure/sign/level/one/large, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "iiz" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "iiA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 @@ -29575,7 +30068,7 @@ dir = 4 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "iiF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -29590,11 +30083,11 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "iiJ" = ( /obj/structure/sign/warning/evac, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "iiS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -29608,7 +30101,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "ije" = ( /obj/machinery/telecomms/bus/preset_two/southerncross, /obj/effect/catwalk_plated/dark, @@ -29617,7 +30110,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "ijj" = ( /obj/machinery/power/apc{ dir = 1; @@ -29630,7 +30123,7 @@ }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "ijD" = ( /obj/structure/cable/green{ d1 = 4; @@ -29649,17 +30142,17 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "ijJ" = ( /obj/vehicle/train/engine{ dir = 8 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "ijM" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "ijT" = ( /obj/machinery/alarm{ dir = 8; @@ -29667,7 +30160,7 @@ }, /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "ikq" = ( /obj/machinery/alarm{ dir = 4; @@ -29675,7 +30168,7 @@ }, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "ikt" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -29698,7 +30191,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "ikZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -29721,17 +30214,17 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "ilb" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "ild" = ( /obj/structure/table/standard, /obj/random/maintenance/medical, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "ilo" = ( /obj/structure/cable/green{ d1 = 4; @@ -29739,20 +30232,20 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "ilp" = ( /obj/structure/bed/chair/backed_red{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "ilx" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "ilD" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -29783,20 +30276,20 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "ilK" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "ilL" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "ilO" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/cable/green{ @@ -29809,10 +30302,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "ilU" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "ime" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 @@ -29822,7 +30315,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "imk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -29834,7 +30327,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "imo" = ( /obj/machinery/power/apc{ dir = 1; @@ -29857,13 +30350,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "imA" = ( /obj/machinery/light_construct/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "imJ" = ( /turf/simulated/wall/rthull, /area/shuttle/escape_pod6/station) @@ -29874,7 +30367,11 @@ }, /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1) +/area/maintenance/Deck1_Security_PortChamber1) +"imP" = ( +/obj/structure/ghost_pod/ghost_activated/maintpred, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_AftPort_Chamber2) "imS" = ( /obj/structure/sign/directions/dock{ dir = 8 @@ -29887,7 +30384,7 @@ dir = 1 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "imW" = ( /obj/machinery/atmospherics/tvalve/mirrored, /obj/effect/floor_decal/industrial/outline/yellow, @@ -29900,14 +30397,14 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "ing" = ( /obj/structure/bed/chair/bay, /obj/machinery/light_construct{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "inz" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -29929,43 +30426,43 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "inC" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4; name = "Port to Isolation" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "inQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "inV" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "inX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "ioc" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "ioo" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "ioq" = ( /obj/random/toy, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "iov" = ( /obj/machinery/computer/ship/sensors, /turf/simulated/floor/tiled/milspec, @@ -29976,8 +30473,10 @@ /obj/structure/bed/chair/wood{ dir = 4 }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "ipa" = ( /obj/structure/table/glass, /obj/item/gun/energy/taser/xeno{ @@ -29990,16 +30489,16 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "ipb" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "ipk" = ( /obj/structure/table/wooden_reinforced, /obj/item/toy/eight_ball, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "ipm" = ( /obj/structure/railing/grey{ dir = 1 @@ -30008,7 +30507,7 @@ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "ipp" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/red{ @@ -30033,7 +30532,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "ipN" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -30056,7 +30555,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "ipT" = ( /obj/structure/cable/green{ d1 = 1; @@ -30073,7 +30572,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "ipW" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 9 @@ -30082,7 +30581,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "iqz" = ( /obj/machinery/light/small{ dir = 1 @@ -30094,13 +30593,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "iqJ" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "ire" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -30109,7 +30608,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "irh" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable, @@ -30133,21 +30632,24 @@ dir = 1; pixel_y = -22 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "irk" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "irz" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "irQ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -30161,7 +30663,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "iso" = ( /obj/structure/cable/green{ d1 = 1; @@ -30171,8 +30673,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central2, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "isy" = ( /obj/structure/table/glass, /obj/machinery/light{ @@ -30186,7 +30689,7 @@ }, /obj/item/toy/toy_xeno, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "isE" = ( /obj/structure/sign/nanotrasen, /turf/simulated/wall/rplastihull, @@ -30214,16 +30717,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "isT" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "isU" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "itp" = ( /obj/structure/shuttle/engine/heater, /obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ @@ -30234,7 +30737,7 @@ "itq" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "itC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -30248,7 +30751,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "itQ" = ( /obj/machinery/conveyor{ dir = 8; @@ -30256,7 +30759,7 @@ }, /obj/structure/plasticflaps/mining, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "itV" = ( /obj/structure/disposaloutlet{ dir = 1 @@ -30268,7 +30771,7 @@ dir = 4 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "iuh" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -30277,7 +30780,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "iuu" = ( /obj/structure/railing, /obj/machinery/conveyor{ @@ -30289,7 +30792,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "iuI" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; @@ -30311,7 +30814,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "iuY" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/watertank/high, @@ -30321,13 +30824,13 @@ network = list("engineering") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "iva" = ( /obj/random/junk, /obj/random/trash, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "ivl" = ( /obj/effect/floor_decal/techfloor/orange, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -30339,7 +30842,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "ivD" = ( /obj/structure/window/titanium{ dir = 8 @@ -30354,7 +30857,7 @@ /obj/random/trash, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "ivS" = ( /obj/effect/shuttle_landmark{ base_area = /area/hangar/two; @@ -30364,23 +30867,12 @@ docking_controller = "sc-D1_H3" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "ivU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/catwalk_plated/techmaint, /obj/machinery/porta_turret/industrial/teleport_defense, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "iwk" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -30393,11 +30885,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "iwx" = ( /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "iwD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /turf/simulated/floor/tiled/milspec/raised{ @@ -30406,7 +30898,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "iwF" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -30418,36 +30910,36 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "iwL" = ( /obj/structure/closet/crate/large/nanotrasen, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "ixd" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "ixv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) "ixC" = ( /obj/machinery/light/small{ dir = 1 }, /obj/structure/closet/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "ixE" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "ixN" = ( /obj/machinery/replicator/clothing, /obj/item/toy/plushie/bigcat{ @@ -30456,7 +30948,7 @@ }, /obj/effect/decal/cleanable/blood/splatter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "ixO" = ( /obj/structure/lattice, /obj/structure/grille, @@ -30471,24 +30963,24 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "iyo" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 }, /turf/simulated/shuttle/floor/voidcraft/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "iyx" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "iyI" = ( /obj/random/plushie, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "iyK" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "izd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -30499,13 +30991,13 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "izi" = ( /obj/structure/salvageable/personal{ pixel_y = 15 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "izk" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -30517,13 +31009,16 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "izm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "izz" = ( /obj/structure/cable/green{ d1 = 1; @@ -30536,7 +31031,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1) +/area/maintenance/Deck1_Security_PortChamber1) "izC" = ( /obj/effect/catwalk_plated/white, /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ @@ -30547,7 +31042,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "izV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/random/plushie{ @@ -30555,7 +31050,7 @@ pixel_x = 2 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "iAp" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 1 @@ -30580,7 +31075,7 @@ pixel_x = -25 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "iAV" = ( /obj/machinery/light{ dir = 8; @@ -30594,17 +31089,17 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "iBa" = ( /obj/structure/frame/computer, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "iBB" = ( /obj/machinery/botany/extractor, /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "iBF" = ( /obj/machinery/light/floortube{ dir = 8 @@ -30619,7 +31114,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "iBO" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -30631,11 +31126,11 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "iBY" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "iCd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -30656,7 +31151,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "iCi" = ( /obj/structure/bed/chair/wood{ dir = 4 @@ -30669,24 +31164,24 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "iCz" = ( /obj/machinery/light_construct{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "iCG" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/portable_atmospherics/canister/empty, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "iCI" = ( /obj/structure/table/standard, /obj/random/organ, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "iDm" = ( /obj/vehicle/train/trolley{ dir = 8 @@ -30696,7 +31191,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "iDD" = ( /obj/machinery/airlock_sensor{ pixel_y = 24 @@ -30707,7 +31202,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "iDI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -30716,7 +31211,7 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "iDS" = ( /obj/structure/cable/white{ d1 = 2; @@ -30724,16 +31219,16 @@ icon_state = "2-4" }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "iDW" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "iEb" = ( /obj/structure/closet/bombcloset/double, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "iEc" = ( /obj/effect/catwalk_plated/white, /obj/structure/cable/green{ @@ -30754,19 +31249,21 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "iEe" = ( /obj/structure/flora/ausbushes/fernybush, /mob/living/simple_mob/animal/passive/crab/sif{ name = "Scrable"; faction = "nanotrasen" }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "iEf" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "iEh" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 1 @@ -30775,38 +31272,38 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "iEp" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "iEv" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/flour, /obj/effect/floor_decal/rust, /obj/item/storage/backpack/genetics, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "iEL" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "iEM" = ( /obj/structure/table/steel, /obj/random/maintenance/cargo, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "iER" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "iFa" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "iFn" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/alarm{ @@ -30814,7 +31311,7 @@ pixel_x = 22 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "iFw" = ( /obj/structure/lattice, /obj/machinery/shield_diffuser, @@ -30828,25 +31325,25 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "iFV" = ( /obj/structure/bed/chair/sofa/beige{ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "iGu" = ( /obj/item/deck/wizoff, /obj/structure/table/wooden_reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "iGC" = ( /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "iHJ" = ( /obj/random/tank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "iHP" = ( /turf/simulated/floor/tiled/milspec, /area/shuttle/spacebus) @@ -30854,7 +31351,7 @@ /obj/structure/table/standard, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "iIr" = ( /obj/item/defib_kit/loaded, /obj/item/storage/pill_bottle/tramadol{ @@ -30885,7 +31382,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "iJv" = ( /obj/machinery/portable_atmospherics/canister/empty/nitrous_oxide, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -30895,10 +31392,10 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "iJK" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "iJO" = ( /obj/item/gps{ pixel_x = 3; @@ -30928,7 +31425,7 @@ "iJW" = ( /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "iJX" = ( /obj/structure/cable/green{ d1 = 2; @@ -30952,13 +31449,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "iKa" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "iKe" = ( /obj/structure/cable/white{ d1 = 4; @@ -30966,14 +31463,12 @@ icon_state = "4-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "iKg" = ( -/obj/machinery/shieldwallgen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/obj/structure/lattice, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless, +/area/space) "iKE" = ( /obj/structure/janitorialcart{ dir = 4 @@ -30985,7 +31480,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "iLn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -31003,17 +31498,23 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "iLt" = ( -/obj/machinery/shieldwallgen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - name = "1S-light fixture" +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/shield_capacitor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/engineering/Telecomms_Foyer) "iLZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -31023,7 +31524,7 @@ /obj/machinery/door/airlock/maintenance/common, /obj/item/tape/medical, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "iMf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -31034,11 +31535,11 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "iMg" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "iMj" = ( /obj/machinery/alarm{ dir = 1; @@ -31046,7 +31547,7 @@ }, /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "iMu" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -31065,26 +31566,28 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "iNd" = ( /obj/random/trash, /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "iNo" = ( /obj/machinery/light/small{ dir = 4 }, /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "iNr" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/seeds/rose{ icon_state = "seed" }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "iOk" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 9 @@ -31093,7 +31596,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "iOl" = ( /obj/structure/railing/grey{ dir = 1 @@ -31102,7 +31605,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "iOy" = ( /obj/structure/cable/green{ d1 = 1; @@ -31114,7 +31617,7 @@ dir = 8 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "iOG" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -31123,7 +31626,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "iOY" = ( /obj/machinery/camera/network/security{ dir = 6; @@ -31137,11 +31640,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "iPb" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "iPi" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -31150,7 +31653,7 @@ }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "iPp" = ( /obj/machinery/disposal, /obj/machinery/light{ @@ -31165,18 +31668,18 @@ pixel_x = 22 }, /turf/simulated/floor/carpet/purcarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "iPw" = ( /obj/structure/sign/warning/radioactive, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "iPx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "iPE" = ( /obj/machinery/computer/ship/navigation, /turf/simulated/floor/tiled/dark, @@ -31186,7 +31689,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "iQu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 @@ -31202,7 +31705,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "iQv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -31212,7 +31715,7 @@ icon_state = "" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "iQw" = ( /obj/structure/sign/warning/evac, /turf/simulated/shuttle/wall/no_join{ @@ -31229,18 +31732,18 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "iQO" = ( /obj/effect/floor_decal/steeldecal/steel_decals6, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "iRg" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "iRv" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -31253,10 +31756,10 @@ name = "1N-station holomap" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "iRz" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "iRS" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 @@ -31267,10 +31770,10 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "iRW" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "iSB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -31289,33 +31792,28 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "iTa" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; +/obj/structure/cable{ + d1 = 4; d2 = 8; - icon_state = "2-8" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/shield_capacitor{ + dir = 8 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/engineering/Telecomms_Foyer) "iTc" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "iTg" = ( /obj/structure/railing{ dir = 8 @@ -31327,14 +31825,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "iTt" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "iTC" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "iTG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -31346,7 +31844,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "iTK" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 10 @@ -31355,7 +31853,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "iUg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -31364,13 +31862,13 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "iUi" = ( /obj/structure/sign/department/gravi{ desc = "Sign of some important station compartment." }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "iUl" = ( /obj/structure/closet/secure_closet/hydroponics{ req_access = list(47) @@ -31386,7 +31884,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "iUv" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -31399,7 +31897,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "iUO" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -31412,7 +31910,7 @@ dir = 5 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "iUS" = ( /obj/machinery/atmospherics/binary/pump/high_power{ name = "PA-Room pump" @@ -31420,22 +31918,22 @@ /obj/item/geiger/wall/east, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "iUT" = ( -/obj/machinery/vending/foodstuffing, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/vending/foodfish, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "iUX" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "iVq" = ( /obj/structure/table, /obj/item/storage/toolbox/hydro{ @@ -31447,7 +31945,7 @@ pixel_x = -4 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "iVv" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -31456,7 +31954,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "iVw" = ( /obj/random/trash, /obj/structure/table/rack, @@ -31465,13 +31963,13 @@ /obj/random/maintenance/morestuff, /obj/random/contraband, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "iVy" = ( /obj/structure/table/steel, /obj/item/clothing/accessory/cowledvest, /obj/machinery/petrification, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "iVI" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -31480,7 +31978,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Harbor_Substation) +/area/maintenance/Harbor_Substation) "iWf" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -31489,7 +31987,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "iXh" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -31503,10 +32001,10 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "iXF" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "iXP" = ( /obj/machinery/power/apc{ dir = 1; @@ -31518,31 +32016,21 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "iXQ" = ( /obj/machinery/conveyor, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "iYb" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "iYx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/turf/simulated/floor/glass, +/area/hallway/Deck1_Transit_Hall) "iYy" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -31557,7 +32045,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "iYB" = ( /obj/structure/cable/green{ d1 = 2; @@ -31577,7 +32065,7 @@ }, /obj/effect/floor_decal/emblem/nt3, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "iZh" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -31600,7 +32088,7 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "iZy" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -31609,7 +32097,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "iZU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -31630,14 +32118,14 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "jaC" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "jaH" = ( /obj/machinery/power/apc{ dir = 1; @@ -31649,7 +32137,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "jaT" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -31658,16 +32146,16 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "jbc" = ( /obj/machinery/computer/operating{ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "jbd" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "jbn" = ( /obj/structure/lattice, /obj/machinery/light/small/emergency{ @@ -31688,7 +32176,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "jch" = ( /obj/machinery/alarm{ dir = 8; @@ -31696,7 +32184,7 @@ }, /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "jco" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -31707,7 +32195,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "jcH" = ( /obj/effect/floor_decal/arrivals, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -31729,7 +32217,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "jcJ" = ( /obj/structure/railing/grey{ dir = 4 @@ -31737,11 +32225,11 @@ /obj/machinery/firework_launcher, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "jcN" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "jcQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/black{ dir = 8 @@ -31753,7 +32241,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "jcS" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 @@ -31763,7 +32251,7 @@ }, /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "jdb" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -31771,27 +32259,34 @@ d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "jdd" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "jdG" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "jdJ" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "jen" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "jev" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -31801,7 +32296,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "jeQ" = ( /obj/structure/window/phoronreinforced/full, /obj/structure/window/reinforced/survival_pod, @@ -31837,7 +32332,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "jfc" = ( /obj/structure/sign/flag/pirate{ name = "Wrecker Market"; @@ -31846,20 +32341,20 @@ }, /obj/structure/grille/broken, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "jfe" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/closet/crate/wooden, /obj/random/multiple/underdark/ores, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "jfj" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "jfk" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -31878,10 +32373,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "jfn" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "jfy" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -31893,7 +32388,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "jfP" = ( /obj/structure/sign/directions/telecomms{ dir = 5 @@ -31903,7 +32398,7 @@ pixel_y = -9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "jfT" = ( /obj/effect/floor_decal/shuttle/loading{ dir = 1; @@ -31911,7 +32406,7 @@ }, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "jge" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -31940,7 +32435,7 @@ frequency = 1380 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "jgi" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -31948,8 +32443,11 @@ /obj/effect/floor_decal/corner/red/border{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "jgn" = ( /obj/machinery/airlock_sensor{ pixel_y = 24 @@ -31963,16 +32461,16 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "jgE" = ( /obj/effect/floor_decal/shuttle/loading, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "jgW" = ( /obj/structure/closet/crate/large, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "jha" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -31981,7 +32479,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "jhc" = ( /obj/structure/lattice, /obj/structure/cable/white{ @@ -31995,7 +32493,7 @@ "jhg" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "jhq" = ( /obj/machinery/portable_atmospherics/canister/empty/phoron, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -32006,18 +32504,18 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "jhw" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/closet/crate/wooden, /obj/random/material, /obj/random/material/precious, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "jhG" = ( /obj/structure/table/woodentable, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "jhM" = ( /obj/structure/table/woodentable, /obj/structure/curtain/bed{ @@ -32025,7 +32523,7 @@ }, /obj/item/storage/pill_bottle/dice_nerd, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "jhQ" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/loading/blue, @@ -32036,7 +32534,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "jhX" = ( /obj/structure/cable/white, /obj/machinery/pointdefense{ @@ -32066,14 +32564,14 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "jiy" = ( /obj/structure/sign/directions/science/xenoarch{ pixel_y = 9; dir = 10 }, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "jiD" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -32091,7 +32589,7 @@ network = list("Harbor") }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "jiE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -32102,12 +32600,12 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "jiG" = ( /obj/random/contraband, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "jje" = ( /obj/machinery/recharge_station, /turf/simulated/floor/tiled/milspec, @@ -32119,10 +32617,10 @@ network = list("Commons") }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "jjO" = ( /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "jko" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -32133,22 +32631,24 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "jkw" = ( /obj/machinery/artifact_harvester, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "jkB" = ( /obj/structure/salvageable/console_broken_os, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "jkC" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/seeds/siflettuce{ icon_state = "seed" }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "jkR" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -32160,7 +32660,7 @@ name = "Docking lane 3" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "jkS" = ( /obj/structure/cable/green{ d1 = 1; @@ -32170,24 +32670,31 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "jlb" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge{ scrub_id = "SC-Harbor" }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) +"jlg" = ( +/obj/structure/disposalpipe/tagger{ + sort_tag = "Resleeving"; + dir = 4 + }, +/turf/simulated/floor/tiled/kafel_full/white, +/area/crew_quarters/For_Restroom) "jlt" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "jlA" = ( /obj/structure/lattice, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "jlD" = ( /obj/machinery/power/apc/super/critical{ dir = 8; @@ -32214,7 +32721,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "jlF" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -32241,8 +32748,15 @@ /obj/structure/sign/directions/teleporter{ layer = 3.5 }, +/obj/machinery/door/blast/regular/open{ + layer = 3.5; + id = "For Lockdown"; + name = "Lockdown Gate"; + desc = "A heavily reinforced gate, sector lockdown!"; + dir = 4 + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "jlR" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 @@ -32251,7 +32765,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "jlS" = ( /obj/structure/table/standard, /obj/item/handcuffs/cable/white, @@ -32260,7 +32774,7 @@ }, /obj/effect/decal/cleanable/filth, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "jml" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -32274,7 +32788,7 @@ network = list("Harbor") }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "jmu" = ( /obj/structure/window/basic{ dir = 1; @@ -32282,14 +32796,14 @@ }, /obj/structure/closet/radiation, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "jmQ" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/yellow, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "jmU" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -32300,7 +32814,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "jnk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -32312,7 +32826,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "jno" = ( /obj/machinery/atmospherics/pipe/manifold/visible, /obj/machinery/meter, @@ -32325,7 +32839,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "jnw" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/effect/floor_decal/borderfloorblack/corner{ @@ -32335,7 +32849,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "job" = ( /obj/structure/table/marble, /obj/machinery/alarm{ @@ -32343,14 +32857,14 @@ pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "jod" = ( /obj/structure/bed/chair/sofa/right/teal{ dir = 4 }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "jon" = ( /obj/structure/cable{ d1 = 4; @@ -32358,7 +32872,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "jot" = ( /obj/machinery/alarm{ dir = 4; @@ -32371,19 +32885,16 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "joI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "joM" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/steeldecal/steel_decals9, @@ -32401,7 +32912,7 @@ name = "1N-AI display" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "joN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -32421,14 +32932,14 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "joO" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/area/maintenance/ab_Kitchen) "jpd" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -32440,7 +32951,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "jpm" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -32451,17 +32962,18 @@ name = "1S-AI display" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "jpu" = ( -/obj/machinery/light{ - name = "1S-light fixture" - }, /obj/structure/table/marble, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/light/spot{ + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "jpz" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -32475,18 +32987,13 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "jpJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/turf/simulated/floor/glass, +/area/hallway/Deck1_Transit_Hall) "jpR" = ( /obj/item/reagent_containers/blood/prelabeled/OMinus{ pixel_y = 6; @@ -32505,18 +33012,32 @@ desc = "A warning sign which reads 'Restroom'." }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "jqu" = ( /obj/item/geiger/wall/north, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) +"jqw" = ( +/obj/machinery/status_display{ + layer = 4; + name = "N-status display"; + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/Deck1_Star_Corridor) "jqz" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "jqU" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "jrd" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -32528,7 +33049,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "jrj" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 @@ -32543,24 +33064,24 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "jrq" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "jrL" = ( /obj/structure/table/rack, /obj/item/seeds/teaseed{ icon_state = "" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "jrU" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "jsg" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -32570,10 +33091,10 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "jsm" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "jss" = ( /obj/structure/window/reinforced/survival_pod{ dir = 4 @@ -32612,14 +33133,14 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "jsL" = ( /obj/random/trash, /obj/random/maintenance/medical, /obj/structure/table/steel, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "jsR" = ( /obj/item/radio/intercom{ dir = 1; @@ -32633,7 +33154,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "jsS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -32648,22 +33169,22 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "jsW" = ( /mob/living/simple_mob/animal/space/alien/drone, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "jsZ" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "jtq" = ( /obj/machinery/holoposter{ pixel_y = 32 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "jtv" = ( /obj/structure/cable{ d1 = 2; @@ -32677,7 +33198,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "jtB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -32694,14 +33215,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "jtI" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "juf" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "juh" = ( /obj/structure/bed/chair/oldsofa/left{ dir = 4 @@ -32710,13 +33231,13 @@ dir = 1 }, /turf/simulated/floor/carpet/sblucarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "juH" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "juP" = ( /obj/structure/sign/nanotrasen, /turf/simulated/shuttle/wall/no_join{ @@ -32743,13 +33264,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "jvc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "jvd" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ @@ -32763,8 +33284,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "jvg" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -32774,12 +33298,12 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "jvm" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "jvo" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/borderfloorblack{ @@ -32790,22 +33314,22 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "jvw" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "jvL" = ( /obj/effect/shuttle_landmark/southern_cross/supply_station, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "jwa" = ( /obj/machinery/atmospherics/valve/digital/open{ dir = 4 }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "jwk" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -32818,11 +33342,12 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "jww" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "jxi" = ( /obj/structure/closet/cabinet, /obj/item/storage/box/donkpockets, @@ -32839,7 +33364,7 @@ /obj/random/drinkbottle, /obj/random/drinkbottle, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "jyk" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -32848,18 +33373,18 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "jyo" = ( /obj/random/maintenance, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "jyr" = ( /obj/random/drinkbottle, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "jyw" = ( /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "jyz" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 10 @@ -32868,7 +33393,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "jzn" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -32879,20 +33404,20 @@ "jzo" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "jzs" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "jzx" = ( /obj/effect/catwalk_plated/white, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "jzz" = ( /obj/structure/railing, /obj/effect/floor_decal/industrial/danger, @@ -32900,7 +33425,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "jzJ" = ( /obj/machinery/firealarm{ dir = 1; @@ -32910,7 +33435,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "jzW" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -32932,7 +33457,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "jAa" = ( /obj/machinery/gateway{ dir = 10 @@ -32942,7 +33467,7 @@ }, /obj/effect/floor_decal/techfloor/orange, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "jAk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -32959,31 +33484,31 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "jAF" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "jAH" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "jAM" = ( /obj/structure/railing/grey{ dir = 8 }, /obj/machinery/firework_launcher, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "jAT" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "jBl" = ( /obj/machinery/ntnet_relay, /obj/effect/catwalk_plated/dark, @@ -32992,7 +33517,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "jBw" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -33012,14 +33537,14 @@ icon_state = "0-4" }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "jBM" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "jBN" = ( /obj/structure/railing/grey{ dir = 1 @@ -33034,14 +33559,14 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "jCG" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "jDd" = ( /obj/machinery/floodlight, /obj/structure/sign/small/warning/emerg_only{ @@ -33049,7 +33574,7 @@ pixel_y = -32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "jDe" = ( /obj/structure/window/phoronreinforced/full, /obj/structure/window/reinforced/survival_pod{ @@ -33083,7 +33608,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "jDk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -33098,12 +33623,12 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "jDw" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "jDD" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -33112,11 +33637,11 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "jDS" = ( /obj/structure/foodcart, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "jEb" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -33138,7 +33663,7 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "jEl" = ( /obj/structure/cable/green{ d2 = 4; @@ -33164,7 +33689,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "jEt" = ( /obj/structure/cable/green{ d1 = 2; @@ -33183,7 +33708,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Harbor_Substation) +/area/maintenance/Harbor_Substation) "jEu" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -33200,7 +33725,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "jEw" = ( /obj/structure/closet/walllocker_double/kitchen/east{ name = "Ration Cabinet" @@ -33231,7 +33756,7 @@ "jEF" = ( /obj/random/cargopod, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "jEH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/black, /turf/simulated/floor/tiled/milspec/raised{ @@ -33240,7 +33765,12 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) +"jFf" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_AftPort_Corridor1) "jFk" = ( /obj/machinery/alarm{ dir = 4; @@ -33265,7 +33795,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "jFv" = ( /obj/effect/floor_decal/stairs{ dir = 4 @@ -33288,7 +33818,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "jFz" = ( /obj/structure/bed/chair/backed_red{ dir = 1 @@ -33301,7 +33831,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "jFA" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -33320,26 +33850,26 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "jFC" = ( /obj/machinery/light_construct{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "jFE" = ( /obj/machinery/light{ dir = 1 }, /obj/machinery/computer/shuttle_control/explore/echidna{ - req_one_access = list(48) + req_one_access = list(48,10,67) }, /turf/simulated/floor/tiled/milspec, /area/shuttle/echidna) "jFH" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "jFN" = ( /obj/structure/bed/chair/backed_red{ dir = 1 @@ -33352,14 +33882,14 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "jFP" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/fueltank/high, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "jFV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -33374,7 +33904,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "jFY" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -33382,7 +33912,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "jGg" = ( /obj/item/radio/intercom{ name = "1S-Station Intercom (General)"; @@ -33395,7 +33925,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "jGi" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -33404,7 +33934,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "jGw" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -33416,7 +33946,7 @@ dir = 1 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "jGA" = ( /obj/item/reagent_containers/blood/prelabeled/OMinus{ pixel_y = 6; @@ -33433,7 +33963,7 @@ /obj/structure/table/standard, /obj/random/flashlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "jGV" = ( /obj/structure/cable/green{ d1 = 1; @@ -33446,7 +33976,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "jHb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -33467,11 +33997,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "jHk" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "jHx" = ( /obj/effect/landmark{ name = "carpspawn" @@ -33487,7 +34017,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "jHA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -33496,29 +34026,29 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "jHD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "jII" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "jIJ" = ( /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "jIQ" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "jJe" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -33547,14 +34077,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "jJo" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "jJJ" = ( /obj/structure/sign/warning/lethal_turrets, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "jJO" = ( /obj/structure/table/marble, /obj/machinery/chemical_dispenser/bar_soft/full{ @@ -33562,17 +34092,17 @@ pixel_x = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "jJQ" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "jJR" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "jJV" = ( /obj/structure/table/woodentable, /obj/machinery/newscaster{ @@ -33580,16 +34110,16 @@ name = "1N-newscaster" }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "jKb" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "jKg" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "jKo" = ( /obj/structure/table/rack/shelf, /obj/item/storage/firstaid/o2{ @@ -33628,12 +34158,12 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "jKC" = ( /obj/random/crate, /obj/item/chameleon, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "jKE" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -33650,7 +34180,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "jKH" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -33661,7 +34191,7 @@ }, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "jLb" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -33673,14 +34203,14 @@ color = "#989898" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "jLh" = ( /mob/living/simple_mob/animal/passive/fish/rockfish{ name = "Bon"; faction = "nanotrasen" }, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "jLi" = ( /obj/structure/cable/white{ d1 = 1; @@ -33688,7 +34218,7 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "jLl" = ( /obj/machinery/alarm{ dir = 1; @@ -33697,7 +34227,7 @@ /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "jLn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -33714,16 +34244,16 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "jLE" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "jMu" = ( /obj/structure/table/steel, /obj/item/clothing/accessory/poncho/blue, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "jMx" = ( /obj/machinery/ai_status_display, /obj/structure/cable/white{ @@ -33732,7 +34262,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "jMO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -33746,7 +34276,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "jMU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -33760,7 +34290,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "jMW" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -33776,12 +34306,12 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "jNn" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "jNs" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -33790,7 +34320,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "jNu" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -33800,7 +34330,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "jNx" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 @@ -33815,7 +34345,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "jOi" = ( /obj/machinery/power/thermoregulator, /obj/effect/floor_decal/industrial/hatch/blue, @@ -33826,25 +34356,27 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "jOw" = ( /obj/machinery/alarm{ pixel_y = 22 }, +/obj/random/trash_pile, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "jOO" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "jOV" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "jPt" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/eastright{ @@ -33858,11 +34390,11 @@ }, /obj/structure/curtain/medical, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "jPG" = ( /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "jPJ" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -33895,7 +34427,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "jPR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -33904,7 +34436,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "jQp" = ( /obj/structure/cable/green{ d1 = 1; @@ -33917,9 +34449,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "jQO" = ( /obj/structure/table/marble, /obj/machinery/light_construct{ @@ -33929,12 +34464,12 @@ /obj/item/reagent_containers/food/drinks/shaker, /obj/item/packageWrap, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "jQX" = ( /obj/structure/disposalpipe/segment, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "jRl" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/steeldecal/steel_decals10{ @@ -33944,12 +34479,12 @@ dir = 6 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "jSg" = ( /obj/structure/reagent_dispensers/watertank/high, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "jSv" = ( /obj/item/reagent_containers/syringe/drugs{ pixel_y = 5; @@ -33957,11 +34492,11 @@ }, /obj/item/reagent_containers/syringe/drugs, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "jSw" = ( /obj/structure/table/woodentable, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "jSx" = ( /obj/machinery/disposal, /obj/structure/window/reinforced, @@ -33976,11 +34511,11 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "jSJ" = ( /obj/structure/closet/l3closet/virology, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "jSM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -33992,7 +34527,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "jSW" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, @@ -34000,11 +34535,11 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "jTi" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "jTj" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -34017,12 +34552,12 @@ "jTA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "jTK" = ( /obj/structure/table/standard, /obj/item/storage/box/monkeycubes/sobakacubes, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "jTS" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -34031,17 +34566,17 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "jTT" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "jTZ" = ( /obj/item/broken_bottle, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "jUm" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/window/brigdoor/eastright{ @@ -34062,7 +34597,7 @@ layer = 3.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "jUt" = ( /obj/structure/cable/green{ d1 = 1; @@ -34079,7 +34614,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "jUC" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/industrial/warning/full, @@ -34110,7 +34645,15 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) +"jUG" = ( +/obj/item/clothing/under/vox/vox_casual, +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "jUK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -34119,7 +34662,7 @@ dir = 8 }, /turf/simulated/floor/carpet/purcarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "jUY" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/coolanttank, @@ -34128,19 +34671,19 @@ network = list("Science","PA Room") }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "jVq" = ( /obj/structure/bed/chair/sofa/right/beige{ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "jVy" = ( /obj/item/stool/baystool/padded{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "jVz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -34155,13 +34698,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "jVB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "jVN" = ( /obj/machinery/atmospherics/unary/engine/bigger{ dir = 1 @@ -34177,7 +34720,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "jVV" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/canister/empty, @@ -34188,11 +34731,11 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "jWd" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "jWg" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -34235,7 +34778,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "jWw" = ( /obj/effect/floor_decal/corner/orange/border{ dir = 1 @@ -34244,21 +34787,21 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "jWx" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "jWC" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "jWG" = ( /obj/structure/girder, /obj/random/maintenance/clean, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "jXa" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -34266,7 +34809,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "jXi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 10 @@ -34282,10 +34825,10 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "jXk" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "jXx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -34296,7 +34839,7 @@ /obj/item/tape/police, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "jXB" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, @@ -34304,21 +34847,21 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "jXP" = ( /obj/structure/sign/directions/cargo/mining{ dir = 9; layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "jXV" = ( /obj/machinery/computer/timeclock/premade/north, /obj/effect/floor_decal/spline/fancy{ dir = 4 }, /turf/simulated/floor/carpet/sblucarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "jYo" = ( /obj/structure/shuttle/engine/heater, /obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, @@ -34332,10 +34875,10 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "jYA" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "jYJ" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/portable_atmospherics/canister/nitrogen, @@ -34346,7 +34889,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "jYM" = ( /obj/effect/catwalk_plated/dark, /obj/structure/table/steel, @@ -34360,10 +34903,10 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "jYP" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "jYW" = ( /obj/machinery/portable_atmospherics/canister/phoron, /obj/machinery/atmospherics/portables_connector{ @@ -34390,7 +34933,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "jZN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -34400,7 +34943,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "jZZ" = ( /obj/machinery/alarm{ dir = 8; @@ -34412,15 +34955,15 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "kai" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "kaj" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "kap" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -34428,7 +34971,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "kax" = ( /obj/structure/table/marble, /obj/structure/cable{ @@ -34439,7 +34982,7 @@ /obj/random/drinkbottle, /obj/random/drinkbottle, /turf/simulated/floor/bmarble, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "kaz" = ( /obj/structure/sign/directions/cargo{ pixel_y = 9; @@ -34456,7 +34999,7 @@ layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "kaE" = ( /obj/structure/cable/blue{ d1 = 4; @@ -34464,7 +35007,7 @@ icon_state = "4-8" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "kaI" = ( /obj/structure/cable/green{ d1 = 4; @@ -34484,11 +35027,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "kaN" = ( /obj/random/maintenance/security, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "kaO" = ( /obj/effect/floor_decal/shuttles{ dir = 4 @@ -34502,11 +35045,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "kaX" = ( /obj/effect/decal/cleanable/blood, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "kba" = ( /obj/structure/cable{ d1 = 2; @@ -34516,7 +35059,7 @@ /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "kbc" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -34524,7 +35067,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "kbr" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -34541,11 +35084,11 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "kbu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "kbv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -34560,14 +35103,24 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "kbw" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) +"kbA" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/firealarm{ + dir = 1; + name = "S-fire alarm"; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_1_Deck_Hall) "kbG" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -34577,7 +35130,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "kbL" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -34590,14 +35143,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "kcc" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "kce" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -34607,11 +35160,11 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "kcj" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "kct" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -34620,21 +35173,31 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "kde" = ( /obj/structure/bed/chair/sofa/left/beige{ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "kdf" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) +"kdk" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/tank/emergency/nitrogen/double, +/obj/item/clothing/shoes/magboots/vox, +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "kdL" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "kem" = ( /obj/structure/cable{ d1 = 4; @@ -34643,7 +35206,7 @@ }, /obj/structure/table/glass, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "keq" = ( /obj/structure/sign/warning/evac, /turf/simulated/shuttle/wall/no_join{ @@ -34654,7 +35217,7 @@ /area/shuttle/escape_pod4/station) "ker" = ( /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "ket" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor{ @@ -34664,7 +35227,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "kew" = ( /obj/structure/table/woodentable, /obj/item/deskbell, @@ -34672,13 +35235,13 @@ name = "curtain" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "kex" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "keE" = ( /obj/structure/cable/green{ d1 = 4; @@ -34698,14 +35261,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "kfd" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "kfx" = ( /obj/random/maintenance/research, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "kfM" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -34736,33 +35299,27 @@ dir = 1 }, /turf/simulated/floor/carpet/sblucarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "kfX" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/catwalk_plated/techmaint, /obj/machinery/porta_turret/industrial/teleport_defense, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "kgl" = ( /obj/structure/table/rack/shelf/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "kgv" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "kgX" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -34775,11 +35332,15 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "khf" = ( /obj/structure/table/sifwoodentable, -/turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "khq" = ( /obj/structure/cable{ d1 = 4; @@ -34787,7 +35348,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) "kht" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -34796,13 +35357,13 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "khv" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "khE" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -34819,7 +35380,7 @@ }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "kiF" = ( /obj/structure/filingcabinet/chestdrawer, /obj/item/radio/intercom/department/security{ @@ -34835,7 +35396,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "kjd" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/loading/blue{ @@ -34848,7 +35409,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "kjp" = ( /obj/machinery/light{ dir = 4; @@ -34861,7 +35422,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "kjz" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -34878,7 +35439,7 @@ }, /obj/machinery/door/firedoor/glass/hidden, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "kjB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -34899,23 +35460,23 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "kjQ" = ( /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "kkj" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "kkk" = ( /obj/structure/table/standard, /obj/random/tool/powermaint, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "kkp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -34944,7 +35505,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "kkH" = ( /obj/machinery/newscaster/security_unit{ pixel_x = -28 @@ -34956,7 +35517,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "kkN" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, @@ -34964,7 +35525,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "kkV" = ( /obj/machinery/suit_storage_unit/mining, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -34974,11 +35535,11 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "kkY" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "klm" = ( /obj/structure/window/titanium{ dir = 4 @@ -34992,13 +35553,13 @@ "klC" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "klW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "kmf" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -35007,11 +35568,11 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "kmn" = ( /obj/machinery/vending/hydronutrients, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "kmy" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/loading/blue{ @@ -35024,17 +35585,17 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "kmG" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/closet/crate/wooden, /obj/random/material, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "kmK" = ( /obj/structure/salvageable/slotmachine1, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "knn" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 @@ -35049,12 +35610,12 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "knD" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "knK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -35065,7 +35626,7 @@ name = "1S-station holomap" }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "knY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -35090,7 +35651,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "kow" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -35100,7 +35661,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "koH" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -35112,7 +35673,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "koI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -35132,7 +35693,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "kpe" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -35153,11 +35714,11 @@ frequency = 1380 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "kpf" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "kpI" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 @@ -35171,7 +35732,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "kpM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 @@ -35190,13 +35751,13 @@ dir = 1 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "kpP" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "kqe" = ( /obj/structure/cable/green{ d1 = 1; @@ -35209,7 +35770,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "kqv" = ( /obj/structure/cable{ d1 = 4; @@ -35227,7 +35788,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "kqY" = ( /obj/item/digestion_remains/ribcage, /obj/item/clothing/under/fluff/latexmaid{ @@ -35235,18 +35796,19 @@ }, /obj/effect/decal/cleanable/greenglow, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "kqZ" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" }, -/turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/area/maintenance/ab_Kitchen) "krs" = ( /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "krK" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -35255,7 +35817,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "krM" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, @@ -35270,13 +35832,13 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "krS" = ( /obj/structure/table/standard, /obj/random/tech_supply, /obj/random/tech_supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "krZ" = ( /obj/structure/closet, /obj/structure/cable{ @@ -35287,17 +35849,17 @@ /obj/random/junk, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "ksm" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/flour, /obj/structure/salvageable/computer_os, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "ksz" = ( /obj/effect/floor_decal/industrial/stand_clear, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "ksO" = ( /obj/machinery/alarm{ dir = 4; @@ -35310,7 +35872,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "ksQ" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ dir = 1; @@ -35321,7 +35883,7 @@ req_one_access = list(13) }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "ktb" = ( /obj/machinery/firealarm{ dir = 1; @@ -35331,17 +35893,17 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "ktw" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "ktB" = ( /obj/random/humanoidremains, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "ktD" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/mechanical{ @@ -35370,7 +35932,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "kuE" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -35382,7 +35944,7 @@ /area/shuttle/escape_pod8/station) "kuG" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "kuM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -35398,7 +35960,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "kuY" = ( /obj/structure/cable/green{ d1 = 4; @@ -35406,7 +35968,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "kvo" = ( /obj/effect/floor_decal/shuttles/right{ dir = 4 @@ -35420,10 +35982,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "kvO" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) +"kvV" = ( +/obj/machinery/light{ + name = "1S-light fixture" + }, +/turf/simulated/floor/tiled, +/area/maintenance/Market_Stall_5) "kwi" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -35448,14 +36016,14 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "kwq" = ( /obj/machinery/light/small{ dir = 8 }, /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "kwt" = ( /obj/machinery/light{ dir = 4; @@ -35474,7 +36042,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "kwu" = ( /obj/machinery/camera/network/security{ dir = 6; @@ -35482,7 +36050,7 @@ network = list("Harbor") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "kwE" = ( /obj/effect/floor_decal/milspec/color/purple, /turf/simulated/floor/tiled/milspec, @@ -35492,31 +36060,24 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "kxd" = ( /obj/structure/bed/chair/sofa/left/lime{ dir = 8 }, -/turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/item/clothing/under/vox/vox_robes, +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "kxe" = ( -/obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/turf/simulated/floor/glass, +/area/hallway/Deck1_Transit_Hall) "kxl" = ( /obj/effect/floor_decal/industrial/hatch, /obj/machinery/shield_diffuser, @@ -35526,22 +36087,22 @@ name = "PA Venting Blast Door" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "kxm" = ( /obj/machinery/conveyor{ id = "toyfight" }, /obj/item/toy/minigibber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "kxn" = ( /obj/random/tank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "kxw" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "kxD" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -35553,11 +36114,11 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "kxI" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "kxL" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -35570,7 +36131,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "kxP" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -35592,25 +36153,29 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "kyc" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "kye" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "kyf" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "kyn" = ( /obj/structure/table/steel, /obj/random/maintenance/clean, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "kyU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -35622,7 +36187,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "kzN" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/binary/pump/high_power{ @@ -35630,7 +36195,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "kAl" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 @@ -35661,7 +36226,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "kAs" = ( /obj/machinery/portable_atmospherics/canister/empty/nitrous_oxide, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -35672,7 +36237,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "kAD" = ( /obj/effect/catwalk_plated/white, /obj/machinery/light{ @@ -35680,14 +36245,14 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "kAF" = ( /obj/structure/sign/directions/shuttle_bay{ pixel_y = 9; dir = 6 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "kAO" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -35696,7 +36261,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "kAW" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -35724,12 +36289,16 @@ }, /obj/structure/window/basic, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "kBo" = ( /obj/item/stool/baystool/padded, /obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "kBp" = ( /obj/structure/disposalpipe/segment, /obj/machinery/button/remote/blast_door{ @@ -35747,32 +36316,34 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "kBy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "kBL" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "kBU" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "kCT" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "kDc" = ( /obj/structure/table/fancyblack, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "kDj" = ( /obj/structure/cable/blue{ d1 = 2; @@ -35793,7 +36364,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "kDE" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -35808,13 +36379,13 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "kEe" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "kEl" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -35824,7 +36395,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "kEq" = ( /obj/machinery/power/apc{ dir = 4; @@ -35847,32 +36418,25 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "kEx" = ( /turf/simulated/floor/water/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "kEE" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "kEK" = ( /obj/structure/flora/log1, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "kFh" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/obj/random/junk, +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_AftStar1_Corridor2) "kFo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -35888,7 +36452,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "kFq" = ( /obj/machinery/light{ dir = 4 @@ -35927,7 +36491,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "kFD" = ( /obj/structure/cable{ d1 = 1; @@ -35935,7 +36499,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "kFJ" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -35952,20 +36516,20 @@ pixel_y = -27 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) "kGd" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "kGB" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "kGU" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "kHb" = ( /obj/machinery/power/apc{ dir = 1; @@ -35994,12 +36558,12 @@ name = "N-light switch" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "kHf" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/he3, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "kHr" = ( /obj/structure/window/titanium{ dir = 8 @@ -36017,12 +36581,12 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "kHE" = ( /obj/structure/loot_pile/maint/technical, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "kHK" = ( /obj/structure/cable/green{ d1 = 1; @@ -36044,10 +36608,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "kHT" = ( /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "kHV" = ( /obj/structure/dispenser/phoron, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -36066,7 +36630,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "kIx" = ( /obj/structure/cable{ d1 = 4; @@ -36080,7 +36644,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "kII" = ( /obj/structure/cable{ d1 = 1; @@ -36089,7 +36653,7 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "kIK" = ( /obj/machinery/airlock_sensor{ pixel_y = -24; @@ -36104,7 +36668,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "kIP" = ( /obj/machinery/station_map{ dir = 1; @@ -36118,7 +36682,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "kJg" = ( /obj/machinery/door/airlock/glass_external{ frequency = 1380; @@ -36136,7 +36700,7 @@ }, /obj/effect/floor_decal/industrial/hatch, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "kJn" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -36147,11 +36711,11 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "kJO" = ( /obj/structure/sign/warning/secure_area, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "kJV" = ( /obj/machinery/button/remote/blast_door{ dir = 8; @@ -36167,7 +36731,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "kKl" = ( /obj/structure/sign/directions/security{ pixel_y = 9; @@ -36184,36 +36748,38 @@ layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "kKo" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "kKp" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "kKy" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "kKD" = ( /obj/random/maintenance/clean, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "kKU" = ( /obj/structure/flora/lily1, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "kLb" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "kLh" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -36225,12 +36791,12 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "kLl" = ( /obj/structure/table/glass, /obj/structure/sign/poster/nanotrasen, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "kLw" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -36239,7 +36805,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "kLx" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -36247,7 +36813,7 @@ }, /obj/structure/cable, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "kLI" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -36267,11 +36833,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "kLQ" = ( /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "kMl" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/alarm{ @@ -36279,13 +36845,13 @@ pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "kMy" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "kMG" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/effect/floor_decal/borderfloorblack/corner{ @@ -36295,18 +36861,18 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "kMM" = ( /obj/structure/table/standard, /obj/random/tech_supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "kMV" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "kNm" = ( /obj/structure/bed/chair/wheelchair/motor, /obj/effect/floor_decal/industrial/hatch/blue, @@ -36314,14 +36880,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "kNq" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /obj/structure/railing, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "kNA" = ( /obj/machinery/alarm{ dir = 1; @@ -36330,11 +36896,11 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "kNJ" = ( /obj/random/trash_pile, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "kNT" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/floor_decal/borderfloorblack{ @@ -36344,13 +36910,13 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "kOa" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "kOh" = ( /obj/effect/floor_decal/shuttle/loading, /obj/structure/railing/grey{ @@ -36361,13 +36927,14 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "kOi" = ( /obj/structure/window/reinforced/survival_pod{ opacity = 1 }, /obj/machinery/computer/shuttle_control/explore/ursula{ - dir = 4 + dir = 4; + req_one_access = list(5,47,67) }, /turf/simulated/floor/tiled/milspec, /area/shuttle/ursula) @@ -36380,7 +36947,7 @@ /obj/structure/cable, /obj/effect/catwalk_plated/dark, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "kOR" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -36389,11 +36956,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "kPi" = ( /obj/structure/flora/lily3, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "kPp" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -36402,13 +36969,15 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "kPr" = ( /obj/structure/prop/statue/stump_plaque{ desc = "A wooden stump adorned with a little plaque. -Sif's botanical garden-" }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "kPu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -36420,7 +36989,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "kPv" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 @@ -36428,7 +36997,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "kPP" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -36437,7 +37006,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "kQe" = ( /obj/structure/shuttle/engine/heater, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -36457,22 +37026,24 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "kQp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "kQH" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "kRb" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "kRj" = ( /obj/machinery/light{ dir = 1; @@ -36480,7 +37051,7 @@ }, /obj/structure/table/bench/sifwooden/padded, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "kRo" = ( /obj/machinery/light/small/neon/bar{ pixel_y = -1; @@ -36488,7 +37059,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "kRt" = ( /obj/structure/table/glass, /obj/structure/flora/pottedplant/crystal{ @@ -36499,7 +37070,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "kRy" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -36508,11 +37079,13 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "kRH" = ( /obj/structure/flora/rocks1, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "kSm" = ( /obj/structure/cable{ d1 = 1; @@ -36520,7 +37093,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "kSv" = ( /obj/machinery/firealarm{ dir = 8; @@ -36534,15 +37107,15 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "kSE" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "kSI" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "kSQ" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 1 @@ -36551,7 +37124,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "kSY" = ( /obj/machinery/status_display{ pixel_x = 32; @@ -36574,18 +37147,18 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "kTd" = ( /obj/machinery/light/small{ dir = 8 }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "kTu" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "kTw" = ( /obj/structure/shuttle/engine/heater{ dir = 8 @@ -36602,7 +37175,7 @@ "kTz" = ( /obj/structure/salvageable/bliss, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "kTI" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -36620,7 +37193,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "kTK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -36640,7 +37213,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "kTM" = ( /obj/structure/urinal{ pixel_y = 28 @@ -36662,24 +37235,36 @@ pixel_y = 8; pixel_x = -5 }, -/turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/machinery/light_construct/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/kafel_full{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen floor" + }, +/area/maintenance/ab_Kitchen) "kTQ" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) +"kUg" = ( +/obj/structure/table/marble, +/obj/item/spacecasinocash/c100, +/turf/simulated/floor/plating, +/area/maintenance/ab_StripBar) "kUo" = ( /obj/effect/floor_decal/arrivals, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "kUz" = ( /obj/random/trash, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "kUD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -36694,7 +37279,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Deck1_Transit_Hall) "kUE" = ( /obj/machinery/alarm{ dir = 1; @@ -36702,18 +37287,18 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "kUS" = ( /obj/random/trash, /obj/effect/landmark{ name = "maint_pred" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "kUW" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "kVb" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -36724,7 +37309,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "kVd" = ( /obj/structure/cable/green{ d1 = 1; @@ -36732,14 +37317,14 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "kVR" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "kVX" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass/hidden/steel, @@ -36753,7 +37338,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "kWf" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -36762,7 +37347,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "kWq" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -36783,26 +37368,21 @@ }, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "kWD" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "kWI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "kWK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "kWW" = ( /obj/structure/table/rack{ dir = 8; @@ -36843,17 +37423,17 @@ /obj/effect/floor_decal/industrial/hatch/blue, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "kXb" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/water/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "kXg" = ( /obj/structure/sign/directions/science/xenoflora{ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "kXi" = ( /obj/structure/sign/directions/science/xenobiology{ pixel_y = 9; @@ -36867,20 +37447,20 @@ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "kXm" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "kXn" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4; color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "kXu" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -36899,7 +37479,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "kXy" = ( /obj/structure/bed/chair/backed_red{ dir = 1 @@ -36912,7 +37492,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "kXB" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/accessory/collar/bell, @@ -36920,15 +37500,15 @@ /obj/item/lipstick/random, /obj/random/action_figure, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "kXV" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "kYj" = ( /obj/structure/closet, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "kYw" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -36953,7 +37533,7 @@ }, /obj/structure/table/woodentable, /turf/simulated/floor/carpet/purcarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "kYI" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -36962,7 +37542,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "kYK" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -36985,7 +37565,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "kZc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -36997,7 +37577,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "kZk" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -37006,7 +37586,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "kZv" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -37018,14 +37598,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "kZC" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "kZG" = ( /obj/structure/table/wooden_reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "kZK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -37040,13 +37620,13 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "kZR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "kZW" = ( /obj/structure/bed/chair/wheelchair/motor, /obj/effect/floor_decal/industrial/hatch/blue, @@ -37058,16 +37638,16 @@ name = "1N-AI display" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "lax" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "laD" = ( /obj/structure/table/steel, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "laI" = ( /obj/structure/cable/white{ d1 = 1; @@ -37081,10 +37661,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "laN" = ( /turf/space/internal_edge/bottomleft, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "lbI" = ( /obj/structure/sign/nanotrasen, /turf/simulated/shuttle/wall/no_join{ @@ -37102,7 +37682,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "lbN" = ( /obj/structure/railing/grey{ color = "yellow" @@ -37114,7 +37694,7 @@ dir = 2 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "lbO" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -37129,7 +37709,7 @@ /obj/effect/map_helper/airlock/door/ext_door, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "lbQ" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -37142,7 +37722,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "lbS" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -37152,7 +37732,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "lcf" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -37163,7 +37743,7 @@ name = "Stairwell" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "lci" = ( /obj/machinery/vending/foodmeat, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -37173,7 +37753,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "lct" = ( /obj/machinery/alarm{ dir = 8; @@ -37186,15 +37766,15 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "lcv" = ( /obj/structure/table/standard, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "lcw" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "lcF" = ( /obj/machinery/light{ dir = 8; @@ -37202,11 +37782,11 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "lcQ" = ( -/obj/structure/salvageable/slotmachine2, +/obj/machinery/slot_machine, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "lds" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/misc, @@ -37215,7 +37795,7 @@ /obj/random/forgotten_tram, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "ldy" = ( /obj/structure/cable/green{ d1 = 4; @@ -37235,7 +37815,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "leg" = ( /obj/machinery/alarm{ dir = 1; @@ -37243,7 +37823,7 @@ }, /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "len" = ( /obj/effect/decal/remains, /obj/item/clothing/under/color/grey, @@ -37259,18 +37839,18 @@ /obj/effect/decal/cleanable/filth, /obj/effect/decal/cleanable/filth, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "ler" = ( /obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "leB" = ( /obj/structure/bed/chair/sofa/beige{ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "leC" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, @@ -37280,7 +37860,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "leN" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -37302,10 +37882,10 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "leY" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "lfy" = ( /obj/machinery/computer/security/telescreen{ desc = "Used for watching the Particle Accelerator chamber."; @@ -37316,28 +37896,28 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "lfQ" = ( /obj/machinery/vending/snack, /obj/machinery/light_construct, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "lfT" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "lfW" = ( /obj/effect/floor_decal/spline/fancy{ dir = 5 }, /turf/simulated/floor/carpet/sblucarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "lgf" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "lgi" = ( /obj/structure/cable/green{ d1 = 1; @@ -37346,7 +37926,7 @@ }, /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "lgq" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/suit_storage_unit/hazmat, @@ -37357,21 +37937,21 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "lgQ" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "lhl" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/pipe/manifold/hidden/black{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "lhu" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "lhw" = ( /obj/structure/cable{ d1 = 1; @@ -37379,7 +37959,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "lhC" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -37388,7 +37968,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "lhH" = ( /obj/structure/cable/green{ d1 = 1; @@ -37419,13 +37999,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "lhI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "lhU" = ( /obj/structure/closet/emcloset, /obj/machinery/light{ @@ -37436,7 +38016,7 @@ /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "lhW" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -37449,7 +38029,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "lhZ" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/floor_decal/borderfloorblack{ @@ -37460,7 +38040,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "liw" = ( /obj/structure/table/rack/shelf, /obj/random/tool, @@ -37473,7 +38053,7 @@ /obj/random/forgotten_tram, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "liG" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -37483,13 +38063,13 @@ }, /obj/structure/table/reinforced, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "liJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/black{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "liV" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; @@ -37500,11 +38080,11 @@ }, /obj/structure/table/standard, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "liZ" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "ljv" = ( /obj/item/gps{ pixel_x = 3; @@ -37539,7 +38119,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "ljS" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -37550,13 +38130,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "ljT" = ( /obj/structure/bed/chair/oldsofa/left{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "ljU" = ( /obj/machinery/shower{ pixel_y = 16 @@ -37575,20 +38155,20 @@ }, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "lke" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "lkf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "lkk" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/floor_decal/borderfloorblack{ @@ -37599,7 +38179,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "lkw" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume, /obj/effect/map_helper/airlock/atmos/chamber_pump, @@ -37608,11 +38188,11 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "lkH" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "lkT" = ( /obj/structure/cable/white{ d1 = 1; @@ -37620,11 +38200,11 @@ icon_state = "1-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "lkV" = ( /obj/effect/floor_decal/corner/white, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "lkY" = ( /obj/structure/cable{ d1 = 4; @@ -37656,19 +38236,8 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "llp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, @@ -37676,18 +38245,18 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "llw" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "llC" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "llJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -37702,11 +38271,11 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "llQ" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "llY" = ( /obj/structure/table/standard, /obj/machinery/newscaster{ @@ -37722,8 +38291,12 @@ pixel_x = -7 }, /obj/effect/decal/cleanable/filth, -/turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/kafel_full{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen floor" + }, +/area/maintenance/ab_Kitchen) "lmf" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -37744,7 +38317,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "lmn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -37756,7 +38329,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "lmN" = ( /obj/machinery/status_display{ layer = 4; @@ -37784,18 +38357,18 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "lmO" = ( /obj/random/trash, /obj/effect/landmark/event_spawn/morphspawn, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "lmU" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "lnd" = ( /obj/structure/window/basic{ dir = 8 @@ -37818,15 +38391,14 @@ dir = 4 }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "lni" = ( -/obj/structure/bed/chair/bay, -/obj/machinery/light{ - dir = 1; - name = "1N-lighting fixture" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/Market_Stall_6) "lnr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -37835,7 +38407,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "lns" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -37852,7 +38424,7 @@ pixel_y = -27 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "lnD" = ( /obj/structure/cable{ d1 = 4; @@ -37864,7 +38436,7 @@ pixel_x = 3 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "lnI" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -37878,11 +38450,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) "lnN" = ( /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "loh" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -37894,7 +38466,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "lok" = ( /obj/machinery/button/remote/airlock{ id = "SC-DCqpouter"; @@ -37919,7 +38491,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "lol" = ( /obj/machinery/alarm{ dir = 4; @@ -37927,7 +38499,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "lom" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -37936,7 +38508,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "loR" = ( /obj/structure/cable/green{ d1 = 4; @@ -37960,13 +38532,13 @@ dir = 4 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "loZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "lpj" = ( /obj/structure/cable/white{ d1 = 1; @@ -37974,7 +38546,7 @@ icon_state = "1-4" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "lpk" = ( /obj/machinery/light_construct{ dir = 8 @@ -37982,11 +38554,11 @@ /obj/random/junk, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "lpr" = ( /obj/structure/frame/computer, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "lps" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -38002,7 +38574,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Deck1_Transit_Hall) "lpw" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/portable_atmospherics/powered/pump/filled, @@ -38015,10 +38587,10 @@ name = "1W-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "lpM" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "lqh" = ( /obj/item/toy/plushie/black_fox, /obj/item/toy/plushie/carp/pink{ @@ -38046,7 +38618,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "lqO" = ( /obj/structure/cable/green{ d1 = 4; @@ -38063,7 +38635,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "lrJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -38072,16 +38644,16 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "lrZ" = ( /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "lsa" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "lsb" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "lse" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, @@ -38089,18 +38661,18 @@ pixel_y = 22 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "lsn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "lsJ" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "lsQ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -38117,11 +38689,11 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "lth" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "ltj" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -38135,14 +38707,14 @@ "ltp" = ( /obj/random/mainttoyloot, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "ltA" = ( /obj/item/stack/rods, /obj/random/unidentified_medicine/drug_den, /obj/random/drinkbottle, /obj/random/trash, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "ltE" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -38153,18 +38725,18 @@ name = "Docking lane 2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "lue" = ( /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "lun" = ( /obj/machinery/light{ dir = 1; name = "1N-lighting fixture" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "luO" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor/corner{ @@ -38175,7 +38747,7 @@ dir = 9 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "lvd" = ( /obj/structure/cable{ d1 = 1; @@ -38191,10 +38763,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "lvn" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "lvp" = ( /obj/structure/closet/emcloset, /obj/machinery/alarm{ @@ -38204,10 +38776,14 @@ /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "lvr" = ( -/turf/simulated/floor/wood/alt/panel/broken, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel/broken{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen broken" + }, +/area/maintenance/ab_Kitchen) "lvu" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -38237,11 +38813,11 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "lwk" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "lwp" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -38253,7 +38829,7 @@ dir = 4 }, /turf/simulated/floor/grass2/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "lwu" = ( /obj/machinery/vending/wallmed1{ name = "1N-NanoMed"; @@ -38263,14 +38839,16 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "lwz" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "lwN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -38290,7 +38868,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "lxi" = ( /obj/machinery/power/apc{ dir = 4; @@ -38299,7 +38877,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "lxD" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -38315,7 +38893,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "lxF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -38339,7 +38917,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "lxJ" = ( /obj/machinery/alarm{ dir = 1; @@ -38347,7 +38925,7 @@ }, /obj/structure/loot_pile/maint/boxfort, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "lxM" = ( /obj/structure/cable{ d1 = 4; @@ -38364,13 +38942,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "lxO" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "lxS" = ( /obj/effect/floor_decal/corner/white{ dir = 9 @@ -38384,18 +38962,18 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "lxU" = ( /obj/effect/decal/cleanable/blood/splatter{ name = "Liquid"; icon_state = "mfloor2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "lxX" = ( /obj/structure/flora/ausbushes/reedbush, /turf/simulated/floor/water/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "lyO" = ( /obj/structure/cable/green{ d1 = 1; @@ -38421,7 +38999,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "lzq" = ( /obj/machinery/light{ dir = 1; @@ -38438,7 +39016,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "lzv" = ( /obj/structure/cable/green{ d1 = 1; @@ -38454,12 +39032,12 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "lzx" = ( /obj/structure/closet, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "lzF" = ( /obj/random/maintenance/foodstuff, /obj/random/maintenance/foodstuff, @@ -38475,7 +39053,7 @@ /obj/random/maintenance/foodstuff, /obj/random/maintenance/foodstuff, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "lzJ" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -38484,7 +39062,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "lAk" = ( /obj/structure/cable/white{ d1 = 1; @@ -38495,7 +39073,7 @@ icon_state = "xenobio2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "lAp" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/random{ @@ -38522,7 +39100,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "lAG" = ( /obj/machinery/ai_status_display{ pixel_x = 32; @@ -38538,11 +39116,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "lAO" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "lBm" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ @@ -38553,7 +39131,7 @@ pixel_x = 32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "lBF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -38564,13 +39142,13 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "lBJ" = ( /obj/structure/railing/grey, /obj/random/junk, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "lBM" = ( /obj/structure/closet, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -38581,7 +39159,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "lBN" = ( /obj/structure/table/steel, /obj/item/tank/emergency/oxygen/engi, @@ -38590,12 +39168,12 @@ name = "blobstart" }, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "lBY" = ( /obj/structure/table, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "lCe" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -38604,7 +39182,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "lCm" = ( /obj/structure/cable/white{ d1 = 4; @@ -38612,13 +39190,13 @@ icon_state = "4-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "lCo" = ( /obj/effect/floor_decal/road/center{ dir = 1 }, /turf/simulated/floor/grass2/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "lCw" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -38627,7 +39205,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "lCP" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -38648,15 +39226,15 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "lCQ" = ( /obj/structure/table/rack, /obj/random/maintenance/security, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "lCS" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "lCZ" = ( /obj/structure/cable/green{ d1 = 1; @@ -38664,7 +39242,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "lDe" = ( /obj/structure/cable{ d1 = 2; @@ -38673,7 +39251,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "lDl" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor/corner{ @@ -38686,7 +39264,7 @@ dir = 5 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "lDt" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/misc, @@ -38694,7 +39272,7 @@ /obj/random/maintenance/misc, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "lDQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -38710,7 +39288,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "lEn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -38724,17 +39302,17 @@ name = "blobstart" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "lEA" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Deck1_Transit_Hall) "lED" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "lEE" = ( /obj/machinery/camera/network/security{ dir = 4; @@ -38748,11 +39326,20 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "lEQ" = ( /obj/structure/closet/secure_closet/personal/cabinet, -/turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/item/tank/emergency/nitrogen/double, +/obj/machinery/light_construct{ + dir = 1 + }, +/obj/item/clothing/gloves/vox, +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "lFn" = ( /obj/structure/cable/white{ d1 = 4; @@ -38764,7 +39351,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "lFr" = ( /obj/structure/cable{ d1 = 4; @@ -38772,7 +39359,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "lFP" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -38784,22 +39371,28 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/door/blast/shutters{ + dir = 2; + layer = 3.5; + name = "Market Stall Shutters"; + id = "sc-GCMarket1" + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "lGp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "lGy" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "lGB" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "lGO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -38818,16 +39411,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "lGZ" = ( -/obj/structure/lattice, /obj/structure/cable/white{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/catwalk_plated/white, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "lHc" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -38835,11 +39428,11 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "lHj" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "lHJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -38848,15 +39441,15 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/sec, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1) +/area/maintenance/Deck1_Security_PortChamber1) "lHM" = ( /obj/effect/graffitispawner, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "lHR" = ( /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "lHZ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -38865,12 +39458,12 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "lIk" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "lIo" = ( /obj/structure/table/rack/shelf/steel, /obj/fiftyspawner/steel, @@ -38883,17 +39476,17 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "lIr" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "lIv" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "lIC" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -38901,7 +39494,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "lIN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -38913,7 +39506,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "lJl" = ( /obj/structure/window/plastitanium/full, /obj/structure/window/reinforced/survival_pod{ @@ -38956,13 +39549,13 @@ req_one_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "lJZ" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "lKd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -38979,14 +39572,14 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "lKg" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "lKt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -38994,7 +39587,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "lKu" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/engineering, @@ -39005,39 +39598,47 @@ /obj/random/cash, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "lKS" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "lLc" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "lLo" = ( /obj/random/junk, -/turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel/broken{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen broken" + }, +/area/maintenance/ab_Kitchen) "lLr" = ( /obj/random/junk, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "lLL" = ( /obj/machinery/atmospherics/valve/digital/open, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "lLT" = ( /obj/structure/curtain/black{ name = "privacy curtain"; dir = 8 }, /obj/random/trash, -/turf/simulated/floor/wood/alt/panel/broken, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "lMQ" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -39064,7 +39665,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "lNt" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -39073,7 +39674,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "lNy" = ( /obj/structure/cable{ d1 = 1; @@ -39092,7 +39693,7 @@ pixel_x = 22 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "lND" = ( /obj/structure/cable/green{ d1 = 1; @@ -39109,7 +39710,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "lNM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -39146,12 +39747,12 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "lNT" = ( /obj/structure/table/rack, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "lOd" = ( /obj/structure/table/standard, /obj/item/clothing/gloves/botanic_leather{ @@ -39178,7 +39779,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "lOo" = ( /obj/machinery/conveyor_switch/oneway{ id = "SC-CBcargobay2" @@ -39206,7 +39807,7 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "lOq" = ( /obj/machinery/power/apc{ dir = 1; @@ -39218,13 +39819,13 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "lOF" = ( /obj/effect/floor_decal/industrial/stand_clear/blue, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "lOW" = ( /obj/structure/disposalpipe/trunk, /obj/structure/disposalpipe/segment{ @@ -39238,14 +39839,14 @@ color = "#6b75ff" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "lOX" = ( /obj/item/beehive_assembly{ pixel_y = 1; pixel_x = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "lPf" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -39261,7 +39862,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "lPn" = ( /obj/structure/cable{ d1 = 2; @@ -39270,7 +39871,7 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "lPw" = ( /obj/structure/sign/directions/science{ pixel_y = 9; @@ -39280,7 +39881,7 @@ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "lPH" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -39289,7 +39890,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "lPK" = ( /obj/structure/table/marble, /obj/machinery/chemical_dispenser/bar_alc/full{ @@ -39297,7 +39898,7 @@ pixel_x = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "lPZ" = ( /obj/random/drinksoft, /obj/random/drinksoft, @@ -39312,7 +39913,7 @@ /obj/random/drinksoft, /obj/random/drinksoft, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "lQb" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -39325,7 +39926,7 @@ dir = 6 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "lQf" = ( /obj/machinery/light{ dir = 1; @@ -39337,7 +39938,7 @@ }, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "lQi" = ( /obj/structure/cable/green{ d1 = 4; @@ -39357,7 +39958,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "lQq" = ( /obj/structure/cable/green{ d1 = 1; @@ -39380,7 +39981,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "lQs" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -39389,7 +39990,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "lQM" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -39399,7 +40000,7 @@ pixel_x = -22 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "lRb" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 @@ -39415,7 +40016,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "lRi" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -39426,7 +40027,7 @@ icon_state = "0-8" }, /turf/simulated/floor/bmarble, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "lRr" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -39436,7 +40037,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "lRv" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -39451,7 +40052,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "lRw" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -39462,7 +40063,7 @@ name = "Stairwell" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "lRB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -39485,7 +40086,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "lRN" = ( /obj/structure/cable/green{ d1 = 1; @@ -39499,7 +40100,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "lRR" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -39508,7 +40109,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "lRU" = ( /obj/structure/cable/green{ d1 = 1; @@ -39523,7 +40124,7 @@ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "lSs" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -39533,7 +40134,7 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "lSv" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/closet/crate/freezer, @@ -39545,14 +40146,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "lSU" = ( /obj/machinery/atmospherics/binary/pump/on{ dir = 4; target_pressure = 200 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "lTc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -39569,7 +40170,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "lTf" = ( /obj/structure/bed/chair/bay/comfy/green{ dir = 1 @@ -39588,7 +40189,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "lTm" = ( /obj/machinery/light{ dir = 4; @@ -39601,11 +40202,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "lTs" = ( /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "lTA" = ( /obj/machinery/power/apc{ dir = 8; @@ -39633,7 +40234,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "lTD" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -39642,21 +40243,27 @@ dir = 1 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "lTF" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/structure/table, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "lTH" = ( /turf/simulated/wall/rthull, /area/shuttle/spacebus) "lTL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) +"lTM" = ( +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_AftStar1_Corridor3) "lTO" = ( /obj/machinery/light{ dir = 8; @@ -39670,13 +40277,13 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "lTW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "lUd" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable{ @@ -39685,7 +40292,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "lUk" = ( /obj/structure/bed/pillowpile/white, /obj/item/storage/vore_egg/tajaran, @@ -39694,7 +40301,7 @@ pixel_x = 11 }, /turf/simulated/floor/wood/alt/tile/broken, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "lUm" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -39708,7 +40315,6 @@ }, /obj/machinery/door/airlock/angled_bay/standard/color/security{ dir = 4; - req_one_access = list(19,1); req_access = null }, /obj/structure/cable/white{ @@ -39717,19 +40323,21 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "lUu" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "lUC" = ( /obj/random/trash_pile, /obj/random/trash, +/obj/random/junk, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "lVd" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance, @@ -39738,7 +40346,7 @@ /obj/structure/curtain/black, /obj/machinery/light_construct, /turf/simulated/floor/bmarble, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "lVA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -39750,13 +40358,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "lVL" = ( /obj/structure/table/darkglass, /obj/effect/floor_decal/spline/plain, /obj/random/drinkbottle, /turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "lVR" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -39765,7 +40373,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "lVU" = ( /obj/structure/bed/chair/sofa/left/beige{ dir = 1 @@ -39775,7 +40383,7 @@ pixel_x = 22 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "lWn" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -39784,17 +40392,17 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "lWs" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "lWt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "lWz" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 6 @@ -39803,11 +40411,11 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "lWM" = ( /obj/machinery/atmospherics/binary/pump, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "lXb" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -39820,11 +40428,11 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "lXc" = ( /obj/structure/stairs/spawner/west, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "lXk" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -39837,7 +40445,7 @@ }, /obj/machinery/door/airlock/angled_bay/double/glass/common{ dir = 8; - name = "Port Harbor" + name = "Port Departures Harbor" }, /obj/structure/cable/green{ d1 = 4; @@ -39857,7 +40465,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "lXs" = ( /obj/structure/table/woodentable, /obj/item/paper_bin{ @@ -39881,8 +40489,12 @@ pixel_x = 5; pixel_y = -3 }, -/turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "lXH" = ( /obj/machinery/newscaster{ pixel_y = 28; @@ -39909,13 +40521,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "lXR" = ( /obj/structure/bed/chair/oldsofa/corner{ dir = 4 }, /turf/simulated/floor/carpet/sblucarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "lXX" = ( /obj/structure/cable/white{ d1 = 1; @@ -39923,11 +40535,11 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "lYe" = ( /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "lYn" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -39954,21 +40566,21 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "lYw" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "lYy" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "lYB" = ( /obj/structure/table/standard, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "lYS" = ( /obj/structure/cable/green{ d1 = 1; @@ -39990,7 +40602,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "lYT" = ( /obj/structure/railing/grey{ dir = 1 @@ -39999,7 +40611,7 @@ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "lZd" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/floor_decal/industrial/outline/blue, @@ -40007,7 +40619,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "lZz" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass/hidden/steel, @@ -40023,16 +40635,20 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "lZC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "lZO" = ( /obj/structure/table/standard, /obj/effect/floor_decal/borderfloorblack{ @@ -40042,10 +40658,10 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "lZZ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "mac" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -40064,7 +40680,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "mae" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -40072,7 +40688,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "maf" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -40087,7 +40703,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "map" = ( /obj/effect/shuttle_landmark/southern_cross/large_escape_pod1/station, /turf/simulated/shuttle/floor/yellow, @@ -40100,11 +40716,13 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "maQ" = ( /obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "maR" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -40113,7 +40731,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "maT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden{ @@ -40131,7 +40749,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "mbp" = ( /obj/structure/cable/green{ d1 = 1; @@ -40147,7 +40765,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "mbF" = ( /obj/structure/cable/green{ d1 = 1; @@ -40155,15 +40773,15 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "mbX" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "mcd" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "mcn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -40184,7 +40802,7 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "mcw" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -40193,14 +40811,14 @@ pixel_y = -30 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "mcy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "mdb" = ( /obj/machinery/light{ dir = 4 @@ -40221,32 +40839,25 @@ /turf/simulated/shuttle/floor, /area/shuttle/escape_pod7/station) "mdd" = ( -/obj/machinery/vending/virtual_autodrobe, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "mdg" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/shuttle/blue{ - pixel_x = -1; - pixel_y = 1 +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/obj/machinery/shield_capacitor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/engineering/Telecomms_Foyer) "mdj" = ( /obj/machinery/smartfridge/produce, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "mdw" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -40273,13 +40884,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "mef" = ( /obj/structure/bed/chair/oldsofa{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "meg" = ( /obj/structure/table/rack/shelf, /obj/random/thermalponcho, @@ -40287,7 +40898,7 @@ /obj/random/mainttoyloot, /obj/random/forgotten_tram, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "meo" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -40302,7 +40913,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "mep" = ( /obj/structure/table/rack/shelf, /obj/random/powercell/device, @@ -40312,7 +40923,7 @@ /obj/random/forgotten_tram, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "meW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -40328,14 +40939,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "mfA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "mga" = ( /obj/effect/floor_decal/techfloor/orange, /obj/effect/floor_decal/techfloor/hole/right, @@ -40343,11 +40954,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "mgw" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "mgF" = ( /obj/structure/cable{ d1 = 4; @@ -40355,7 +40966,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "mgN" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -40376,18 +40987,18 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "mgT" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "mhu" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "mhE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -40401,7 +41012,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "mhI" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -40409,20 +41020,20 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "mhM" = ( /turf/simulated/floor/wood/alt/tile/broken, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "mhN" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "mic" = ( /obj/structure/reagent_dispensers/watertank/high, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "mii" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -40434,22 +41045,23 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "mil" = ( /obj/machinery/light/small{ dir = 1 }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "miE" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/loading/white{ dir = 4 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "mjj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -40465,7 +41077,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "mjv" = ( /obj/structure/cable/green{ d1 = 1; @@ -40489,7 +41101,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "mjC" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 @@ -40498,7 +41110,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "mjE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -40516,7 +41128,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "mjK" = ( /obj/structure/cable/green{ d1 = 4; @@ -40540,11 +41152,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "mkc" = ( /obj/structure/closet/crate/secure/large, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "mkx" = ( /obj/machinery/airlock_sensor{ pixel_y = 24 @@ -40555,13 +41167,13 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "mkJ" = ( /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "mkY" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "mle" = ( /obj/structure/bed/chair/backed_red{ dir = 1 @@ -40574,14 +41186,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "mll" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "mlp" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "mlV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -40600,7 +41212,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "mlW" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -40622,7 +41234,7 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "mma" = ( /obj/structure/cable/green{ d1 = 1; @@ -40636,11 +41248,11 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "mmk" = ( /obj/structure/sign/warning/nosmoking_2, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "mmI" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -40660,7 +41272,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "mng" = ( /obj/machinery/disposal/deliveryChute, /obj/structure/disposalpipe/trunk{ @@ -40674,21 +41286,21 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "mnt" = ( /obj/structure/stairs/spawner/west, /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "mnE" = ( /mob/living/simple_mob/animal/passive/fish/koi{ name = "Pancrasia"; faction = "nanotrasen" }, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "mnR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -40701,7 +41313,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "mnS" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -40715,18 +41327,18 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "mod" = ( /obj/structure/stairs/spawner/north, /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "mon" = ( /obj/structure/sign/level/one/large, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "mow" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ color = "#989898" @@ -40738,7 +41350,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "moz" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -40750,7 +41362,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "moQ" = ( /obj/machinery/shower{ pixel_y = 16 @@ -40767,7 +41379,7 @@ }, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "moV" = ( /obj/structure/table/bench/sifwooden/padded, /obj/machinery/alarm{ @@ -40775,7 +41387,7 @@ pixel_x = -22 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "mpb" = ( /obj/structure/cable/green{ d1 = 1; @@ -40787,11 +41399,17 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "mpf" = ( /obj/machinery/vending/sovietvend, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 25; + name = "E-fire alarm" + }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "mpt" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -40800,7 +41418,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "mpy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -40815,11 +41433,11 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "mpz" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "mpD" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -40831,7 +41449,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "mpE" = ( /obj/structure/cable/green{ d1 = 1; @@ -40846,12 +41464,12 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "mpN" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "mqd" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -40863,7 +41481,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "mql" = ( /obj/structure/cable/green{ d1 = 1; @@ -40874,20 +41492,20 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "mqx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "mqy" = ( /obj/structure/sign/department/cargo_dock{ desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "mqz" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 @@ -40897,7 +41515,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "mqH" = ( /obj/structure/bed/chair/oldsofa/right, /obj/machinery/button/windowtint{ @@ -40905,7 +41523,7 @@ id = "sc-WTmaintgamble2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "mqY" = ( /obj/structure/cable/green{ d1 = 4; @@ -40928,7 +41546,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "mrg" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -40937,7 +41555,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "mro" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -40949,7 +41567,7 @@ pixel_x = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "mrp" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/mechanical{ @@ -40995,7 +41613,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "mrx" = ( /obj/machinery/light{ dir = 8; @@ -41007,7 +41625,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "mrC" = ( /obj/structure/table/bench/sifwooden/padded, /obj/machinery/alarm{ @@ -41015,11 +41633,11 @@ pixel_x = -22 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "mrR" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "mse" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 10 @@ -41028,7 +41646,7 @@ dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "msi" = ( /obj/item/material/shard{ icon_state = "medium"; @@ -41043,28 +41661,27 @@ pixel_x = -8 }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "msp" = ( /obj/structure/table/rack, /obj/item/seeds/vanilla{ icon_state = "" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "msw" = ( -/obj/machinery/firealarm{ - name = "N-fire alarm"; - pixel_y = 25 +/obj/machinery/light_construct{ + dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "msL" = ( /obj/machinery/portable_atmospherics/canister/empty/nitrous_oxide, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "mtf" = ( /obj/structure/cable/green{ d1 = 1; @@ -41093,11 +41710,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "mtm" = ( /obj/structure/sign/painting/public, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "mtA" = ( /obj/machinery/ai_status_display{ name = "1E-AI display"; @@ -41110,14 +41727,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "mtP" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8; color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "mtY" = ( /obj/structure/table/rack/shelf, /obj/item/storage/box/monkeycubes/sparracubes{ @@ -41148,7 +41765,7 @@ pixel_x = -25 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "mub" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -41160,12 +41777,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "mun" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "muA" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightgrey/border, @@ -41173,7 +41792,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "muJ" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -41187,32 +41806,34 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "muN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Planetside_Equipment) "muO" = ( /obj/structure/bed/chair/backed_grey{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "muZ" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/blast/regular/open{ - layer = 3.5; - id = "For Lockdown"; - name = "Lockdown Gate"; - desc = "A heavily reinforced gate, sector lockdown!"; - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/glass, +/area/hallway/Deck1_Transit_Hall) "mvp" = ( /obj/structure/table/reinforced, /obj/item/storage/box/survival/comp{ @@ -41229,7 +41850,7 @@ "mvs" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "mvx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 @@ -41243,17 +41864,17 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "mvG" = ( /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "mvI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/structure/table/rack, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "mvK" = ( /obj/machinery/access_button{ command = "cycle_exterior"; @@ -41284,7 +41905,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "mvN" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -41298,7 +41919,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "mvZ" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -41309,7 +41930,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "mwb" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_y = 30 @@ -41354,7 +41975,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "mwj" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -41366,7 +41987,7 @@ dir = 5 }, /turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "mwm" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/floor_decal/borderfloorblack{ @@ -41377,10 +41998,10 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "mwp" = ( /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "mwr" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -41389,7 +42010,7 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "mww" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -41403,25 +42024,43 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "mwy" = ( /obj/structure/sink{ pixel_y = 16 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "mwB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "mwE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/catwalk_plated/techmaint, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_Security_PortCorridor1) "mwI" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4 @@ -41449,7 +42088,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "mxn" = ( /obj/structure/table/glass, /obj/structure/flora/pottedplant/crystal{ @@ -41462,7 +42101,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "mxE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -41472,7 +42111,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "myq" = ( /obj/machinery/light/small/emergency{ dir = 1 @@ -41501,7 +42140,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "myE" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -41510,13 +42149,13 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "myI" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "mzf" = ( /obj/item/gps{ pixel_x = 3; @@ -41546,7 +42185,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "mzF" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/table/rack{ @@ -41590,7 +42229,7 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "mzL" = ( /obj/structure/table/rack/shelf, /obj/item/storage/box/monkeycubes{ @@ -41631,7 +42270,7 @@ network = list("Science","Xenobio") }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "mAc" = ( /obj/structure/cable/green{ d1 = 2; @@ -41640,7 +42279,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "mAk" = ( /obj/structure/cable/green{ d1 = 1; @@ -41649,8 +42288,9 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Deck1_Transit_Hall) "mAs" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -41672,22 +42312,28 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "mAy" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "mBf" = ( /obj/random/junk, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "mBs" = ( /obj/structure/flora/ausbushes/brflowers, /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "mBt" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -41696,25 +42342,25 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "mBN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "mDa" = ( /obj/structure/stairs/spawner/north, /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "mDc" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "mDm" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -41727,13 +42373,13 @@ pixel_x = 3 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "mDp" = ( /obj/random/maintenance/cargo, /obj/structure/table/rack/steel, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "mDr" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -41744,7 +42390,7 @@ /obj/machinery/chemical_dispenser, /obj/structure/table/reinforced, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "mDG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -41768,26 +42414,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "mDO" = ( -/obj/machinery/door/blast/multi_tile/three_tile_hor{ - icon_state = "open"; - layer = 3.5; - id = "SC-BDquantumpad"; - opacity = 0; - density = 0; - name = "Quantumpad Lockdown" - }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/machinery/door/blast/regular/open{ - layer = 3.5; - id = "For Lockdown"; - name = "Lockdown Gate"; - desc = "A heavily reinforced gate, sector lockdown!"; - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/security/Quantum_Pad_Checkpoint) "mDP" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -41801,7 +42432,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "mDQ" = ( /obj/machinery/power/apc{ dir = 8; @@ -41823,11 +42454,11 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "mEh" = ( /obj/effect/floor_decal/techfloor/orange, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "mEp" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 6 @@ -41845,7 +42476,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "mEB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -41859,7 +42490,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "mED" = ( /obj/machinery/ai_status_display{ name = "1W-AI display"; @@ -41872,13 +42503,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "mFe" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "mFi" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -41899,11 +42530,11 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "mFr" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "mFF" = ( /obj/structure/window/titanium{ dir = 4 @@ -41931,7 +42562,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "mFX" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -41942,8 +42573,19 @@ /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 1 }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "mGB" = ( /obj/effect/floor_decal/industrial/stand_clear, /obj/structure/railing/grey{ @@ -41958,7 +42600,7 @@ network = list("Harbor") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "mGF" = ( /obj/effect/catwalk_plated/dark, /obj/machinery/shipsensors, @@ -41982,10 +42624,14 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "mGQ" = ( -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "mGR" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -42008,7 +42654,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "mGW" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/medical, @@ -42017,7 +42663,7 @@ /obj/random/fishing_junk, /obj/random/soap, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "mHy" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/engineering, @@ -42028,13 +42674,13 @@ /obj/effect/floor_decal/rust, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "mHE" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "mHK" = ( /obj/structure/sign/nanotrasen, /turf/simulated/shuttle/wall/no_join{ @@ -42073,7 +42719,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "mIC" = ( /obj/item/toy/plushie/borgplushie/drake/mine, /obj/item/toy/plushie/carp/ice{ @@ -42090,13 +42736,13 @@ pixel_x = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "mIN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "mIP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -42104,13 +42750,17 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "mIU" = ( /obj/machinery/light/small/emergency{ dir = 4 }, /turf/space, /area/space) +"mJa" = ( +/obj/structure/mob_spawner/mouse_nest, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_AftPort_Corridor3) "mJG" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -42119,7 +42769,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "mKY" = ( /obj/structure/cable/green{ d1 = 1; @@ -42131,7 +42781,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "mKZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -42152,7 +42802,7 @@ frequency = 1380 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "mLa" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -42164,7 +42814,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "mLv" = ( /obj/structure/table/bench/sifwooden/padded, /obj/machinery/camera/network/security{ @@ -42173,28 +42823,31 @@ network = list("Harbor") }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) +"mLC" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_AftPort_Chamber3) "mLD" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "mLK" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/effect/catwalk_plated/techmaint, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_Security_PortCorridor1) "mLM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -42213,7 +42866,7 @@ req_one_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "mMe" = ( /obj/structure/reagent_dispensers/acid{ pixel_y = -32 @@ -42237,7 +42890,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "mMj" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -42251,7 +42904,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "mMm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -42267,7 +42920,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "mMr" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -42276,7 +42929,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "mMB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 @@ -42288,7 +42941,7 @@ dir = 9 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "mML" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -42297,7 +42950,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "mMT" = ( /obj/machinery/vending/snack, /obj/item/radio/intercom{ @@ -42312,10 +42965,10 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "mMW" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "mNh" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/alarm{ @@ -42324,12 +42977,12 @@ }, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "mNj" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/ladder/up, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "mNn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -42358,7 +43011,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "mNy" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -42376,7 +43029,7 @@ pixel_x = -22 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "mNF" = ( /obj/structure/cable/green{ d1 = 4; @@ -42384,7 +43037,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "mNM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -42395,18 +43048,22 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "mNO" = ( /obj/structure/sign/poster/custom{ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "mNS" = ( /obj/random/junk, /obj/random/junk, -/turf/simulated/floor/wood/alt/panel/broken, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "mNX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -42421,14 +43078,14 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "mOg" = ( /obj/machinery/light{ dir = 1; name = "1N-lighting fixture" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "mOu" = ( /obj/structure/cable/green{ d1 = 4; @@ -42446,7 +43103,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "mOH" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -42461,7 +43118,7 @@ pixel_y = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "mOM" = ( /obj/machinery/light{ dir = 1 @@ -42491,7 +43148,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "mOX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -42512,7 +43169,7 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "mPf" = ( /obj/machinery/door/window/survival_pod{ dir = 1 @@ -42544,7 +43201,7 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "mPC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -42558,7 +43215,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "mQc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -42572,7 +43229,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "mQh" = ( /obj/machinery/power/apc{ dir = 4; @@ -42604,7 +43261,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "mQo" = ( /obj/machinery/vending/radren, /obj/machinery/holoposter{ @@ -42612,7 +43269,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "mQp" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -42621,12 +43278,12 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "mQs" = ( /obj/random/trash, /obj/random/junk, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "mQY" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/power/apc{ @@ -42639,7 +43296,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "mRe" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 @@ -42658,42 +43315,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "mRn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) -"mRs" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/light_switch{ - dir = 4; - name = "W-light switch"; - pixel_x = -27; - pixel_y = 12 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Stairwell_For) "mRC" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -42702,11 +43330,11 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "mTd" = ( /obj/effect/graffitispawner, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "mTe" = ( /obj/structure/cable/green{ d1 = 4; @@ -42716,7 +43344,7 @@ /obj/machinery/atmospherics/binary/pump, /obj/effect/catwalk_plated/dark, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "mTi" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -42724,18 +43352,18 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "mTH" = ( /obj/structure/stairs/spawner/north, /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "mTL" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "mTP" = ( /obj/machinery/computer/security/mining{ dir = 4 @@ -42744,17 +43372,17 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "mUb" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "mUi" = ( /obj/machinery/light/small{ dir = 1 }, /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "mUs" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -42771,7 +43399,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "mUt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -42780,7 +43408,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "mUC" = ( /obj/effect/catwalk_plated/white, /obj/structure/cable/green{ @@ -42801,14 +43429,14 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "mUI" = ( /obj/structure/sign/directions/evac{ dir = 1; pixel_y = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "mVh" = ( /obj/structure/cable/green{ d1 = 1; @@ -42816,7 +43444,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "mVl" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/steeldecal/steel_decals9, @@ -42834,7 +43462,7 @@ name = "1N-AI display" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "mVK" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -42848,7 +43476,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "mVL" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -42874,7 +43502,7 @@ /obj/structure/barricade/planks, /obj/item/tape/police, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "mVX" = ( /obj/machinery/chemical_dispenser/full{ pixel_y = 5 @@ -42903,7 +43531,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "mWi" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 @@ -42912,7 +43540,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "mWk" = ( /obj/structure/table/rack, /obj/item/melee/umbrella/random{ @@ -42941,7 +43569,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "mWF" = ( /obj/structure/frame/computer, /obj/effect/floor_decal/rust, @@ -42951,21 +43579,21 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "mWL" = ( /obj/random/maintenance/cargo, /obj/structure/table/rack/steel, /obj/random/maintenance/clean, /obj/random/cargopod, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "mWW" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /obj/machinery/flasher/portable, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "mWX" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -42979,16 +43607,16 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "mXm" = ( /obj/random/maintenance/engineering, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "mXu" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "mXE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -43019,7 +43647,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "mXL" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -43028,12 +43656,12 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "mYa" = ( /turf/simulated/floor/water/indoors{ outdoors = -1 }, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "mYA" = ( /obj/effect/floor_decal/industrial/hatch, /obj/machinery/shield_diffuser, @@ -43042,24 +43670,24 @@ name = "Containment Vent Doors" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "mYP" = ( /obj/machinery/oxygen_pump/mobile, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "mYR" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "mYX" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "mZb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -43070,19 +43698,19 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "mZf" = ( /obj/structure/sink/kitchen{ layer = 1; pixel_y = 12 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "mZn" = ( /obj/item/bone/skull/unathi, /obj/effect/decal/cleanable/filth, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "mZr" = ( /obj/machinery/camera/network/security{ dir = 6; @@ -43090,7 +43718,7 @@ network = list("Engineering") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "mZy" = ( /obj/structure/hyperball_pedestal, /obj/item/laserdome_hyperball, @@ -43105,7 +43733,7 @@ }, /obj/effect/floor_decal/road/center, /turf/simulated/floor/grass2/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "mZN" = ( /obj/structure/panic_button{ pixel_y = 32 @@ -43116,7 +43744,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/industrial/danger/corner, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "nar" = ( /obj/structure/table/rack/shelf/steel, /obj/fiftyspawner/cardboard, @@ -43124,13 +43752,13 @@ /obj/fiftyspawner/marble, /obj/fiftyspawner/plastic, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "naw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "naB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -43140,7 +43768,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "naK" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Exploration Subgrid"; @@ -43153,7 +43781,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "naS" = ( /obj/machinery/ai_status_display{ name = "1S-AI display"; @@ -43166,18 +43794,18 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "naW" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 1 }, /obj/effect/floor_decal/industrial/arrows/red, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "nbg" = ( /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "nbt" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -43194,24 +43822,16 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) -"nbG" = ( -/obj/machinery/light{ - dir = 4; - name = "1E-light fixture" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/maintenance/Deck1_Star_Corridor) "nbM" = ( /obj/random/trash, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) +"nbX" = ( +/obj/structure/loot_pile/maint/boxfort, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_ForPort_Corridor2) "ncd" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -43222,15 +43842,15 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "ncn" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "ncr" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1) +/area/maintenance/Deck1_Security_PortChamber1) "nct" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 @@ -43248,7 +43868,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "ndt" = ( /obj/item/radio/intercom{ dir = 1; @@ -43264,12 +43884,15 @@ /obj/effect/floor_decal/corner/white/bordercorner{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "ndK" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "ndY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -43280,7 +43903,7 @@ /obj/effect/map_helper/airlock/door/ext_door, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "neh" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -43302,7 +43925,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "nel" = ( /obj/random/trash, /obj/machinery/alarm{ @@ -43310,10 +43933,10 @@ pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "neE" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "neG" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor/corner{ @@ -43323,7 +43946,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "nfN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -43337,34 +43960,34 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "nfT" = ( /obj/item/frame, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "ngc" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "ngd" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "ngZ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "nhf" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "nhN" = ( /obj/effect/graffitispawner, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "nhZ" = ( /obj/structure/cable{ d1 = 4; @@ -43372,17 +43995,17 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "nie" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "nir" = ( /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "nis" = ( /obj/effect/floor_decal/corner/white{ dir = 1 @@ -43396,16 +44019,16 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "niG" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "niO" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "niZ" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -43414,16 +44037,16 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "njj" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "njm" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "njP" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -43432,7 +44055,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "njR" = ( /obj/structure/bed/pillowpile/white, /obj/item/storage/vore_egg/blue, @@ -43444,18 +44067,17 @@ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "njX" = ( -/obj/machinery/shieldwallgen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 6 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/firealarm{ + dir = 1; + name = "S-fire alarm"; + pixel_y = -25 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/hallway/Central_1_Deck_Hall) "njZ" = ( /obj/machinery/disposal/wall{ dir = 1; @@ -43466,7 +44088,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "nkg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -43479,7 +44101,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "nko" = ( /obj/structure/cable/yellow{ d2 = 4; @@ -43497,7 +44119,7 @@ dir = 8 }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "nkA" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -43509,7 +44131,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "nkB" = ( /obj/machinery/light{ dir = 8; @@ -43523,11 +44145,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "nlq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "nlw" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 @@ -43536,18 +44158,18 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "nlS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "nlV" = ( /obj/effect/floor_decal/borderfloor, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "nlX" = ( /obj/structure/table/reinforced, /obj/item/pen/fountain4, @@ -43561,13 +44183,13 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "nma" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "nmg" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -43581,14 +44203,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "nmw" = ( /obj/structure/closet/secure_closet/freezer/fridge{ starts_with = null }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "nmP" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -43610,29 +44232,29 @@ dir = 1 }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "nmR" = ( /obj/structure/bed/chair/backed_grey{ color = "grey" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "nnw" = ( /obj/structure/bed/chair/backed_grey{ color = "grey" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "nnE" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightgrey/border, /obj/structure/sign/poster/custom, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "nnV" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "nol" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -43641,14 +44263,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "noF" = ( /obj/machinery/light{ dir = 1; name = "1N-lighting fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "noM" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -43657,11 +44279,11 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "noT" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "noW" = ( /obj/structure/cable/green{ d1 = 4; @@ -43678,13 +44300,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "noX" = ( /obj/structure/railing/grey{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "npa" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -43703,7 +44325,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "npi" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -43720,11 +44342,11 @@ req_one_access = list(7,47) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "npu" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "npv" = ( /obj/structure/cryofeed{ dir = 2 @@ -43753,7 +44375,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "nqa" = ( /obj/structure/table/steel, /obj/item/virusdish/random, @@ -43763,7 +44385,7 @@ /obj/item/surgical/FixOVein, /obj/item/surgical/retractor, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "nqx" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -43794,29 +44416,31 @@ pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "nqM" = ( /obj/random/crate, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "nqO" = ( /turf/simulated/shuttle/plating/airless/carry, /area/shuttle/spacebus) "nrb" = ( /obj/structure/flora/sif/eyes, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "nrf" = ( /obj/effect/decal/cleanable/flour, /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "nrg" = ( /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/water/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "nrk" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -43825,7 +44449,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "nrR" = ( /obj/structure/table/steel, /obj/fiftyspawner/steel{ @@ -43839,7 +44463,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "nse" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -43855,7 +44479,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "nsy" = ( /obj/machinery/power/terminal, /obj/structure/cable{ @@ -43866,12 +44490,12 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Harbor_Substation) +/area/maintenance/Harbor_Substation) "nsA" = ( /obj/structure/stairs/spawner/west, /obj/structure/railing, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "nsM" = ( /obj/machinery/power/apc/hyper{ coverlocked = 0; @@ -43890,11 +44514,11 @@ "nsR" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "nth" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "ntw" = ( /obj/structure/railing/grey{ color = "yellow" @@ -43906,11 +44530,11 @@ dir = 2 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "ntB" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "ntN" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 @@ -43929,13 +44553,13 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "ntW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "ntZ" = ( /obj/structure/kitchenspike, /obj/random/humanoidremains, @@ -43944,8 +44568,12 @@ /obj/random/humanoidremains, /obj/random/junk, /obj/effect/landmark/mobcorpse/clown, -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "nuc" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -43954,7 +44582,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "nuh" = ( /obj/structure/closet/emcloset/legacy, /obj/structure/window/basic, @@ -43969,7 +44597,7 @@ c_tag = "D1-Sec-explorationsling1" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "nui" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -43979,11 +44607,11 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "nuo" = ( /obj/effect/decal/cleanable/blood, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "nut" = ( /obj/machinery/alarm{ dir = 8; @@ -44002,7 +44630,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "nuv" = ( /obj/structure/cable/green{ d1 = 4; @@ -44029,7 +44657,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "nuT" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -44038,7 +44666,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "nva" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -44051,7 +44679,7 @@ "nvj" = ( /obj/random/contraband, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "nvF" = ( /obj/item/radio/intercom{ dir = 4; @@ -44066,11 +44694,11 @@ }, /obj/structure/sign/poster/nanotrasen, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "nvX" = ( /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "nwk" = ( /obj/machinery/atmospherics/unary/heater{ icon_state = "heater" @@ -44082,19 +44710,19 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "nwU" = ( /obj/structure/table/bench/sifwooden/padded, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "nxp" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "nxq" = ( -/obj/turbolift_map_holder/southern_cross/port, +/obj/turbolift_map_holder/soluna_nexus/port, /turf/simulated/floor/plating/eris/under, -/area/SouthernCrossV2/Maints/Room_88) +/area/maintenance/Room_88) "nxr" = ( /obj/structure/cable{ d1 = 2; @@ -44108,18 +44736,19 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - dir = 8; - name = "1E-light fixture" - }, /obj/effect/floor_decal/borderfloor{ dir = 8 }, /obj/effect/floor_decal/corner/white/border{ dir = 8 }, +/obj/machinery/light/spot{ + dir = 8; + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "nxs" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/mask/gas{ @@ -44148,7 +44777,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "nyb" = ( /obj/machinery/firealarm{ pixel_y = -25; @@ -44162,13 +44791,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "nyh" = ( /obj/structure/disposalpipe/tagger{ sort_tag = "transit_crew" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "nyt" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -44183,23 +44812,22 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "nyE" = ( /obj/structure/sign/directions/shuttle_bay{ pixel_y = 9; dir = 5 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "nyJ" = ( -/obj/structure/urinal{ - pixel_y = 28 +/obj/structure/sign/directions/science/exploration{ + pixel_y = 9; + dir = 4; + layer = 3.5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/For_Restroom) +/turf/simulated/wall/r_wall, +/area/hallway/For_Locker_Room) "nyP" = ( /obj/machinery/turretid/stun{ check_records = 0; @@ -44215,7 +44843,7 @@ network = list("engineering") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "nza" = ( /obj/structure/table/standard, /obj/item/tool/wirecutters/clippers{ @@ -44228,14 +44856,16 @@ }, /obj/machinery/light_construct/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "nzf" = ( /obj/structure/flora/tree/sif, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "nzv" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "nzy" = ( /obj/item/analyzer/plant_analyzer{ pixel_y = -1; @@ -44243,13 +44873,13 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "nzH" = ( /obj/structure/bed/chair/sofa/corner/orange{ dir = 1 }, /turf/simulated/floor/wood/alt/tile/broken, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "nzN" = ( /obj/structure/closet/crate/hydroponics/prespawned{ dir = 1 @@ -44257,7 +44887,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "nAa" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -44268,14 +44898,14 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "nAs" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "nAJ" = ( /obj/item/anobattery{ pixel_x = -6; @@ -44295,13 +44925,13 @@ }, /obj/structure/table/reinforced, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "nAO" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "nAY" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -44311,13 +44941,15 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "nBA" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "nBE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -44337,21 +44969,21 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "nBH" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "nBI" = ( /obj/machinery/light/small{ dir = 8 }, /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "nBS" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -44360,7 +44992,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "nBU" = ( /obj/structure/table/rack{ dir = 8; @@ -44398,7 +45030,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "nCl" = ( /obj/machinery/power/smes/buildable/point_of_interest, /obj/structure/cable/green, @@ -44409,17 +45041,31 @@ }, /turf/simulated/floor/tiled/yellow, /area/shuttle/spacebus) +"nCw" = ( +/obj/structure/sign/directions/cargo{ + pixel_y = 9; + dir = 4; + layer = 3.5 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + layer = 3.5 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = -9; + layer = 3.5 + }, +/turf/simulated/wall/r_wall, +/area/harbor/Dock1) "nCB" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "nCS" = ( /obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 }, @@ -44431,7 +45077,7 @@ pixel_x = -22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "nDd" = ( /obj/structure/bed/chair/wheelchair/smallmotor, /obj/effect/floor_decal/industrial/hatch/blue, @@ -44441,7 +45087,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "nDe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -44450,14 +45096,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "nDs" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/valve{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "nDu" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -44475,11 +45121,11 @@ /obj/machinery/door/airlock/angled_bay/external/glass, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "nDP" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "nEb" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 @@ -44500,7 +45146,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "nEi" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -44514,11 +45160,11 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "nEl" = ( /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "nEs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -44534,7 +45180,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "nEE" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -44546,7 +45192,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "nEM" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -44555,7 +45201,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "nFb" = ( /obj/structure/cable{ d1 = 1; @@ -44564,16 +45210,16 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "nFd" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "nFh" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "nFE" = ( /obj/structure/cable/green{ d1 = 1; @@ -44589,10 +45235,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "nFX" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "nGf" = ( /obj/structure/cable{ d1 = 4; @@ -44600,11 +45246,11 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "nGQ" = ( /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "nGW" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -44616,7 +45262,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "nGX" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -44626,7 +45272,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "nHc" = ( /obj/structure/sign/nanotrasen, /turf/simulated/wall/rshull, @@ -44662,7 +45308,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "nHF" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -44680,19 +45326,19 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "nHL" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "nHO" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "nHZ" = ( /obj/machinery/door/airlock/voidcraft/vertical{ id_tag = "ursula_hatch"; @@ -44722,18 +45368,18 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "nIj" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "nIl" = ( /obj/structure/closet/crate/wooden, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "nIG" = ( /obj/structure/railing{ dir = 8 @@ -44745,42 +45391,44 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "nIQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "nIY" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "nJb" = ( /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "nJj" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "nJr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, /obj/structure/table/rack, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "nJE" = ( -/obj/structure/anomaly_container, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "nJN" = ( /obj/structure/sign/warning/evac, /turf/simulated/shuttle/wall/no_join{ @@ -44794,44 +45442,32 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "nKr" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "nKw" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) "nKL" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Tcoms"; - charge = 6e+006; - input_attempt = 1; - input_level = 250000; - inputting = 1; - output_level = 250000 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" +/obj/effect/catwalk_plated, +/obj/machinery/ai_status_display{ + name = "1S-AI display"; + pixel_y = -32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "nKN" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "nKW" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -44856,7 +45492,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "nLa" = ( /obj/machinery/light{ dir = 4; @@ -44876,7 +45512,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "nLk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -44900,16 +45536,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "nLm" = ( /turf/simulated/floor/water/deep/indoors{ outdoors = -1 }, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "nLC" = ( /obj/structure/reagent_dispensers/coolanttank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "nLI" = ( /obj/item/toy/plushie/borgplushie/drake/sci{ pixel_x = -3; @@ -44929,7 +45565,7 @@ /obj/structure/table/marble, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "nLJ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -44938,13 +45574,13 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "nLO" = ( /obj/structure/disposalpipe/sortjunction/wildcard{ dir = 2 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "nLV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -44953,7 +45589,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "nLZ" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -44961,12 +45597,12 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "nMg" = ( /obj/structure/table/standard, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "nMl" = ( /obj/structure/cable/green{ d1 = 1; @@ -44980,11 +45616,11 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "nMr" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "nMA" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -45002,7 +45638,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "nMF" = ( /obj/item/gps{ pixel_x = 3; @@ -45033,7 +45669,11 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) +"nML" = ( +/obj/structure/mob_spawner/mouse_nest, +/turf/simulated/floor/plating, +/area/maintenance/ab_SportsField) "nMQ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -45047,7 +45687,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "nNJ" = ( /obj/machinery/power/apc{ dir = 4; @@ -45056,7 +45696,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "nNZ" = ( /obj/effect/floor_decal/shuttles{ dir = 4 @@ -45065,7 +45705,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "nOq" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ frequency = 1380; @@ -45103,7 +45743,7 @@ name = "lightsout" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "nPG" = ( /obj/structure/cable/green{ d1 = 1; @@ -45130,10 +45770,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "nPX" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "nQa" = ( /obj/structure/cable/green{ d1 = 1; @@ -45146,7 +45786,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "nQk" = ( /obj/structure/table/rack/shelf/steel, /obj/fiftyspawner/cardboard, @@ -45159,7 +45799,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "nQw" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -45173,20 +45813,20 @@ name = "Fueldepo Gallactica" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "nQD" = ( /obj/machinery/light/small{ dir = 1 }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "nQJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 + dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "nRa" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -45195,7 +45835,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "nRi" = ( /obj/machinery/alarm{ dir = 4; @@ -45211,7 +45851,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "nRj" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -45225,14 +45865,18 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "nRp" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "nRx" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -45263,7 +45907,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "nRI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -45282,7 +45926,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "nSe" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 @@ -45297,7 +45941,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "nSt" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -45305,7 +45949,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "nSy" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -45314,7 +45958,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "nSG" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -45323,7 +45967,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "nSH" = ( /obj/structure/closet/secure_closet/freezer/fridge{ starts_with = null @@ -45343,7 +45987,15 @@ /obj/random/drinkbottle, /obj/random/drinksoft, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) +"nSV" = ( +/obj/random/junk, +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "nTq" = ( /obj/structure/closet/crate/wooden, /obj/machinery/alarm{ @@ -45352,7 +46004,7 @@ /obj/random/junk, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "nTw" = ( /obj/structure/railing/grey{ color = "yellow" @@ -45361,7 +46013,7 @@ dir = 2 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "nTH" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -45370,13 +46022,13 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "nTR" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "nUi" = ( /obj/structure/cable/green{ d1 = 4; @@ -45400,7 +46052,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "nUC" = ( /obj/structure/cable{ d1 = 2; @@ -45408,7 +46060,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "nUF" = ( /obj/structure/cable/green{ d1 = 4; @@ -45430,14 +46082,17 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, +/obj/effect/floor_decal/arrivals{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "nUN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "nUS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -45456,17 +46111,20 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "nUT" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "nVj" = ( -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/machinery/light{ + name = "1S-light fixture" + }, +/turf/simulated/floor/plating, +/area/maintenance/Market_Stall_6) "nVk" = ( /obj/structure/cable/green{ d1 = 2; @@ -45478,7 +46136,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "nVn" = ( /obj/structure/fuel_port{ pixel_x = -32 @@ -45507,11 +46165,16 @@ icon_state = "mfloor6" }, /turf/simulated/floor/wood/alt/tile/broken, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "nVB" = ( -/obj/random/trash, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/structure/table/rack, +/obj/item/material/fishing_rod/modern, +/obj/item/material/fishing_rod/modern/cheap{ + pixel_y = -4; + pixel_x = 2 + }, +/turf/simulated/floor/plating, +/area/maintenance/Market_Stall_6) "nVN" = ( /obj/structure/cable{ d1 = 1; @@ -45526,11 +46189,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "nVO" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "nVP" = ( /obj/structure/table/rack/shelf, /obj/item/bodybag/cryobag/robobag{ @@ -45573,22 +46236,22 @@ "nVS" = ( /obj/effect/graffitispawner, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "nVT" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "nWh" = ( /obj/machinery/smartfridge/secure{ req_access = list(47) }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "nWy" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "nWF" = ( /obj/effect/catwalk_plated/white, /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ @@ -45599,7 +46262,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "nWG" = ( /obj/structure/sign/directions/dock, /obj/structure/sign/levels/dock{ @@ -45607,13 +46270,13 @@ dir = 6 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "nWO" = ( /obj/structure/table/standard, /obj/random/maintenance/security, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "nWV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -45633,7 +46296,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "nXc" = ( /obj/structure/window/reinforced/survival_pod{ dir = 1 @@ -45652,13 +46315,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "nXH" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/medical/pillbottle, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "nXM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -45675,7 +46338,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "nXR" = ( /obj/structure/bed/chair/bay/comfy/captain{ dir = 1 @@ -45684,7 +46347,7 @@ /area/shuttle/echidna) "nXY" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "nYi" = ( /obj/structure/cable/green{ d1 = 4; @@ -45722,18 +46385,18 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "nYJ" = ( /obj/item/clothing/under/fluff/latexmaid, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "nYT" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "nZf" = ( /obj/structure/cable/green{ d1 = 4; @@ -45755,11 +46418,13 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "nZp" = ( -/obj/structure/closet/crate/mimic/closet/cointoss, +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber1) "nZu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -45768,17 +46433,17 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "nZC" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/industrial/danger/corner, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "nZI" = ( /obj/random/multiple/corp_crate/no_weapons, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "nZM" = ( /obj/structure/cable/green{ d1 = 1; @@ -45799,7 +46464,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "nZS" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -45810,7 +46475,7 @@ /obj/structure/disposalpipe/segment, /obj/item/tape/atmos, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "nZZ" = ( /obj/structure/closet/bombcloset/double, /obj/effect/floor_decal/borderfloorblack{ @@ -45820,11 +46485,11 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "oaC" = ( /obj/structure/closet/crate/mimic/airlock/guaranteed, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "oaG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -45844,10 +46509,10 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "oaI" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "oaM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -45864,11 +46529,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "oaQ" = ( /obj/structure/inflatable, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "oaR" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -45887,7 +46552,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "oaV" = ( /obj/structure/cable/green{ d1 = 2; @@ -45913,10 +46578,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "oaW" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "obh" = ( /obj/machinery/alarm{ dir = 1; @@ -45924,27 +46589,27 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "obr" = ( /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "obx" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "obG" = ( /obj/machinery/light_construct{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "obP" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "obS" = ( /obj/structure/table/glass, /obj/item/weldingtool{ @@ -45960,7 +46625,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "obY" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port{ frequency = 1380; @@ -45972,7 +46637,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "oca" = ( /obj/structure/cable/green{ d1 = 4; @@ -45995,7 +46660,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "ocn" = ( /obj/machinery/airlock_sensor{ pixel_y = -24; @@ -46007,7 +46672,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "ocs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -46019,7 +46684,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "ocA" = ( /obj/structure/cable/green{ d1 = 1; @@ -46033,12 +46698,12 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/orange/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "ocC" = ( /obj/structure/table/standard, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "ocE" = ( /obj/effect/floor_decal/steeldecal/steel_decals9, /obj/effect/floor_decal/steeldecal/steel_decals9{ @@ -46052,7 +46717,7 @@ }, /obj/structure/closet/l3closet/scientist, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "ocI" = ( /obj/structure/cable/green{ d1 = 1; @@ -46075,7 +46740,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "ocK" = ( /obj/machinery/embedded_controller/radio/airlock/access_controller{ id_tag = "SC-ALCxenobiology"; @@ -46087,7 +46752,7 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "ocN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -46101,30 +46766,30 @@ req_one_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "ocR" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "odm" = ( /obj/structure/table/rack/shelf, /obj/random/soap, /obj/random/plushie, /obj/random/forgotten_tram, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "odp" = ( -/obj/turbolift_map_holder/southern_cross/starboard, +/obj/turbolift_map_holder/soluna_nexus/starboard, /turf/simulated/floor/plating/eris/under, -/area/SouthernCrossV2/Maints/Room_88) +/area/maintenance/Room_88) "odq" = ( /obj/structure/bed/chair/oldsofa/left{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "odG" = ( /obj/structure/cable/white{ d1 = 1; @@ -46136,7 +46801,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "odW" = ( /obj/structure/cable/green{ d1 = 1; @@ -46155,7 +46820,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "odX" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 10 @@ -46167,7 +46832,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "odZ" = ( /obj/structure/sign/directions/medical{ dir = 4 @@ -46177,7 +46842,7 @@ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "oel" = ( /obj/structure/table/steel, /obj/random/tech_supply, @@ -46185,10 +46850,10 @@ /obj/random/tech_supply, /obj/random/maintenance/engineering, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "oex" = ( /turf/simulated/floor/plating/eris/under, -/area/SouthernCrossV2/Maints/Room_88) +/area/maintenance/Room_88) "oeC" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -46202,24 +46867,36 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "oeN" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/security, /obj/random/maintenance/security, /obj/random/flashlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "oeQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) +"ofv" = ( +/obj/structure/table/standard, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Central) "ofD" = ( /obj/item/frame, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "ofO" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -46233,7 +46910,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "ofQ" = ( /obj/effect/shuttle_landmark/southern_cross/sling_station, /turf/simulated/shuttle/floor/darkred, @@ -46259,7 +46936,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "ogI" = ( /obj/structure/table/rack/shelf, /obj/random/contraband, @@ -46267,14 +46944,17 @@ /obj/item/broken_device/random, /obj/random/forgotten_tram, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "ogY" = ( /obj/random/tank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "ohA" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) +"ohI" = ( +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/Supply_Ship_Bay) "ohK" = ( /obj/machinery/processor/monkey, /obj/effect/floor_decal/corner/purple/diagonal, @@ -46282,17 +46962,17 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "ohN" = ( /obj/structure/bed/chair/backed_red{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "ohY" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/yellow, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "oie" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -46303,7 +46983,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "ojo" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -46328,7 +47008,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "oju" = ( /obj/structure/closet/walllocker_double/medical/west, /obj/item/storage/firstaid, @@ -46354,10 +47034,10 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "ojD" = ( /turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "ojM" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/white{ @@ -46369,10 +47049,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "okm" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "okp" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ dir = 1; @@ -46388,7 +47068,7 @@ "okr" = ( /obj/item/clothing/ears/earring/dangle, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "okz" = ( /obj/machinery/status_display{ pixel_x = 32; @@ -46401,13 +47081,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "okJ" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "okM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -46416,13 +47096,13 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "okX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "oll" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -46452,11 +47132,11 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "olF" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "olG" = ( /obj/machinery/firealarm{ dir = 8; @@ -46475,7 +47155,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "olJ" = ( /obj/structure/sign/directions/dock, /obj/structure/sign/directions/evac{ @@ -46483,7 +47163,7 @@ pixel_y = 10 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "olL" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 @@ -46498,7 +47178,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "oma" = ( /obj/machinery/portable_atmospherics/canister/empty/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -46513,7 +47193,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "omn" = ( /obj/machinery/door/airlock/glass_external{ frequency = 1380; @@ -46537,7 +47217,7 @@ "omo" = ( /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "omT" = ( /obj/effect/catwalk_plated/white, /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ @@ -46548,16 +47228,12 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "onH" = ( -/obj/structure/particle_accelerator/particle_emitter/left{ - anchored = 1; - construction_state = 1; - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/PA_Chamber) +/obj/structure/lattice, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/plating/turfpack/airless, +/area/space) "onI" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -46571,34 +47247,34 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "onL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "onN" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "onU" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) "ool" = ( /obj/structure/loot_pile/maint/technical, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "oov" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "ooB" = ( /obj/structure/table/reinforced, /obj/machinery/computer/skills{ @@ -46606,7 +47282,7 @@ }, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "ooD" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 6 @@ -46616,7 +47292,7 @@ dir = 9 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "ooS" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -46638,7 +47314,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "ooW" = ( /obj/structure/cable/green{ d1 = 1; @@ -46653,10 +47329,10 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "opg" = ( /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "opp" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -46666,7 +47342,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "ops" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -46679,16 +47355,25 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "opH" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "opN" = ( /obj/structure/table/rack/shelf/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "opW" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -46719,16 +47404,16 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "opY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/obj/effect/catwalk_plated/white, +/turf/simulated/floor/plating/turfpack/airless, +/area/harbor/Dock1) "oqs" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -46748,7 +47433,7 @@ }, /obj/structure/cable, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "oqt" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 1 @@ -46766,7 +47451,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "oqO" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -46777,8 +47462,22 @@ /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 1 }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "ors" = ( /obj/structure/table/bench/sifwooden/padded, /obj/machinery/alarm{ @@ -46786,7 +47485,7 @@ pixel_x = 22 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "orS" = ( /obj/structure/cable{ d1 = 1; @@ -46794,7 +47493,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "orU" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -46827,37 +47526,37 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "orY" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "osl" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "osu" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "osw" = ( /obj/structure/table/marble, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "osG" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "otc" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -46880,7 +47579,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "otd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -46894,13 +47593,13 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "oti" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "otU" = ( /obj/structure/cable/white{ d1 = 1; @@ -46955,7 +47654,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "oun" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -46967,13 +47666,13 @@ id_tag = "sc-DBN2stall3" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "ouz" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "ouF" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -46983,11 +47682,11 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "ouG" = ( /obj/structure/sign/warning/nosmoking_2, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "ouR" = ( /obj/structure/table/rack/shelf, /obj/random/material, @@ -46995,29 +47694,41 @@ /obj/random/maintenance/morestuff, /obj/random/maintenance/research, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "ouV" = ( /obj/structure/table/steel, /obj/random/flashlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "ouX" = ( /obj/structure/frame/computer, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "ovp" = ( /obj/structure/bed/chair/sofa/sif_ora{ dir = 1 }, /obj/structure/sign/poster/nanotrasen, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) +"ovx" = ( +/obj/structure/bed/chair/sofa/lime, +/obj/machinery/light{ + dir = 1; + name = "1N-lighting fixture" + }, +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "ovz" = ( /obj/structure/bed/chair/backed_grey{ color = "grey" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "ovF" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 5 @@ -47026,7 +47737,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "ovQ" = ( /obj/structure/cable/white{ d1 = 1; @@ -47034,7 +47745,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "ovR" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -47044,13 +47755,13 @@ /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "ovZ" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "owb" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -47058,7 +47769,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "owo" = ( /obj/structure/cable/green{ d1 = 4; @@ -47074,10 +47785,10 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "owF" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "owI" = ( /obj/structure/table/rack/shelf/steel, /obj/item/gun/energy/locked/phasegun/rifle{ @@ -47088,13 +47799,13 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "owL" = ( /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/grass2/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "owX" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/ladder/up, @@ -47103,7 +47814,7 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "oxc" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 10 @@ -47115,7 +47826,7 @@ dir = 5 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "oxr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -47130,7 +47841,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "oxH" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -47148,21 +47859,21 @@ }, /obj/structure/curtain/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "oxL" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "oxM" = ( /obj/machinery/portable_atmospherics/canister/empty, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "oxR" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -47171,7 +47882,7 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/sec, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "oxS" = ( /obj/machinery/camera/network/security{ dir = 10; @@ -47185,7 +47896,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "oxT" = ( /obj/machinery/access_button{ command = "cycle_exterior"; @@ -47210,12 +47921,12 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "oyn" = ( /obj/structure/table/steel, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "oyo" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -47224,7 +47935,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "oyr" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/suit_storage_unit/mining_alt, @@ -47234,7 +47945,7 @@ network = list("Cargo") }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "oyt" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 5 @@ -47242,7 +47953,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "oyE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -47257,7 +47968,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "oyI" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -47267,14 +47978,25 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) +"oyL" = ( +/obj/random/humanoidremains, +/obj/random/trash, +/obj/effect/floor_decal/rust, +/obj/item/organ/internal/liver/vox, +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "oyV" = ( /obj/structure/bed/chair/bay{ dir = 1 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "ozc" = ( /obj/structure/cable/green{ d1 = 1; @@ -47285,7 +48007,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "ozg" = ( /obj/structure/cable{ d1 = 1; @@ -47293,13 +48015,13 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "ozi" = ( /obj/effect/floor_decal/spline/fancy{ dir = 4 }, /turf/simulated/floor/carpet/sblucarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "ozk" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -47315,7 +48037,7 @@ color = "yellow" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "ozr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -47334,17 +48056,17 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "ozN" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "ozZ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "oAb" = ( /obj/item/clothing/shoes/footwraps/teshari{ pixel_y = -8; @@ -47355,7 +48077,7 @@ pixel_x = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "oAe" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -47367,7 +48089,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "oAw" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -47384,7 +48106,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "oAU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -47394,14 +48116,14 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "oAX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "oBc" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 @@ -47411,12 +48133,12 @@ name = "N-fire alarm" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "oBl" = ( /obj/structure/table/glass, /obj/structure/sign/poster/nanotrasen, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "oBC" = ( /obj/structure/bed/chair/backed_red{ dir = 1 @@ -47427,7 +48149,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "oBK" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -47438,14 +48160,14 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "oBW" = ( /obj/structure/table/darkglass, /obj/effect/floor_decal/spline/plain{ dir = 6 }, /turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "oBX" = ( /obj/structure/table/rack/shelf, /obj/random/tool, @@ -47456,7 +48178,7 @@ /obj/random/mainttoyloot, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "oBZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -47471,7 +48193,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "oCM" = ( /obj/structure/cable/green{ d1 = 1; @@ -47480,24 +48202,24 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "oCW" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "oDd" = ( /obj/random/trash, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "oDj" = ( /obj/structure/girder, /obj/structure/disposalpipe/segment, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "oDp" = ( /obj/machinery/alarm{ dir = 8; @@ -47513,13 +48235,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "oDE" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "oDT" = ( /obj/structure/cable/green{ d1 = 1; @@ -47532,7 +48254,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "oEe" = ( /obj/structure/bed/chair/backed_red{ dir = 4 @@ -47548,7 +48270,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "oEC" = ( /obj/effect/floor_decal/corner/white{ dir = 9 @@ -47562,12 +48284,12 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "oEH" = ( /obj/structure/railing/grey, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "oEW" = ( /obj/structure/cable/green{ d1 = 1; @@ -47576,18 +48298,19 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/status_display{ - name = "W-status display"; - pixel_x = -32 - }, /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, /obj/effect/floor_decal/corner/white/bordercorner{ dir = 1 }, +/obj/machinery/firealarm{ + dir = 8; + name = "W-fire alarm"; + pixel_x = -25 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "oEX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -47619,27 +48342,13 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "oFa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) -"oFn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/harbor/Dock4) "oFv" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green, @@ -47650,13 +48359,13 @@ }, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "oFx" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "oFC" = ( /obj/structure/disposalpipe/trunk, /obj/structure/disposalpipe/segment{ @@ -47669,14 +48378,14 @@ color = "#9185ff" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "oFF" = ( /obj/machinery/mineral/stacking_machine, /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "oGl" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -47689,11 +48398,11 @@ pixel_x = -22 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "oGo" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "oGC" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -47706,7 +48415,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "oGD" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -47716,14 +48425,14 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "oGG" = ( /obj/effect/floor_decal/rust, /obj/machinery/light/floortube{ pixel_y = -2 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "oGH" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -47737,7 +48446,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "oGT" = ( /obj/structure/bed/chair/backed_red{ dir = 4 @@ -47746,7 +48455,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "oGW" = ( /obj/structure/railing{ dir = 8 @@ -47756,7 +48465,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "oGX" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -47765,13 +48474,13 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "oHl" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "oHv" = ( /obj/machinery/chem_master, /obj/effect/floor_decal/borderfloorwhite{ @@ -47781,7 +48490,7 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "oHD" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -47801,8 +48510,12 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/kafel_full{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen floor" + }, +/area/maintenance/ab_Kitchen) "oId" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 @@ -47812,7 +48525,7 @@ }, /obj/machinery/clonepod, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "oIG" = ( /turf/simulated/shuttle/wall/no_join{ base_state = "orange"; @@ -47822,7 +48535,7 @@ /area/shuttle/large_escape_pod2/station) "oII" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "oIJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -47838,14 +48551,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "oIK" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "oIL" = ( /obj/structure/salvageable/computer, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "oIN" = ( /obj/machinery/light{ dir = 1; @@ -47858,7 +48571,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "oJi" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -47871,7 +48584,7 @@ name = "Xenobio Telescreen" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "oJu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -47879,13 +48592,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "oJw" = ( /obj/structure/table/standard, /obj/random/maintenance/cargo, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "oJF" = ( /obj/structure/cable{ d1 = 2; @@ -47899,29 +48612,15 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "oJL" = ( /obj/machinery/light{ dir = 8; layer = 3; name = "1W-light fixture" }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/turf/simulated/floor/glass, +/area/hallway/Deck1_Transit_Hall) "oJM" = ( /obj/machinery/artifact_scanpad, /obj/effect/floor_decal/borderfloorwhite{ @@ -47931,7 +48630,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "oJN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -47954,19 +48653,19 @@ pixel_y = -9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "oJT" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "oJV" = ( /obj/machinery/holoposter{ pixel_y = 32 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "oKk" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -47976,7 +48675,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "oKm" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ @@ -47995,7 +48694,7 @@ layer = 2.9 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "oKx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -48015,7 +48714,7 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "oKG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -48030,12 +48729,29 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) +"oKL" = ( +/obj/structure/sign/directions/security{ + pixel_y = 9; + dir = 8; + layer = 3.5 + }, +/obj/structure/sign/directions/science{ + dir = 8; + layer = 3.5 + }, +/obj/structure/sign/directions/command{ + pixel_y = -9; + dir = 8; + layer = 3.5 + }, +/turf/simulated/wall/r_wall, +/area/harbor/Dock3) "oKY" = ( /obj/structure/table/rack, /obj/random/maintenance/security, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "oLb" = ( /obj/random/trash, /obj/structure/cable/green{ @@ -48044,11 +48760,11 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "oLf" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "oLv" = ( /obj/machinery/pipedispenser, /obj/effect/floor_decal/industrial/hatch/blue, @@ -48057,7 +48773,7 @@ pixel_x = -4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "oLF" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -48084,11 +48800,11 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "oLW" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "oMr" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -48108,8 +48824,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "oMI" = ( /obj/random/obstruction, /obj/random/junk, @@ -48119,11 +48838,11 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "oMK" = ( /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/sblucarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "oMN" = ( /obj/item/radio/intercom{ dir = 8; @@ -48137,7 +48856,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "oMZ" = ( /obj/structure/cable{ d1 = 1; @@ -48148,26 +48867,26 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "oNd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "oNg" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "oNx" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "oND" = ( /obj/structure/cable/green{ d1 = 1; @@ -48184,7 +48903,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "oNE" = ( /obj/machinery/disposal/deliveryChute{ dir = 1 @@ -48194,7 +48913,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "oNJ" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/door/window/brigdoor/northleft{ @@ -48210,7 +48929,7 @@ name = "Fueldepo Shutters" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "oOb" = ( /obj/structure/reagent_dispensers/foam, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -48240,7 +48959,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "oOk" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -48254,7 +48973,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "oOo" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -48273,14 +48992,14 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "oOP" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "oOQ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "oPc" = ( /obj/structure/bed/chair/sofa/right/green{ dir = 8 @@ -48292,7 +49011,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "oPi" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -48300,13 +49019,19 @@ /obj/effect/floor_decal/corner/red/border{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "oPm" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "oPt" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -48318,7 +49043,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "oPz" = ( /obj/structure/cable/green{ d1 = 4; @@ -48338,7 +49063,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "oPN" = ( /turf/simulated/wall/thull, /area/shuttle/ursula) @@ -48347,7 +49072,7 @@ dir = 1 }, /turf/simulated/floor/carpet/sblucarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "oQZ" = ( /obj/structure/shuttle/engine/heater, /obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ @@ -48371,11 +49096,11 @@ faction = "nanotrasen" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "oRD" = ( /obj/random/plushielarge, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "oRK" = ( /obj/machinery/light/small/emergency{ dir = 4 @@ -48396,7 +49121,7 @@ pixel_y = 7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "oSp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -48405,7 +49130,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "oSA" = ( /obj/structure/shuttle/engine/heater, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -48419,34 +49144,34 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "oSC" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "oSD" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/closet/crate/freezer, /obj/random/maintenance/cargo, /obj/random/maintenance/engineering, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "oSV" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8; color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "oSW" = ( /obj/random/mainttoyloot, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "oTb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "oTi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -48462,7 +49187,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Deck1_Transit_Hall) "oTq" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -48471,14 +49196,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "oTt" = ( /obj/vehicle/train/trolley{ dir = 1 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "oTv" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -48488,13 +49213,13 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "oTz" = ( /obj/structure/bed/chair/wheelchair/smallmotor, /obj/effect/floor_decal/industrial/hatch/blue, /obj/structure/window/basic, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "oTH" = ( /obj/machinery/computer/area_atmos/tag{ dir = 8; @@ -48512,14 +49237,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "oUc" = ( /obj/structure/disposalpipe/sortjunction/wildcard/flipped, /obj/structure/sign/directions/cryo{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "oUe" = ( /obj/structure/window/plastitanium/full, /obj/structure/window/reinforced/survival_pod{ @@ -48545,14 +49270,14 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "oUq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "oUr" = ( /obj/structure/table/rack{ dir = 8; @@ -48590,7 +49315,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "oVg" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -48606,12 +49331,12 @@ pixel_x = -32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "oVh" = ( /obj/random/trash, /obj/random/junk, /turf/simulated/floor/grass2/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "oVm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -48628,14 +49353,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "oVP" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "oVU" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "oVV" = ( /obj/structure/table/woodentable, /obj/item/deck/holder{ @@ -48648,22 +49373,22 @@ name = "curtain" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "oWj" = ( /obj/structure/table/reinforced, /obj/item/clipboard, /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "oWD" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "oWG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "oWJ" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -48676,28 +49401,19 @@ pixel_x = 3 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay4) -"oXc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/harbor/Ship_Bay4) "oXp" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "oXr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "oXs" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/cable{ @@ -48715,10 +49431,10 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "oXv" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "oXx" = ( /obj/structure/cable/green{ d1 = 1; @@ -48743,7 +49459,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "oXE" = ( /obj/machinery/alarm{ dir = 8; @@ -48756,17 +49472,17 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "oXM" = ( -/obj/machinery/vending/desatti, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/vending/fooddessert, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "oXY" = ( /obj/machinery/doorbell_chime{ id_tag = "sc-ChimeCar" @@ -48777,7 +49493,7 @@ icon_state = "4-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "oYt" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -48794,7 +49510,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "oYM" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/loading/blue{ @@ -48813,7 +49529,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "oYR" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -48837,7 +49553,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "oZe" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -48847,13 +49563,13 @@ /obj/machinery/door/airlock/maintenance/common, /obj/item/tape/police, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "oZf" = ( /obj/effect/floor_decal/stairs{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "oZl" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -48865,7 +49581,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "oZp" = ( /obj/machinery/status_display{ name = "W-status display"; @@ -48881,7 +49597,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "oZt" = ( /obj/structure/closet/crate{ dir = 2 @@ -48889,7 +49605,7 @@ /obj/random/junk, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "oZu" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -48898,14 +49614,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "oZD" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/effect/decal/cleanable/generic, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "oZI" = ( /obj/structure/bed/chair/wood/wings{ dir = 8 @@ -48914,10 +49630,10 @@ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "oZJ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1) +/area/maintenance/Deck1_Security_PortChamber1) "oZY" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -48930,20 +49646,20 @@ "pat" = ( /obj/structure/railing, /turf/simulated/floor/water/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "paG" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "paK" = ( /obj/structure/disposalpipe/sortjunction/wildcard/flipped{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/area/maintenance/ab_Kitchen) "paZ" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -48969,7 +49685,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "pbv" = ( /obj/structure/cable{ d1 = 1; @@ -48978,14 +49694,14 @@ }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "pbY" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "pcg" = ( /obj/structure/cable/white{ d1 = 1; @@ -48994,7 +49710,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "pco" = ( /obj/machinery/vending/wallmed1{ name = "1N-NanoMed"; @@ -49004,12 +49720,12 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "pcw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "pcB" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -49018,7 +49734,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "pcE" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -49032,7 +49748,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "pcL" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -49042,7 +49758,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "pda" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -49052,13 +49768,13 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "pdf" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "pdh" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "pdi" = ( /obj/structure/table/standard, /obj/random/soap, @@ -49071,11 +49787,11 @@ pixel_y = -30 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "pdr" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "pdG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -49090,11 +49806,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "pdH" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "pej" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -49104,7 +49820,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "peo" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 @@ -49131,7 +49847,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "peB" = ( /obj/machinery/power/port_gen/pacman, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -49141,7 +49857,7 @@ }, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Harbor_Substation) +/area/maintenance/Harbor_Substation) "peL" = ( /obj/machinery/button/remote/airlock{ desiredstate = 1; @@ -49170,7 +49886,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "pfd" = ( /obj/machinery/access_button{ command = "cycle_interior"; @@ -49207,7 +49923,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "pfw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 @@ -49217,11 +49933,11 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "pfy" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "pfC" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ @@ -49231,7 +49947,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "pfD" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -49242,24 +49958,15 @@ /obj/machinery/door/airlock/angled_bay/external/glass, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "pgb" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) -"pgd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/hallway/Port_1Deck_Atrium) "pgf" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -49269,35 +49976,35 @@ /obj/machinery/door/airlock/maintenance/common, /obj/item/tape/engineering, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "pgl" = ( /obj/structure/table/rack, /obj/random/maintenance/security, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "pgq" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "pgv" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "pgz" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "pgA" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "pgI" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "phf" = ( /obj/random/meat, /obj/random/meat, @@ -49314,7 +50021,7 @@ /obj/random/meat, /obj/random/meat, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "phi" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -49351,7 +50058,7 @@ name = "Fueldepo Shutters" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "phC" = ( /obj/structure/cable/green{ d1 = 1; @@ -49359,21 +50066,21 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "phK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "phV" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/structure/table/glass, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "pid" = ( /obj/structure/table/standard, /obj/item/flashlight/lamp{ @@ -49390,7 +50097,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "pie" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -49412,11 +50119,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "pik" = ( /obj/random/flashlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "pil" = ( /obj/effect/catwalk_plated/white, /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ @@ -49427,7 +50134,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "pir" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/head/fishing, @@ -49437,19 +50144,19 @@ /obj/random/donkpocketbox, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "piw" = ( /obj/structure/bed/chair/oldsofa/left, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "piJ" = ( /obj/machinery/transhuman/resleever, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "piM" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "pje" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/steeldecal/steel_decals9, @@ -49467,14 +50174,14 @@ name = "1N-AI display" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "pjh" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "pjk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -49490,7 +50197,7 @@ req_access = list(7) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "pjq" = ( /obj/structure/table/rack{ dir = 8; @@ -49526,18 +50233,18 @@ /obj/machinery/door/window/westleft, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "pjy" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 }, /obj/random/junk, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "pjC" = ( /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "pjJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -49558,7 +50265,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "pjY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -49579,7 +50286,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "pjZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -49591,13 +50298,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "pkh" = ( /obj/effect/floor_decal/corner/white{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "pkx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -49618,14 +50325,14 @@ frequency = 1380 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "pkG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "pkU" = ( /obj/structure/sign/warning/evac, /turf/simulated/shuttle/wall/no_join{ @@ -49654,11 +50361,11 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "pkX" = ( /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "ple" = ( /obj/structure/table/rack/shelf, /obj/random/soap, @@ -49667,7 +50374,7 @@ /obj/random/mainttoyloot, /obj/random/forgotten_tram, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "plm" = ( /obj/structure/cable/green{ d1 = 2; @@ -49685,14 +50392,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "plp" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/loading/blue, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "plz" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -49713,7 +50420,7 @@ frequency = 1380 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "plK" = ( /obj/structure/cable/green{ d1 = 2; @@ -49733,10 +50440,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "pmj" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "pmq" = ( /obj/structure/table/standard, /obj/item/stock_parts/subspace/sub_filter{ @@ -49764,11 +50471,15 @@ pixel_x = 7 }, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "pmy" = ( /obj/machinery/door/window/northright, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "pmB" = ( /obj/machinery/station_map{ dir = 1; @@ -49782,7 +50493,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "pmK" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -49805,13 +50516,13 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "pmM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "pmP" = ( /obj/structure/cable/white{ d1 = 2; @@ -49830,7 +50541,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "pmR" = ( /obj/structure/cable/green{ d1 = 4; @@ -49847,7 +50558,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "png" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -49857,11 +50568,15 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "pni" = ( /obj/random/trash, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "pnv" = ( /obj/machinery/alarm{ dir = 4; @@ -49881,7 +50596,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "pnz" = ( /obj/random/trash, /obj/structure/cable{ @@ -49890,7 +50605,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "pnK" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -49901,7 +50616,7 @@ /obj/effect/map_helper/airlock/door/int_door, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "pnQ" = ( /obj/structure/railing/grey{ dir = 8 @@ -49909,7 +50624,7 @@ /obj/random/maintenance/clean, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "pnZ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -49918,7 +50633,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "pog" = ( /obj/structure/cable/green{ d1 = 1; @@ -49926,7 +50641,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "pon" = ( /obj/structure/cable/green{ d1 = 1; @@ -49942,11 +50657,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "pop" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "poy" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4 @@ -49957,7 +50672,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "poW" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -49979,7 +50694,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "poY" = ( /obj/machinery/disposal, /obj/item/radio/intercom{ @@ -49992,15 +50707,15 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "pph" = ( /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "ppq" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "ppt" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -50009,7 +50724,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "ppv" = ( /obj/structure/cable{ d1 = 1; @@ -50019,7 +50734,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "ppN" = ( /obj/structure/cable{ d1 = 4; @@ -50030,23 +50745,8 @@ /obj/random/maintenance/clean, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "ppQ" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -27; - pixel_y = 12; - name = "W-light switch"; - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -50054,11 +50754,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "ppT" = ( /obj/structure/sign/atmos_n2, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "ppV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -50068,21 +50768,21 @@ /obj/machinery/door/airlock/maintenance/common, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "ppW" = ( /obj/structure/bed/chair/sofa/teal{ dir = 4 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "pqd" = ( /obj/structure/salvageable/computer_os, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "pqk" = ( /obj/structure/loot_pile/maint/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "pqt" = ( /obj/structure/table/rack{ dir = 8; @@ -50119,7 +50819,7 @@ /obj/effect/floor_decal/industrial/hatch/blue, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "pqI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -50128,14 +50828,14 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "pre" = ( /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "prh" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "prB" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -50147,7 +50847,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "prK" = ( /obj/structure/cable/green{ d1 = 4; @@ -50169,30 +50869,36 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "prY" = ( /obj/effect/catwalk_plated/dark, /obj/machinery/door_timer{ pixel_y = -32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "psa" = ( /obj/structure/table/sifwoodentable, /obj/random/maintenance/foodstuff, -/turf/simulated/floor/wood/alt/panel/broken, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel/broken{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen broken" + }, +/area/maintenance/ab_Kitchen) "psu" = ( /obj/structure/flora/rocks2, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "psG" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "psM" = ( /turf/simulated/wall/rplastihull, /area/shuttle/needle) @@ -50201,7 +50907,7 @@ /obj/structure/table/rack, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "ptP" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -50218,11 +50924,15 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "ptX" = ( /obj/structure/bed/chair/sofa/lime, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "pum" = ( /obj/effect/overmap/visitable/ship/landable/spacebus, /turf/simulated/floor/tiled/dark, @@ -50233,7 +50943,7 @@ icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "puG" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -50242,16 +50952,16 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "puZ" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "pvc" = ( /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1) +/area/maintenance/Deck1_Security_PortChamber1) "pvg" = ( /obj/structure/cable/green{ d1 = 1; @@ -50284,10 +50994,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "pvi" = ( -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "pvk" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -50308,7 +51020,7 @@ req_one_access = list(48) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "pvv" = ( /obj/structure/table/rack, /obj/random/maintenance/cargo, @@ -50317,25 +51029,27 @@ /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "pvA" = ( /obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "pvG" = ( /obj/structure/railing, /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/water/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "pvH" = ( /obj/structure/railing, /obj/structure/flora/lily3, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "pwh" = ( /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "pwx" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -50369,11 +51083,11 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "pwH" = ( /obj/structure/railing, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "pwO" = ( /obj/structure/cable/green{ d1 = 2; @@ -50392,7 +51106,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "pwQ" = ( /obj/vehicle/train/trolley{ dir = 1 @@ -50402,11 +51116,11 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "pwU" = ( /obj/structure/bed/chair/sofa/right/beige, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "pwY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -50415,7 +51129,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "pxn" = ( /obj/structure/cable/green{ d1 = 4; @@ -50428,7 +51142,18 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) +"pxJ" = ( +/obj/machinery/disposal/wall/cleaner{ + name = "1W-Resleeving lost & found bin"; + dir = 4; + pixel_x = -34 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/kafel_full/blue, +/area/crew_quarters/For_Restroom) "pxK" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -50448,7 +51173,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "pxO" = ( /obj/machinery/button/remote/blast_door{ id = "sc-GCcustodian"; @@ -50462,7 +51187,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "pyf" = ( /obj/structure/cable/blue{ d1 = 4; @@ -50477,7 +51202,7 @@ pixel_x = -22 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "pyu" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -50486,7 +51211,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "pyv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/structure/cable/white{ @@ -50498,11 +51223,13 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "pzk" = ( /obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "pzK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -50513,11 +51240,11 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "pzO" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "pAh" = ( /obj/structure/bed/chair/backed_red{ dir = 1 @@ -50528,7 +51255,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "pAi" = ( /obj/structure/cable/green{ d1 = 1; @@ -50547,7 +51274,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "pAj" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -50562,11 +51289,11 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "pAv" = ( /obj/effect/floor_decal/techfloor/orange, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "pBg" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -50580,7 +51307,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "pBm" = ( /obj/structure/closet/crate, /obj/random/trash, @@ -50593,7 +51320,7 @@ pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "pBr" = ( /obj/machinery/alarm{ dir = 4; @@ -50613,18 +51340,18 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "pBL" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "pBN" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "pBU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -50645,7 +51372,7 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "pCf" = ( /obj/structure/closet/emcloset, /obj/structure/disposalpipe/segment{ @@ -50655,12 +51382,12 @@ /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "pCm" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/blue/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "pCu" = ( /obj/effect/floor_decal/rust, /obj/random/plushie{ @@ -50671,7 +51398,7 @@ pixel_x = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "pCA" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/white/border, @@ -50679,7 +51406,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "pCF" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -50688,7 +51415,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "pCS" = ( /obj/structure/cable{ d1 = 1; @@ -50705,7 +51432,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "pDa" = ( /obj/machinery/airlock_sensor{ pixel_x = -24; @@ -50722,7 +51449,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "pDf" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 @@ -50731,14 +51458,14 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "pDj" = ( /obj/machinery/camera/network/security{ c_tag = "D1-Com-Public EVA1"; network = list("Commons") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "pDq" = ( /obj/effect/floor_decal/rust, /obj/machinery/alarm{ @@ -50747,15 +51474,15 @@ /obj/item/gun/energy/mouseray, /obj/structure/table/reinforced, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "pDC" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "pDM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "pDN" = ( /obj/structure/cable/green{ d1 = 1; @@ -50767,11 +51494,11 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "pDP" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "pEf" = ( /obj/machinery/computer/teleporter{ dir = 2 @@ -50783,7 +51510,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "pEn" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -50797,7 +51524,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "pEp" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/he3, @@ -50813,7 +51540,7 @@ pixel_x = 22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "pEH" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/cable/green{ @@ -50832,28 +51559,32 @@ }, /obj/effect/catwalk_plated/dark, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "pFw" = ( /obj/item/clothing/under/swimsuit/stripper, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "pFA" = ( /obj/structure/loot_pile/maint/technical, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "pFH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/machinery/light{ + dir = 1; + name = "1N-lighting fixture" + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/structure/sign/poster/nanotrasen{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/maintenance/Deck1_Star_Corridor) "pFS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -50866,7 +51597,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "pFU" = ( /turf/space, /area/shuttle/escape/station) @@ -50883,13 +51614,13 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "pGf" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "pHp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -50899,13 +51630,13 @@ /obj/machinery/door/airlock/angled_bay/external/glass, /obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "pHw" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "pHG" = ( /obj/machinery/chemical_dispenser/full{ density = 1; @@ -50919,7 +51650,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "pHO" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -50938,7 +51669,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "pIi" = ( /obj/structure/cable/green{ d1 = 4; @@ -50962,7 +51693,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "pIs" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -50970,7 +51701,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "pIt" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -28; @@ -50985,7 +51716,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "pID" = ( /obj/machinery/button/remote/blast_door{ dir = 1; @@ -50996,7 +51727,7 @@ }, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "pJj" = ( /obj/structure/cable/white{ d1 = 1; @@ -51004,7 +51735,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "pJy" = ( /obj/structure/table/glass, /obj/machinery/reagentgrinder{ @@ -51023,30 +51754,30 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "pJz" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "pJE" = ( /obj/effect/floor_decal/corner/purple/diagonal, /obj/effect/floor_decal/borderfloorwhite{ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "pJL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) "pJP" = ( /obj/effect/floor_decal/industrial/loading/blue{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "pJT" = ( /obj/structure/cable/green{ d1 = 2; @@ -51063,7 +51794,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "pJV" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 @@ -51073,7 +51804,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "pKk" = ( /obj/item/bee_pack{ pixel_y = 5; @@ -51085,7 +51816,7 @@ icon_state = "mfloor4" }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "pKy" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -51093,7 +51824,7 @@ network = list("Harbor") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "pKG" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -51101,7 +51832,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "pKZ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -51118,7 +51849,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "pLd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -51133,11 +51864,11 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "pLl" = ( /obj/random/trash, /turf/simulated/floor/grass2/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "pLm" = ( /obj/machinery/vending/hydroseeds, /obj/machinery/firealarm{ @@ -51145,7 +51876,7 @@ name = "N-fire alarm" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "pLx" = ( /obj/effect/floor_decal/industrial/stand_clear/red{ dir = 4 @@ -51165,11 +51896,11 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "pLG" = ( /obj/machinery/holoposter, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "pLO" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -51193,7 +51924,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "pLY" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/outline/yellow, @@ -51203,7 +51934,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "pMa" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -51217,29 +51948,29 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "pMl" = ( /obj/structure/table/woodentable, /obj/effect/floor_decal/spline/plain, /obj/random/drinkbottle, /turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "pMq" = ( /obj/effect/floor_decal/industrial/loading/white{ dir = 8 }, /turf/simulated/floor/grass2/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "pMx" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "pML" = ( /obj/structure/closet/crate/mimic/closet/safe, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "pNX" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -51255,22 +51986,24 @@ dir = 4 }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "pOa" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "pOj" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/structure/flora/ausbushes/ppflowers, /obj/item/seeds/rose{ icon_state = "seed" }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "pOq" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -51282,7 +52015,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "pOw" = ( /obj/structure/table/steel, /obj/item/storage/box/mousetraps{ @@ -51306,7 +52039,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "pOy" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -51315,7 +52048,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "pOz" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -51327,7 +52060,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "pOF" = ( /obj/machinery/light{ dir = 4; @@ -51344,7 +52077,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "pOI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -51376,11 +52109,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "pOM" = ( /obj/structure/disposalpipe/sortjunction/wildcard/flipped, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "pOR" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 6 @@ -51392,13 +52125,13 @@ /obj/item/lightreplacer, /obj/item/lightreplacer, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "pOT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "pOZ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -51454,30 +52187,36 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "pPi" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "pPl" = ( /obj/structure/sign/level/one/large, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "pPs" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "pPv" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, +/obj/machinery/door/blast/shutters{ + dir = 8; + layer = 3.5; + name = "Market Stall Shutters"; + id = "sc-GCMarket6" + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "pPx" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 @@ -51485,20 +52224,28 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) +"pPE" = ( +/obj/machinery/button/remote/blast_door{ + id = "sc-GCMarket2"; + name = "Market Shutters Control"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/maintenance/Market_Stall_2) "pPG" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "pPL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "pPV" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/cable/green{ @@ -51519,43 +52266,29 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "pPZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "pQg" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/structure/dispenser/oxygen, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "pQF" = ( -/obj/machinery/cell_charger{ - pixel_y = 11 - }, -/obj/machinery/recharger{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/cell/device{ - pixel_y = -4; - pixel_x = 8 - }, -/obj/item/cell/device{ - pixel_x = 8 - }, -/obj/structure/table/standard, /obj/effect/floor_decal/corner/purple/diagonal, /obj/effect/floor_decal/corner/purple/diagonal{ dir = 4 }, +/obj/machinery/smartfridge/secure/extract, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "pQL" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "pQM" = ( /obj/structure/table/rack{ dir = 8; @@ -51591,11 +52324,11 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "pRi" = ( /obj/effect/decal/cleanable/filth, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "pRn" = ( /obj/structure/closet/lasertag/red, /obj/item/tvcamera{ @@ -51607,17 +52340,17 @@ name = "hyperball camera drone" }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "pRx" = ( /obj/effect/catwalk_plated/dark, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "pRR" = ( /obj/structure/table/steel, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "pRV" = ( /obj/structure/cable/green{ d1 = 1; @@ -51639,8 +52372,9 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Deck1_Transit_Hall) "pSs" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port{ frequency = 1380; @@ -51652,23 +52386,23 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "pSA" = ( /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "pSB" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "pSW" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "pSX" = ( /obj/machinery/power/apc{ dir = 1; @@ -51680,11 +52414,11 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "pSZ" = ( /obj/random/junk, /turf/simulated/floor/grass2/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "pTi" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -51702,11 +52436,11 @@ }, /obj/structure/table/reinforced, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "pTA" = ( /obj/effect/catwalk_plated/white, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "pTD" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -51714,8 +52448,12 @@ }, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "pTF" = ( /obj/machinery/alarm{ dir = 8; @@ -51723,7 +52461,7 @@ }, /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "pTK" = ( /obj/effect/floor_decal/industrial/stand_clear/blue, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ @@ -51736,7 +52474,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "pUe" = ( /obj/machinery/alarm{ dir = 8; @@ -51749,7 +52487,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "pUx" = ( /obj/structure/cable/green{ d1 = 1; @@ -51768,20 +52506,18 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "pUA" = ( /obj/structure/table/reinforced, /obj/item/taperecorder{ pixel_y = 7; pixel_x = 7 }, -/obj/item/tape{ - pixel_y = -1; - pixel_x = 6 +/obj/item/rectape{ + pixel_y = -3 }, -/obj/item/tape{ - pixel_y = -4; - pixel_x = 6 +/obj/item/rectape{ + pixel_y = -3 }, /obj/item/camera_film{ pixel_y = 10; @@ -51808,13 +52544,13 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "pUN" = ( /obj/machinery/holoposter{ pixel_y = 32 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "pUR" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/random{ @@ -51841,16 +52577,16 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "pVd" = ( /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "pVn" = ( /obj/structure/table/steel, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "pVp" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable{ @@ -51858,13 +52594,12 @@ d2 = 0; icon_state = "16-0" }, -/obj/structure/cable, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "pVq" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -51872,7 +52607,7 @@ network = list("Commons") }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "pVs" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -51886,12 +52621,12 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "pVD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "pVE" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -51914,7 +52649,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "pVQ" = ( /obj/machinery/teleport/hub, /obj/effect/floor_decal/borderfloorblack{ @@ -51924,7 +52659,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "pVV" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -51932,11 +52667,11 @@ /obj/structure/table/standard, /obj/random/toolbox, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "pWf" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "pWm" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -51945,7 +52680,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "pWo" = ( /obj/effect/floor_decal/stairs{ dir = 1 @@ -51956,7 +52691,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "pWJ" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -51964,30 +52699,30 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "pWK" = ( /obj/structure/table/steel, /obj/random/junk, /obj/random/maintenance/clean, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "pWV" = ( /obj/structure/bed/chair/bay, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "pWX" = ( /obj/structure/bed/chair/sofa/left/beige{ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "pWY" = ( /obj/structure/window/basic{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "pWZ" = ( /obj/structure/cable/green{ d1 = 1; @@ -51998,7 +52733,7 @@ dir = 4 }, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "pXb" = ( /obj/structure/closet/emcloset, /obj/machinery/camera/network/security{ @@ -52007,11 +52742,15 @@ network = list("Commons") }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "pXd" = ( /obj/machinery/vending/dinnerware, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "pXi" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -52022,7 +52761,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "pXn" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -52048,7 +52787,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "pXo" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -52056,14 +52795,17 @@ id = "sc-WTcustodian" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "pXp" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, +/mob/living/simple_mob/animal/passive/mimepet/gregory{ + pixel_y = 11 + }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "pXL" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -52072,7 +52814,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "pYf" = ( /obj/item/flame/candle/candelabra/everburn{ pixel_y = -6; @@ -52086,8 +52828,10 @@ nutriment_amt = 1 }, /obj/structure/table/fancyblack, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "pYg" = ( /obj/structure/table/bench/sifwooden/padded, /obj/machinery/camera/network/security{ @@ -52096,7 +52840,7 @@ network = list("Harbor") }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "pYn" = ( /obj/machinery/cryopod{ dir = 2 @@ -52112,7 +52856,7 @@ "pYp" = ( /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "pYC" = ( /obj/machinery/light{ dir = 8; @@ -52120,7 +52864,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "pYM" = ( /obj/structure/cable/green{ d1 = 2; @@ -52139,15 +52883,19 @@ d2 = 8; icon_state = "1-8" }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "pZd" = ( /obj/random/maintenance/cargo, /obj/random/maintenance/cargo, /obj/structure/table/rack/steel, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "pZe" = ( /obj/structure/cable/green{ d1 = 1; @@ -52166,8 +52914,12 @@ /obj/effect/floor_decal/corner/white/bordercorner{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "pZh" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -52178,14 +52930,14 @@ id_tag = "sc-RagecageINT" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "pZo" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/effect/floor_decal/corner/orange/border{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "pZy" = ( /obj/machinery/computer/security/telescreen{ desc = "Used to monitor the proceedings inside the test chamber."; @@ -52195,7 +52947,7 @@ req_one_access = list(47) }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "pZP" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -52223,13 +52975,13 @@ name = "lightsout" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "pZZ" = ( /obj/structure/table/standard, /obj/item/flash, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "qan" = ( /obj/structure/anomaly_container, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -52240,11 +52992,11 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "qas" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "qbg" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/light{ @@ -52253,13 +53005,17 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) +"qbh" = ( +/obj/structure/ghost_pod/ghost_activated/maintpred, +/turf/simulated/floor/plating, +/area/maintenance/ab_SportsField) "qbv" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "qbI" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/directions/evac{ @@ -52267,7 +53023,7 @@ pixel_y = 10 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "qcp" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ color = "#989898" @@ -52279,17 +53035,17 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "qcw" = ( /obj/structure/table/glass, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "qcA" = ( /obj/effect/landmark{ name = "maint_pred" }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "qcJ" = ( /obj/machinery/light/small{ dir = 8 @@ -52298,7 +53054,7 @@ /obj/random/maintenance/cargo, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "qcS" = ( /obj/structure/cable{ d1 = 1; @@ -52306,7 +53062,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "qdn" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -52320,7 +53076,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "qdA" = ( /obj/structure/cable{ d1 = 1; @@ -52329,11 +53085,13 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "qdT" = ( /obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "qed" = ( /obj/structure/cable{ d1 = 4; @@ -52341,7 +53099,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "qee" = ( /obj/structure/mopbucket, /obj/item/mop/advanced, @@ -52357,15 +53115,20 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "qev" = ( /obj/structure/table/sifwoodentable, /obj/item/flashlight/lamp/green{ pixel_y = 3; on = 0 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/machinery/light_construct, +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "qeF" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -52373,7 +53136,7 @@ id = "sc-WTmaintgamble1" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "qeQ" = ( /obj/structure/bed/chair/backed_red{ dir = 1 @@ -52384,7 +53147,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "qfb" = ( /obj/structure/bed/chair/backed_red{ dir = 8 @@ -52394,7 +53157,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "qfh" = ( /obj/structure/cable/green{ d1 = 1; @@ -52405,7 +53168,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "qfl" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -52422,36 +53185,31 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "qfv" = ( /obj/structure/ore_box, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "qfE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 + dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "qgd" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "qge" = ( /obj/effect/floor_decal/corner/white{ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "qgf" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, @@ -52460,16 +53218,16 @@ pixel_y = -22 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "qgk" = ( /obj/random/maintenance/medical, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "qgm" = ( /obj/random/trash_pile, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "qgA" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -52490,16 +53248,16 @@ frequency = 1380 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "qgD" = ( /obj/structure/table/marble, /obj/random/maintenance/foodstuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "qgI" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "qgR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -52513,7 +53271,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "qgY" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -52522,7 +53280,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "qhf" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -52536,7 +53294,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "qhi" = ( /obj/structure/window/phoronreinforced/full, /obj/structure/window/reinforced/survival_pod{ @@ -52569,7 +53327,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "qhx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -52578,7 +53336,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "qhA" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -52587,7 +53345,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "qhH" = ( /obj/machinery/firealarm{ dir = 4; @@ -52609,21 +53367,25 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "qhL" = ( /obj/structure/bed/chair/sofa/lime{ dir = 8 }, /obj/random/junk, -/turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "qhT" = ( /obj/machinery/light/small{ dir = 1 }, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "qid" = ( /obj/structure/anomaly_container, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -52634,25 +53396,29 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "qiR" = ( /obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "qjA" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "qjI" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "qjR" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -52661,7 +53427,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "qkc" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -52671,7 +53437,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "qkL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -52681,7 +53447,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "qkX" = ( /turf/simulated/floor/tiled/milspec/raised{ name = "Tcom Server Frame"; @@ -52689,7 +53455,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "qle" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -52707,7 +53473,7 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "qlf" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -52716,7 +53482,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "qlq" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -52724,10 +53490,10 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "qls" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "qlR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -52742,7 +53508,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "qlT" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/borderfloorblack{ @@ -52752,7 +53518,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "qlU" = ( /obj/effect/floor_decal/corner/orange/border{ dir = 1 @@ -52762,11 +53528,21 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "qlW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "qmG" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -52775,7 +53551,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "qmM" = ( /obj/machinery/autolathe, /obj/effect/floor_decal/borderfloorblack{ @@ -52785,13 +53561,13 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "qnf" = ( /obj/machinery/deployable/barrier, /obj/effect/floor_decal/industrial/hatch/red, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "qnv" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -52800,11 +53576,13 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "qnA" = ( /obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "qnC" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ external_pressure_bound = 140; @@ -52813,14 +53591,14 @@ use_power = 1 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "qnJ" = ( /obj/structure/reagent_dispensers/foam, /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "qnM" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/steeldecal/steel_decals9, @@ -52839,7 +53617,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "qnV" = ( /obj/effect/floor_decal/rust, /obj/structure/cable{ @@ -52848,7 +53626,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "qoj" = ( /obj/machinery/alarm{ dir = 1; @@ -52868,11 +53646,11 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "qos" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "qow" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, @@ -52880,7 +53658,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "qoB" = ( /obj/machinery/status_display, /turf/simulated/wall/rthull, @@ -52888,7 +53666,7 @@ "qoJ" = ( /obj/structure/sign/directions/science/xenoarch, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "qoK" = ( /obj/effect/floor_decal/shuttles/right{ dir = 8 @@ -52897,18 +53675,18 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "qoL" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/black/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "qph" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "qpp" = ( /obj/effect/landmark{ name = "carpspawn" @@ -52928,7 +53706,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "qpx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -52940,7 +53718,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "qpB" = ( /obj/structure/sign/directions/engineering{ pixel_y = 9; @@ -52950,16 +53728,16 @@ dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "qpH" = ( /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "qpJ" = ( /obj/item/handcuffs/cable/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "qpK" = ( /obj/machinery/vending/coffee, /obj/effect/floor_decal/borderfloor{ @@ -52969,7 +53747,7 @@ dir = 9 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "qpP" = ( /obj/structure/table/rack, /obj/random/maintenance/research, @@ -52978,7 +53756,7 @@ /obj/random/tech_supply/component, /obj/random/tech_supply/component, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "qpX" = ( /obj/structure/table/rack/shelf/steel, /obj/fiftyspawner/concrete, @@ -52986,18 +53764,18 @@ /obj/fiftyspawner/floor, /obj/fiftyspawner/floor_dark, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "qqv" = ( /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "qqZ" = ( -/obj/turbolift_map_holder/southern_cross/center, +/obj/turbolift_map_holder/soluna_nexus/center, /turf/simulated/floor/plating/eris/under, -/area/SouthernCrossV2/Maints/Room_88) +/area/maintenance/Room_88) "qra" = ( /obj/machinery/mineral/stacking_unit_console, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "qrb" = ( /obj/machinery/light/floortube{ dir = 4 @@ -53009,7 +53787,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "qrg" = ( /obj/structure/cable/green{ d1 = 2; @@ -53024,11 +53802,11 @@ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "qrm" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "qrw" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/power/smes/buildable{ @@ -53046,7 +53824,7 @@ pixel_y = -32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Harbor_Substation) +/area/maintenance/Harbor_Substation) "qrA" = ( /obj/structure/cable/white{ d1 = 2; @@ -53073,7 +53851,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "qrL" = ( /obj/machinery/firealarm{ pixel_y = 25; @@ -53086,32 +53864,27 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "qrN" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "qsh" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "qsy" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ pixel_x = -1; pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "qsN" = ( /obj/structure/cable/white{ d1 = 1; @@ -53119,7 +53892,7 @@ icon_state = "1-2" }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "qtc" = ( /obj/effect/catwalk_plated/dark, /obj/machinery/shipsensors, @@ -53133,13 +53906,13 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "qtA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "qtB" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -53148,7 +53921,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "qtH" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -53177,7 +53950,14 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) +"quc" = ( +/obj/machinery/light{ + dir = 1; + name = "1N-lighting fixture" + }, +/turf/simulated/floor/glass/reinforced, +/area/hallway/ForPort_1_Deck_Observatory) "quf" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -53191,11 +53971,10 @@ }, /obj/machinery/door/airlock/angled_bay/standard/color/security{ dir = 4; - req_one_access = list(19,1); req_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "quj" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -53204,7 +53983,7 @@ /obj/effect/floor_decal/industrial/arrows/blue, /obj/machinery/door/airlock/angled_bay/standard/color/common{ dir = 4; - name = "Starboard Harbor" + name = "Starboard Arrivals Harbor" }, /obj/structure/cable/green{ d1 = 4; @@ -53224,14 +54003,14 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "qur" = ( /obj/machinery/camera/network/security{ dir = 1; c_tag = "D1-Sec-For Stairwell1" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "quH" = ( /obj/structure/table, /obj/item/clothing/under/color/lightbrown, @@ -53241,16 +54020,11 @@ }, /obj/random/trash, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "quN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, +/obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/maintenance/Market_Stall_1) "qvw" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -53264,7 +54038,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "qvD" = ( /obj/machinery/firealarm{ dir = 1; @@ -53274,7 +54048,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "qwb" = ( /obj/machinery/computer/general_air_control{ dir = 4; @@ -53289,11 +54063,11 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "qwr" = ( /obj/structure/frame/computer, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "qwt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -53303,11 +54077,11 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "qwH" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "qwQ" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4 @@ -53318,7 +54092,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "qwZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -53329,18 +54103,18 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "qxl" = ( /obj/machinery/light_construct/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "qxq" = ( /obj/structure/disposaloutlet{ dir = 4 }, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "qxt" = ( /obj/structure/cable/green{ d1 = 1; @@ -53358,14 +54132,14 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "qyi" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "qyU" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "qyZ" = ( /obj/structure/window/plastitanium/full, /obj/structure/window/reinforced/survival_pod{ @@ -53393,7 +54167,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "qzT" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -53423,7 +54197,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "qAp" = ( /obj/structure/cable/green{ d1 = 4; @@ -53454,12 +54228,12 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "qAr" = ( /obj/random/crate, /obj/item/batterer, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "qAD" = ( /obj/structure/cable/green{ d1 = 4; @@ -53482,7 +54256,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "qBC" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/camera/network/security{ @@ -53490,11 +54264,11 @@ c_tag = "D1-Sec-Teleport Room2" }, /turf/simulated/shuttle/floor/voidcraft/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "qBK" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "qCc" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -53504,10 +54278,10 @@ }, /obj/effect/catwalk_plated/white, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "qCx" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "qCN" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -53534,7 +54308,7 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "qCT" = ( /obj/machinery/computer/security{ dir = 1 @@ -53558,7 +54332,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "qDn" = ( /obj/structure/bed/chair/bay/shuttle, /obj/structure/closet/walllocker/emerglocker/north, @@ -53572,7 +54346,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "qDy" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1 @@ -53587,7 +54361,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "qDG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -53604,29 +54378,29 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "qDQ" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "qEx" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/industrial/danger/corner, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "qFn" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "qFH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "qFZ" = ( /obj/item/laserdome_flag/blue, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "qGg" = ( /obj/structure/closet/walllocker/emerglocker{ pixel_x = -25; @@ -53643,6 +54417,13 @@ }, /turf/simulated/floor, /area/shuttle/needle) +"qGi" = ( +/obj/machinery/light{ + dir = 1; + name = "1N-lighting fixture" + }, +/turf/simulated/floor/tiled, +/area/maintenance/Market_Stall_2) "qGs" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -53654,7 +54435,7 @@ }, /obj/item/tape/engineering, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "qGt" = ( /obj/machinery/vending/snix, /obj/item/radio/intercom{ @@ -53669,7 +54450,7 @@ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "qGK" = ( /obj/machinery/light{ dir = 4; @@ -53688,7 +54469,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "qGN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -53706,7 +54487,7 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "qGO" = ( /obj/structure/bed/chair/wheelchair/motor, /obj/effect/floor_decal/industrial/hatch/blue, @@ -53715,7 +54496,7 @@ }, /obj/structure/window/basic, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "qGW" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/white{ @@ -53727,7 +54508,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "qHd" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -53756,7 +54537,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "qHr" = ( /obj/structure/closet/walllocker/emerglocker{ dir = 1; @@ -53785,7 +54566,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "qHA" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 @@ -53797,13 +54578,13 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "qHB" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "qHG" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -53815,7 +54596,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "qHH" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -53824,7 +54605,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "qHR" = ( /obj/structure/table/glass, /obj/item/extinguisher/mini{ @@ -53840,7 +54621,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "qHU" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -53850,15 +54631,15 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "qId" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "qIe" = ( /obj/structure/bed/chair/oldsofa, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "qIh" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -53868,7 +54649,7 @@ /obj/machinery/door/airlock/maintenance/common, /obj/item/tape/police, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "qIn" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -53878,11 +54659,11 @@ }, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "qIr" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "qIw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -53891,7 +54672,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "qIN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -53915,7 +54696,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "qIQ" = ( /obj/structure/cable/white{ d1 = 4; @@ -53928,7 +54709,7 @@ "qIT" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "qJd" = ( /obj/machinery/power/apc{ dir = 4; @@ -53940,7 +54721,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "qJl" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -53952,7 +54733,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "qJo" = ( /obj/item/stack/material/phoron{ amount = 25; @@ -54006,7 +54787,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "qJu" = ( /obj/effect/floor_decal/industrial/loading{ dir = 8 @@ -54017,7 +54798,7 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "qJV" = ( /obj/structure/cable{ d1 = 4; @@ -54031,13 +54812,13 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "qJW" = ( /obj/machinery/light_construct{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "qKz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 9 @@ -54054,7 +54835,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "qKK" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -54067,7 +54848,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "qKU" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 4 @@ -54082,26 +54863,30 @@ }, /obj/item/clothing/suit/storage/toggle/labcoat/genetics, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "qLs" = ( /obj/structure/table/sifwoodentable, /obj/effect/floor_decal/rust, -/turf/simulated/floor/wood/alt/panel/broken, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "qMd" = ( /obj/structure/table/standard, /obj/random/maintenance/security, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "qMi" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "qMo" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "qMs" = ( /obj/structure/grille, /obj/structure/shuttle/window, @@ -54114,13 +54899,13 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "qNj" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "qNn" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -54130,7 +54915,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "qNt" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -54139,19 +54924,19 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "qNI" = ( /obj/machinery/artifact_analyser{ pixel_x = -5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "qNM" = ( /obj/effect/floor_decal/corner/white{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "qOe" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -54161,7 +54946,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "qOm" = ( /obj/machinery/door/firedoor/border_only, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -54179,7 +54964,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "qOq" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -54194,22 +54979,22 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "qOv" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "qOy" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "qOA" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "qOB" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -54218,11 +55003,11 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "qOM" = ( /obj/structure/sign/level/one/large, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "qOP" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -54231,16 +55016,16 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "qPd" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "qPt" = ( /obj/effect/floor_decal/rust, /obj/structure/grille/rustic, /turf/simulated/floor/bmarble, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "qPv" = ( /obj/machinery/alarm{ dir = 4; @@ -54253,7 +55038,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "qPz" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/white/border, @@ -54261,12 +55046,12 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "qPF" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "qPJ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -54275,7 +55060,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "qPM" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -54305,14 +55090,14 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "qQf" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "qQo" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -54338,7 +55123,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "qQs" = ( /obj/structure/cable/green{ d1 = 1; @@ -54355,7 +55140,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "qQM" = ( /obj/machinery/power/port_gen/pacman, /obj/structure/cable/green{ @@ -54392,7 +55177,7 @@ /obj/effect/floor_decal/corner/brown/bordercorner, /obj/effect/floor_decal/steeldecal/steel_decals_central4, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "qRq" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -54401,7 +55186,7 @@ dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "qRr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ @@ -54409,11 +55194,11 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "qRs" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "qRx" = ( /obj/item/toy/chewtoy/poly, /obj/item/toy/chewtoy/tall/poly{ @@ -54429,7 +55214,7 @@ }, /obj/structure/table/marble, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "qRK" = ( /obj/structure/cable{ d1 = 4; @@ -54437,15 +55222,15 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "qRO" = ( /obj/random/organ, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "qSa" = ( /obj/effect/decal/cleanable/generic, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "qSb" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge, /obj/effect/floor_decal/industrial/hatch/blue, @@ -54456,7 +55241,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "qSj" = ( /obj/structure/railing/grey{ dir = 4 @@ -54468,14 +55253,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "qSC" = ( /obj/structure/sign/directions/science/xenobiology{ pixel_y = -9; dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "qSD" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 @@ -54484,11 +55269,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "qSG" = ( /obj/machinery/particle_smasher, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "qSS" = ( /obj/machinery/alarm{ dir = 1; @@ -54502,13 +55287,13 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "qSV" = ( /obj/structure/table/rack, /obj/random/maintenance/cargo, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "qSZ" = ( /obj/structure/cable/green{ d1 = 1; @@ -54516,7 +55301,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "qTd" = ( /obj/structure/table/steel, /obj/item/photo, @@ -54524,13 +55309,13 @@ /obj/item/disk/nifsoft/compliance, /obj/item/implanter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "qTf" = ( /obj/effect/landmark{ name = "maint_pred" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "qTi" = ( /obj/structure/cable/white{ d1 = 4; @@ -54538,7 +55323,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "qTn" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/random{ @@ -54565,7 +55350,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "qTw" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -54580,13 +55365,17 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "qTI" = ( /obj/structure/bed/chair/backed_red{ dir = 4 }, -/turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "qTP" = ( /obj/structure/cable/white{ d1 = 1; @@ -54607,7 +55396,7 @@ network = list("Science") }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "qTV" = ( /obj/machinery/atmospheric_field_generator/perma/underdoors{ color = "Yellow" @@ -54626,15 +55415,14 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "qTW" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "qUq" = ( -/obj/structure/table/glass, /obj/item/slime_scanner{ pixel_y = 6; pixel_x = -3 @@ -54654,8 +55442,9 @@ pixel_x = -24; dir = 4 }, +/obj/structure/table/standard, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "qUr" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -54664,7 +55453,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "qUw" = ( /obj/structure/table/glass, /obj/structure/flora/pottedplant/crystal{ @@ -54676,14 +55465,16 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "qUN" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "qUU" = ( /obj/effect/floor_decal/arrivals/right, /obj/structure/cable/green{ @@ -54705,14 +55496,14 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "qVf" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "qVj" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "qVn" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Tcoms Subgrid"; @@ -54729,7 +55520,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "qVu" = ( /obj/item/storage/box/lights/mixed{ pixel_y = -4; @@ -54756,10 +55547,10 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "qVz" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "qVB" = ( /obj/item/toy/plushie/black_cat, /obj/item/toy/plushie/carp/electric{ @@ -54788,7 +55579,7 @@ }, /obj/structure/table/marble, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "qVM" = ( /obj/effect/catwalk_plated/white, /obj/machinery/light{ @@ -54796,21 +55587,19 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "qWc" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, +/obj/structure/disposalpipe/segment, +/obj/machinery/vending/weeb, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "qWy" = ( /obj/structure/table/rack/shelf/steel, /obj/fiftyspawner/steel, /obj/fiftyspawner/steel, /obj/fiftyspawner/rods, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "qWB" = ( /obj/structure/anomaly_container, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -54821,7 +55610,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "qWM" = ( /obj/machinery/firealarm{ dir = 8; @@ -54834,10 +55623,15 @@ /obj/effect/floor_decal/corner/red/border{ dir = 8 }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "qWO" = ( /obj/structure/cable/green{ d1 = 1; @@ -54846,8 +55640,9 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "qXe" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -54886,7 +55681,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "qXY" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -54904,7 +55699,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "qXZ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -54913,15 +55708,15 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "qYx" = ( /obj/structure/salvageable/console, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "qYB" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "qYI" = ( /obj/structure/closet/l3closet/general, /obj/effect/floor_decal/corner/purple/diagonal, @@ -54929,7 +55724,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "qYX" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -54938,14 +55733,14 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "qZe" = ( /obj/structure/table/rack/shelf, /obj/random/plushie, /obj/random/mech_toy, /obj/random/maintenance, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "qZk" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/alarm{ @@ -54953,7 +55748,7 @@ pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "qZw" = ( /obj/structure/table/rack{ dir = 8; @@ -55007,14 +55802,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "qZK" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "qZQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -55035,14 +55830,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "rab" = ( /obj/effect/floor_decal/road/center, /obj/effect/floor_decal/road/center{ dir = 8 }, /turf/simulated/floor/grass2/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "rai" = ( /obj/structure/cable/green{ d1 = 1; @@ -55059,14 +55854,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "raD" = ( /obj/machinery/camera/network/security{ c_tag = "D1-Har-4th Dock2"; network = list("Harbor") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "raJ" = ( /obj/structure/cable/white{ d1 = 1; @@ -55077,11 +55872,16 @@ icon_state = "xenobio" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "raV" = ( /obj/structure/closet/secure_closet/personal/cabinet, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/item/tank/emergency/nitrogen/double, +/turf/simulated/floor/wood/alt/panel/broken{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen broken" + }, +/area/maintenance/ab_Kitchen) "raY" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -55093,7 +55893,7 @@ dir = 6 }, /turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "rbb" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -55102,7 +55902,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "rbd" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -55115,10 +55915,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "rbf" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "rbi" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; @@ -55139,7 +55939,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "rbp" = ( /obj/machinery/firealarm{ pixel_y = 25; @@ -55158,7 +55958,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "rbS" = ( /obj/machinery/button/remote/blast_door{ id = "SC-BDxenobiopen4"; @@ -55175,7 +55975,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "rca" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -55205,7 +56005,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "rck" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/borderfloorblack{ @@ -55215,16 +56015,16 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "rcm" = ( /obj/structure/table/rack/shelf, /obj/random/pouch, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "rcs" = ( /obj/machinery/vending/altevian, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "rcu" = ( /obj/structure/window/reinforced/survival_pod{ dir = 1 @@ -55268,11 +56068,11 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "rcI" = ( /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "rcQ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -55285,12 +56085,12 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "rdb" = ( /obj/item/ruinedvirusdish, /obj/random/humanoidremains, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "rdf" = ( /obj/structure/closet/walllocker/emerglocker{ pixel_x = 24; @@ -55315,7 +56115,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "rdl" = ( /obj/structure/cable{ d1 = 1; @@ -55327,7 +56127,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "rdJ" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, @@ -55335,40 +56135,40 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "rdN" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "rdP" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "rdS" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "rdX" = ( /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "rec" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "red" = ( /obj/machinery/light/small, /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "reo" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -55398,7 +56198,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "reC" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 @@ -55410,7 +56210,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "reM" = ( /obj/structure/closet/l3closet/scientist/double, /obj/machinery/ai_status_display{ @@ -55424,17 +56224,17 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "rfe" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 6 }, /obj/effect/floor_decal/techfloor/orange/corner, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "rff" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "rfo" = ( /obj/item/toy/plushie/carp, /obj/item/toy/plushie/corgi{ @@ -55459,7 +56259,7 @@ pixel_x = -3 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "rfz" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -55468,11 +56268,11 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "rfE" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "rfH" = ( /obj/item/gps{ pixel_x = 3; @@ -55503,7 +56303,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/universal, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "rfS" = ( /obj/structure/fuel_port{ pixel_y = -28 @@ -55525,14 +56325,14 @@ /area/shuttle/needle) "rgV" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "rgX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "rhf" = ( /obj/structure/table/rack/shelf, /obj/random/fishing_junk, @@ -55540,40 +56340,42 @@ /obj/random/drinkbottle, /obj/random/maintenance/security, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "rhr" = ( /obj/machinery/light/small{ dir = 8 }, /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "rhu" = ( /obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "rhK" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "rio" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "rip" = ( /obj/structure/flora/pottedplant/dead, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "riu" = ( /obj/effect/floor_decal/rust, /obj/machinery/light_construct{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "riw" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -55595,8 +56397,24 @@ name = "Doorframe mounted flash"; layer = 2.5 }, +/obj/machinery/door/blast/regular/open{ + layer = 3.5; + id = "For Lockdown"; + name = "Lockdown Gate"; + desc = "A heavily reinforced gate, sector lockdown!"; + dir = 4 + }, +/obj/machinery/door/blast/multi_tile/three_tile_hor{ + icon_state = "open"; + layer = 3.5; + id = "SC-BDquantumpad"; + opacity = 0; + density = 0; + name = "Quantumpad Lockdown" + }, +/obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "riG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -55607,7 +56425,7 @@ /obj/structure/barricade/planks, /obj/item/tape/atmos, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "rjg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -55628,7 +56446,7 @@ frequency = 1380 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "rjy" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -55637,10 +56455,10 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "rjC" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "rjI" = ( /obj/structure/cable/green{ d1 = 1; @@ -55658,24 +56476,24 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "rjL" = ( /obj/machinery/clonepod/transhuman/full, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "rkc" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/area/maintenance/ab_Kitchen) "rkp" = ( /obj/structure/table, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "rkG" = ( /obj/machinery/air_sensor{ frequency = 1491; @@ -55683,7 +56501,7 @@ output = 63 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "rkI" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 @@ -55693,7 +56511,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "rkK" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -55707,7 +56525,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "rkV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -55724,7 +56542,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "rls" = ( /obj/structure/cable/green{ d1 = 4; @@ -55743,8 +56561,11 @@ c_tag = "D1-Eng-Substation Exploration1"; network = list("engineering") }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "rlK" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 @@ -55755,7 +56576,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "rlW" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -55767,7 +56588,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "rmj" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/loading/blue{ @@ -55780,7 +56601,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "rmx" = ( /obj/structure/cable/green{ d1 = 4; @@ -55803,7 +56624,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "rmD" = ( /obj/structure/table/darkglass, /obj/machinery/light{ @@ -55817,7 +56638,7 @@ dir = 1 }, /turf/simulated/floor/bmarble, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "rne" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -55826,11 +56647,11 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "rnw" = ( /obj/random/plushielarge, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "rny" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/outline/yellow, @@ -55840,7 +56661,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "rnA" = ( /obj/structure/cable/green{ d1 = 4; @@ -55861,7 +56682,7 @@ }, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "rnB" = ( /obj/structure/table/rack, /obj/random/tech_supply/component, @@ -55869,7 +56690,7 @@ /obj/random/tech_supply/component, /obj/random/tech_supply/component, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "rnD" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 4 @@ -55880,7 +56701,7 @@ pixel_y = -25 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "ros" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -55891,7 +56712,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "roG" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -55906,14 +56727,14 @@ dir = 9 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "roQ" = ( /obj/machinery/atmospherics/valve/shutoff{ name = "Harbor automatic shutoff valve" }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "rpf" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -55922,7 +56743,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "rpo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -55931,7 +56752,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "rpw" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/structure/flora/ausbushes/ppflowers, @@ -55939,22 +56760,24 @@ /obj/item/seeds/lustflower{ icon_state = "seed" }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "rqj" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "rql" = ( /obj/machinery/light/small{ dir = 1 }, /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "rqP" = ( /obj/item/shovel, /obj/item/tool/wrench, @@ -55967,7 +56790,7 @@ pixel_x = -9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "rqS" = ( /obj/structure/cable/white{ d1 = 1; @@ -55975,7 +56798,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "rqT" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 4 @@ -55990,17 +56813,20 @@ pixel_x = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "rqV" = ( /obj/structure/table/sifwoodentable, /obj/random/junk, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "rqZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "rrc" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -56009,7 +56835,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "rrk" = ( /obj/structure/cable/green{ d1 = 1; @@ -56022,14 +56848,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "rrm" = ( /obj/machinery/light{ dir = 1; name = "1N-lighting fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "rrS" = ( /obj/machinery/station_map{ pixel_y = 32; @@ -56042,14 +56868,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "rrU" = ( /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "rse" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "rsg" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 8 @@ -56060,7 +56886,7 @@ /obj/structure/table/reinforced, /obj/item/mindbinder, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "rsi" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Substation - Exploration" @@ -56074,13 +56900,13 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "rsk" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "rsp" = ( /obj/structure/cable/green{ d1 = 1; @@ -56097,7 +56923,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "rsr" = ( /obj/machinery/light/small{ dir = 4 @@ -56105,7 +56931,7 @@ /obj/structure/table/standard, /obj/random/soap, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "rsR" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -56117,11 +56943,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "rsU" = ( /obj/machinery/seed_storage/garden, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "rsV" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -56133,7 +56959,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "rsX" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -56142,10 +56968,10 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "rsY" = ( /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "rtc" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/green/bordercorner, @@ -56153,7 +56979,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "rtw" = ( /obj/structure/cable{ d1 = 1; @@ -56170,7 +56996,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Harbor_Substation) +/area/maintenance/Harbor_Substation) "rtA" = ( /obj/structure/closet/secure_closet/personal, /obj/machinery/light{ @@ -56179,7 +57005,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "rtE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 6 @@ -56194,7 +57020,7 @@ icon_state = "2-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "rtQ" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -56206,7 +57032,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "rtR" = ( /obj/structure/cable/green{ d1 = 1; @@ -56222,7 +57048,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "rtV" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -56232,19 +57058,19 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "rtZ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "rue" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "ruo" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "ruD" = ( /obj/structure/sign/nanotrasen{ icon_rotation = 90 @@ -56259,7 +57085,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "ruU" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -56282,13 +57108,13 @@ }, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "rvd" = ( /obj/effect/landmark{ name = "maint_pred" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "rvh" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -56302,7 +57128,7 @@ network = list("Harbor") }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "rvk" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -56313,21 +57139,21 @@ name = "Stairwell" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "rvl" = ( /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "rvq" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "rvs" = ( /obj/structure/bed/chair/sofa/orange{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "rvL" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ @@ -56346,7 +57172,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "rvS" = ( /obj/structure/table/rack/shelf, /obj/random/soap, @@ -56355,7 +57181,7 @@ /obj/random/forgotten_tram, /obj/random/mainttoyloot, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "rvW" = ( /obj/structure/shuttle/engine/heater, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -56381,11 +57207,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "rwj" = ( /obj/machinery/mineral/processing_unit_console, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "rwr" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -56404,26 +57230,35 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "rwz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/arrows/red{ + dir = 1 }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/obj/effect/floor_decal/industrial/arrows/red, +/obj/machinery/door/airlock/maintenance/sec, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/Deck1_Security_PortCorridor1) "rwG" = ( -/obj/effect/floor_decal/industrial/hatch/blue, -/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Tcoms Substation Bypass" + }, /obj/machinery/status_display{ name = "S-status display"; pixel_y = -32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "rwH" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor{ @@ -56436,17 +57271,17 @@ dir = 8 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "rwN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "rwO" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "rwZ" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -56460,7 +57295,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "rxk" = ( /obj/structure/cable/white{ d1 = 2; @@ -56471,7 +57306,7 @@ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "rxu" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -56482,14 +57317,14 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "rxv" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "rxz" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "rxH" = ( /obj/structure/cable/green{ d1 = 1; @@ -56499,13 +57334,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "rxK" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "rxV" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -56519,7 +57354,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "rya" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -56528,13 +57363,13 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/sec, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "ryj" = ( /obj/structure/table/rack, /obj/random/maintenance/cargo, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "ryl" = ( /obj/machinery/alarm{ dir = 4; @@ -56547,7 +57382,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "ryA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -56566,11 +57401,12 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "ryB" = ( /obj/random/trash_pile, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "rzj" = ( /obj/machinery/gateway{ dir = 8 @@ -56581,11 +57417,11 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "rzI" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/purple, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "rzN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -56596,7 +57432,7 @@ /obj/random/maintenance/research, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "rzO" = ( /obj/structure/closet/secure_closet/security, /obj/machinery/light{ @@ -56610,14 +57446,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "rzW" = ( /obj/structure/table/steel, /obj/random/maintenance/misc, /obj/random/maintenance/morestuff, /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "rAi" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/sign/securearea{ @@ -56635,23 +57471,23 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "rAt" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "rAv" = ( /obj/effect/floor_decal/rust, /mob/living/bot/medbot/mysterious, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "rAB" = ( /obj/structure/salvageable/personal, /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "rBb" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5, /obj/structure/cable/green{ @@ -56663,11 +57499,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "rBj" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "rBm" = ( /obj/machinery/light{ dir = 8 @@ -56698,7 +57537,7 @@ network = list("Harbor") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "rCP" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -56708,14 +57547,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "rDa" = ( /obj/structure/table/rack, /obj/random/maintenance/research, /obj/random/maintenance/research, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "rDe" = ( /obj/structure/cable{ d1 = 4; @@ -56724,13 +57563,13 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "rDj" = ( /obj/random/obstruction, /obj/effect/floor_decal/rust, /obj/random/maintenance/cargo, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "rDz" = ( /obj/structure/bed/chair/sofa/left/orange{ dir = 4 @@ -56740,17 +57579,17 @@ pixel_x = 8 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "rEH" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "rEJ" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "rEN" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1; @@ -56794,9 +57633,25 @@ /turf/simulated/shuttle/floor, /area/shuttle/escape_pod6/station) "rFW" = ( -/obj/structure/closet/crate/mimic/cointoss, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/Telecomms_Foyer) "rGD" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -56811,19 +57666,25 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "rGJ" = ( /obj/machinery/portable_atmospherics/canister/empty/nitrogen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "rGM" = ( /obj/structure/table/marble, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, +/obj/machinery/door/blast/shutters{ + dir = 8; + layer = 3.5; + name = "Market Stall Shutters"; + id = "sc-GCMarket6" + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "rGR" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -56850,15 +57711,15 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "rGT" = ( /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "rGU" = ( /obj/structure/salvageable/server, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "rHo" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -56872,21 +57733,28 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "rHp" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "rHr" = ( /obj/structure/table/marble, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "rHN" = ( /obj/machinery/light/small{ dir = 1 }, /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "rId" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -56895,17 +57763,17 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "rIr" = ( /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "rIs" = ( /obj/structure/table/rack, /obj/random/maintenance/research, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "rIt" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -56917,7 +57785,7 @@ /obj/random/medical/lite, /obj/random/maintenance/medical, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "rIu" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -56948,7 +57816,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "rJe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -56966,7 +57834,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "rJn" = ( /obj/machinery/power/apc{ dir = 8; @@ -56994,7 +57862,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "rJq" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -57002,17 +57870,17 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "rJu" = ( /obj/structure/bed/chair/bay{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "rJz" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "rJE" = ( /obj/structure/cable/green{ d1 = 4; @@ -57029,30 +57897,30 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "rJF" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "rJL" = ( /obj/structure/table/darkglass, /obj/random/trash, /turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "rJV" = ( /obj/structure/table/standard, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "rJY" = ( /obj/machinery/light/small{ dir = 1 }, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "rKj" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/black{ @@ -57064,7 +57932,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "rKl" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -57079,20 +57947,19 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "rKK" = ( /obj/structure/bed/chair/sofa/right/beige{ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "rKO" = ( /obj/structure/table/rack, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "rKR" = ( -/obj/item/geiger/wall/north, /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, @@ -57100,7 +57967,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "rKX" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -57109,15 +57976,17 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "rKZ" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "rLd" = ( /obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "rLt" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -57126,11 +57995,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "rLA" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "rLJ" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -57140,7 +58009,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "rLQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -57157,7 +58026,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "rLV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -57168,11 +58037,8 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "rMi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -57185,18 +58051,18 @@ pixel_y = -12 }, /obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" + d2 = 8; + icon_state = "0-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "rMI" = ( /obj/structure/table/standard, /obj/item/bikehorn/rubberducky/blue{ pixel_y = 3 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "rNq" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -57205,12 +58071,12 @@ pixel_y = -22 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "rNI" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "rOg" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -57219,7 +58085,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "rOG" = ( /obj/machinery/computer/cryopod{ pixel_y = 32 @@ -57231,11 +58097,11 @@ /obj/structure/table/standard, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "rPc" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "rPl" = ( /obj/structure/filingcabinet, /obj/effect/floor_decal/borderfloorblack{ @@ -57245,7 +58111,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "rPG" = ( /obj/item/radio/intercom{ dir = 1; @@ -57253,7 +58119,7 @@ pixel_y = 22 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "rPJ" = ( /obj/structure/cable/green{ d1 = 4; @@ -57270,7 +58136,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "rPV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -57291,21 +58157,26 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "rPX" = ( -/turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "rQv" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/area/maintenance/ab_Kitchen) "rQG" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "rQX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -57325,7 +58196,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "rRc" = ( /obj/structure/bed/chair/wheelchair/smallmotor, /obj/effect/floor_decal/industrial/hatch/blue, @@ -57335,13 +58206,13 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "rRh" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "rRu" = ( /obj/machinery/alarm{ dir = 8; @@ -57350,7 +58221,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "rRz" = ( /obj/item/reagent_containers/syringe/steroid, /obj/item/material/shard{ @@ -57360,7 +58231,7 @@ pixel_x = 7 }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "rRT" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -57369,14 +58240,14 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "rRW" = ( /obj/structure/table/rack, /obj/random/maintenance/misc, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "rRZ" = ( /obj/structure/cable/green{ d1 = 1; @@ -57388,7 +58259,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "rSe" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, @@ -57396,7 +58267,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "rSs" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -57415,11 +58286,11 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "rTg" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "rTk" = ( /obj/item/stool/baystool/padded{ dir = 4 @@ -57429,14 +58300,14 @@ }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "rTM" = ( /obj/item/virusdish/random{ pixel_y = 4 }, /obj/structure/table/reinforced, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "rTO" = ( /obj/structure/cable/green{ d1 = 1; @@ -57449,7 +58320,40 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) +"rTV" = ( +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/double/glass/common{ + dir = 8; + name = "Port Departures Harbor" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/hallway/Aft_1_Deck_Stairwell) "rUl" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor{ @@ -57462,7 +58366,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "rUr" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -57475,7 +58379,7 @@ req_access = list(50) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "rUM" = ( /obj/machinery/status_display{ pixel_x = -32; @@ -57488,7 +58392,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "rUQ" = ( /obj/structure/bed/chair/backed_red{ dir = 1 @@ -57499,7 +58403,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "rVm" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -57508,7 +58412,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "rVo" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 @@ -57531,7 +58435,7 @@ pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "rWq" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -57555,7 +58459,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "rWV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -57578,7 +58482,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "rXo" = ( /obj/structure/cable/green{ d1 = 1; @@ -57600,7 +58504,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "rXw" = ( /obj/structure/shuttle/engine/propulsion/burst, /obj/structure/window/titanium{ @@ -57613,7 +58517,7 @@ /area/shuttle/escape_pod14/station) "rXy" = ( /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "rXG" = ( /obj/machinery/button/remote/blast_door{ dir = 8; @@ -57629,18 +58533,18 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "rXI" = ( /obj/effect/floor_decal/industrial/stand_clear, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "rXN" = ( /obj/structure/disposalpipe/junction{ dir = 4; icon_state = "pipe-j2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "rXO" = ( /obj/machinery/light{ dir = 4; @@ -57665,8 +58569,9 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "rYc" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -57697,7 +58602,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "rYd" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -57711,7 +58616,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "rYh" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -57725,21 +58630,21 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "rYm" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "rYx" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "rZa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "rZA" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -57749,7 +58654,7 @@ /obj/machinery/door/airlock/maintenance/common, /obj/item/tape/police, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "rZP" = ( /obj/structure/window/reinforced/survival_pod, /obj/structure/table/darkglass, @@ -57807,7 +58712,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "saq" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -57827,7 +58732,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "sav" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -57842,20 +58747,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "saD" = ( /obj/machinery/atmospherics/binary/pump/high_power/on{ name = "Supply to PA-Loop pump" }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "saP" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "saS" = ( /obj/machinery/light{ dir = 8; @@ -57863,17 +58768,17 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "saW" = ( /obj/machinery/mineral/processing_unit, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "saX" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "sbh" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -57887,7 +58792,7 @@ name = "N-status display" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "sbm" = ( /obj/effect/floor_decal/corner/purple/diagonal, /obj/effect/floor_decal/borderfloorwhite{ @@ -57897,11 +58802,15 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) +"sbn" = ( +/obj/structure/mob_spawner/mouse_nest, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_AftPort_Chamber3) "sbu" = ( /obj/effect/floor_decal/industrial/bot_outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "sbE" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 10 @@ -57912,10 +58821,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "sbH" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "sbI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloorblack{ @@ -57925,7 +58834,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "sbM" = ( /obj/structure/cable{ d1 = 1; @@ -57933,17 +58842,17 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "sbP" = ( /obj/structure/stairs/spawner/east, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "sbU" = ( /obj/structure/sign/department/xenolab{ desc = "Sign of some important station compartment." }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "sbZ" = ( /obj/structure/table/standard, /obj/item/clothing/glasses/science{ @@ -57966,7 +58875,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "sci" = ( /obj/structure/cable{ d1 = 1; @@ -57986,16 +58895,30 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) +"scl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "sc-GCMarket1"; + name = "Market Shutters Control"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/maintenance/Market_Stall_1) "scC" = ( /obj/machinery/beehive, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "scK" = ( /obj/structure/table/standard, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "scR" = ( /obj/effect/catwalk_plated/white, /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ @@ -58006,7 +58929,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "scX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -58041,7 +58964,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "sda" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -58069,20 +58992,20 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "sdv" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/research, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "sdx" = ( /obj/machinery/status_display, /obj/structure/disposalpipe/segment{ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "sdz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -58096,7 +59019,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "sdH" = ( /obj/structure/girder, /obj/structure/cable{ @@ -58105,7 +59028,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "sdN" = ( /obj/structure/closet/walllocker_double/hydrant/south, /obj/item/storage/firstaid/o2, @@ -58116,7 +59039,7 @@ "sdO" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "sdT" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/ladder/up, @@ -58125,7 +59048,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "sea" = ( /obj/structure/table/marble, /obj/structure/disposalpipe/segment{ @@ -58133,7 +59056,7 @@ }, /obj/structure/sign/poster/nanotrasen, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "seA" = ( /obj/machinery/status_display{ layer = 4; @@ -58154,6 +59077,12 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/escape_pod13/station) +"seB" = ( +/obj/machinery/light{ + name = "1S-light fixture" + }, +/turf/simulated/floor/glass/reinforced, +/area/hallway/AftStar_1_Deck_Observatory) "seD" = ( /obj/machinery/disposal/deliveryChute{ dir = 4 @@ -58166,11 +59095,11 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "seL" = ( /obj/structure/bed/chair/oldsofa, /turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "seO" = ( /obj/structure/cable/green{ d1 = 1; @@ -58189,8 +59118,12 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 8 }, +/obj/machinery/status_display{ + name = "W-status display"; + pixel_x = -32 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "seX" = ( /obj/item/stool/padded{ dir = 1 @@ -58205,13 +59138,13 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "sfj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "sfl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -58223,7 +59156,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "sfz" = ( /obj/machinery/computer/ship/engines, /obj/machinery/light{ @@ -58236,11 +59169,13 @@ dir = 1; pixel_y = -22 }, +/obj/random/trash_pile, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "sfG" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "sfL" = ( /obj/structure/closet/l3closet/virology, /obj/structure/cable/white{ @@ -58249,11 +59184,11 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "sfM" = ( /obj/structure/sign/warning/biohazard, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "sfS" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -58266,14 +59201,14 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Deck1_Transit_Hall) "sgi" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/cable/green{ @@ -58285,7 +59220,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "sgQ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -58294,21 +59229,21 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "sgZ" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "sha" = ( /obj/structure/table/standard, /obj/random/maintenance/research, /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "shl" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "shm" = ( /obj/structure/table/standard, /obj/machinery/light{ @@ -58323,7 +59258,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "shA" = ( /obj/structure/table/reinforced, /obj/machinery/button/remote/blast_door{ @@ -58342,32 +59277,29 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "shF" = ( /obj/structure/table/marble, +/obj/item/spacecasinocash/c10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "shN" = ( /obj/random/soap{ pixel_y = -7 }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 6; - pixel_y = 7 - }, /obj/item/reagent_containers/spray/cleaner{ pixel_y = 7; pixel_x = -6 }, -/obj/structure/table/glass, +/obj/structure/table/standard, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "sic" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "sin" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -58380,11 +59312,21 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "siv" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "six" = ( /obj/structure/table/steel, /obj/item/clothing/gloves/black, @@ -58393,11 +59335,11 @@ }, /obj/random/tech_supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "sjF" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "sjT" = ( /obj/structure/snowman{ color = "yellow"; @@ -58410,20 +59352,20 @@ name = "Liquid" }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "sjZ" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "skc" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/portable_atmospherics/powered/scrubber/huge, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "ske" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -58432,7 +59374,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "skm" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -58448,7 +59390,7 @@ }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "skw" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -58457,11 +59399,11 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "skE" = ( /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "skF" = ( /obj/item/radio/intercom{ name = "1S-Station Intercom (General)"; @@ -58470,7 +59412,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "skH" = ( /obj/machinery/telecomms/relay/preset/telecomms, /obj/effect/catwalk_plated/dark, @@ -58479,7 +59421,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "slb" = ( /obj/effect/catwalk_plated/white, /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ @@ -58490,7 +59432,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "sll" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -58500,7 +59442,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "slm" = ( /obj/machinery/mineral/equipment_vendor/survey, /obj/effect/floor_decal/milspec/color/purple, @@ -58509,7 +59451,7 @@ "slH" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "slX" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -58518,7 +59460,7 @@ /obj/effect/floor_decal/industrial/arrows/blue, /obj/machinery/door/airlock/angled_bay/standard/color/common{ dir = 4; - name = "Port Harbor" + name = "Port Departures Harbor" }, /obj/structure/cable/green{ d1 = 4; @@ -58538,25 +59480,20 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "sml" = ( -/obj/structure/particle_accelerator/end_cap{ - anchored = 1; - construction_state = 1; - dir = 4 - }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "smR" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "snm" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "snz" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -58565,7 +59502,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "snF" = ( /obj/structure/closet/crate/wooden, /obj/effect/floor_decal/borderfloor{ @@ -58575,7 +59512,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "snP" = ( /obj/structure/table/standard, /obj/item/clothing/gloves/botanic_leather{ @@ -58583,7 +59520,7 @@ pixel_x = -1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "soc" = ( /obj/structure/cable/green{ d1 = 1; @@ -58599,7 +59536,7 @@ /obj/structure/disposalpipe/junction, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "soi" = ( /obj/structure/cable/green{ d1 = 1; @@ -58613,16 +59550,16 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "soy" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "soU" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "soW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -58634,7 +59571,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "spc" = ( /obj/structure/table/rack/shelf, /obj/random/contraband, @@ -58645,7 +59582,7 @@ /obj/effect/floor_decal/rust, /obj/random/trash, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "spI" = ( /obj/structure/closet/firecloset/full/double, /obj/item/suit_cooling_unit{ @@ -58657,7 +59594,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "spT" = ( /obj/machinery/atmospherics/unary/freezer{ dir = 8; @@ -58666,7 +59603,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "sqa" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 6 @@ -58675,7 +59612,7 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "sqe" = ( /obj/structure/cable/green{ d1 = 1; @@ -58693,7 +59630,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "sqJ" = ( /obj/structure/sign/directions/cargo/mining{ dir = 1 @@ -58703,17 +59640,17 @@ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "sqL" = ( /obj/structure/bed/chair/oldsofa/right, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "sqT" = ( /obj/structure/bed/chair/sofa/teal{ dir = 8 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "sqX" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/window/brigdoor/eastleft{ @@ -58734,7 +59671,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "sqY" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4 @@ -58750,14 +59687,14 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "ssc" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "ssl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -58768,7 +59705,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "ssD" = ( /obj/structure/cable{ d1 = 4; @@ -58791,7 +59728,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "ssJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -58807,7 +59744,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "ssU" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/white{ @@ -58820,7 +59757,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "ssX" = ( /obj/structure/window/reinforced/survival_pod, /obj/structure/table/darkglass, @@ -58835,7 +59772,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "suq" = ( /obj/item/storage/firstaid/regular{ empty = 1; @@ -58846,11 +59783,11 @@ pixel_y = -5 }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "suw" = ( /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "suH" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ frequency = 1380; @@ -58860,10 +59797,10 @@ req_one_access = list(13) }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "suV" = ( /obj/machinery/computer/ship/helm{ - req_one_access = list(48) + req_one_access = list(48,10,67) }, /turf/simulated/floor/tiled/milspec, /area/shuttle/echidna) @@ -58879,7 +59816,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "svz" = ( /obj/structure/cable/white{ d1 = 2; @@ -58897,7 +59834,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "swi" = ( /obj/structure/cable/green{ d1 = 4; @@ -58916,10 +59853,10 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "swS" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "swW" = ( /obj/structure/cable{ d1 = 4; @@ -58928,22 +59865,22 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "swY" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "sxk" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) "sxy" = ( /obj/random/contraband, /obj/random/cargopod, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "sxG" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ @@ -58959,7 +59896,7 @@ /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, /obj/structure/disposalpipe/up, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "sxH" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/visible{ @@ -58976,7 +59913,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "sxJ" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -58993,7 +59930,7 @@ pixel_y = -27 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "sxL" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -59008,7 +59945,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "sxW" = ( /obj/structure/railing/grey{ color = "yellow" @@ -59017,7 +59954,7 @@ dir = 2 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "sxY" = ( /obj/structure/shuttle/engine/propulsion/burst, /obj/structure/window/titanium{ @@ -59031,7 +59968,7 @@ "syg" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "syL" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -59054,7 +59991,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "syQ" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/power/apc{ @@ -59067,11 +60004,11 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "sza" = ( /mob/living/simple_mob/slime/xenobio, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "szf" = ( /obj/machinery/power/terminal{ dir = 1 @@ -59094,45 +60031,30 @@ /obj/structure/table/rack, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "szt" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "szF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) -"szN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/AftPort_1_Deck_Observatory) "szS" = ( /obj/machinery/light/small/emergency, /turf/space, /area/space) "sAo" = ( -/obj/machinery/vending/fooddessert, +/obj/structure/disposalpipe/segment, +/obj/machinery/vending/snlvend, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "sAr" = ( /obj/structure/cable/green{ d1 = 1; @@ -59151,7 +60073,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "sAv" = ( /obj/item/clothing/under/pants/altevian/security, /obj/item/clothing/under/color/rainbow{ @@ -59164,7 +60086,7 @@ }, /obj/random/junk, /turf/simulated/floor/wood/alt/tile/broken, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "sAw" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -59183,25 +60105,37 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "sAy" = ( -/obj/machinery/shieldwallgen, /obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/borderfloor{ - dir = 10 +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Tcoms"; + charge = 6e+006; + input_attempt = 1; + input_level = 250000; + inputting = 1; + output_level = 250000 }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 10 +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/sign/warning/high_voltage{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/engineering/Telecomms_Foyer) "sAE" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Harbor_Substation) +/area/maintenance/Harbor_Substation) "sAJ" = ( /obj/machinery/telecomms/broadcaster/preset_right, /obj/effect/catwalk_plated/dark, @@ -59210,11 +60144,11 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "sAN" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "sBk" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -59223,7 +60157,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "sBq" = ( /obj/structure/cable/green{ d1 = 1; @@ -59234,7 +60168,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "sBz" = ( /obj/structure/closet/crate, /obj/item/radio, @@ -59273,7 +60207,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "sCv" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -59288,22 +60222,8 @@ dir = 8; name = "Planetside Equipment" }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "sCx" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -59331,7 +60251,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "sCR" = ( /obj/machinery/light/small{ dir = 1 @@ -59343,7 +60263,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "sCU" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -59356,7 +60276,7 @@ pixel_x = 3 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "sDa" = ( /obj/structure/cable/green{ d1 = 1; @@ -59375,10 +60295,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "sDN" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "sDT" = ( /obj/effect/catwalk_plated/dark, /obj/structure/cable/yellow{ @@ -59387,7 +60307,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "sDW" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -59396,21 +60316,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) -"sEc" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Stairwell_For) "sEk" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -59419,11 +60325,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "sEl" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "sEo" = ( /obj/machinery/door/window/brigdoor/westleft{ name = "Containment Pen"; @@ -59433,7 +60339,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "sEB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -59450,11 +60356,13 @@ icon_state = "1-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "sEE" = ( /obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "sEM" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -59466,33 +60374,35 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "sER" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/seeds/sunflowerseed{ icon_state = "seed" }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "sET" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "sFm" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "sFy" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/atmospherics/pipe/tank/air/full{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "sFF" = ( /obj/structure/bed/chair/oldsofa{ dir = 4 @@ -59508,14 +60418,14 @@ name = "1W-light fixture" }, /turf/simulated/floor/carpet/sblucarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "sFQ" = ( /turf/simulated/wall/rthull, /area/shuttle/large_escape_pod1/station) "sFU" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "sGn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -59537,20 +60447,22 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "sGo" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/green/border, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "sGr" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/seeds/poppyseed{ icon_state = "seed" }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "sGw" = ( /obj/machinery/light{ dir = 1; @@ -59563,32 +60475,18 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "sGB" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "sGD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, /obj/machinery/camera/network/security{ dir = 4; c_tag = "D1-Sec-TransitionHall2" }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/turf/simulated/floor/glass, +/area/hallway/Deck1_Transit_Hall) "sGM" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/floor_decal/borderfloorblack, @@ -59598,11 +60496,11 @@ pixel_x = 22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "sGU" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "sHa" = ( /obj/effect/catwalk_plated/white, /obj/structure/cable/green{ @@ -59623,7 +60521,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "sHh" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -59633,10 +60531,10 @@ /obj/effect/floor_decal/corner/green/border, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "sHx" = ( /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "sHA" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 @@ -59647,7 +60545,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "sHO" = ( /obj/structure/disposalpipe/trunk, /obj/structure/disposalpipe/segment{ @@ -59661,13 +60559,13 @@ color = "#6b75ff" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "sHR" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /obj/structure/window/titanium, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "sHV" = ( /obj/structure/closet/cabinet, /obj/item/storage/box/capguntoy{ @@ -59715,8 +60613,12 @@ amount = 20; pixel_x = -10 }, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "sIc" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -59730,7 +60632,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "sIE" = ( /obj/effect/floor_decal/industrial/loading/blue{ dir = 4 @@ -59743,32 +60645,24 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "sIG" = ( /obj/machinery/conveyor_switch/oneway{ id = "toyfight" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "sIP" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "sIR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -59779,26 +60673,21 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "sJC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - name = "1N-lighting fixture" - }, /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, -/obj/structure/sign/poster/nanotrasen{ - dir = 1 +/obj/machinery/status_display{ + layer = 4; + name = "N-status display"; + pixel_y = 32 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "sJE" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -59807,13 +60696,13 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "sKa" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "sKe" = ( /obj/structure/loot_pile/surface/medicine_cabinet/fresh{ pixel_y = 25 @@ -59822,7 +60711,7 @@ /obj/random/maintenance/medical, /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "sKk" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -59832,7 +60721,7 @@ dir = 2 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "sKy" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -59842,14 +60731,14 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "sKA" = ( /obj/structure/table/rack, /obj/random/tech_supply/component, /obj/random/tech_supply/component, /obj/random/tech_supply/component, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "sKH" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -59859,24 +60748,18 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "sKY" = ( +/obj/effect/catwalk_plated/techmaint, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/turf/simulated/floor/plating, +/area/maintenance/Deck1_Security_PortCorridor2) "sLh" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -59885,7 +60768,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "sLq" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -59912,7 +60795,7 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "sLF" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -59921,7 +60804,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "sLG" = ( /obj/machinery/light/small/emergency{ dir = 8 @@ -59931,7 +60814,7 @@ "sLJ" = ( /obj/machinery/holoposter, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "sLN" = ( /obj/structure/cable/green{ d1 = 4; @@ -59955,7 +60838,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "sLS" = ( /obj/structure/cable{ d1 = 4; @@ -59967,18 +60850,24 @@ pixel_x = 3 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "sMb" = ( /obj/structure/table/hardwoodtable, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, +/obj/machinery/door/blast/shutters{ + dir = 2; + layer = 3.5; + name = "Market Stall Shutters"; + id = "sc-GCMarket1" + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "sMy" = ( /obj/random/maintenance/clean, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "sMI" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -59986,7 +60875,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "sMW" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -60000,7 +60889,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "sMZ" = ( /obj/structure/cable/green{ d1 = 4; @@ -60010,7 +60899,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "sNg" = ( /obj/machinery/door/window/survival_pod, /obj/structure/fuel_port{ @@ -60039,7 +60928,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "sNs" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -60059,7 +60948,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "sNB" = ( /turf/simulated/shuttle/wall/voidcraft/blue, /area/shuttle/expoutpost/station) @@ -60068,20 +60957,14 @@ dir = 8; pixel_x = 22 }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/turf/simulated/floor/glass, +/area/hallway/Deck1_Transit_Hall) "sNE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 9 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "sNQ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -60095,12 +60978,12 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "sNT" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "sOd" = ( /obj/machinery/alarm{ dir = 1; @@ -60108,7 +60991,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "sOr" = ( /obj/structure/cable{ d1 = 4; @@ -60122,20 +61005,20 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "sOX" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "sPg" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "sPh" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/camera/network/security{ @@ -60148,13 +61031,13 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "sPn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "sPE" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -60173,7 +61056,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "sQj" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -60181,13 +61064,13 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "sQD" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "sQF" = ( /obj/structure/cable/green{ d1 = 1; @@ -60203,12 +61086,12 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "sQP" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/green/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "sQR" = ( /obj/structure/bed/chair/backed_red{ dir = 8 @@ -60217,7 +61100,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "sRp" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 1 @@ -60233,7 +61116,7 @@ dir = 2 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "sRF" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 @@ -60249,7 +61132,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "sRT" = ( /obj/structure/table/rack, /obj/item/circuitboard/teleporter_station{ @@ -60276,7 +61159,7 @@ pixel_y = -9 }, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "sRZ" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -60289,12 +61172,12 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "sSe" = ( /obj/effect/floor_decal/rust, /obj/random/trash, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "sSr" = ( /obj/machinery/light{ dir = 1; @@ -60310,7 +61193,7 @@ }, /obj/effect/floor_decal/emblem/nt2, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "sSx" = ( /obj/effect/floor_decal/corner/white{ dir = 8 @@ -60324,7 +61207,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "sSB" = ( /obj/structure/cable/green{ d1 = 1; @@ -60341,18 +61224,18 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "sSD" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "sSJ" = ( /obj/structure/loot_pile/maint/boxfort, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "sSP" = ( /obj/structure/lattice, /obj/machinery/light/small/emergency{ @@ -60371,7 +61254,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "sTR" = ( /turf/simulated/wall/rthull, /area/shuttle/escape_pod1/station) @@ -60384,19 +61267,19 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "sUP" = ( /obj/machinery/conveyor{ dir = 8; id = "SC-CBcargobay2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "sVf" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "sVt" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -60420,10 +61303,10 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "sVC" = ( /turf/simulated/floor/airless, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "sVJ" = ( /obj/structure/cable/white{ d1 = 1; @@ -60436,16 +61319,16 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "sVL" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "sVX" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "sWo" = ( /obj/structure/cable/green{ d1 = 4; @@ -60460,7 +61343,7 @@ icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "sWL" = ( /obj/structure/cable{ d1 = 1; @@ -60472,20 +61355,20 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "sXr" = ( /obj/machinery/light{ dir = 1; name = "1N-lighting fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "sXY" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "sYx" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -60510,7 +61393,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "sYP" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -60522,10 +61405,16 @@ /obj/effect/floor_decal/industrial/loading/blue{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "sZg" = ( /obj/effect/floor_decal/industrial/stand_clear, /obj/structure/railing/grey{ @@ -60540,7 +61429,7 @@ network = list("Harbor") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "sZk" = ( /obj/structure/sign/painting/public{ pixel_y = 32 @@ -60558,34 +61447,35 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "sZu" = ( /obj/random/trash_pile, /obj/random/trash, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "sZx" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "sZN" = ( -/obj/turbolift_map_holder/southern_cross/cargo{ +/obj/turbolift_map_holder/soluna_nexus/cargo{ dir = 1 }, /turf/unsimulated/mask, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "sZQ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "sZT" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "tac" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -60597,7 +61487,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "tag" = ( /obj/structure/cable/white{ d1 = 1; @@ -60605,7 +61495,7 @@ icon_state = "1-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "tak" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/loading/blue{ @@ -60624,7 +61514,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "tao" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -60633,37 +61523,29 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) -"taB" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/AftPort_1_Deck_Observatory) "taD" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "taJ" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "taP" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "tbA" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "tbK" = ( /obj/structure/closet/wardrobe/red, /obj/effect/floor_decal/borderfloorblack{ @@ -60673,14 +61555,19 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "tbL" = ( /obj/machinery/gibber{ - emagged = 1; - req_access = null + name = "High Performance gibber"; + req_access = null; + emagged = 1 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "tbT" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -60694,7 +61581,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "tbW" = ( /obj/structure/grille, /obj/structure/shuttle/window, @@ -60702,8 +61589,9 @@ /area/shuttle/escape_pod1/station) "tcd" = ( /obj/structure/table/darkglass, +/obj/item/spacecasinocash/c1, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "tcm" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, @@ -60716,7 +61604,7 @@ pixel_x = 2 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "tcn" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -60729,7 +61617,7 @@ pixel_x = 2 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "tcF" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 @@ -60742,15 +61630,15 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "tcO" = ( -/obj/machinery/particle_accelerator/control_box{ - anchored = 1; - construction_state = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/PA_Chamber) +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_Science_AftCorridor1) "tcS" = ( /obj/effect/floor_decal/techfloor/orange, /obj/machinery/light/floortube{ @@ -60761,13 +61649,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "tcZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "tdE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -60782,7 +61670,7 @@ /obj/effect/map_helper/airlock/door/ext_door, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "tdK" = ( /obj/structure/cable/white{ d1 = 2; @@ -60790,7 +61678,7 @@ icon_state = "2-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "tdM" = ( /obj/machinery/alarm{ dir = 8; @@ -60804,15 +61692,15 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "tdX" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "tec" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "teK" = ( /obj/machinery/atmospherics/unary/freezer{ icon_state = "freezer" @@ -60826,10 +61714,10 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "teW" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "tfw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -60841,7 +61729,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "tgq" = ( /obj/structure/cable/green{ d1 = 2; @@ -60865,11 +61753,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "tgr" = ( /obj/random/mainttoyloot, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "tgD" = ( /obj/machinery/power/apc{ dir = 1; @@ -60893,7 +61781,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "tgS" = ( /obj/structure/cable/green{ d1 = 4; @@ -60907,7 +61795,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "thc" = ( /obj/structure/table/darkglass, /obj/item/storage/box/lights/mixed, @@ -60915,11 +61803,11 @@ dir = 4 }, /turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "thk" = ( /obj/structure/girder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "thp" = ( /obj/machinery/power/terminal{ dir = 8 @@ -60941,7 +61829,7 @@ dir = 4 }, /turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "thY" = ( /obj/structure/cable{ d1 = 2; @@ -60960,10 +61848,10 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "tij" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "til" = ( /obj/machinery/power/apc{ dir = 4; @@ -60972,7 +61860,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "tim" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 @@ -60998,11 +61886,11 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "tiw" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "tiC" = ( /obj/machinery/disposal/deliveryChute{ dir = 1 @@ -61012,8 +61900,12 @@ dir = 1; icon_state = "pipe-c" }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "tiD" = ( /obj/structure/cable/green{ d1 = 1; @@ -61032,7 +61924,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "tiG" = ( /obj/structure/sign/directions/science/xenoarch{ dir = 4 @@ -61046,7 +61938,7 @@ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "tiK" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -61057,7 +61949,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "tiM" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -61083,11 +61975,11 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "tjn" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1) +/area/maintenance/Deck1_Security_PortChamber1) "tjI" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -61096,27 +61988,27 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "tkd" = ( /obj/machinery/atmospherics/tvalve/mirrored{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "tkl" = ( /obj/random/trash, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "tkn" = ( /obj/structure/disposalpipe/tagger{ sort_tag = "transit_crew" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "tkr" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "tky" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -61131,7 +62023,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "tkF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 6 @@ -61142,7 +62034,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "tkH" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -61150,14 +62042,20 @@ /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "tkU" = ( /obj/structure/table/steel, /obj/random/tech_supply, /obj/random/tech_supply, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "tlf" = ( /obj/structure/cable{ d1 = 4; @@ -61179,7 +62077,7 @@ pixel_y = -32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "tlh" = ( /obj/structure/closet/crate/nanotrasen, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -61190,23 +62088,23 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "tlq" = ( /obj/effect/landmark/start{ name = "Shaft Miner" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "tlt" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "tlw" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8; color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "tlH" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -61222,7 +62120,7 @@ name = "Chompers Dinner" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "tlI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -61242,7 +62140,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "tlW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -61254,40 +62152,40 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "tmd" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "tmA" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "tmJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "tmM" = ( /obj/structure/table/steel, /obj/item/storage/toolbox/mechanical{ pixel_y = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "tng" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "tnv" = ( /obj/effect/floor_decal/road/center{ dir = 1 @@ -61296,7 +62194,7 @@ dir = 8 }, /turf/simulated/floor/grass2/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "tnB" = ( /obj/structure/closet/crate/secure/gear{ name = "parachute crate"; @@ -61309,17 +62207,17 @@ /obj/item/storage/backpack/parachute, /obj/item/storage/backpack/parachute, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "tnW" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "toc" = ( /obj/structure/table/rack, /obj/random/maintenance/engineering, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "top" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -61328,14 +62226,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "toS" = ( /obj/structure/sign/directions/evac{ dir = 8; pixel_y = 9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "toY" = ( /obj/structure/cable{ d1 = 1; @@ -61346,10 +62244,10 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "tpf" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "tph" = ( /obj/machinery/power/apc{ dir = 1; @@ -61361,7 +62259,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "tpj" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/status_display{ @@ -61369,7 +62267,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "tpk" = ( /obj/machinery/recharge_station, /obj/structure/closet/emergsuit_wall{ @@ -61388,7 +62286,7 @@ specialfunctions = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "tpm" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -61397,7 +62295,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "tpC" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -61406,7 +62304,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "tpH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -61418,7 +62316,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "tpZ" = ( /obj/machinery/gateway{ dir = 6 @@ -61428,7 +62326,7 @@ name = "JoinLateStationGateway" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "tqg" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/ai_status_display{ @@ -61436,7 +62334,7 @@ name = "1E-AI display" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "tqn" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -61468,26 +62366,28 @@ network = list("Science","Xenoflora") }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "tqp" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/seeds/rose/blood{ icon_state = "seed" }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "tqB" = ( /obj/item/reagent_containers/food/snacks/monkeycube/wrapped/stokcube, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "tqD" = ( /obj/machinery/sleep_console, /turf/simulated/floor/tiled/white, /area/shuttle/spacebus) "tqK" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "tqP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/wall/thull, @@ -61500,7 +62400,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "trg" = ( /obj/effect/floor_decal/techfloor/orange, /obj/machinery/atmospherics/pipe/simple/hidden/purple, @@ -61510,7 +62410,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "tri" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -61522,7 +62422,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "trr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -61534,7 +62434,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "tru" = ( /obj/structure/cable/green{ d1 = 4; @@ -61555,29 +62455,29 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "trL" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "trW" = ( /obj/structure/table/darkglass, /obj/item/clothing/accessory/collar/silver, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "tsa" = ( /obj/structure/railing{ dir = 1 }, /obj/structure/flora/ausbushes/reedbush, /turf/simulated/floor/water/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "tsf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "tsi" = ( /obj/structure/cable{ d1 = 1; @@ -61592,28 +62492,14 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "tso" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "tss" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/steeldecal/steel_decals9, @@ -61632,7 +62518,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "tsx" = ( /obj/structure/cable/blue{ d1 = 4; @@ -61663,12 +62549,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "tsU" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "tts" = ( /obj/structure/lattice, /obj/machinery/light/small/emergency{ @@ -61678,11 +62566,11 @@ /area/space) "ttQ" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "tuT" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "tuW" = ( /obj/structure/cable/green{ d1 = 2; @@ -61706,11 +62594,11 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "tuZ" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "tva" = ( /obj/machinery/disposal/deliveryChute{ dir = 1 @@ -61723,7 +62611,7 @@ }, /obj/structure/window/basic, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "tvk" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -61760,23 +62648,23 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "tvP" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "tvS" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "tvZ" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/bmarble, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "twg" = ( /obj/machinery/power/terminal{ dir = 1 @@ -61792,12 +62680,12 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor2) +/area/maintenance/Deck1_Security_StarCorridor2) "twi" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "twy" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable{ @@ -61812,7 +62700,7 @@ }, /obj/structure/cable, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "twF" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 @@ -61833,7 +62721,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "twM" = ( /obj/structure/shuttle/engine/heater{ dir = 8 @@ -61854,7 +62742,7 @@ /obj/effect/floor_decal/corner/lightgrey/bordercorner, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "twS" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -61868,25 +62756,30 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "twZ" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "txf" = ( /obj/item/frame, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "txJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) +"txK" = ( +/obj/structure/disposalpipe/junction, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_ForStar_Corridor3) "txL" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -61898,7 +62791,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "txV" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, @@ -61906,7 +62799,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "tyM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -61919,7 +62812,6 @@ layer = 2.5 }, /obj/machinery/door/airlock/angled_bay/standard/color/security{ - req_one_access = list(19,1); req_access = null }, /obj/structure/cable/green{ @@ -61930,7 +62822,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "tyN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -61963,7 +62855,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "tyS" = ( /obj/structure/railing{ dir = 4 @@ -61972,13 +62864,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "tyW" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "tzb" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -61993,14 +62885,16 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "tzi" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/seeds/poppyseed{ icon_state = "seed" }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "tzt" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -62025,15 +62919,19 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "tzN" = ( /obj/structure/table/sifwoodentable, /obj/item/flashlight/lamp/green{ pixel_y = 3; on = 0 }, -/turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "tzO" = ( /obj/structure/closet/jcloset, /obj/item/grenade/chem_grenade/cleaner{ @@ -62046,8 +62944,9 @@ /obj/effect/floor_decal/corner/mauve/border{ dir = 4 }, +/obj/random/soap, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "tzZ" = ( /obj/machinery/light{ dir = 4; @@ -62070,7 +62969,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "tAq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -62084,7 +62983,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "tAz" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -62095,7 +62994,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "tAH" = ( /obj/machinery/atmospherics/valve{ name = "Central emergency air supply" @@ -62103,7 +63002,7 @@ /obj/effect/floor_decal/industrial/danger/full, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "tAT" = ( /obj/effect/catwalk_plated/white, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -62113,14 +63012,16 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "tAW" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/seeds/sifbulb{ icon_state = "seed" }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "tAZ" = ( /obj/machinery/power/apc{ dir = 4; @@ -62143,13 +63044,13 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "tBh" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "tBB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -62163,34 +63064,36 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "tBJ" = ( /obj/structure/table/rack/steel, /obj/random/contraband, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "tBL" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "tBN" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/seeds/shrinkshroom{ icon_state = "seed" }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "tCf" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "tCi" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "tCB" = ( /obj/machinery/light{ dir = 8 @@ -62220,19 +63123,19 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "tCH" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/water/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "tCJ" = ( /obj/structure/sign/directions/janitor{ pixel_y = 9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "tCK" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -62243,7 +63146,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "tCO" = ( /obj/structure/closet/secure_closet/hydroponics{ req_access = list(47) @@ -62255,13 +63158,13 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "tCT" = ( /obj/structure/table/standard, /obj/random/maintenance/research, /obj/random/tech_supply/component, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "tDq" = ( /obj/machinery/power/apc{ dir = 4; @@ -62285,29 +63188,32 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "tDt" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 +/obj/machinery/button/remote/blast_door{ + id = "sc-GCMarket5"; + name = "Market Shutters Control"; + pixel_y = 24 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled, +/area/maintenance/Market_Stall_5) "tDK" = ( /obj/structure/railing, /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "tDP" = ( /obj/structure/flora/rocks2, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "tDY" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "tEl" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -62350,18 +63256,18 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "tEy" = ( /obj/structure/table/marble, /obj/machinery/cash_register/civilian{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "tEO" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "tEP" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -62372,11 +63278,11 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "tEX" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "tEY" = ( /obj/structure/cable/green{ d1 = 1; @@ -62395,7 +63301,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "tFa" = ( /obj/structure/disposalpipe/trunk, /obj/structure/disposalpipe/segment{ @@ -62409,7 +63315,7 @@ color = "#6b75ff" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "tFE" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -62423,11 +63329,11 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "tFG" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "tFZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -62436,7 +63342,7 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/sec, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "tGc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/machinery/camera/network/security{ @@ -62451,34 +63357,33 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "tGi" = ( /turf/simulated/wall/wood, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "tGs" = ( /obj/structure/disposalpipe/segment, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "tGz" = ( /obj/structure/cable/green{ - d1 = 2; + d1 = 1; d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 8; icon_state = "pipe-c" }, -/obj/effect/catwalk_plated/techmaint, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "tGZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -62495,7 +63400,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "tHc" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -62505,7 +63410,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "tHq" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -62519,7 +63424,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "tHF" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -62528,12 +63433,12 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "tHL" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/canister/empty, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "tHM" = ( /obj/machinery/requests_console{ pixel_x = 22; @@ -62548,7 +63453,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "tIv" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -62557,14 +63462,14 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "tIA" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "tIY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -62579,11 +63484,11 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "tJa" = ( /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "tJF" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -62592,26 +63497,26 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "tJR" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "tKh" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "tKn" = ( /obj/structure/table/rack, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "tLd" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -62620,7 +63525,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "tLk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -62631,11 +63536,11 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "tLp" = ( /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "tLu" = ( /obj/machinery/atmospherics/valve/shutoff{ name = "Central automatic shutoff valve"; @@ -62643,14 +63548,14 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "tLv" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/structure/table/glass, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "tLI" = ( /obj/structure/table/standard, /obj/random/tool/power, @@ -62661,14 +63566,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "tLK" = ( /obj/machinery/status_display{ name = "W-status display"; pixel_x = -32 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "tMg" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -62686,7 +63591,7 @@ dir = 4 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "tMD" = ( /obj/structure/bed/pillowpilefront/white, /obj/item/storage/vore_egg/shark{ @@ -62695,10 +63600,10 @@ }, /obj/item/storage/vore_egg/pinkspots, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "tMJ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "tMR" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -62707,7 +63612,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "tMU" = ( /obj/structure/closet/walllocker_double/kitchen/south{ name = "Ration Cabinet" @@ -62737,10 +63642,10 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "tNe" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "tNg" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -62750,7 +63655,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "tNk" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, @@ -62759,7 +63664,7 @@ pixel_y = -22 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "tNm" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -62774,7 +63679,7 @@ /obj/effect/map_helper/airlock/door/ext_door, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "tOb" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -62790,14 +63695,18 @@ /obj/effect/landmark{ name = "maint_pred" }, -/turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "tOo" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/shuttle/floor/voidcraft/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "tOq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/structure/cable/green{ @@ -62810,12 +63719,12 @@ dir = 5 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "tOz" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "tOD" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -62828,7 +63737,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "tOJ" = ( /obj/machinery/alarm{ dir = 8; @@ -62844,7 +63753,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "tPr" = ( /obj/structure/cable/white{ d1 = 1; @@ -62852,7 +63761,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "tPt" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -62864,25 +63773,42 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) +"tPO" = ( +/obj/structure/sign/directions/security{ + pixel_y = 9; + dir = 4; + layer = 3.5 + }, +/obj/structure/sign/directions/science{ + dir = 4; + layer = 3.5 + }, +/obj/structure/sign/directions/command{ + pixel_y = -9; + dir = 4; + layer = 3.5 + }, +/turf/simulated/wall/r_wall, +/area/harbor/Dock1) "tQF" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "tQH" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "tQT" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "tQX" = ( /obj/effect/graffitispawner, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "tRe" = ( /obj/structure/cable/green{ d1 = 1; @@ -62904,21 +63830,27 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "tRq" = ( /obj/structure/bed/chair/sofa/left/orange{ dir = 1 }, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) +"tRr" = ( +/obj/machinery/light{ + name = "1S-light fixture" + }, +/turf/simulated/floor/tiled, +/area/maintenance/Market_Stall_4) "tRt" = ( /obj/machinery/portable_atmospherics/canister/empty/nitrogen, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "tRv" = ( /obj/machinery/conveyor_switch/oneway{ id = "SC-CBcargobay2" @@ -62926,36 +63858,30 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central4, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "tRR" = ( -/obj/item/stack/material/cardboard{ - amount = 25 - }, -/obj/item/packageWrap{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/packageWrap{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/item/hand_labeler{ - pixel_y = 1; - pixel_x = 2 - }, -/obj/item/tape_roll{ - pixel_x = 3; - pixel_y = -5 - }, -/obj/structure/table/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/machinery/light{ dir = 8; layer = 3; name = "1W-light fixture" }, +/obj/structure/table/standard, +/obj/machinery/cell_charger{ + pixel_y = 11 + }, +/obj/machinery/recharger{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/cell/device{ + pixel_x = 8 + }, +/obj/item/cell/device{ + pixel_y = -4; + pixel_x = 8 + }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "tSh" = ( /obj/machinery/ai_status_display{ name = "1E-AI display"; @@ -62968,14 +63894,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "tSk" = ( /turf/simulated/wall/rthull, /area/shuttle/escape_pod8/station) "tSm" = ( /obj/structure/sign/warning/nosmoking_2, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "tSt" = ( /obj/structure/cable{ d1 = 1; @@ -62986,7 +63912,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "tSu" = ( /obj/machinery/power/apc{ dir = 1; @@ -62998,7 +63924,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "tSI" = ( /obj/machinery/light{ dir = 4 @@ -63023,23 +63949,23 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "tSR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "tSW" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 }, /turf/simulated/shuttle/floor/voidcraft/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "tTb" = ( /obj/structure/bookcase, /turf/simulated/floor/carpet/purcarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "tTg" = ( /obj/structure/curtain/black{ icon_state = "open"; @@ -63052,7 +63978,7 @@ icon_state = "mgibbl4" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "tTq" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/accessory/badge/sheriff, @@ -63063,7 +63989,7 @@ /obj/random/cigarettes, /obj/random/forgotten_tram, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "tTw" = ( /obj/machinery/camera/network/security{ dir = 10; @@ -63073,7 +63999,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "tTE" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/steeldecal/steel_decals10{ @@ -63086,26 +64012,26 @@ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "tTG" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "tTT" = ( /obj/structure/table/steel, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "tUi" = ( /obj/structure/table/steel, /obj/random/maintenance/engineering, /obj/random/maintenance/misc, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "tUw" = ( /obj/machinery/holoposter, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "tUx" = ( /obj/machinery/firealarm{ dir = 8; @@ -63119,7 +64045,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "tUz" = ( /obj/structure/reagent_dispensers/watertank/high, /obj/item/reagent_containers/glass/bucket{ @@ -63128,7 +64054,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "tUU" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -63145,7 +64071,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "tVd" = ( /obj/machinery/atm{ pixel_x = 29; @@ -63168,13 +64094,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "tVA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/purple{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "tWs" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/white{ @@ -63184,7 +64110,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "tWH" = ( /obj/structure/cable/green{ d1 = 1; @@ -63199,12 +64125,13 @@ }, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "tWK" = ( -/obj/turbolift_map_holder/southern_cross/aft, +/obj/turbolift_map_holder/soluna_nexus/aft, /turf/simulated/floor/plating/eris/under, -/area/SouthernCrossV2/Maints/Room_88) +/area/maintenance/Room_88) "tWM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -63219,18 +64146,18 @@ /obj/effect/map_helper/airlock/door/ext_door, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "tXo" = ( /obj/structure/sign/painting/public, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "tXp" = ( /obj/effect/decal/cleanable/flour, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "tXu" = ( /obj/structure/cable{ d1 = 1; @@ -63250,7 +64177,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "tXM" = ( /obj/structure/railing{ dir = 4 @@ -63262,14 +64189,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "tYa" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "tYi" = ( /obj/structure/closet/crate/large, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -63284,15 +64211,19 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "tYV" = ( /obj/structure/table/rack, /obj/item/stack/cable_coil/silver, /obj/item/stack/cable_coil/silver, /obj/item/stack/cable_coil/silver, /obj/item/stack/cable_coil/silver, +/obj/item/stack/cable_coil/silver{ + pixel_y = 4; + pixel_x = 1 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "tZf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -63301,16 +64232,12 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) -"tZB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/harbor/Dock1) +"tZH" = ( +/obj/structure/girder, +/obj/item/casino_platinum_chip, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_Cargo_Corridor1) "tZN" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -63327,7 +64254,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "tZQ" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -63347,14 +64274,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "tZU" = ( /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "uad" = ( /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "uag" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -63375,11 +64302,11 @@ frequency = 1380 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "uah" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "uai" = ( /obj/structure/sign/nanotrasen{ icon_rotation = 90 @@ -63392,7 +64319,7 @@ /area/shuttle/escape_pod13/station) "uat" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "uau" = ( /obj/machinery/disposal, /obj/structure/window/reinforced{ @@ -63407,7 +64334,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "uaA" = ( /obj/structure/sign/directions/eva{ pixel_y = 9 @@ -63420,7 +64347,7 @@ pixel_y = -9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "uaL" = ( /obj/structure/cable/white{ d1 = 1; @@ -63434,7 +64361,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "uaZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -63463,21 +64390,21 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "ubb" = ( /obj/machinery/light/small, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "ubt" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "ubv" = ( /obj/structure/disposaloutlet{ dir = 1 @@ -63486,7 +64413,7 @@ dir = 8 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "ubD" = ( /obj/structure/table/bench/marble, /obj/item/flashlight/lamp/clown{ @@ -63499,31 +64426,38 @@ pixel_x = 10 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "ubJ" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "ubN" = ( /obj/structure/bed/chair/bay{ dir = 1 }, -/obj/machinery/light_construct, /obj/effect/floor_decal/rust, +/obj/machinery/light/spot{ + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "ubP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "ubX" = ( /obj/structure/reagent_dispensers/cookingoil, -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "ucC" = ( /obj/machinery/cryopod{ dir = 1 @@ -63556,7 +64490,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "ucQ" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 @@ -63565,11 +64499,15 @@ dir = 9 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "ucW" = ( /obj/item/clothing/suit/space/vox/civ/chef, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "udg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -63583,17 +64521,19 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "udx" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "udF" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "udI" = ( /obj/structure/cable/white{ d1 = 2; @@ -63602,13 +64542,13 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "udT" = ( /obj/item/stool/padded{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "udW" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -63617,7 +64557,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "ued" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 1 @@ -63633,16 +64573,21 @@ }, /obj/random/maintenance/cargo, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "ueg" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) +"uek" = ( +/obj/structure/table/rack, +/obj/item/storage/box/wormcan/deluxe, +/turf/simulated/floor/plating, +/area/maintenance/Market_Stall_6) "uez" = ( /obj/effect/floor_decal/spline/fancy{ dir = 8 }, /turf/simulated/floor/carpet/purcarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "ueA" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -63669,26 +64614,20 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "ueQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "ufm" = ( /obj/vehicle/train/engine{ dir = 2 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "ufy" = ( /obj/structure/window/titanium{ dir = 8 @@ -63707,7 +64646,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "ufP" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -63721,7 +64660,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "ugg" = ( /obj/machinery/camera/network/security{ dir = 10; @@ -63729,7 +64668,7 @@ network = list("Commons") }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "ugh" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/white/bordercorner, @@ -63737,7 +64676,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "ugj" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/clean, @@ -63748,7 +64687,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "ugB" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/white/border, @@ -63756,7 +64695,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "ugL" = ( /obj/machinery/flasher/portable, /obj/effect/floor_decal/industrial/hatch/red, @@ -63767,7 +64706,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "ugM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -63777,7 +64716,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "ugP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -63790,7 +64729,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "uhd" = ( /obj/structure/window/plastitanium/full, /obj/structure/window/reinforced/survival_pod{ @@ -63822,12 +64761,12 @@ }, /obj/random/junk, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "uhi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "uhk" = ( /obj/item/tool/wirecutters/clippers/trimmers{ pixel_y = -3; @@ -63835,7 +64774,11 @@ }, /obj/random/junk, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) +"uhr" = ( +/obj/item/material/fishing_rod/built, +/turf/simulated/floor/tiled, +/area/maintenance/Market_Stall_6) "uhu" = ( /obj/structure/cable{ d1 = 1; @@ -63843,18 +64786,18 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "uhG" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "uhW" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "uje" = ( /obj/item/anodevice{ pixel_x = 3; @@ -63863,7 +64806,7 @@ /obj/item/anodevice, /obj/structure/table/reinforced, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "ujj" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -63871,7 +64814,7 @@ /obj/random/trash, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "ujl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -63883,7 +64826,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "ujt" = ( /obj/structure/closet/crate/wooden, /obj/machinery/alarm{ @@ -63893,7 +64836,7 @@ /obj/random/junk, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "ujv" = ( /obj/structure/table/reinforced, /obj/item/tool/wrench{ @@ -63918,21 +64861,21 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "ujy" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "ujL" = ( /obj/structure/closet/secure_closet/miner, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "ujN" = ( /obj/random/trash, /obj/random/junk, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "ujP" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, @@ -63944,11 +64887,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "ukh" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "ukk" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -63964,7 +64907,7 @@ name = "Western Courtyard" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "ukL" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 1 @@ -63973,7 +64916,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "ukU" = ( /obj/machinery/alarm{ dir = 4; @@ -63987,16 +64930,16 @@ }, /obj/effect/catwalk_plated/white, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "ukY" = ( /obj/structure/table/standard, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "uli" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "ull" = ( /obj/machinery/power/terminal, /obj/structure/cable{ @@ -64005,7 +64948,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "ulo" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -64027,11 +64970,11 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "ulv" = ( -/obj/structure/closet/crate/mimic/cointoss, +/obj/structure/closet/crate/mimic/safe, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "ulX" = ( /obj/structure/cable/white{ d1 = 1; @@ -64039,7 +64982,7 @@ icon_state = "1-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "umk" = ( /obj/machinery/atmospherics/pipe/tank/phoron{ dir = 1 @@ -64057,7 +65000,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "umv" = ( /obj/structure/table/marble, /obj/structure/disposalpipe/segment{ @@ -64065,28 +65008,38 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "umz" = ( /obj/structure/bed/chair/backed_red, /obj/structure/window/basic{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "umH" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/he3, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "umM" = ( /obj/item/honey_frame{ pixel_y = 6; pixel_x = -4 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) +"umN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, +/turf/simulated/floor/tiled, +/area/quartermaster/Supply_Ship_Bay) "unl" = ( /obj/effect/floor_decal/shuttle/loading, /obj/structure/railing/grey{ @@ -64098,7 +65051,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "unn" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -64121,14 +65074,14 @@ }, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Harbor_Substation) +/area/maintenance/Harbor_Substation) "unq" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/atmospherics/pipe/tank/air/full{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "unu" = ( /obj/machinery/portable_atmospherics/canister/empty/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -64143,7 +65096,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "unF" = ( /turf/simulated/shuttle/plating/airless/carry, /area/shuttle/needle) @@ -64159,7 +65112,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "uoH" = ( /obj/machinery/light/floortube{ pixel_y = -2 @@ -64169,7 +65122,7 @@ }, /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "upc" = ( /obj/effect/floor_decal/industrial/stand_clear/blue{ dir = 1 @@ -64177,7 +65130,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "upe" = ( /obj/machinery/alarm{ dir = 4; @@ -64205,13 +65158,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "upi" = ( /obj/structure/disposalpipe/sortjunction/wildcard/flipped{ dir = 8 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "upt" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 @@ -64221,7 +65174,7 @@ }, /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "upz" = ( /obj/effect/floor_decal/techfloor/orange, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -64233,18 +65186,20 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "uqm" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "uqt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "uqK" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -64253,7 +65208,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "uqL" = ( /obj/structure/cable/green{ d1 = 4; @@ -64273,13 +65228,13 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/blue/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "uqM" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "uqR" = ( /obj/machinery/power/apc{ dir = 8; @@ -64291,11 +65246,11 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "urf" = ( /obj/item/frame, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "urj" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27; @@ -64318,7 +65273,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "urB" = ( /obj/machinery/seed_extractor, /obj/effect/floor_decal/borderfloorwhite{ @@ -64328,13 +65283,13 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "urG" = ( /obj/effect/floor_decal/industrial/danger/corner{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "urQ" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/camera/network/security{ @@ -64350,7 +65305,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "urT" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -64365,7 +65320,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "urY" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 @@ -64373,7 +65328,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "usa" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -64387,7 +65342,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "usf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -64396,7 +65351,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "usn" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -64407,20 +65362,24 @@ name = "Foyer" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "ust" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /mob/living/simple_mob/metroid/juvenile/baby, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "usJ" = ( /obj/structure/bed/chair/backed_red{ dir = 8 }, -/turf/simulated/floor/wood/alt/panel/broken, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "uto" = ( /obj/effect/decal/cleanable/blood/splatter{ name = "Liquid"; @@ -64431,7 +65390,12 @@ pixel_x = -7 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) +"utp" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_Science_ForCorridor1) "utC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -64443,39 +65407,43 @@ req_one_access = list(50) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "utD" = ( /obj/machinery/appliance/cooker/fryer, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "uud" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "uue" = ( /obj/machinery/light/small{ dir = 1 }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "uuu" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "uuC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "uuW" = ( /obj/structure/table, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "uuY" = ( /obj/structure/bed/chair/wheelchair, /obj/effect/floor_decal/rust, @@ -64483,7 +65451,7 @@ pixel_y = 13 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "uvb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -64505,7 +65473,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "uvr" = ( /obj/machinery/status_display{ pixel_x = 32; @@ -64526,7 +65494,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "uvy" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -64538,7 +65506,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "uvG" = ( /obj/structure/cable/white{ d1 = 4; @@ -64549,7 +65517,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "uvW" = ( /obj/machinery/firealarm{ dir = 4; @@ -64568,7 +65536,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "uvZ" = ( /obj/effect/floor_decal/stairs{ dir = 8 @@ -64591,11 +65559,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "uwl" = ( /obj/structure/sign/hangar/three, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "uwx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -64611,7 +65579,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "uwJ" = ( /obj/machinery/portable_atmospherics/canister/empty, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -64630,7 +65598,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "uwN" = ( /obj/machinery/lapvend, /obj/effect/floor_decal/borderfloorblack{ @@ -64640,11 +65608,11 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "uwZ" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "uxS" = ( /obj/effect/catwalk_plated/white, /obj/machinery/camera/network/security{ @@ -64652,11 +65620,11 @@ network = list("Harbor") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "uxT" = ( /obj/random/empty_or_lootable_crate, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "uxV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -64665,10 +65633,19 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "uyN" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, +/turf/simulated/floor/tiled, +/area/quartermaster/Supply_Ship_Bay) +"uyQ" = ( +/obj/random/junk, +/obj/structure/ghost_pod/ghost_activated/maintpred, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/area/maintenance/Deck1_Cargo_Chamber1) "uzd" = ( /obj/structure/sink{ dir = 1 @@ -64681,7 +65658,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "uzg" = ( /obj/structure/sign/nanotrasen, /turf/simulated/shuttle/wall/no_join{ @@ -64692,20 +65669,20 @@ /area/shuttle/escape_pod3/station) "uzh" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "uzG" = ( /obj/random/maintenance/clean, /obj/item/frame, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "uzI" = ( /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "uzO" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "uAj" = ( /obj/structure/cable/green{ d1 = 4; @@ -64727,7 +65704,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "uAn" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -64735,12 +65712,12 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "uAJ" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/meter, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "uAV" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/white{ @@ -64753,7 +65730,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "uAZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -64767,7 +65744,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "uBz" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = 28; @@ -64775,7 +65752,7 @@ }, /obj/structure/table/glass, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "uBF" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -64791,7 +65768,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "uBZ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -64800,11 +65777,11 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "uCa" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "uCd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -64818,7 +65795,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "uCe" = ( /obj/structure/ore_box, /obj/effect/floor_decal/industrial/outline/grey, @@ -64839,15 +65816,15 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "uCm" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "uCq" = ( /obj/random/mob/mouse, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "uCs" = ( /obj/structure/sink{ dir = 1 @@ -64861,12 +65838,12 @@ pixel_x = -22 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "uCv" = ( /obj/structure/table/rack, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "uCx" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -64886,20 +65863,20 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "uCS" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "uDE" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "uEa" = ( /obj/structure/sign/directions/exit, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "uEw" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/directions/evac{ @@ -64907,7 +65884,7 @@ pixel_y = 10 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "uEx" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -64918,7 +65895,7 @@ name = "Docking lane 1" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "uEH" = ( /turf/simulated/shuttle/floor, /area/shuttle/cryo/station) @@ -64934,7 +65911,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "uFd" = ( /obj/structure/cable/green{ d1 = 4; @@ -64954,7 +65931,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "uFk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -64977,11 +65954,11 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "uFm" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "uFG" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -64990,7 +65967,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "uFJ" = ( /obj/structure/closet/secure_closet/miner{ pixel_x = 27 @@ -65016,16 +65993,12 @@ d2 = 4; icon_state = "2-4" }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "uFN" = ( /obj/structure/cable/white{ d1 = 1; @@ -65033,7 +66006,7 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "uFQ" = ( /obj/structure/closet/firecloset/full/double, /obj/effect/floor_decal/corner/purple/diagonal, @@ -65041,12 +66014,12 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "uGp" = ( /obj/structure/stairs/spawner/east, /obj/structure/railing, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "uGr" = ( /obj/structure/sink/kitchen{ pixel_y = 21 @@ -65060,16 +66033,12 @@ pixel_x = -8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "uGv" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/small/warning/emerg_only{ - desc = "Ladder for emergency use only"; - pixel_y = -32 - }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "uHo" = ( /obj/structure/cable/green{ d1 = 1; @@ -65090,14 +66059,14 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Harbor_Substation) +/area/maintenance/Harbor_Substation) "uHz" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "uHI" = ( /obj/structure/table/darkglass, /obj/item/digestion_remains/variant1{ @@ -65113,13 +66082,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "uHP" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "uHY" = ( /obj/structure/table/steel, /obj/item/storage/briefcase/inflatable{ @@ -65171,7 +66140,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "uHZ" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -65181,7 +66150,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "uIa" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -65194,7 +66163,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "uIb" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -65210,15 +66179,15 @@ name = "Eastern Courtyard" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "uIi" = ( /obj/structure/railing/grey, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "uIl" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "uIn" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 5 @@ -65233,7 +66202,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "uIt" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -65242,7 +66211,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "uIA" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ dir = 1; @@ -65253,7 +66222,7 @@ req_one_access = list(13) }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "uIF" = ( /obj/structure/window/reinforced/survival_pod, /obj/structure/bed/chair/bay/shuttle{ @@ -65271,7 +66240,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "uIS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -65280,7 +66249,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "uIX" = ( /obj/machinery/button/remote/blast_door{ dir = 4; @@ -65297,7 +66266,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "uJo" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 1 @@ -65308,19 +66277,19 @@ "uJz" = ( /obj/item/paicard, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "uJF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/area/maintenance/ab_Kitchen) "uKn" = ( /obj/structure/table/standard, /obj/random/maintenance/medical, /obj/random/organ, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "uKu" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -65329,10 +66298,10 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "uKF" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "uKG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -65342,7 +66311,7 @@ pixel_x = 22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "uKO" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -65362,7 +66331,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "uKY" = ( /obj/structure/cable/green{ d1 = 1; @@ -65380,7 +66349,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "uLm" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -65400,7 +66369,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Harbor_Substation) +/area/maintenance/Harbor_Substation) "uLp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -65412,7 +66381,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "uLx" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/closet/crate/freezer/nanotrasen, @@ -65423,7 +66392,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "uLE" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -65432,7 +66401,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "uLX" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 @@ -65447,7 +66416,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "uMf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -65459,14 +66428,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Deck1_Transit_Hall) "uMv" = ( /obj/structure/flora/lily1, /turf/simulated/floor/water/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "uMU" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "uMY" = ( /obj/machinery/camera/network/security{ dir = 9; @@ -65474,7 +66443,7 @@ network = list("Engineering") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "uNe" = ( /obj/structure/table/steel, /obj/item/paper/petrification_notes, @@ -65483,7 +66452,7 @@ pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "uNu" = ( /obj/machinery/vending/event/uniform, /obj/effect/floor_decal/borderfloorblack{ @@ -65493,7 +66462,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "uNF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -65506,16 +66475,16 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "uNW" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "uOm" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "uOn" = ( /obj/structure/cable/green{ d1 = 4; @@ -65527,26 +66496,26 @@ }, /obj/effect/catwalk_plated/dark, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "uOt" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "uOA" = ( /obj/machinery/beehive, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "uON" = ( /obj/random/maintenance/clean, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "uOP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/purple, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "uPj" = ( /obj/effect/catwalk_plated/dark, /turf/simulated/floor, @@ -65570,7 +66539,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "uPZ" = ( /obj/structure/bed/pillowpilefront/teal, /obj/item/storage/vore_egg/human{ @@ -65582,7 +66551,7 @@ pixel_x = 6 }, /turf/simulated/floor/wood/alt/tile/broken, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "uQf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -65597,13 +66566,13 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "uQx" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "uQy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -65621,7 +66590,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "uQN" = ( /obj/machinery/power/apc{ dir = 8; @@ -65640,13 +66609,13 @@ }, /obj/structure/cable/green, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "uQO" = ( /obj/structure/loot_pile/maint/trash, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "uQS" = ( /obj/item/toy/plushie/black_fox, /obj/item/toy/plushie/carp/pink{ @@ -65663,18 +66632,20 @@ }, /obj/structure/table/marble, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "uRc" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "uRj" = ( /obj/item/laserdome_flag/red, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "uRD" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -65701,11 +66672,11 @@ pixel_y = -25 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "uRT" = ( /obj/structure/railing, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "uSp" = ( /obj/machinery/light{ dir = 1; @@ -65721,7 +66692,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "uSq" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -65730,11 +66701,11 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "uSu" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "uSv" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -65744,7 +66715,7 @@ /obj/machinery/door/airlock/maintenance/common, /obj/item/tape/engineering, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "uSz" = ( /obj/structure/sign/directions/engineering{ dir = 8; @@ -65754,7 +66725,7 @@ dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "uSD" = ( /obj/machinery/light{ dir = 1 @@ -65767,7 +66738,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "uTe" = ( /obj/machinery/space_heater, /obj/machinery/alarm{ @@ -65775,16 +66746,16 @@ pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "uTo" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "uTX" = ( /obj/structure/table/standard, /obj/random/maintenance/cargo, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "uUc" = ( /obj/machinery/power/apc{ dir = 4; @@ -65806,7 +66777,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "uUf" = ( /turf/simulated/wall/rthull, /area/shuttle/cryo/station) @@ -65831,7 +66802,7 @@ dir = 1 }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "uUm" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 @@ -65840,7 +66811,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "uUt" = ( /obj/machinery/portable_atmospherics/canister/empty, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -65851,15 +66822,15 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "uUw" = ( /obj/random/organ, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "uUx" = ( /obj/structure/railing, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "uUN" = ( /obj/structure/cable{ d1 = 1; @@ -65876,14 +66847,13 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "uUT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -65901,26 +66871,36 @@ /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "uUZ" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "uVr" = ( /obj/structure/sign/graffiti/pisoff, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "uVs" = ( /obj/structure/bed/chair/bay{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "uVN" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "uWA" = ( /obj/effect/floor_decal/industrial/loading/blue{ dir = 4 @@ -65933,14 +66913,14 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "uWF" = ( /obj/machinery/light/small{ dir = 1 }, /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "uWI" = ( /obj/structure/cable/green{ d1 = 1; @@ -65957,7 +66937,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "uWK" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ @@ -65965,7 +66945,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "uWP" = ( /obj/structure/cable{ d1 = 4; @@ -65973,7 +66953,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "uWT" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -65987,7 +66967,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "uXa" = ( /obj/item/radio/intercom{ dir = 8; @@ -66002,11 +66982,11 @@ }, /obj/structure/sign/poster/nanotrasen, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "uXd" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "uXr" = ( /obj/structure/cable/white{ d1 = 2; @@ -66020,7 +67000,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "uXt" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -66032,14 +67012,14 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "uXJ" = ( /obj/structure/sign/warning/radioactive, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "uXL" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "uXM" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -66064,17 +67044,17 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "uXU" = ( /obj/effect/decal/cleanable/blood/oil/streak{ amount = 0 }, /obj/item/tool/wirecutters, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "uYj" = ( /turf/simulated/floor/airless, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "uYn" = ( /obj/structure/bed/chair/oldsofa, /obj/item/digestion_remains/variant2{ @@ -66085,7 +67065,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "uYq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloorwhite{ @@ -66095,17 +67075,17 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "uYw" = ( /obj/structure/railing/grey, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "uYV" = ( /obj/item/stack/rods, /obj/random/thermalponcho, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "uZg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 9 @@ -66116,24 +67096,24 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "uZm" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "uZF" = ( /obj/structure/table/rack, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "uZI" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/engineering, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "uZJ" = ( /obj/structure/extinguisher_cabinet{ dir = 1; @@ -66143,7 +67123,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "vai" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -66152,7 +67132,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "vao" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -66164,12 +67144,12 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "vaw" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "vaz" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -66184,7 +67164,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "vaE" = ( /obj/structure/bed/chair/wood{ dir = 8 @@ -66198,7 +67178,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "vaY" = ( /obj/effect/floor_decal/shuttle/loading{ dir = 4; @@ -66206,11 +67186,11 @@ }, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "vba" = ( /obj/structure/loot_pile/maint/technical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "vbt" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/floor_decal/borderfloorblack{ @@ -66223,8 +67203,11 @@ pixel_y = 32; name = "\improper LETHAL STORAGE" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "vbx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ dir = 4 @@ -66265,7 +67248,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "vci" = ( /obj/structure/bed/chair/bay{ dir = 1 @@ -66273,7 +67256,7 @@ /obj/effect/floor_decal/rust, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "vcs" = ( /obj/machinery/sleep_console, /turf/simulated/shuttle/floor/white, @@ -66281,19 +67264,19 @@ "vdg" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "vdp" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, /obj/item/digestion_remains{ pixel_y = -4; pixel_x = -4 }, /obj/effect/decal/cleanable/vomit, -/turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/kafel_full{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen floor" + }, +/area/maintenance/ab_Kitchen) "vdr" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/mauve/diagonal, @@ -66301,7 +67284,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "vdC" = ( /obj/machinery/computer/ship/sensors{ dir = 8 @@ -66323,7 +67306,7 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "vdT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -66333,7 +67316,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "vee" = ( /obj/structure/sign/directions/science{ pixel_y = 9; @@ -66347,7 +67330,7 @@ pixel_y = -9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "vem" = ( /obj/structure/closet/emcloset/legacy, /turf/simulated/shuttle/floor/darkred, @@ -66366,7 +67349,7 @@ "vew" = ( /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "veO" = ( /obj/structure/table/glass, /obj/item/toy/plushie/white_cat{ @@ -66375,7 +67358,7 @@ name = "white stuffed cat plushie" }, /turf/simulated/floor/carpet/sblucarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "veW" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -66394,7 +67377,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "vfd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -66415,7 +67398,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "vfq" = ( /obj/item/shovel, /obj/item/pickaxe, @@ -66457,15 +67440,15 @@ id = "sc-GCxenobio" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "vfU" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, /obj/machinery/appliance/cooker/grill, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" + }, +/area/maintenance/ab_Kitchen) "vfY" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -66477,13 +67460,13 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "vgc" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "vgh" = ( /obj/structure/grille/broken, /obj/structure/girder, @@ -66493,7 +67476,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "vgn" = ( /obj/machinery/button/remote/blast_door{ id = "sc-GCxenobio"; @@ -66508,13 +67491,13 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "vgv" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "vgG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -66526,7 +67509,7 @@ req_one_access = list(50) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "vgR" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -66542,7 +67525,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "vgS" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -66563,7 +67546,7 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "vhc" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -66572,7 +67555,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "vhf" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -66581,35 +67564,34 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "vhh" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "vhp" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "vhs" = ( /obj/structure/table/marble, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) -"vhC" = ( -/obj/structure/lattice, -/obj/effect/catwalk_plated/white, -/obj/structure/cable/white{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/turf/simulated/floor/tiled/white{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen white floor" }, -/turf/simulated/floor/plating/turfpack/airless, -/area/space) +/area/maintenance/ab_Kitchen) +"vhC" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_ForStar_Corridor2) "vhD" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "vhT" = ( /obj/random/organ, /obj/random/organ, @@ -66626,16 +67608,16 @@ /obj/random/organ, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "vic" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "vif" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "vig" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -66643,7 +67625,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "vih" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -66655,14 +67637,14 @@ id_tag = "sc-DBN2stall2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "vip" = ( /obj/structure/sign/small/warning/emerg_only{ desc = "Ladder for emergency use only"; pixel_y = 32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "vir" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -66674,7 +67656,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "viu" = ( /obj/structure/table/rack/shelf/steel, /obj/item/storage/toolbox/mechanical{ @@ -66707,7 +67689,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "viE" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -66719,12 +67701,12 @@ color = "#989898" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "viJ" = ( /obj/structure/table/standard, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "viL" = ( /obj/structure/cable/white{ d1 = 2; @@ -66732,7 +67714,7 @@ icon_state = "2-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "viW" = ( /obj/item/holosign_creator, /obj/structure/table/steel, @@ -66752,7 +67734,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "viY" = ( /obj/structure/cable/white{ d1 = 1; @@ -66760,7 +67742,7 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "vja" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -66790,7 +67772,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "vjR" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -66806,7 +67788,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "vkh" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -66816,7 +67798,7 @@ }, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "vkp" = ( /obj/structure/cable/green{ d1 = 2; @@ -66856,7 +67838,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "vkq" = ( /obj/structure/cable/green{ d1 = 1; @@ -66870,7 +67852,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "vkA" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -66890,7 +67872,7 @@ pixel_y = -27 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "vkN" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/security, @@ -66898,7 +67880,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "vkS" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -66919,13 +67901,13 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "vlb" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "vld" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -66936,11 +67918,11 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "vlN" = ( /obj/machinery/optable, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "vlU" = ( /obj/structure/cable/white{ d1 = 2; @@ -66948,18 +67930,18 @@ icon_state = "2-4" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "vlV" = ( /obj/structure/grille/rustic, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "vmi" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "vmt" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -66974,7 +67956,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "vna" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -66985,14 +67967,14 @@ name = "Fueldepo Storage" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "vnl" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "vnC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -67014,7 +67996,7 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "vnD" = ( /obj/structure/cable{ d1 = 4; @@ -67022,14 +68004,14 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "vnN" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "vnV" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -67046,14 +68028,16 @@ req_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "voc" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/seeds/lustflower{ icon_state = "seed" }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "voF" = ( /obj/structure/shuttle/engine/heater, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -67068,17 +68052,17 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "voT" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "vpc" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "vpe" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -67090,7 +68074,7 @@ id_tag = "sc-DBN2stall1" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "vpn" = ( /turf/simulated/floor/tiled/milspec, /area/shuttle/needle) @@ -67112,11 +68096,11 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "vpF" = ( /obj/structure/table/bench/sifwooden/padded, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "vpP" = ( /obj/structure/cable/green{ d1 = 2; @@ -67128,7 +68112,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "vpW" = ( /obj/structure/window/phoronreinforced/full, /obj/structure/window/reinforced/survival_pod{ @@ -67154,41 +68138,40 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "vpY" = ( /obj/random/trash, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "vqa" = ( /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green, /obj/structure/cable/green{ d1 = 16; d2 = 0; icon_state = "16-0" }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, /obj/structure/disposalpipe/up{ - dir = 1 + dir = 2 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "vqm" = ( /obj/structure/railing, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "vqs" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_5) +/area/maintenance/Market_Stall_5) "vqN" = ( /obj/item/gps{ pixel_x = 3; @@ -67223,8 +68206,19 @@ /obj/machinery/door/airlock/maintenance/sec{ name = "Checkpoint Access" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "vrc" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -67242,7 +68236,7 @@ name = "Xenobio Telescreen" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "vry" = ( /obj/machinery/camera/network/security{ dir = 4; @@ -67257,11 +68251,11 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "vrX" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "vsv" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4 @@ -67271,7 +68265,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "vta" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 4 @@ -67280,11 +68274,15 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "vtf" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/purple, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) +"vtC" = ( +/obj/structure/mob_spawner/mouse_nest, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_ForPort_Chamber1) "vtD" = ( /obj/machinery/power/apc{ dir = 8; @@ -67306,7 +68304,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "vtG" = ( /obj/structure/table/reinforced, /obj/item/tool/wrench{ @@ -67330,7 +68328,7 @@ pixel_y = -26 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "vtO" = ( /obj/machinery/suit_cycler/refit_only, /obj/effect/floor_decal/borderfloorblack{ @@ -67341,7 +68339,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "vtT" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -67350,7 +68348,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "vtZ" = ( /turf/simulated/shuttle/plating/airless/carry, /area/shuttle/ursula) @@ -67361,7 +68359,7 @@ /obj/item/clothing/head/fishing, /obj/random/forgotten_tram, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "vuh" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -67371,7 +68369,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "vur" = ( /obj/effect/catwalk_plated/white, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -67384,7 +68382,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "vuv" = ( /obj/item/radio/subspace{ desc = "A heavy duty radio that can pick up all manor of shortwave and subspace frequencies. It's a bit bulkier than a normal radio thanks to the extra hardware. An engraving on the frame reads: IF FOUND, RETURN TO THE BAR!"; @@ -67397,10 +68395,10 @@ }, /obj/structure/table/glass, /turf/simulated/floor/carpet/sblucarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "vuB" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "vuD" = ( /obj/machinery/camera/network/security{ dir = 4; @@ -67413,7 +68411,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "vuF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 @@ -67427,7 +68425,7 @@ dir = 4 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "vuG" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 6 @@ -67437,7 +68435,7 @@ }, /obj/machinery/chem_master, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "vuI" = ( /obj/structure/cable/green{ d1 = 2; @@ -67454,7 +68452,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "vuJ" = ( /obj/effect/landmark{ name = "carpspawn" @@ -67473,14 +68471,16 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "vvb" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/effect/landmark{ name = "lightsout" }, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "vvi" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 1 @@ -67494,7 +68494,7 @@ pixel_x = -3 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "vvs" = ( /obj/structure/grille, /obj/structure/shuttle/window, @@ -67507,7 +68507,7 @@ }, /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "vwb" = ( /obj/structure/reagent_dispensers/foam, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -67515,7 +68515,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "vwq" = ( /obj/structure/table/glass, /obj/item/clothing/glasses/science{ @@ -67535,12 +68535,12 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "vwC" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "vwF" = ( /obj/structure/cable/green{ d1 = 1; @@ -67559,7 +68559,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "vwH" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /obj/machinery/atmospherics/portables_connector{ @@ -67568,7 +68568,7 @@ /obj/effect/floor_decal/industrial/hatch/blue, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "vwN" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -67585,7 +68585,7 @@ pixel_y = -27 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "vwO" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -67602,7 +68602,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "vxp" = ( /obj/structure/closet/malf/suits, /obj/structure/extinguisher_cabinet{ @@ -67613,12 +68613,13 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "vxE" = ( /obj/random/trash_pile, /obj/random/trash, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "vxR" = ( /obj/machinery/telecomms/server/presets/medical, /obj/effect/catwalk_plated/dark, @@ -67627,7 +68628,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "vxT" = ( /obj/structure/table/steel, /obj/item/clamp{ @@ -67674,19 +68675,19 @@ pixel_x = 2 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "vxY" = ( /obj/structure/table/steel, /obj/random/maintenance/cargo, /obj/random/unidentified_medicine, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "vya" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "vys" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/steeldecal/steel_decals9, @@ -67700,7 +68701,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "vyR" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -67720,27 +68721,27 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "vyS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "vzg" = ( /obj/structure/table/bench/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "vzj" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "vzm" = ( /obj/random/obstruction, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "vzt" = ( /obj/structure/bed/chair/shuttle{ dir = 1 @@ -67768,11 +68769,11 @@ /obj/random/maintenance/clean, /obj/random/flashlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "vzT" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "vAs" = ( /obj/machinery/disposal/deliveryChute{ dir = 8 @@ -67783,17 +68784,17 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "vAB" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber2) +/area/maintenance/Deck1_Security_StarChamber2) "vAK" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "vAQ" = ( /obj/structure/table/rack/shelf/steel, /obj/fiftyspawner/wood, @@ -67807,7 +68808,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "vAV" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -67816,14 +68817,14 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "vAY" = ( /obj/structure/loot_pile/surface/medicine_cabinet/fresh{ pixel_y = 25 }, /obj/structure/table, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "vBd" = ( /obj/structure/cable/green{ d1 = 4; @@ -67858,13 +68859,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "vBh" = ( /obj/effect/floor_decal/steeldecal/monofloor{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "vBl" = ( /obj/machinery/light{ dir = 4; @@ -67873,7 +68874,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "vBs" = ( /obj/machinery/status_display{ layer = 4; @@ -67885,7 +68886,32 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) +"vBH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/Telecomms_Foyer) "vBS" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -67907,7 +68933,7 @@ name = "Personal Storage Lockers" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "vBT" = ( /obj/structure/table/rack/shelf/steel, /obj/item/suit_cooling_unit{ @@ -67956,7 +68982,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "vCb" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/valve/digital/open{ @@ -67964,13 +68990,13 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "vCF" = ( /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "vCI" = ( /obj/effect/floor_decal/steeldecal/steel_decals10, /obj/effect/floor_decal/steeldecal/steel_decals10{ @@ -67983,11 +69009,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "vCK" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "vCX" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -67996,7 +69022,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "vDa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 9 @@ -68005,7 +69031,7 @@ dir = 9 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "vDc" = ( /obj/machinery/firealarm{ pixel_y = -25; @@ -68025,7 +69051,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "vDg" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -68034,11 +69060,11 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "vDn" = ( /obj/machinery/smartfridge/drying_rack, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "vDr" = ( /obj/structure/cable/green{ d1 = 2; @@ -68055,7 +69081,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "vDu" = ( /obj/structure/cable/green{ d1 = 4; @@ -68073,27 +69099,28 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "vDv" = ( /obj/structure/table/steel, /obj/random/maintenance/clean, /obj/random/maintenance/security, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "vDy" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "vDC" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "vDP" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/table/rack{ @@ -68132,12 +69159,12 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "vEh" = ( /obj/structure/table/standard, /obj/item/surgical/surgicaldrill, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "vEt" = ( /obj/structure/cable/green{ d1 = 1; @@ -68145,7 +69172,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "vEL" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -68160,7 +69187,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "vFg" = ( /obj/structure/cable/green{ d1 = 4; @@ -68171,24 +69198,24 @@ dir = 4 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "vFk" = ( /obj/structure/table/standard, /obj/effect/decal/remains/posi, /obj/machinery/light_construct, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "vFx" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "vFF" = ( /obj/structure/disposalpipe/segment, /obj/random/maintenance/engineering, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "vFJ" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -68200,7 +69227,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "vFM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -68209,7 +69236,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "vFN" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloorwhite/corner{ @@ -68219,17 +69246,17 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "vFS" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "vFX" = ( /obj/structure/flora/log2, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "vGa" = ( /obj/structure/cable/green{ d1 = 1; @@ -68237,7 +69264,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "vGk" = ( /obj/effect/catwalk_plated/white, /turf/simulated/floor/glass/turfpack/airless, @@ -68251,7 +69278,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "vGQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -68263,12 +69290,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "vGT" = ( /obj/item/laserdome_flag/blue, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "vGW" = ( /obj/structure/sign/directions/cargo/mining{ dir = 8 @@ -68282,7 +69309,7 @@ pixel_y = 9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "vGY" = ( /obj/machinery/computer/telecomms/traffic{ dir = 4 @@ -68294,13 +69321,13 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "vHb" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "vHh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -68308,7 +69335,7 @@ /obj/machinery/portable_atmospherics/canister/air, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "vHk" = ( /obj/structure/table/marble, /obj/random/cash, @@ -68318,22 +69345,23 @@ }, /obj/random/maintenance/foodstuff, /turf/simulated/floor/bmarble, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "vHC" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "vHO" = ( /obj/item/frame, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "vIo" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ pixel_x = -1; pixel_y = 1 }, +/obj/item/geiger/wall/north, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "vIN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -68350,17 +69378,17 @@ name = "Personal Storage Lockers" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "vJu" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "vJz" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "vJS" = ( /obj/structure/cable/green{ d1 = 1; @@ -68374,13 +69402,13 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "vKf" = ( /obj/machinery/computer/transhuman/resleeving{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "vKP" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable{ @@ -68396,7 +69424,7 @@ /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, /obj/structure/disposalpipe/up, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "vLb" = ( /obj/machinery/light/small{ dir = 4 @@ -68404,7 +69432,7 @@ /obj/structure/table/standard, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor1) +/area/maintenance/Deck1_AftStar1_Corridor1) "vLe" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -68416,7 +69444,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "vLq" = ( /obj/structure/cable/green{ d1 = 1; @@ -68431,11 +69459,11 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "vLx" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "vLC" = ( /obj/machinery/atmospherics/binary/passive_gate{ dir = 1; @@ -68445,7 +69473,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "vLN" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -68483,8 +69511,10 @@ /obj/structure/bed/chair/wood{ dir = 8 }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "vMr" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -68492,12 +69522,24 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "vMv" = ( /obj/structure/flora/sif/tendrils, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "vMw" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/loading/blue{ @@ -68510,7 +69552,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "vMH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -68519,7 +69561,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "vML" = ( /obj/machinery/portable_atmospherics/canister/empty/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -68530,12 +69572,16 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "vMM" = ( /obj/structure/bed/chair/sofa/corner/lime, /obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "vMV" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -68547,7 +69593,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "vNd" = ( /obj/structure/sign/directions/dock{ dir = 4 @@ -68561,11 +69607,11 @@ dir = 8 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "vNe" = ( /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Star_Corridor) +/area/maintenance/Deck1_Star_Corridor) "vNk" = ( /obj/item/radio/intercom{ dir = 4; @@ -68582,16 +69628,16 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "vNw" = ( /obj/structure/bed/pillowpilefront/white, /obj/item/storage/vore_egg/floppy, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "vNA" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "vNE" = ( /obj/item/gps{ pixel_x = 3; @@ -68633,33 +69679,34 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "vNJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "vNV" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "vOc" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "vOs" = ( /obj/structure/table/darkglass, /obj/effect/floor_decal/spline/plain, +/obj/item/spacecasinocash/c10, /turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "vOL" = ( /obj/structure/table/rack, /obj/random/maintenance/engineering, /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "vOZ" = ( /obj/machinery/light{ dir = 4; @@ -68672,7 +69719,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "vPI" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -68688,7 +69735,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "vPN" = ( /obj/structure/cable/green{ d1 = 1; @@ -68705,16 +69752,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "vPS" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "vQi" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "vQw" = ( /obj/machinery/light{ dir = 8; @@ -68728,7 +69775,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "vQN" = ( /obj/structure/table/steel, /obj/item/clothing/accessory/collar/spike, @@ -68736,7 +69783,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "vQS" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume, /obj/effect/map_helper/airlock/atmos/chamber_pump, @@ -68745,7 +69792,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "vQV" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -68754,7 +69801,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "vQY" = ( /obj/machinery/door/firedoor/multi_tile, /obj/effect/floor_decal/industrial/hatch, @@ -68779,12 +69826,12 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "vRz" = ( /obj/machinery/floodlight, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "vRC" = ( /obj/structure/cable/green{ d1 = 4; @@ -68807,13 +69854,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "vSI" = ( /obj/structure/disposalpipe/segment, /obj/structure/table, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "vSR" = ( /obj/structure/railing, /obj/machinery/conveyor{ @@ -68821,12 +69868,12 @@ id = "SC-CBcargobay2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "vTa" = ( /obj/effect/floor_decal/rust, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "vTb" = ( /obj/machinery/light{ dir = 4; @@ -68850,7 +69897,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "vTM" = ( /obj/machinery/smartfridge/survival_pod{ name = "Advanced storage" @@ -68928,7 +69975,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "vUg" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -68937,16 +69984,18 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "vUn" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "vUq" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "vUB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -68966,7 +70015,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "vUD" = ( /obj/machinery/atmospherics/binary/passive_gate{ regulate_mode = 0; @@ -68975,7 +70024,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "vUH" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold4w/visible, @@ -68997,7 +70046,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "vVn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -69006,7 +70055,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "vVr" = ( /obj/machinery/power/apc{ dir = 8; @@ -69024,7 +70073,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "vVv" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 @@ -69040,7 +70089,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "vVR" = ( /obj/machinery/light/small{ dir = 1 @@ -69049,7 +70098,7 @@ /obj/random/maintenance/security, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "vVV" = ( /obj/structure/table/glass, /obj/item/gun/energy/floragun, @@ -69062,7 +70111,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "vVX" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 @@ -69071,14 +70120,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "vWg" = ( /obj/structure/sign/directions/evac{ dir = 4; pixel_y = -9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "vWn" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -69087,13 +70136,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "vWu" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "vXj" = ( /obj/effect/shuttle_landmark/southern_cross/escape/station, /turf/space, @@ -69106,19 +70155,19 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "vXp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) "vXu" = ( /obj/structure/sign/department/telecoms{ desc = "Sign of some important station compartment." }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "vXK" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -69128,7 +70177,7 @@ }, /obj/random/crate, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "vXM" = ( /obj/structure/table/rack, /obj/item/melee/umbrella/random{ @@ -69149,7 +70198,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "vXR" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -69159,10 +70208,10 @@ /obj/machinery/door/airlock/maintenance/common, /obj/item/tape/engineering, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "vYi" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "vYv" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -69171,13 +70220,13 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "vYL" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarChamber1) +/area/maintenance/Deck1_Security_StarChamber1) "vYT" = ( /obj/structure/table/standard, /obj/random/tool/powermaint, @@ -69188,7 +70237,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "vZk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -69211,7 +70260,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "vZC" = ( /obj/machinery/alarm{ dir = 4; @@ -69225,7 +70274,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "vZD" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/porta_turret/industrial/teleport_defense, @@ -69245,7 +70294,7 @@ name = "blobstart" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "vZO" = ( /obj/item/defib_kit/loaded, /obj/item/storage/pill_bottle/tramadol{ @@ -69265,7 +70314,7 @@ icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "vZT" = ( /obj/structure/table/rack/shelf, /obj/machinery/firealarm{ @@ -69299,7 +70348,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "vZX" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -69312,7 +70361,7 @@ pixel_y = 7 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "vZY" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -69328,7 +70377,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "wai" = ( /obj/structure/cable/white{ d1 = 1; @@ -69342,7 +70391,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "wal" = ( /turf/simulated/wall/rthull, /area/shuttle/large_escape_pod2/station) @@ -69367,7 +70416,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "wax" = ( /obj/machinery/light{ dir = 4; @@ -69379,7 +70428,7 @@ }, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "way" = ( /obj/structure/cable/green{ d1 = 2; @@ -69391,14 +70440,14 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "waU" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "waV" = ( /obj/structure/cable/green{ d1 = 1; @@ -69411,7 +70460,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "wbe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -69420,17 +70469,17 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "wbn" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "wbr" = ( /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "wbv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -69439,18 +70488,18 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "wbK" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "wbQ" = ( /obj/structure/table/standard, /obj/random/maintenance/engineering, /obj/random/maintenance/cargo, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "wcf" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -69459,14 +70508,14 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "wct" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /obj/machinery/atmospherics/pipe/manifold/hidden/black, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "wcz" = ( /obj/structure/cable/green{ d1 = 4; @@ -69480,12 +70529,12 @@ dir = 4 }, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Telecomms_Substation) +/area/maintenance/Telecomms_Substation) "wcD" = ( /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "wdj" = ( /obj/structure/closet/firecloset/full/double, /obj/item/suit_cooling_unit{ @@ -69506,7 +70555,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "wdC" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -69530,7 +70579,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "wey" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -69541,8 +70590,19 @@ /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "weO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -69563,11 +70623,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "weP" = ( /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "weV" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/white{ @@ -69577,7 +70637,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "weW" = ( /obj/machinery/ai_status_display, /turf/simulated/wall/rthull, @@ -69589,7 +70649,7 @@ }, /obj/machinery/door/firedoor/glass/hidden, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "wfq" = ( /obj/machinery/camera/network/security{ dir = 9; @@ -69603,7 +70663,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "wga" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 @@ -69612,7 +70672,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "wgf" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4 @@ -69622,7 +70682,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "wgm" = ( /obj/item/storage/briefcase/inflatable{ pixel_x = 8; @@ -69663,35 +70723,25 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "wgs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, +/obj/structure/disposalpipe/junction, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/hallway/For_Transit_Foyer) "wgF" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "wgL" = ( /obj/structure/railing/grey{ dir = 1 }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "wgO" = ( /obj/machinery/vending/cigarette, /obj/machinery/holoposter{ @@ -69699,7 +70749,7 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "whn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -69711,7 +70761,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "whr" = ( /obj/machinery/atmospherics/binary/passive_gate{ dir = 1; @@ -69724,12 +70774,14 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "whF" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "wie" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -69742,7 +70794,7 @@ pixel_y = 22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "wis" = ( /obj/structure/bed/chair/sofa/right/purp{ dir = 1 @@ -69753,13 +70805,13 @@ pixel_y = -25 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "wiw" = ( /obj/structure/table/standard, /obj/random/maintenance/research, /obj/random/flashlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "wiA" = ( /obj/structure/cable/green{ d1 = 4; @@ -69778,7 +70830,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "wiM" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -69800,10 +70852,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "wiX" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "wjg" = ( /obj/structure/cable/green{ d1 = 1; @@ -69817,7 +70869,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "wji" = ( /obj/structure/bed/chair/sofa/right/purp{ dir = 8 @@ -69826,12 +70878,12 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "wjk" = ( /obj/machinery/portable_atmospherics/canister/empty, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "wjo" = ( /obj/structure/cable/green{ d1 = 1; @@ -69849,11 +70901,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "wjR" = ( /obj/structure/flora/ausbushes/fernybush, -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "wjT" = ( /obj/structure/cable/green{ d1 = 4; @@ -69864,19 +70918,21 @@ /obj/random/maintenance/security, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "wjU" = ( /obj/effect/floor_decal/rust, /obj/random/cutout, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "wjZ" = ( -/turf/simulated/floor/grass2, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Star_1Deck_Atrium) "wkg" = ( /obj/item/toy/baseball, /turf/simulated/floor/grass2/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "wkU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -69892,12 +70948,12 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "wln" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "wlp" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -69911,16 +70967,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "wlt" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "wlP" = ( /obj/machinery/light_construct/floortube, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "wmh" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -69935,12 +70991,12 @@ pixel_y = 24 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "wmA" = ( /obj/structure/bed/pillowpile/teal, /obj/item/storage/vore_egg/green, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "wmB" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -69949,7 +71005,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "wmJ" = ( /obj/structure/railing{ dir = 4 @@ -69961,7 +71017,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "wnf" = ( /obj/structure/cable/green{ d1 = 1; @@ -69978,7 +71034,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "wnr" = ( /obj/machinery/portable_atmospherics/canister/phoron, /obj/machinery/atmospherics/portables_connector{ @@ -69990,7 +71046,7 @@ "wnJ" = ( /obj/item/tank/anesthetic, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "wnS" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -70008,7 +71064,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "woh" = ( /obj/machinery/alarm{ dir = 1; @@ -70018,15 +71074,15 @@ /obj/random/maintenance/misc, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber1) +/area/maintenance/Deck1_ForStar_Chamber1) "wor" = ( /obj/item/analyzer, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "wos" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "woz" = ( /obj/machinery/telecomms/server/presets/command, /obj/effect/catwalk_plated/dark, @@ -70035,7 +71091,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "woI" = ( /obj/effect/floor_decal/industrial/stand_clear/blue{ dir = 8 @@ -70043,7 +71099,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "wpT" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -70065,7 +71121,7 @@ }, /obj/effect/floor_decal/industrial/hatch, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "wpV" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /obj/structure/cable/white{ @@ -70074,30 +71130,30 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "wpY" = ( /obj/structure/disposalpipe/tagger{ sort_tag = "transit_crew" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/area/maintenance/ab_Kitchen) "wqo" = ( /obj/structure/closet/crate/hydroponics/exotic{ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "wqw" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "wqH" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "wqK" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -70114,7 +71170,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "wqR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -70133,7 +71189,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "wqU" = ( /obj/machinery/camera/network/security{ c_tag = "D1-Sci-Observation Hall1"; @@ -70146,7 +71202,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "wrf" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -70160,7 +71216,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "wrk" = ( /obj/machinery/alarm{ dir = 4; @@ -70168,7 +71224,7 @@ }, /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "wru" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, @@ -70177,11 +71233,11 @@ pixel_y = 7 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "wrx" = ( /obj/structure/table, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "wry" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/blast/regular{ @@ -70190,7 +71246,7 @@ name = "Containment Divider Doors" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "wrB" = ( /obj/structure/table/steel, /obj/random/tech_supply, @@ -70198,7 +71254,7 @@ /obj/random/tech_supply, /obj/random/maintenance/engineering, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "wrI" = ( /obj/structure/cable/green{ d1 = 1; @@ -70215,18 +71271,26 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "wrZ" = ( /obj/structure/sign/warning/lethal_turrets, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "wsf" = ( /obj/machinery/conveyor{ dir = 8; id = "QMLoad" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) +"wsm" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_AftStar1_Corridor2) "wsB" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -70240,14 +71304,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "wsF" = ( /obj/effect/catwalk_plated/white, /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "wsI" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 @@ -70276,18 +71340,18 @@ specialfunctions = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "wtd" = ( /obj/structure/sign/directions/evac{ dir = 8; pixel_y = -9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "wtj" = ( /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "wtx" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -70296,7 +71360,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "wtS" = ( /obj/structure/table/rack/shelf/steel, /obj/fiftyspawner/bcarpet, @@ -70322,7 +71386,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "wtU" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -70331,7 +71395,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "wtY" = ( /obj/structure/closet/emcloset, /obj/machinery/light{ @@ -70342,11 +71406,11 @@ /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Science/PA_Access) +/area/rnd/PA_Access) "wub" = ( /obj/structure/flora/pottedplant/overgrown, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "wuf" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -70367,11 +71431,11 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "wuh" = ( /obj/structure/table/glass, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "wuK" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -70379,7 +71443,7 @@ network = list("Domicile") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "wuQ" = ( /obj/structure/cable{ d1 = 1; @@ -70388,7 +71452,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "wvc" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 @@ -70408,7 +71472,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "wvh" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor{ @@ -70419,11 +71483,11 @@ }, /obj/effect/floor_decal/techfloor/orange/corner, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "wvD" = ( /obj/structure/bed/chair/sofa/right/beige, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "wwe" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -70446,12 +71510,12 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "wwj" = ( /obj/structure/table/steel, /obj/item/folder/yellow, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "wwB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -70482,7 +71546,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "wxC" = ( /obj/structure/closet/l3closet/janitor, /obj/machinery/alarm{ @@ -70495,12 +71559,13 @@ /obj/effect/floor_decal/corner/mauve/border{ dir = 4 }, +/obj/random/soap, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "wxM" = ( /obj/structure/bed/chair/office/dark, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "wya" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -70512,7 +71577,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "wyj" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/item/radio/intercom{ @@ -70523,19 +71588,12 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "wyq" = ( /obj/random/contraband, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "wyK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/ai_status_display{ - pixel_y = 32; - name = "1N-AI display" - }, /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -70543,7 +71601,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/maintenance/Deck1_Star_Corridor) "wzk" = ( /obj/item/clothing/under/modjump, /obj/item/clothing/shoes/athletic{ @@ -70562,7 +71620,7 @@ name = "Liquid" }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "wzz" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 @@ -70578,7 +71636,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "wzG" = ( /obj/structure/cable/white{ d1 = 4; @@ -70587,7 +71645,7 @@ }, /obj/structure/sign/small/warning/server_room, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Telecomms_Foyer) +/area/engineering/Telecomms_Foyer) "wzI" = ( /obj/structure/table/rack/shelf, /obj/random/donkpocketbox, @@ -70597,14 +71655,14 @@ /obj/structure/curtain/black, /obj/random/humanoidremains, /turf/simulated/floor/bmarble, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "wzV" = ( /mob/living/simple_mob/animal/passive/fish/icebass{ name = "Eliz"; faction = "nanotrasen" }, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "wzW" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil{ @@ -70614,7 +71672,7 @@ /obj/item/weldingtool/hugetank, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "wAp" = ( /obj/item/radio/intercom{ dir = 1; @@ -70630,36 +71688,36 @@ }, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Storage) +/area/security/Quantum_Pad_Storage) "wAA" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "wAV" = ( /obj/random/trash, /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1) +/area/maintenance/Deck1_Security_PortChamber1) "wBf" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "wBh" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "wBk" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "wBl" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -70671,7 +71729,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "wBw" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 @@ -70685,16 +71743,16 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "wBA" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "wBR" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "wBX" = ( /obj/effect/floor_decal/industrial/danger{ dir = 1 @@ -70702,10 +71760,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "wCj" = ( /obj/machinery/computer/shuttle_control/explore/needle{ - dir = 4 + dir = 4; + req_one_access = list(1,19,67) }, /turf/simulated/floor/tiled/milspec, /area/shuttle/needle) @@ -70715,7 +71774,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "wCC" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/warning{ @@ -70724,7 +71783,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "wCI" = ( /obj/structure/shuttle/engine/propulsion/burst, /obj/structure/window/titanium{ @@ -70745,15 +71804,15 @@ name = "1S-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "wCY" = ( /obj/structure/table/woodentable, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "wDv" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "wDD" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/syringe/drugs{ @@ -70766,15 +71825,15 @@ pixel_x = -6 }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "wDT" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "wEj" = ( /obj/machinery/smartfridge/sheets/persistent_lossy, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "wEm" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -70787,7 +71846,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "wEr" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 @@ -70796,16 +71855,17 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "wEw" = ( /obj/structure/bed/chair/sofa/sif_ora{ dir = 1 }, -/obj/machinery/light{ - name = "1S-light fixture" +/obj/machinery/light/spot{ + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "wEx" = ( /obj/effect/floor_decal/industrial/hatch, /obj/machinery/shield_diffuser, @@ -70814,7 +71874,7 @@ name = "Containment Vent Doors" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "wEZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -70825,12 +71885,12 @@ /obj/item/tape/atmos, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "wFm" = ( /obj/structure/table, /obj/random/medical/pillbottle, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "wFq" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -70871,7 +71931,7 @@ id = "sc-GCxenobio" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "wFx" = ( /obj/item/stool/padded{ dir = 8 @@ -70883,11 +71943,11 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "wFA" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "wFH" = ( /obj/structure/cable/green{ d1 = 1; @@ -70901,22 +71961,22 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "wFM" = ( /obj/structure/salvageable/server, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "wGc" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "wGo" = ( /obj/structure/table/rack/shelf/steel, /obj/fiftyspawner/floor_red, /obj/fiftyspawner/floor_white, /obj/fiftyspawner/floor_yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "wGt" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -70924,7 +71984,7 @@ network = list("Domicile") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "wHn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -70939,24 +71999,24 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "wHF" = ( /obj/structure/girder, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "wHM" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4; color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "wHU" = ( /obj/structure/table/rack, /obj/random/maintenance/security, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "wHV" = ( /obj/structure/bed/chair/sofa/right/beige{ dir = 1 @@ -70966,7 +72026,7 @@ pixel_x = -22 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/ForPort_1_Deck_Observatory) +/area/hallway/ForPort_1_Deck_Observatory) "wIj" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -70976,14 +72036,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "wIu" = ( /obj/random/crate, /obj/random/plushie, /obj/random/plushie, /obj/random/plushie, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "wIB" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -70995,7 +72055,7 @@ dir = 10 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "wII" = ( /obj/machinery/floodlight, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -71005,16 +72065,13 @@ network = list("Cargo") }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "wJe" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/alarm{ dir = 4; @@ -71026,8 +72083,12 @@ /obj/effect/floor_decal/corner/red/border{ dir = 8 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "wJT" = ( /mob/living/simple_mob/animal/passive/fish/solarfish{ name = "Luna"; @@ -71035,7 +72096,7 @@ faction = "nanotrasen" }, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "wJV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -71050,12 +72111,12 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber1) +/area/maintenance/Deck1_AftPort_Chamber1) "wKd" = ( /obj/structure/table/standard, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "wKq" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/green/bordercorner, @@ -71063,21 +72124,21 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "wKs" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "wKM" = ( /obj/random/mainttoyloot, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "wKR" = ( /obj/structure/table/rack, /obj/random/maintenance/research, /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "wKV" = ( /obj/machinery/power/apc{ dir = 4; @@ -71089,7 +72150,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "wLb" = ( /obj/machinery/camera/network/security{ c_tag = "D1-Com-Aft Stairwell1"; @@ -71102,21 +72163,21 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "wLk" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "wLu" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "wLL" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -71129,11 +72190,11 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "wLP" = ( /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "wLS" = ( /obj/item/clothing/under/dress/redeveninggown, /obj/item/pda/cargo{ @@ -71141,18 +72202,18 @@ pixel_x = 7 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "wLZ" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "wMl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "wMA" = ( /obj/structure/closet/crate/hydroponics/prespawned, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "wMB" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -71161,7 +72222,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "wME" = ( /obj/structure/railing{ dir = 4 @@ -71173,7 +72234,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "wMJ" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -71198,23 +72259,23 @@ pixel_x = -3 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "wMZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "wNp" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "wNz" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "wND" = ( /obj/structure/closet/walllocker/emerglocker{ pixel_x = 24; @@ -71228,7 +72289,7 @@ pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "wNI" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -71240,12 +72301,12 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "wNP" = ( /obj/structure/bed/chair/bay, /obj/item/handcuffs/cable/cyan, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "wNR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -71262,23 +72323,23 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "wNS" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /obj/effect/catwalk_plated/white, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "wOk" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "wOl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) "wOq" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -71290,22 +72351,22 @@ }, /obj/item/tape/engineering, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "wOF" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "wOO" = ( /obj/random/obstruction, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "wOS" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "wPi" = ( /obj/structure/window/titanium{ dir = 4 @@ -71324,7 +72385,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "wPo" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -71352,7 +72413,7 @@ opacity = 0 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "wPq" = ( /obj/structure/bed/chair/oldsofa/left, /obj/item/radio/intercom{ @@ -71361,7 +72422,7 @@ pixel_y = 22 }, /turf/simulated/floor/carpet/sblucarpet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "wPB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -71370,7 +72431,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "wPL" = ( /obj/structure/cable/green{ d1 = 4; @@ -71385,7 +72446,7 @@ }, /obj/effect/floor_decal/emblem/nt1, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "wQk" = ( /obj/structure/cable/green{ d1 = 2; @@ -71407,11 +72468,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "wQu" = ( /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "wQD" = ( /obj/structure/cable{ d1 = 4; @@ -71421,7 +72482,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Port_Corridor) +/area/maintenance/Deck1_Port_Corridor) "wQG" = ( /obj/structure/cable/green{ d1 = 1; @@ -71443,7 +72504,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "wRb" = ( /obj/machinery/alarm{ dir = 8; @@ -71467,18 +72528,18 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "wRy" = ( /obj/structure/table/bench/wooden, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "wRA" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/maintenance/misc, /obj/random/flashlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "wRD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -71496,12 +72557,12 @@ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "wRG" = ( /obj/structure/loot_pile/maint/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "wRK" = ( /obj/machinery/disposal, /obj/structure/window/reinforced, @@ -71512,7 +72573,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "wRN" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -71545,11 +72606,11 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "wRQ" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "wRW" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -71563,7 +72624,7 @@ }, /obj/structure/window/basic, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "wSj" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -71571,7 +72632,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "wSm" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloorblack{ @@ -71583,7 +72644,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "wSw" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -71605,19 +72666,19 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "wSS" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "wSY" = ( /obj/structure/sign/poster/custom{ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Star_1Deck_Central_Corridor_1) +/area/hallway/Star_1Deck_Central_Corridor_1) "wTd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -71636,7 +72697,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "wTB" = ( /obj/item/storage/firstaid/regular{ pixel_x = 2; @@ -71649,7 +72710,7 @@ }, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "wTC" = ( /obj/structure/sink{ pixel_y = 14 @@ -71663,8 +72724,12 @@ pixel_y = -10; pixel_x = 7 }, -/turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/tiled/kafel_full{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen floor" + }, +/area/maintenance/ab_Kitchen) "wTI" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -71683,7 +72748,7 @@ icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "wTJ" = ( /obj/machinery/light/small{ dir = 1 @@ -71692,7 +72757,7 @@ dir = 4 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "wTL" = ( /obj/structure/closet/emergsuit_wall{ dir = 8; @@ -71700,7 +72765,7 @@ name = "1W-emergency suit storage" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "wTO" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk{ @@ -71710,7 +72775,7 @@ dir = 4 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "wUg" = ( /obj/machinery/alarm{ dir = 4; @@ -71723,14 +72788,14 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "wVr" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/loading/white{ dir = 1 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "wVD" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -71738,7 +72803,7 @@ /obj/structure/table/rack/shelf, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "wVF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -71755,30 +72820,34 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "wVP" = ( /obj/item/clothing/under/swimsuit/striped, /obj/random/junk, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "wVW" = ( /obj/structure/bed/chair/sofa/lime{ dir = 8 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "wVY" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/zpipe/up/supply, /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "wWG" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "wWM" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightgrey/border, @@ -71786,7 +72855,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "wWT" = ( /obj/machinery/portable_atmospherics/canister/empty/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -71801,7 +72870,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "wXh" = ( /obj/effect/floor_decal/shuttle/handicap{ pixel_x = -1; @@ -71811,7 +72880,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "wXp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -71826,7 +72895,7 @@ /obj/effect/map_helper/airlock/door/ext_door, /obj/machinery/shield_diffuser, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "wXu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -71837,7 +72906,7 @@ network = list("Domicile") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_6) +/area/maintenance/Market_Stall_6) "wXD" = ( /obj/effect/floor_decal/industrial/stand_clear/blue{ dir = 4 @@ -71845,14 +72914,15 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "wXM" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "wYj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "wYu" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/portable_atmospherics/canister/air/airlock, @@ -71863,7 +72933,7 @@ pixel_x = 32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "wYz" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -71877,7 +72947,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "wYG" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -71903,7 +72973,7 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "wZg" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/accessory/collar/shock/bluespace/malfunctioning, @@ -71916,7 +72986,7 @@ /obj/effect/floor_decal/rust, /obj/random/mainttoyloot, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "wZi" = ( /obj/structure/cable{ d1 = 2; @@ -71938,7 +73008,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "wZj" = ( /obj/effect/floor_decal/industrial/stand_clear/red{ dir = 8 @@ -71953,7 +73023,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "wZm" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -71970,7 +73040,7 @@ req_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "wZo" = ( /obj/machinery/light{ dir = 4; @@ -71983,7 +73053,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "wZu" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -71997,7 +73067,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "wZA" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -72007,7 +73077,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_1_Deck_Observatory) +/area/hallway/AftPort_1_Deck_Observatory) "wZB" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -72017,7 +73087,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "wZU" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -72030,14 +73100,14 @@ network = list("Commons") }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "xax" = ( /obj/effect/floor_decal/rust, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "xay" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 10 @@ -72048,16 +73118,16 @@ /obj/effect/floor_decal/rust, /mob/living/simple_mob/vore/aggressive/rat/labrat/genetics, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "xaE" = ( /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "xaJ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "xbg" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -72075,11 +73145,11 @@ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "xbt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "xby" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/pink/bordercorner, @@ -72098,7 +73168,7 @@ icon_state = "0-4" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "xbG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -72115,7 +73185,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor2) +/area/maintenance/Deck1_ForStar_Corridor2) "xbV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -72125,20 +73195,14 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "xcc" = ( /obj/random/trash, /obj/structure/table/standard, /obj/random/tech_supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "xcs" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -72147,13 +73211,13 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "xct" = ( /obj/structure/disposalpipe/sortjunction/wildcard{ dir = 1 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber2) +/area/maintenance/Deck1_ForStar_Chamber2) "xcz" = ( /obj/machinery/newscaster{ pixel_x = -28; @@ -72166,14 +73230,34 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "xcV" = ( /obj/machinery/mining/brace{ dir = 8 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) +"xde" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/Telecomms_Foyer) "xdl" = ( /obj/machinery/telecomms/hub/preset/southerncross, /obj/effect/catwalk_plated/dark, @@ -72187,7 +73271,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Engineering/Telecomms_Network) +/area/engineering/Telecomms_Network) "xdo" = ( /obj/structure/cable/green{ d1 = 4; @@ -72200,8 +73284,11 @@ /obj/effect/floor_decal/corner/lightgrey/bordercorner{ dir = 8 }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Deck1_Transit_Hall) "xdw" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -72210,14 +73297,16 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Chamber3) +/area/maintenance/Deck1_ForStar_Chamber3) "xdx" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/turf/simulated/floor/grass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/turf/simulated/floor/outdoors/grass/sif/forest/turfpack/station{ + outdoors = -1 + }, +/area/hallway/Port_1Deck_Atrium) "xdz" = ( /obj/machinery/button/remote/blast_door{ id = "SC-BDxenobiopen6"; @@ -72234,18 +73323,18 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "xdG" = ( /obj/random/maintenance/security, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "xdI" = ( /obj/effect/catwalk_plated/white, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "xdN" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/dispenser/phoron, @@ -72256,7 +73345,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "xdS" = ( /obj/machinery/light{ dir = 1; @@ -72269,18 +73358,18 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "xdY" = ( /obj/structure/table/rack, /obj/random/maintenance/security, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "xeb" = ( /obj/effect/floor_decal/corner/white{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "xes" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor/northleft, @@ -72299,7 +73388,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "xeu" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -72311,7 +73400,7 @@ dir = 9 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "xeL" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -72338,24 +73427,24 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "xfb" = ( /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "xfl" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "xfr" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "xfA" = ( /obj/machinery/camera/network/security{ dir = 4; @@ -72363,7 +73452,7 @@ network = list("Harbor") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "xfD" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -72378,7 +73467,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "xfQ" = ( /obj/machinery/power/apc{ dir = 8; @@ -72402,12 +73491,12 @@ icon_state = "0-4" }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "xga" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "xgm" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -72420,7 +73509,7 @@ }, /obj/machinery/door/airlock/angled_bay/double/glass/common{ dir = 8; - name = "Starboard Harbor" + name = "Starboard Arrivals Harbor" }, /obj/structure/cable/green{ d1 = 4; @@ -72440,7 +73529,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "xgq" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -72450,14 +73539,14 @@ }, /obj/effect/decal/cleanable/blood, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "xgG" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "xgN" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -72476,7 +73565,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "xhd" = ( /obj/structure/table/reinforced, /obj/item/clothing/glasses/science{ @@ -72498,13 +73587,13 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "xhq" = ( /obj/structure/table/rack, /obj/random/maintenance/medical, /obj/random/maintenance/medical, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "xht" = ( /obj/structure/cable/green{ d1 = 1; @@ -72512,7 +73601,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber1) +/area/maintenance/Deck1_Security_PortChamber1) "xhV" = ( /obj/machinery/status_display, /obj/structure/cable/white{ @@ -72521,18 +73610,18 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "xiB" = ( /obj/structure/inflatable, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "xiM" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 }, /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "xiN" = ( /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/beige/bordercorner, @@ -72540,7 +73629,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "xiR" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -72548,14 +73637,14 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "xjo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/purple, /obj/machinery/meter{ name = "PA-Loop meter" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "xjp" = ( /obj/machinery/light{ dir = 1; @@ -72575,7 +73664,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "xjs" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -72596,7 +73685,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "xjv" = ( /obj/effect/catwalk_plated/white, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -72606,7 +73695,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "xjB" = ( /obj/machinery/flasher/portable, /obj/effect/floor_decal/industrial/hatch/red, @@ -72614,7 +73703,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Aft_Security_Post) +/area/security/Aft_Security_Post) "xjF" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -72627,18 +73716,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "xjZ" = ( /obj/structure/loot_pile/maint/junk, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "xkh" = ( /obj/structure/bed/chair/backed_red, /obj/structure/window/basic{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "xkI" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -72647,7 +73737,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "xkT" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -72669,7 +73759,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "xli" = ( /obj/structure/cable/green{ d1 = 1; @@ -72695,7 +73785,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "xlr" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -72707,10 +73797,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_1_Deck_Observatory) +/area/hallway/ForStar_1_Deck_Observatory) "xlE" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "xlY" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -72729,16 +73819,16 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "xmb" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "xmj" = ( /obj/structure/table/rack, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "xmv" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 @@ -72749,7 +73839,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "xmB" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -72761,7 +73851,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "xmI" = ( /obj/machinery/firealarm{ dir = 8; @@ -72780,7 +73870,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "xmP" = ( /obj/structure/cable/green{ d1 = 1; @@ -72793,7 +73883,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "xmQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -72816,7 +73906,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "xmY" = ( /obj/structure/cable/green{ d1 = 4; @@ -72839,7 +73929,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "xnl" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -72851,24 +73941,24 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "xop" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "xoB" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "xoF" = ( /obj/effect/floor_decal/arrivals/right, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "xoW" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/random{ @@ -72895,7 +73985,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "xpa" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -72916,11 +74006,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "xpo" = ( /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor3) +/area/maintenance/Deck1_AftPort_Corridor3) "xpF" = ( /obj/machinery/alarm{ dir = 1; @@ -72933,7 +74023,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Sling_Shuttle) +/area/security/Exploration_Sling_Shuttle) "xpQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -72942,7 +74032,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "xqb" = ( /obj/machinery/sleep_console{ dir = 4 @@ -72959,7 +74049,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "xqr" = ( /obj/structure/table/steel, /obj/machinery/light{ @@ -72980,7 +74070,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mining_EVA) +/area/quartermaster/Mining_EVA) "xqH" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -72989,7 +74079,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "xri" = ( /obj/machinery/computer/ship/engines, /turf/simulated/floor/tiled/dark, @@ -73010,7 +74100,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "xro" = ( /turf/simulated/shuttle/floor/darkred, /area/shuttle/expoutpost/station) @@ -73020,7 +74110,11 @@ pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) +"xrC" = ( +/obj/structure/mob_spawner/mouse_nest, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_ForStar_Corridor2) "xrK" = ( /obj/machinery/light{ dir = 4; @@ -73038,14 +74132,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "xrL" = ( /obj/structure/sign/chemdiamond, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "xrX" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "xrY" = ( /obj/machinery/vending/event/costume, /obj/item/radio/intercom{ @@ -73065,7 +74159,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Transit_Foyer) +/area/hallway/For_Transit_Foyer) "xsy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -73075,15 +74169,16 @@ icon_state = "seed" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "xsB" = ( /obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/light{ +/obj/machinery/light/spot{ dir = 1; - name = "1N-lighting fixture" + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." }, /turf/simulated/floor/water/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "xsD" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 5 @@ -73092,7 +74187,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "xsL" = ( /obj/item/gps{ pixel_x = 3; @@ -73134,7 +74229,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "xsN" = ( /obj/machinery/conveyor{ dir = 1; @@ -73142,7 +74237,7 @@ }, /obj/item/toy/gnome, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "xtk" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 @@ -73151,20 +74246,20 @@ dir = 10 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "xtn" = ( /obj/machinery/ai_status_display{ pixel_x = 32; name = "1E-AI display" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "xtx" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "xtJ" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/mask/gas{ @@ -73189,7 +74284,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "xtP" = ( /obj/effect/catwalk_plated/white, /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ @@ -73200,7 +74295,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "xuI" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -73209,31 +74304,31 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "xvd" = ( /obj/structure/table/wooden_reinforced, /obj/machinery/light_construct, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "xvs" = ( /obj/effect/floor_decal/industrial/stand_clear/blue, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "xvA" = ( /obj/effect/catwalk_plated/white, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay3) +/area/harbor/Ship_Bay3) "xvT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "xvX" = ( /obj/structure/cable/green{ d1 = 1; @@ -73255,7 +74350,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Corridor) +/area/quartermaster/Deck1_Corridor) "xwg" = ( /obj/structure/cable/green{ d1 = 2; @@ -73274,11 +74369,11 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "xwh" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "xwl" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -73287,7 +74382,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "xws" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -73302,26 +74397,26 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "xwz" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Exploration_Ship_Bay) +/area/security/Exploration_Ship_Bay) "xwJ" = ( /obj/structure/table/darkglass, /obj/structure/stripper_pole{ pixel_y = 14 }, /turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "xwZ" = ( /obj/structure/bed/chair/oldsofa/right{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "xxo" = ( /obj/structure/cable{ d1 = 1; @@ -73330,12 +74425,12 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor1) +/area/maintenance/Deck1_AftPort_Corridor1) "xya" = ( /obj/structure/table/reinforced, /obj/item/xenoarch_multi_tool, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "xyC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -73344,7 +74439,7 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "xyH" = ( /obj/structure/cable{ d1 = 1; @@ -73354,39 +74449,40 @@ /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "xyQ" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/bmarble, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "xyU" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "xyZ" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "xzb" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "xzl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 +/obj/machinery/ai_status_display{ + name = "1N-AI display"; + pixel_y = 32 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "xzL" = ( /obj/fiftyspawner/glass, /obj/fiftyspawner/glass, @@ -73411,10 +74507,10 @@ name = "1W-light fixture" }, /turf/simulated/floor/plating/turfpack/station, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "xAc" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "xBj" = ( /obj/effect/floor_decal/industrial/loading/blue{ dir = 8 @@ -73427,7 +74523,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "xBk" = ( /obj/machinery/alarm{ dir = 1; @@ -73436,7 +74532,7 @@ /obj/random/tech_supply/component, /obj/random/tech_supply/component, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "xBt" = ( /obj/effect/floor_decal/industrial/stand_clear, /obj/structure/railing/grey{ @@ -73448,11 +74544,11 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "xBy" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor3) +/area/maintenance/Deck1_Security_StarCorridor3) "xBN" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -73461,25 +74557,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) -"xCg" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Deck1_Corridor) "xCp" = ( /obj/machinery/computer/area_atmos/tag{ scrub_id = "SC-Harbor" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "xCJ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck1_Science_ForCorridor1) +/area/maintenance/Deck1_Science_ForCorridor1) "xCL" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -73491,7 +74578,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "xCP" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -73503,13 +74590,13 @@ dir = 5 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "xCU" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/shuttle/floor/voidcraft/dark, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "xDq" = ( /obj/machinery/suit_cycler/engineering{ req_one_access = list(11,24); @@ -73517,35 +74604,38 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "xDv" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "xEf" = ( /obj/structure/closet/crate, /obj/random/junk, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "xEk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "xEl" = ( /obj/effect/floor_decal/industrial/danger, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/GravGen_Room) +/area/engineering/GravGen_Room) "xEz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "xEE" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume, /obj/effect/map_helper/airlock/atmos/chamber_pump, @@ -73554,14 +74644,14 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "xEJ" = ( /obj/structure/disposalpipe/segment, /obj/random/junk, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber3) +/area/maintenance/Deck1_AftPort_Chamber3) "xEP" = ( /obj/structure/cable/green{ d1 = 4; @@ -73575,7 +74665,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Telecomms_Control_Room) +/area/engineering/Telecomms_Control_Room) "xEY" = ( /obj/machinery/status_display{ layer = 4; @@ -73618,21 +74708,21 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor3) +/area/maintenance/Deck1_AftStar1_Corridor3) "xFV" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_1_Deck_Observatory) +/area/hallway/AftStar_1_Deck_Observatory) "xFW" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "xFY" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) "xFZ" = ( /obj/machinery/power/apc{ dir = 4; @@ -73641,24 +74731,34 @@ }, /obj/structure/cable, /obj/random/trash, -/turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/obj/machinery/light_switch{ + pixel_x = 27; + pixel_y = -12; + name = "E-light switch"; + dir = 8 + }, +/turf/simulated/floor/plating{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen plating" + }, +/area/maintenance/ab_Kitchen) "xGq" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck1_Stairwell) +/area/quartermaster/Deck1_Stairwell) "xGs" = ( /obj/effect/catwalk_plated/white, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Ship_Bay4) +/area/harbor/Ship_Bay4) "xGH" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Chamber2) +/area/maintenance/Deck1_AftPort_Chamber2) "xGZ" = ( /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_SportsField) +/area/maintenance/ab_SportsField) "xHa" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -73667,7 +74767,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor1) +/area/maintenance/Deck1_Security_PortCorridor1) "xHf" = ( /obj/structure/cable{ d1 = 4; @@ -73676,20 +74776,23 @@ }, /obj/structure/table/glass, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "xHh" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "xHw" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/For_Restroom) +/area/crew_quarters/For_Restroom) "xHx" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "xHz" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -73708,13 +74811,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "xHL" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "xIq" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/mask/gas{ @@ -73743,7 +74846,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "xIE" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/light{ @@ -73757,11 +74860,11 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot1) +/area/quartermaster/Depot1) "xIH" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "xIL" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -73769,7 +74872,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "xJm" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -73778,7 +74881,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "xJH" = ( /obj/machinery/power/apc{ dir = 1; @@ -73790,7 +74893,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor3) +/area/maintenance/Deck1_ForPort_Corridor3) "xJP" = ( /obj/structure/window/reinforced, /obj/machinery/suit_cycler/refit_only, @@ -73802,7 +74905,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "xJX" = ( /obj/machinery/alarm{ dir = 1; @@ -73814,17 +74917,21 @@ /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "xKd" = ( /obj/structure/grille/broken, -/turf/simulated/floor/wood/alt/panel/broken, -/area/SouthernCrossV2/Maints/ab_Kitchen) +/turf/simulated/floor/wood/alt/panel{ + nitrogen = 101.3; + oxygen = 0; + name = "Nitrogen panel" + }, +/area/maintenance/ab_Kitchen) "xKj" = ( /obj/machinery/light_construct{ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "xKr" = ( /obj/item/gps{ pixel_x = 3; @@ -73860,11 +74967,11 @@ /obj/machinery/door/airlock/angled_bay/external/glass, /obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Dock3) +/area/harbor/Dock3) "xMb" = ( -/obj/turbolift_map_holder/southern_cross/forward, +/obj/turbolift_map_holder/soluna_nexus/forward, /turf/simulated/floor/plating/eris/under, -/area/SouthernCrossV2/Maints/Room_88) +/area/maintenance/Room_88) "xMB" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume, /obj/effect/map_helper/airlock/atmos/chamber_pump, @@ -73873,7 +74980,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "xMF" = ( /obj/structure/cable/green{ d1 = 1; @@ -73900,7 +75007,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "xMR" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -73914,13 +75021,13 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "xNf" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "xNh" = ( /obj/effect/floor_decal/corner/red/border{ dir = 8 @@ -73932,14 +75039,14 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "xNM" = ( /mob/living/simple_mob/animal/passive/fish/koi{ name = "Chayote"; faction = "nanotrasen" }, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "xNN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -73949,21 +75056,21 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_1) +/area/maintenance/Market_Stall_1) "xNP" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor1) +/area/maintenance/Deck1_ForPort_Corridor1) "xNU" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "xNW" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "xOy" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -73975,7 +75082,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "xOJ" = ( /obj/structure/table/rack/shelf, /obj/random/contraband, @@ -73984,11 +75091,11 @@ /obj/item/seeds/random, /obj/random/maintenance/medical, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/ab_GeneralStore) +/area/maintenance/ab_GeneralStore) "xPk" = ( /obj/structure/bed/chair/office/light, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_CardTrading) +/area/maintenance/ab_CardTrading) "xPp" = ( /obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -74003,7 +75110,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Depot2) +/area/quartermaster/Depot2) "xPq" = ( /obj/structure/cable/green{ d1 = 2; @@ -74015,7 +75122,7 @@ pixel_x = -1 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "xPA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -74033,7 +75140,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "xPK" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 @@ -74042,7 +75149,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Ship_Bay1) +/area/harbor/Ship_Bay1) "xPO" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -74064,7 +75171,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "xPQ" = ( /obj/structure/railing{ dir = 8 @@ -74076,7 +75183,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "xQk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -74092,19 +75199,19 @@ req_access = list(7) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "xQo" = ( /obj/effect/floor_decal/industrial/hatch, /obj/machinery/shield_diffuser, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "xQx" = ( /obj/structure/table/glass, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "xQV" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "xQZ" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -74124,7 +75231,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "xRj" = ( /obj/effect/floor_decal/industrial/warning/cee, /obj/machinery/power/smes/buildable/point_of_interest{ @@ -74139,7 +75246,7 @@ "xRv" = ( /obj/effect/floor_decal/borderfloorwhite, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Medical) +/area/maintenance/ab_Medical) "xRw" = ( /obj/structure/dispenser/oxygen, /obj/machinery/light{ @@ -74148,12 +75255,12 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/hallway/Planetside_Equipment) "xRH" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Corridor2) +/area/maintenance/Deck1_ForPort_Corridor2) "xRX" = ( /obj/structure/cable/green{ d1 = 1; @@ -74173,7 +75280,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Post) +/area/harbor/Fueling_Post) "xSa" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -74185,7 +75292,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "xSm" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -74202,7 +75309,7 @@ network = list("Harbor") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock2) +/area/harbor/Dock2) "xSx" = ( /obj/machinery/door/airlock/voidcraft/vertical{ frequency = 1380; @@ -74253,7 +75360,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "xSR" = ( /obj/structure/cable/blue{ d1 = 4; @@ -74265,7 +75372,7 @@ "xSS" = ( /obj/structure/sign/warning/vacuum, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "xTk" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/warning{ @@ -74277,13 +75384,13 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "xTt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Harbor) +/area/maintenance/Distro_Harbor) "xTD" = ( /obj/structure/window/plastitanium/full, /obj/structure/window/reinforced/survival_pod{ @@ -74312,18 +75419,18 @@ /area/shuttle/spacebus) "xTJ" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "xUb" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortCorridor2) +/area/maintenance/Deck1_Security_PortCorridor2) "xUl" = ( /obj/structure/table/bench/sifwooden, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Science/Observation_Hall) +/area/rnd/Observation_Hall) "xUt" = ( /obj/structure/closet/walllocker/emerglocker{ pixel_x = 24; @@ -74350,7 +75457,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Gateway) +/area/crew_quarters/Public_Gateway) "xVd" = ( /obj/structure/table/glass, /obj/item/clothing/shoes/galoshes{ @@ -74363,11 +75470,11 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "xVg" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor1) +/area/maintenance/Deck1_ForStar_Corridor1) "xVw" = ( /obj/structure/table/glass, /obj/item/melee/baton/slime/loaded{ @@ -74385,20 +75492,38 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "xVH" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "xVJ" = ( /obj/structure/table/glass, -/obj/item/xenobio/monkey_gun, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/purple/diagonal, /obj/effect/floor_decal/borderfloorwhite{ dir = 6 }, +/obj/item/stack/material/cardboard{ + amount = 25 + }, +/obj/item/tape_roll{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/item/hand_labeler{ + pixel_y = 1; + pixel_x = 2 + }, +/obj/item/packageWrap{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/packageWrap{ + pixel_x = -5; + pixel_y = 10 + }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "xVP" = ( /obj/structure/closet/radiation, /obj/effect/floor_decal/corner/purple/diagonal, @@ -74406,18 +75531,18 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "xVS" = ( /obj/effect/floor_decal/corner/white, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "xWj" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/power/breakerbox/activated{ RCon_tag = "Harbor Substation Bypass" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Harbor_Substation) +/area/maintenance/Harbor_Substation) "xWo" = ( /obj/item/radio/intercom{ dir = 8; @@ -74431,11 +75556,11 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "xWz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "xWZ" = ( /obj/structure/cable{ d1 = 4; @@ -74447,16 +75572,16 @@ pixel_x = -3 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "xXs" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "xXv" = ( /obj/item/clothing/under/lawyer/bluesuit, /turf/simulated/floor/wood/alt/tile/broken, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "xXL" = ( /obj/item/gps{ pixel_x = 3; @@ -74482,7 +75607,7 @@ /obj/structure/table/steel, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "xXZ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -74491,10 +75616,10 @@ /obj/effect/floor_decal/industrial/arrows/blue, /obj/machinery/door/airlock/angled_bay/standard/color/common{ dir = 4; - name = "Starboard Harbor" + name = "Starboard Arrivals Harbor" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_Docking_Foyer) +/area/harbor/Star_Docking_Foyer) "xYr" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -74508,7 +75633,7 @@ network = list("Harbor") }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Ship_Bay2) +/area/harbor/Ship_Bay2) "xYw" = ( /obj/machinery/disposal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -74521,7 +75646,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "xYG" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -74548,7 +75673,7 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "xYI" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -74556,7 +75681,7 @@ network = list("Domicile") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_3) +/area/maintenance/Market_Stall_3) "xYJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -74574,11 +75699,11 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Science_AftCorridor1) +/area/maintenance/Deck1_Science_AftCorridor1) "xYL" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "xYQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -74592,10 +75717,10 @@ icon_state = "4-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "xYR" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "xZg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -74622,7 +75747,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Xenobotany_Isolation_Chamber) +/area/rnd/Xenobotany_Isolation_Chamber) "xZk" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -74630,7 +75755,7 @@ network = list("Domicile") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Market_Stall_2) +/area/maintenance/Market_Stall_2) "xZB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -74642,7 +75767,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "xZL" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/window/brigdoor/eastleft{ @@ -74663,18 +75788,7 @@ layer = 3.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Xenobiology_Lab) -"xZU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/area/rnd/Xenobiology_Lab) "yad" = ( /obj/structure/table/steel, /obj/item/storage/briefcase/inflatable{ @@ -74720,7 +75834,7 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Central) +/area/maintenance/Distro_Central) "yae" = ( /obj/structure/table/reinforced, /obj/item/tool/wrench{ @@ -74737,7 +75851,7 @@ }, /obj/machinery/door/firedoor/glass/hidden, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Fueling_Storage) +/area/harbor/Fueling_Storage) "yaq" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 @@ -74758,7 +75872,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "yaQ" = ( /obj/structure/girder/reinforced, /obj/structure/cable/green{ @@ -74767,21 +75881,12 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber3) +/area/maintenance/Deck1_Security_PortChamber3) "ybt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Planetside_Equipment) +/obj/random/maintenance/misc, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_Security_PortCorridor1) "ybw" = ( /obj/structure/cable{ d1 = 4; @@ -74793,12 +75898,12 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_1Deck_Central_Corridor_1) +/area/hallway/Port_1Deck_Central_Corridor_1) "ybz" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "ybB" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -74811,14 +75916,14 @@ "ybD" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "ybV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "ybW" = ( /turf/simulated/shuttle/wall/no_join{ base_state = "orange"; @@ -74829,13 +75934,22 @@ "ycf" = ( /obj/machinery/vending/cola, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_ChuteTrade) +/area/maintenance/ab_ChuteTrade) "ycp" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/obj/effect/catwalk_plated/techmaint, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck1_Security_PortCorridor2) "ycv" = ( /obj/structure/cable/green{ d1 = 1; @@ -74847,7 +75961,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "ycy" = ( /obj/structure/cable/green{ d1 = 1; @@ -74859,7 +75973,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_1_Deck_Stairwell) +/area/hallway/Aft_1_Deck_Stairwell) "ycA" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/power/apc{ @@ -74872,7 +75986,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor1) +/area/maintenance/Deck1_Cargo_Corridor1) "ycU" = ( /obj/structure/cable/green{ d1 = 4; @@ -74898,8 +76012,11 @@ /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Corridor) +/area/hallway/Deck1_Corridor) "ycZ" = ( /obj/machinery/power/apc{ dir = 8; @@ -74916,20 +76033,17 @@ d2 = 8; icon_state = "0-8" }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, /obj/effect/floor_decal/corner/red/border{ dir = 8 }, +/obj/structure/cable/green, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) "ydb" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -74945,33 +76059,33 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "ydH" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor2) +/area/maintenance/Deck1_Cargo_Corridor2) "ydL" = ( /obj/machinery/oxygen_pump/mobile/anesthetic, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Surgery) +/area/maintenance/ab_Surgery) "yea" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Deck1_Transit_Hall) +/area/hallway/Deck1_Transit_Hall) "yeg" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "yeh" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "yek" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -74986,7 +76100,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Corridor3) +/area/maintenance/Deck1_Cargo_Corridor3) "yeQ" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; @@ -74995,7 +76109,7 @@ use_power = 1 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/PA_Chamber) +/area/rnd/PA_Chamber) "yfi" = ( /obj/structure/cable/green{ d1 = 4; @@ -75008,7 +76122,27 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_ForStar_Corridor3) +/area/maintenance/Deck1_ForStar_Corridor3) +"yfk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/shield_gen/external, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/engineering/Telecomms_Foyer) "yfq" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -75020,7 +76154,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt/parquet/turfpack/station, -/area/SouthernCrossV2/Commons/Cryostorage_Lounge) +/area/hallway/Cryostorage_Lounge) "yfy" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -75034,7 +76168,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Supply_Ship_Bay) +/area/quartermaster/Supply_Ship_Bay) "yfL" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/floor_decal/borderfloorblack{ @@ -75045,7 +76179,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "yfU" = ( /obj/structure/closet/crate/engineering, /obj/random/maintenance/engineering, @@ -75056,7 +76190,7 @@ /obj/random/tech_supply, /obj/random/toolbox, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Deck1_Cargo_Chamber1) +/area/maintenance/Deck1_Cargo_Chamber1) "yfZ" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 @@ -75079,12 +76213,12 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_Locker_Room) +/area/hallway/For_Locker_Room) "ygL" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "ygN" = ( /obj/machinery/camera/network/security{ dir = 10; @@ -75103,10 +76237,10 @@ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Commons/Star_1Deck_Atrium) +/area/hallway/Star_1Deck_Atrium) "ygP" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Maints/Market_Stall_4) +/area/maintenance/Market_Stall_4) "yhq" = ( /obj/machinery/light/small/emergency, /obj/structure/lattice, @@ -75122,7 +76256,7 @@ id_tag = "sc-ChimeSci" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "yhT" = ( /obj/item/clothing/suit/storage/teshari/cloak/standard/black_brown{ pixel_x = 3; @@ -75143,7 +76277,7 @@ /obj/random/trash, /obj/random/junk, /turf/simulated/floor/wood/alt/tile/broken, -/area/SouthernCrossV2/Maints/Deck1_ForPort_Chamber1) +/area/maintenance/Deck1_ForPort_Chamber1) "yil" = ( /obj/machinery/power/apc{ dir = 1; @@ -75166,7 +76300,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_EVA) +/area/crew_quarters/Public_EVA) "yiE" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/industrial/danger/corner, @@ -75181,7 +76315,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Research_Ship_Bay) +/area/rnd/Research_Ship_Bay) "yiJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -75192,7 +76326,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "yja" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/power/apc{ @@ -75201,7 +76335,7 @@ }, /obj/structure/cable, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftStar1_Corridor2) +/area/maintenance/Deck1_AftStar1_Corridor2) "yjc" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -75218,18 +76352,18 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_Docking_Foyer) +/area/harbor/Port_Docking_Foyer) "yji" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_PortChamber2) +/area/maintenance/Deck1_Security_PortChamber2) "yjs" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /mob/living/simple_mob/slime/xenobio, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Xenobiology_Lab) +/area/rnd/Xenobiology_Lab) "yjC" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -75248,7 +76382,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Harbor/Dock1) +/area/harbor/Dock1) "yjP" = ( /obj/structure/table/glass, /obj/item/clipboard, @@ -75260,7 +76394,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/Xenobotany_Lab) +/area/rnd/Xenobotany_Lab) "yjZ" = ( /obj/structure/table/hardwoodtable, /obj/structure/disposalpipe/segment{ @@ -75268,7 +76402,7 @@ }, /obj/structure/sign/poster/nanotrasen, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Port_1Deck_Atrium) +/area/hallway/Port_1Deck_Atrium) "ykf" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -75282,7 +76416,7 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Custodial_Office) +/area/crew_quarters/Custodial_Office) "ykr" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -75291,7 +76425,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_AftPort_Corridor2) +/area/maintenance/Deck1_AftPort_Corridor2) "ykt" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -75300,7 +76434,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_1_Deck_Hall) +/area/hallway/Central_1_Deck_Hall) "ykw" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -75315,7 +76449,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_Transit_Lobby) +/area/hallway/Aft_Transit_Lobby) "yky" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -75324,22 +76458,22 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck1_Security_StarCorridor1) +/area/maintenance/Deck1_Security_StarCorridor1) "ykL" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Harbor/Dock5) +/area/harbor/Dock5) "ylb" = ( /obj/structure/bed/chair/oldsofa/left, /turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/SouthernCrossV2/Maints/ab_StripBar) +/area/maintenance/ab_StripBar) "ylm" = ( /obj/effect/floor_decal/steeldecal/monofloor, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mining_Ship_Bay) +/area/quartermaster/Mining_Ship_Bay) "ylw" = ( /obj/structure/sign/nanotrasen, /turf/simulated/shuttle/wall/no_join{ @@ -75351,17 +76485,17 @@ "ylB" = ( /obj/structure/table/glass, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Harbor/Dock4) +/area/harbor/Dock4) "ylN" = ( /obj/machinery/vending/entertainer, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Hydroponics) +/area/maintenance/ab_Hydroponics) "ymc" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Quantum_Pad_Checkpoint) +/area/security/Quantum_Pad_Checkpoint) (1,1,1) = {" aaa @@ -87157,6 +88291,14 @@ aaa aaa aaa aaa +aVx +aaa +aaa +aaa +aaa +aaa +aaa +oHD aaa aaa aaa @@ -87166,6 +88308,7 @@ aaa aaa aaa aaa +hBx aaa aaa aaa @@ -87175,16 +88318,7 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +rVY aaa aaa aaa @@ -87415,14 +88549,6 @@ aaa aaa aaa aaa -aVx -aaa -aaa -aaa -aaa -aaa -aaa -oHD aaa aaa aaa @@ -87432,7 +88558,6 @@ aaa aaa aaa aaa -hBx aaa aaa aaa @@ -87442,7 +88567,16 @@ aaa aaa aaa aaa -rVY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -87670,6 +88804,28 @@ aaa aaa aaa aaa +szS +aBe +gwU +tWM +tWM +aBe +akd +aaa +aaa +aBe +gwU +aBe +aaa +aaa +aaf +onH +aaf +aaa +aaa +aBe +gwU +aBe aaa aaa aaa @@ -87677,31 +88833,9 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aBe +gwU +aBe aaa aaa aaa @@ -87930,15 +89064,25 @@ aaf iFw aaf aBe -gwU -tWM -tWM +pSs +tac +qTw aBe aaa aaa aaa aBe -gwU +dWf +aBe +aaa +aaa +onH +cmI +onH +aaa +aaa +aBe +aDM aBe aaa aaa @@ -87948,17 +89092,7 @@ aaa aaa aaa aBe -gwU -aBe -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aBe -gwU +eov aBe aaa aaa @@ -87966,7 +89100,7 @@ aaa aaa aaa aaf -iFw +onH aaf aaa aaa @@ -88188,15 +89322,25 @@ iFw cmI aaf aBe -pSs -tac -qTw +cNg +cNg +cNg aBe aaa aaa aaa aBe -dWf +cNg +aBe +aaa +aaa +aaf +opY +aaf +aaa +aaa +aBe +cNg aBe aaa aaa @@ -88206,26 +89350,16 @@ aaa aaa aaa aBe -aDM -aBe -aaa -aaa -aaa -adR -aaa -aaa -aaa -aBe -eov +cNg aBe aaa aaa aaa aaa aaa -iFw +onH cmI -iFw +onH aaa aaa aaa @@ -88908,13 +90042,13 @@ vYi iXF amX nuv -bMN -bMN -bMN -bMN -bMN -bMN -bMN +uyN +uyN +uyN +uyN +uyN +uyN +uyN hcO aVn aVn @@ -88965,8 +90099,8 @@ weV eDh aYG fWo -cfp -cfp +tPO +nCw aBe aBe fsK @@ -89162,17 +90296,17 @@ qfl ycv sdz xYL -vYi +fJB iXF vSR rmx -bMN -bMN -bMN -bMN -bMN -bMN -bMN +uyN +ohI +ohI +ohI +ohI +ohI +uyN ufm oTt oTt @@ -89424,13 +90558,13 @@ vYi iXF iuu lOo -yeg -bMN -bMN -bMN -bMN -bMN -bMN +umN +uyN +uyN +uyN +uyN +uyN +uyN bMN bMN bMN @@ -91189,7 +92323,7 @@ aaa aaa leY vkh -kxI +uyQ nnV dxJ uJz @@ -91244,7 +92378,7 @@ dcA dcA dcA fFB -thk +tZH fFB aaa aaa @@ -91465,7 +92599,7 @@ uzG caP rbf rbf -rbf +ahV rbf rbf nFX @@ -92756,9 +93890,9 @@ eae aFI ean cQf -ean +quN nJr -ean +gIQ eae oXM xrX @@ -93559,7 +94693,7 @@ lVL hKv cPi qgD -cPi +kUg tEy aVS bqb @@ -93790,7 +94924,7 @@ ean dMc ean mvI -vRc +scl eae baL xrX @@ -94010,7 +95144,7 @@ aaa aaa aaa bWN -iEp +quc eni iEp iEp @@ -94098,7 +95232,7 @@ uUx dht ihk jhG -hak +eHg dQF aaa aaa @@ -94845,7 +95979,7 @@ lcv uTX aoy pJz -aoy +gmF pBN uNW aoy @@ -94899,8 +96033,8 @@ cPr xlE xlE dvj -aiO -aiO +ggA +dCC act act act @@ -96124,7 +97258,7 @@ qbv qbv glw kfd -eSz +pPE eSz grb vVn @@ -96222,7 +97356,7 @@ aaa aaa aaa aaf -jhc +qIQ tts aaa aaa @@ -96646,10 +97780,10 @@ eSz vVn eSz kfd -alF +nZp wJV alF -alF +cRo aAa pJz tCf @@ -97156,7 +98290,7 @@ xAc xAc vaz kfd -sZx +qGi cNU grb qtw @@ -97387,7 +98521,7 @@ alk eKG alk alk -xTJ +vtC xTJ kex wGc @@ -97418,7 +98552,7 @@ kPv onN ruP cLo -eSz +gYP kfd lOq joN @@ -97672,7 +98806,7 @@ xAc xAc anC kfd -eSz +sZx grb grb eSz @@ -98671,7 +99805,7 @@ tij tij ryB iBY -bdm +nbX alk xTJ xTJ @@ -98684,7 +99818,7 @@ jyo qSa qwr cfo -eew +cwq pop gMA dXa @@ -98708,7 +99842,7 @@ sxk sxk onU wOl -onU +dIh aan alF wJV @@ -99220,7 +100354,7 @@ xAc xAc bPz aan -sxk +dBV sxk onU vXp @@ -99252,7 +100386,7 @@ gAi hWo kGB qph -uTo +mJa uqK lvn nhf @@ -99727,7 +100861,7 @@ gMA gMA gMA aaU -xAc +cxF xAc xAc lFr @@ -99751,7 +100885,7 @@ egX clF amv bEi -rFW +fKp clF fKp iEM @@ -100265,7 +101399,7 @@ viJ auk egX clF -nZp +imP bEi skE clF @@ -101042,7 +102176,7 @@ lZZ pRR kai neE -hcU +rne neE neE neE @@ -101280,15 +102414,15 @@ rgV rgV wQD qls -xJm +xzl epy -oXp +njX cqF iMg iMg kOa auk -auk +jFf wNE auk auk @@ -101305,7 +102439,7 @@ iBa hrD wRG lZZ -cxF +neE eJN urf lZZ @@ -101487,7 +102621,7 @@ crv liZ liZ bci -bci +ybt ftl ioc adO @@ -102002,20 +103136,20 @@ crv crv vtT vMr -xHa -xHa -xHa +mLK +mLK +mwE kQl -rjy +bWq bfs -rjy -rjy -rjy -rjy +bWq +bWq +bsU +bgb jdb -vFx -vFx -vFx +sKY +sKY +gwX xpQ vFx vFx @@ -102259,21 +103393,21 @@ bci oKY crv lwk -nrk +ayf bci eNu -pwh +ayf ioc dXZ qJd dXZ dXZ -vFx +daD dXZ dXZ dXZ dXZ -vFx +ycp ioc pph bwz @@ -102312,7 +103446,7 @@ pHw rgV kqv qls -xJm +sJC epy oXp aqG @@ -102335,7 +103469,7 @@ neE lZZ iBa neE -eoU +mLC lZZ oSW lZZ @@ -102353,7 +103487,7 @@ uqK pyu oWD oWD -nth +dTn aiz kAD xjv @@ -102512,11 +103646,11 @@ xHa xHa xHa sin -xHa -xHa -xHa -mDP -xHa +mLK +mLK +mLK +rwz +mLK gqG niG niG @@ -102526,12 +103660,12 @@ niG niG dDR rsr -vFx +daD dXZ dXZ dXZ inV -vFx +ycp ioc dXZ bwz @@ -102588,7 +103722,7 @@ htL auk lZZ lZZ -hcU +rne lZZ lZZ lZZ @@ -102769,7 +103903,7 @@ crv bci aZU bci -nrk +ayf aZU bci bci @@ -103036,7 +104170,7 @@ cFn bci niG nxs -njm +muN qfE xtJ niG @@ -103103,7 +104237,7 @@ jIQ fiB auk lZZ -eoU +mLC neE kai rZA @@ -103294,19 +104428,19 @@ aqU aqU lpj xIq +fVs njm -xZU dyd niG aFd -jsm +cVF kZC fvx mWW qgI rzO izm -xVH +mDO lZC sfG qCT @@ -103365,7 +104499,7 @@ eJN neE urf lZZ -neE +nGQ lBY urf lZZ @@ -103552,14 +104686,14 @@ xBN xBN aOv mWk +fVs njm -xZU vXM tUU jKH -jsm +cVF kZC -mwE +jsm fMw fHV mwb @@ -103666,7 +104800,7 @@ wZm fDb lcw aeZ -aKQ +rTV imS uwl aeZ @@ -103810,20 +104944,20 @@ blz aQY aOv qZw +fVs njm -xZU xRw tUU jKH -jsm +cVF kZC -diz -bsU +jsm +jsm hPg -gwX +xVH joI kWK -pgd +nQJ ubt dtT cBZ @@ -103851,7 +104985,7 @@ qkX dXV dZH dvf -gmR +gkS dId fvD oMZ @@ -103895,7 +105029,7 @@ giZ neE neE neE -neE +sbn qyi drQ kkH @@ -103964,7 +105098,7 @@ jLb wHM agL aaf -iFw +iKg aaf aaa aaa @@ -104069,13 +105203,13 @@ gWn gNf asB qlW -ybt +njm baM niG wAp dkt kZC -oFn +jsm rtA hqX kiF @@ -104109,7 +105243,7 @@ qkX vxR aFf aWf -gmR +rFW ivU bNq hKy @@ -104223,7 +105357,7 @@ xiM agL jlA fZW -iFw +iKg aaa aaa aaa @@ -104333,7 +105467,7 @@ niG liG rMi eHr -wgs +jsm sGM fHV aRs @@ -104367,10 +105501,10 @@ qkX skH aFf aFf -gmR +xde bmu -oJF -fJB +cPd +uad jYA jYA jYA @@ -104625,9 +105759,9 @@ qkX dFO aFf aFf -gmR -bmu -ull +rFW +aCl +cPd nKL jYA oex @@ -104839,19 +105973,19 @@ oex aHD axP fpw -taB -bgb -xCg +fpw +fpw +fpw +jpJ jpJ -fyJ oJL -mRs +fpw sGD -sKY +fpw kxe -ycp -mLK -mDO +fpw +fpw +muZ riw tkH xVH @@ -104883,10 +106017,10 @@ qkX sAJ aFf aFf -gmR -iTa -qVn -aIN +rFW +uad +iLt +uad jYA oex oex @@ -105097,10 +106231,6 @@ oex aHD uMf fpw -bXo -lEA -dWW -lEA fpw fpw fpw @@ -105108,8 +106238,12 @@ fpw fpw fpw fpw -fVs -esa +fpw +fpw +fpw +fpw +fpw +muZ jlF apK nQJ @@ -105143,8 +106277,8 @@ wzG dZH aWu mdg -uad -hUO +yfk +aPZ jYA oex oex @@ -105355,22 +106489,22 @@ oex aHD azG fpw -rwz -nbG -ayf -oXc -quN -oXc +fpw +azk +fpw +fpw +fpw +fpw sND -gHC -muN +fpw +iYx azk iYx -sEc +fpw muZ hpn vDC -tZB +xVH cJk atZ aLB @@ -105399,10 +106533,10 @@ fCA cCj aFf aWf -gmR -bmu +rFW +uad +iTa uad -gva jYA oex oex @@ -105612,7 +106746,7 @@ oex oex aHD kUD -fpw +lEA gRO cnK cnK @@ -105623,12 +106757,12 @@ cnK cnK eHQ hZV -bWq +eHQ cnK cnK aew ndt -cVF +qsy iTc kwi aLB @@ -105657,9 +106791,9 @@ fCA dFO aFf aFf -gmR -bmu -uad +rFW +aCl +oJF rwG jYA oex @@ -105870,7 +107004,7 @@ aHD aHD aHD oTi -fpw +lEA xdo cnK uNu @@ -105880,13 +107014,13 @@ edq uwN nCS fID -eiE -szN +fhM +fID kaz kKl aew aCG -nIQ +xVH aKF ant ymc @@ -105916,8 +107050,8 @@ cjG aFf aFf gmR -ahV -opY +fSV +ull sAy jYP jYP @@ -105946,7 +107080,7 @@ ruo tTG tTG adP -mHE +ofv mHE uVs tTG @@ -106128,15 +107262,15 @@ jFH llw rjC lps -fpw +lEA sfY axv vNA fhM onL fhM -fhM -fhM +dWW +wgs cAP wYj eqE @@ -106144,7 +107278,7 @@ mnt lXc aew vbt -daD +lZC cYN ant ant @@ -106173,10 +107307,10 @@ fCA woz aFf aFf -gmR +vBH kfX -fSV -iLt +qVn +aIN jYP lfT lEE @@ -106287,7 +107421,7 @@ xiM agL jlA deu -iFw +iKg aaa aaa aaa @@ -106431,10 +107565,10 @@ jEH aac dZH jYA -gmR -dTn +fxQ aCl -iKg +uad +hUO jYP awC aAn @@ -106544,7 +107678,7 @@ viE oSV agL aaf -iFw +iKg aaf aaa aaa @@ -106690,9 +107824,9 @@ dXW dZL jYA fMi -aPZ -kFh -njX +aCl +uad +gva jYP jYP mTH @@ -106714,7 +107848,7 @@ cWQ ttQ fYw prh -oXv +qbh oXv noX kio @@ -106894,8 +108028,8 @@ iRz wsS bpK vpe -eHg -jyw +tZU +pxJ jyw uCs ilU @@ -107153,7 +108287,7 @@ ilU ilU ilU cTx -tZU +jlg tZU pdi ilU @@ -107410,7 +108544,7 @@ iRz ilU tpk vih -gld +tZU xHw jyw uzd @@ -107668,7 +108802,7 @@ xdY ilU ilU ilU -nyJ +cTx oeQ tZU oKm @@ -107731,7 +108865,7 @@ mbX mOu dTJ ckb -xzl +ueQ bUY vWg pLO @@ -107743,7 +108877,7 @@ gPY bOw poY cWQ -ttQ +fPd fYw prh hvN @@ -107926,7 +109060,7 @@ aiL ilU fOR oun -gld +tZU xEk jyw fyT @@ -107988,8 +109122,8 @@ mbX mbX mOu dTJ -dTJ -pFH +jqw +ueQ ykt nSG plm @@ -108243,10 +109377,10 @@ abT dTJ pYp mbX -mbX -mOu uGv +fWW dTJ +wyK ueQ oXp pXo @@ -108452,7 +109586,7 @@ eZc awx awx bcV -bpD +cgh dTS eaL pSW @@ -108501,11 +109635,11 @@ eap dTJ pVV mbX -mbX -tGz vqa +tGz dTJ -sJC +pFH +ueQ nGX pXo bOw @@ -108759,10 +109893,10 @@ eap dTJ kkk mbX -mbX -gWH pVp +gWH dTJ +wyK ueQ oXp ekI @@ -109020,9 +110154,9 @@ mbX mbX cDX dTJ -dTJ -wyK -fDx +doV +ueQ +kbA ekI ekI ekI @@ -109223,7 +110357,7 @@ oaW oaW xQZ qPM -iJK +nyJ iJK iJK hpQ @@ -110068,7 +111202,7 @@ prh ttQ krS prh -lni +ing uIi cyY cyY @@ -110089,7 +111223,7 @@ fVc kBL bWY xaJ -lxO +wsm oVU gDq oVU @@ -110563,7 +111697,7 @@ rtZ rtZ rtZ fjY -adX +dXv adX adX nGf @@ -110572,7 +111706,7 @@ adX adX jSW vQi -ygP +rxK doo ueg sfj @@ -110830,7 +111964,7 @@ adX adX ugB vQi -rxK +gBJ ueg ueg loZ @@ -111068,7 +112202,7 @@ iyx tpf iyx tpf -iyx +adJ obh rtZ wal @@ -111306,7 +112440,7 @@ aHH aCO raV mNS -mBf +aBE kqZ aCO dFB @@ -111377,7 +112511,7 @@ wgL sEl fVc cAX -vUq +kFh xaJ piM oVU @@ -111562,10 +112696,10 @@ jfn aMi jfn aCO -lEQ +kdk mNS tOk -tDt +kqZ aCO dKt lvr @@ -111608,7 +112742,7 @@ ygP ygP ueg sfj -ygP +tRr vQi mTL igk @@ -111821,7 +112955,7 @@ tEO wlt aCO lEQ -lLo +nSV lvr qev aCO @@ -112079,13 +113213,13 @@ tEO vCK aCO eUj -pni +dKt hyZ -rPX -nVj -rPX -lLo -rPX +rBj +rBj +rBj +nSV +rBj rHr pXd hCr @@ -112337,13 +113471,13 @@ tEO feH aCO lXs -pni -hyZ +dKt +dKt lvr qTI qTI lLo -uyN +rBj pmy ucW mGQ @@ -112390,7 +113524,7 @@ prh ttQ kMM prh -ing +cbA uYw cyY cyY @@ -112595,15 +113729,15 @@ tEO vCK aCO awv +jUG +rPX rBj -rPX -rPX khf eSe -rPX +rBj lvr cNi -nVB +pni fed utD ddA @@ -112636,7 +113770,7 @@ adX adX pIs pQL -aZd +tDt aZd tnW aZd @@ -112852,20 +113986,20 @@ feH tEO feH aCO -ptX +ovx rqV tzN -rPX +lvr usJ -fNi -rPX -kBo +usJ +mGQ +bjp eQy pni hAv vfU agl -kuG +gld riG kuG tpf @@ -113113,9 +114247,9 @@ aCO ptX qLs psa -lvr +rBj rPX -hyZ +dKt dKt kBo vhs @@ -113156,7 +114290,7 @@ aZd tnW aZd jHD -aZd +kvV pQL xyZ eUN @@ -113375,7 +114509,7 @@ kxd cAC xFZ dKt -kBo +bjp dmc gHK mBf @@ -113416,7 +114550,7 @@ aZd jHD eNe pQL -ttQ +lTM eUN prh eOy @@ -113668,7 +114802,7 @@ adX adX gVA pQL -vgc +ccR aZd aZd aGR @@ -113696,7 +114830,7 @@ lLr qJW sEl sEl -oXv +nML fVc cAX vUq @@ -114152,7 +115286,7 @@ wTC vdp dXG auI -efy +oyL ntZ kuG gBw @@ -114184,7 +115318,7 @@ bMe bMe ugh pQL -aZd +vgc aZd pzO ekr @@ -114982,7 +116116,7 @@ oIK lNT cmh oIK -oIK +bZe pgz oIK fwT @@ -115442,7 +116576,7 @@ ayb ayb ayb ayb -ayb +xrC voT scK lIk @@ -115539,8 +116673,8 @@ qcw xfb gnl leN -pmj -pmj +oKL +edb aqv aqv aqv @@ -115974,7 +117108,7 @@ awX aaj ahK aaj -aaj +uhr ahK aaj cWh @@ -115995,7 +117129,7 @@ qHB ovp ijM oxr -vNJ +tcO xQV tBL tBL @@ -116198,7 +117332,7 @@ aaa aaa aaa fUe -aNJ +dGh wCY aNJ aNJ @@ -116286,7 +117420,7 @@ vqm ahx fbC eal -cUK +seB mUs aaa aaa @@ -116493,7 +117627,7 @@ ahK ahK ahK aaj -dCc +nVj awX gpT xNM @@ -116505,7 +117639,7 @@ qHG npu hwI kHT -aql +esa pvi qHB fVA @@ -116746,9 +117880,9 @@ sAN xdw awX aaj -eIS -eIS -eIS +nVB +fNi +uek eIS aVl dCc @@ -116761,7 +117895,7 @@ aqp tDK qHG npu -cPd +adY kPi kPr pvi @@ -117007,8 +118141,8 @@ ahK bvd tYV dEs -aVl -aVl +gpa +fRB wXu awX kHT @@ -117545,7 +118679,7 @@ ijM qoj gjH aod -dZv +nJE yiE pOz pOz @@ -117767,7 +118901,7 @@ xbG rYx itq uah -ayb +vhC mvZ vya iJW @@ -117778,7 +118912,7 @@ fnQ xdw awX fgX -ahK +lni mpf cvO sAo @@ -118025,7 +119159,7 @@ tqK vip ajl uah -ayb +aRm fCd vya oII @@ -118040,7 +119174,7 @@ cAL awX awX awX -bZe +awX awX awX aBD @@ -118283,7 +119417,7 @@ tDY ayb ayb uah -ayb +vhC jon hPN fiK @@ -118294,7 +119428,7 @@ ipb krM gZS leC -fTl +txK gpK rdJ fTl @@ -121473,8 +122607,8 @@ tWs qGW fmF kpI -wOk -wOk +eJe +hxK oAw oAw vHb @@ -121764,7 +122898,7 @@ aaa aaa aaa aaa -vhC +qIQ sLG aaa aaa @@ -121983,7 +123117,7 @@ aaa aaa sLG aaf -jhc +qIQ aaf oAw dZR @@ -122022,7 +123156,7 @@ aaa aaa aaa aaf -vhC +qIQ aaf aaa aaa @@ -122149,7 +123283,7 @@ ixO aaa aaa xCJ -dMr +utp fqf aPh hCh @@ -122244,15 +123378,25 @@ iFw htS aaf oAw -nMG -oAe -ocn +eVQ +eVQ +eVQ oAw aaa aaa aaa oAw -dml +eVQ +oAw +aaa +aaa +aaf +bQW +aaf +aaa +aaa +oAw +eVQ oAw aaa aaa @@ -122262,26 +123406,16 @@ aaa aaa aaa oAw -bCs -oAw -aaa -aaa -aaa -ajS -aaa -aaa -aaa -oAw -ooS +eVQ oAw aaa aaa aaa aaa aaa -iFw +onH din -iFw +onH aaa aaa aaa @@ -122500,17 +123634,27 @@ aaa aaa aaf iFw -cNg +aaf oAw -vkS -tdE -tdE +nMG +oAe +ocn oAw -akd +aaa aaa aaa oAw -vkS +dml +oAw +aaa +aaa +onH +din +onH +aaa +aaa +oAw +bCs oAw aaa aaa @@ -122520,17 +123664,7 @@ aaa aaa aaa oAw -vkS -oAw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -oAw -vkS +ooS oAw aaa aaa @@ -122538,7 +123672,7 @@ aaa aaa aaa aaf -iFw +onH aaf aaa aaa @@ -122758,6 +123892,28 @@ aaa aaa aaa aaa +szS +oAw +vkS +tdE +tdE +oAw +akd +aaa +aaa +oAw +vkS +oAw +aaa +aaa +aaf +onH +aaf +aaa +aaa +oAw +vkS +oAw aaa aaa aaa @@ -122765,31 +123921,9 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +oAw +vkS +oAw aaa aaa aaa @@ -123019,14 +124153,6 @@ aaa aaa aaa aaa -bWv -aaa -aaa -aaa -aaa -aaa -aaa -ltj aaa aaa aaa @@ -123036,7 +124162,6 @@ aaa aaa aaa aaa -ePv aaa aaa aaa @@ -123046,7 +124171,16 @@ aaa aaa aaa aaa -vLN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -123229,8 +124363,8 @@ fXC nXY upz sFU -bQW -tcO +sml +sml aJn fFA ckD @@ -123277,6 +124411,14 @@ aaa aaa aaa aaa +bWv +aaa +aaa +aaa +aaa +aaa +aaa +ltj aaa aaa aaa @@ -123286,6 +124428,7 @@ aaa aaa aaa aaa +ePv aaa aaa aaa @@ -123295,16 +124438,7 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +vLN aaa aaa aaa @@ -123487,7 +124621,7 @@ nDs nXY upz sFU -dXv +sml shA beG oTb @@ -123744,7 +124878,7 @@ uOP xjo nWy ivl -onH +sml auT aiX aJn diff --git a/maps/southern_sun/southern_cross-2.dmm b/modular_chomp/maps/soluna_nexus/soluna_nexus-2.dmm similarity index 83% rename from maps/southern_sun/southern_cross-2.dmm rename to modular_chomp/maps/soluna_nexus/soluna_nexus-2.dmm index 8d274e7c3f..1164302344 100644 --- a/maps/southern_sun/southern_cross-2.dmm +++ b/modular_chomp/maps/soluna_nexus/soluna_nexus-2.dmm @@ -14,7 +14,7 @@ icon_state = "1-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "aac" = ( /obj/machinery/light{ dir = 8; @@ -31,7 +31,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "aad" = ( /obj/structure/table/steel_reinforced, /obj/machinery/light{ @@ -50,7 +50,7 @@ }, /obj/item/mecha_parts/mecha_equipment/weapon/energy/laser, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "aae" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -62,7 +62,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "aaf" = ( /obj/structure/lattice, /turf/space, @@ -79,7 +79,7 @@ }, /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "aah" = ( /obj/machinery/button/remote/blast_door{ id = "sc-GCnorthshuttlebay"; @@ -99,7 +99,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "aai" = ( /obj/structure/table/rack{ dir = 8; @@ -128,20 +128,20 @@ req_access = null }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "aaj" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "aak" = ( /obj/structure/table/steel_reinforced, /obj/machinery/recharger, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "aal" = ( /obj/structure/table/rack/shelf, /obj/item/t_scanner{ @@ -177,7 +177,7 @@ pixel_y = -6 }, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "aam" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -202,7 +202,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "aan" = ( /turf/simulated/wall/r_wall, /area/space) @@ -216,7 +216,7 @@ name = "Internal Affairs Agent" }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aar" = ( /obj/machinery/computer/atmoscontrol{ dir = 8 @@ -228,7 +228,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "aas" = ( /obj/machinery/computer/guestpass{ dir = 8; @@ -245,7 +245,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "aau" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -262,7 +262,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aaw" = ( /obj/structure/cable/white{ d1 = 4; @@ -270,7 +270,7 @@ icon_state = "4-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "aax" = ( /obj/structure/cable/white{ d1 = 2; @@ -283,7 +283,7 @@ icon_state = "4-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "aay" = ( /obj/structure/cable/white{ d1 = 4; @@ -291,7 +291,7 @@ icon_state = "4-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "aaA" = ( /obj/item/ammo_magazine/m9mm/compact/flash{ pixel_y = 12; @@ -354,19 +354,19 @@ layer = 2.9 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "aaB" = ( /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aaC" = ( /obj/machinery/door/window/eastright{ name = "Engineering Suits"; req_access = list(11) }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aaF" = ( /obj/structure/cable/green{ d1 = 4; @@ -381,7 +381,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "aaG" = ( /obj/structure/table/rack{ dir = 8; @@ -402,7 +402,7 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aaH" = ( /obj/machinery/sleeper{ dir = 4 @@ -425,7 +425,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "aaJ" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ @@ -436,7 +436,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "aaK" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -459,24 +459,11 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "aaM" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_PortCorridor1) -"aaN" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/maintenance/Deck2_Security_PortCorridor1) "aaO" = ( /obj/machinery/computer/atmos_alert{ dir = 8 @@ -488,7 +475,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "aaP" = ( /obj/structure/window/basic{ dir = 8 @@ -517,7 +504,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "aaR" = ( /obj/machinery/door/window/northright{ layer = 2.9; @@ -544,10 +531,10 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "aaT" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarCorridor1) +/area/maintenance/Deck2_Engineering_ForStarCorridor1) "aaU" = ( /obj/machinery/computer/mecha{ dir = 8 @@ -559,7 +546,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "aaV" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -580,13 +567,8 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarCorridor1) +/area/maintenance/Deck2_Engineering_ForStarCorridor1) "aaW" = ( -/obj/machinery/firealarm{ - dir = 4; - name = "E-fire alarm"; - pixel_x = 25 - }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -597,8 +579,13 @@ dir = 8 }, /obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/vending/wallmed1{ + dir = 8; + pixel_x = 25; + name = "1E-NanoMed" + }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aaX" = ( /obj/structure/bed/chair/sofa/corner/brown{ dir = 8; @@ -610,13 +597,13 @@ dir = 6 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aaY" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aaZ" = ( /obj/effect/floor_decal/industrial/danger{ dir = 8 @@ -627,7 +614,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "aba" = ( /obj/structure/bed/chair/sofa/right/brown{ dir = 1; @@ -641,7 +628,7 @@ /obj/structure/window/titanium, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "abb" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -657,7 +644,7 @@ name = "Brig Lobby" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "abc" = ( /obj/structure/cable/green{ d1 = 4; @@ -680,7 +667,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "abd" = ( /obj/machinery/power/apc{ dir = 1; @@ -698,7 +685,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "abe" = ( /obj/machinery/light{ dir = 1; @@ -728,7 +715,7 @@ pixel_y = 25 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "abf" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -756,7 +743,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "abg" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -782,14 +769,13 @@ c_tag = "D2-Sec-Reception1" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "abh" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, /obj/effect/floor_decal/industrial/arrows/yellow{ dir = 1 }, -/obj/machinery/door/airlock/maintenance/int, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -798,8 +784,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/maintenance/Deck2_For_Corridor) "abi" = ( /obj/machinery/vending/cigarette, /obj/structure/cable{ @@ -817,7 +804,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "abk" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/borderfloor{ @@ -827,7 +814,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "abl" = ( /obj/item/radio/intercom{ dir = 1; @@ -842,7 +829,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "abo" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -863,22 +850,22 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "abp" = ( /obj/structure/sign/painting/public, /turf/simulated/wall/wood, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "abq" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "abs" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "abt" = ( /obj/structure/table/rack/shelf/steel, /obj/item/ammo_magazine/m16{ @@ -960,7 +947,7 @@ pixel_y = -4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "abu" = ( /obj/machinery/sleeper{ dir = 8 @@ -978,7 +965,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "abx" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -988,7 +975,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "aby" = ( /obj/structure/table/woodentable, /obj/item/flashlight/lamp/green{ @@ -997,20 +984,11 @@ on = 0 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "abz" = ( -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -3 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/grass, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "abA" = ( /obj/item/radio/intercom{ dir = 8; @@ -1021,7 +999,7 @@ dir = 4 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "abB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -1029,7 +1007,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "abC" = ( /obj/structure/table/reinforced, /obj/machinery/computer/med_data/laptop{ @@ -1038,7 +1016,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "abD" = ( /obj/machinery/chemical_dispenser/bar_coffee/full{ pixel_y = 22 @@ -1051,7 +1029,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "abE" = ( /obj/structure/cable/green{ d1 = 1; @@ -1065,7 +1043,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "abF" = ( /obj/structure/cable/green{ d1 = 1; @@ -1077,7 +1055,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "abG" = ( /obj/machinery/atmospherics/pipe/manifold/visible/purple, /obj/machinery/meter, @@ -1088,14 +1066,14 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "abJ" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "abK" = ( /turf/simulated/floor/airless, /area/space) @@ -1126,7 +1104,7 @@ frequency = 1380 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "abM" = ( /obj/item/storage/belt/utility/full{ pixel_y = -6 @@ -1140,7 +1118,7 @@ pixel_x = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "abO" = ( /obj/item/radio/intercom{ dir = 4; @@ -1155,12 +1133,12 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "abP" = ( /obj/structure/closet/secure_closet/brig, /obj/item/radio/headset, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "abQ" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ @@ -1168,7 +1146,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "abR" = ( /obj/structure/table/standard, /obj/random/soap, @@ -1182,7 +1160,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "abU" = ( /obj/item/clothing/suit/space/void/engineering/alt{ pixel_x = -6 @@ -1214,7 +1192,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "abV" = ( /obj/machinery/alarm{ pixel_y = 25 @@ -1227,7 +1205,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "abW" = ( /obj/machinery/light{ dir = 8; @@ -1244,7 +1222,7 @@ use_power = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "abX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -1264,7 +1242,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber1) +/area/maintenance/Deck2_Engineering_ForStarChamber1) "acb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1272,13 +1250,13 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "acn" = ( /obj/structure/lattice, /obj/machinery/shield_diffuser, /obj/effect/catwalk_plated/white, /turf/space, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "acp" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -1291,7 +1269,7 @@ id = "sc-WTsecurityreception" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "acs" = ( /obj/structure/cable{ d1 = 4; @@ -1314,7 +1292,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "act" = ( /obj/machinery/light{ dir = 1; @@ -1327,7 +1305,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "acu" = ( /obj/machinery/papershredder, /obj/structure/window/reinforced{ @@ -1340,7 +1318,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "acv" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/item/clipboard, @@ -1358,7 +1336,7 @@ layer = 3.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "acw" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -1376,7 +1354,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "acx" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -1395,7 +1373,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "acy" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -1411,7 +1389,7 @@ name = "Firing Range Access" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "acz" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -1428,14 +1406,14 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Chamber) +/area/maintenance/Deck2_Science_ForPort_Chamber) "acA" = ( /obj/structure/sign/warning/nosmoking_1, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "acD" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "acE" = ( /obj/machinery/light{ dir = 4; @@ -1451,7 +1429,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "acI" = ( /obj/machinery/status_display{ pixel_x = -32; @@ -1462,13 +1440,13 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "acK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "acL" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -1492,7 +1470,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "acM" = ( /obj/structure/railing{ dir = 1 @@ -1501,7 +1479,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "acN" = ( /obj/structure/cable/white{ d1 = 1; @@ -1509,47 +1487,32 @@ icon_state = "1-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Brig) -"acP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 2 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/security/Brig) "acR" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/lightorange/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "acS" = ( /obj/structure/lattice, /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "acU" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "acV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -1573,7 +1536,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "acW" = ( /obj/machinery/light{ dir = 1; @@ -1587,7 +1550,7 @@ /obj/effect/floor_decal/milspec/cargo_arrow, /obj/effect/floor_decal/milspec/box, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "acX" = ( /obj/machinery/power/apc{ dir = 1; @@ -1610,90 +1573,25 @@ pixel_y = 27 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "acY" = ( -/obj/item/stock_parts/micro_laser{ - pixel_y = 9; - pixel_x = 7 +/obj/structure/table/standard, +/obj/item/stack/material/steel{ + amount = 50 }, -/obj/item/stock_parts/micro_laser{ - pixel_y = 9; - pixel_x = 4 - }, -/obj/item/stock_parts/micro_laser{ - pixel_y = 9; - pixel_x = 1 - }, -/obj/item/stock_parts/matter_bin{ - pixel_y = -7; - pixel_x = 5 - }, -/obj/item/stock_parts/matter_bin{ - pixel_y = -5; - pixel_x = 5 - }, -/obj/item/stock_parts/matter_bin{ - pixel_y = -3; - pixel_x = 5 - }, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/console_screen{ - pixel_y = -2 - }, -/obj/item/stock_parts/console_screen{ - pixel_y = -4 - }, -/obj/item/stock_parts/scanning_module{ - pixel_y = 9; - pixel_x = -8 - }, -/obj/item/stock_parts/scanning_module{ - pixel_y = 7; - pixel_x = -7 - }, -/obj/item/stock_parts/scanning_module{ - pixel_y = 5; - pixel_x = -6 - }, -/obj/item/stock_parts/capacitor{ - pixel_y = -3; - pixel_x = -6 - }, -/obj/item/stock_parts/capacitor{ - pixel_y = -5; - pixel_x = -6 - }, -/obj/item/stock_parts/capacitor{ - pixel_y = -7; - pixel_x = -6 - }, -/obj/item/stock_parts/manipulator{ - pixel_y = -1; - pixel_x = 1 - }, -/obj/item/stock_parts/manipulator{ - pixel_y = -1; - pixel_x = 5 - }, -/obj/item/toy/figure/scientist{ - pixel_x = 1; +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 3; pixel_y = 3 }, -/obj/item/stock_parts/manipulator{ - pixel_y = -1; - pixel_x = 3 - }, -/obj/structure/closet/crate/nanotrasen, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil{ - pixel_y = 3; - pixel_x = 2 +/obj/item/stack/material/copper{ + amount = 25 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "acZ" = ( /obj/machinery/deployable/barrier, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -1703,7 +1601,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "ada" = ( /obj/machinery/disposal, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -1716,15 +1614,15 @@ network = list("Science") }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "add" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "ade" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "adf" = ( /obj/machinery/camera/network/security{ c_tag = "D2-Sec-Brig1"; @@ -1737,7 +1635,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "adg" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -1746,7 +1644,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "adh" = ( /obj/item/radio/intercom{ dir = 4; @@ -1763,10 +1661,10 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "adi" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber2) +/area/maintenance/Deck2_Engineering_ForStarChamber2) "adj" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -1793,7 +1691,7 @@ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "adm" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -1810,7 +1708,7 @@ req_one_access = list(47) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "ado" = ( /obj/machinery/mass_driver{ dir = 4; @@ -1818,7 +1716,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "adp" = ( /obj/structure/extinguisher_cabinet{ dir = 4; @@ -1826,7 +1724,7 @@ pixel_x = -28 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "adu" = ( /obj/machinery/photocopier, /obj/machinery/keycard_auth{ @@ -1852,11 +1750,11 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "adv" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber2) +/area/maintenance/Deck2_Engineering_ForStarChamber2) "adw" = ( /obj/structure/sign/warning/evac, /turf/simulated/shuttle/wall/no_join{ @@ -1868,7 +1766,7 @@ "adx" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "adz" = ( /obj/effect/floor_decal/stairs{ dir = 1 @@ -1879,13 +1777,13 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "adB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "adI" = ( /obj/structure/cable/white{ d1 = 4; @@ -1893,7 +1791,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "adJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -1910,13 +1808,13 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "adN" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "adO" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -1924,8 +1822,13 @@ dir = 1 }, /obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "adP" = ( /obj/machinery/power/apc{ dir = 1; @@ -1958,10 +1861,10 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "adQ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "adS" = ( /obj/structure/table/standard, /obj/item/storage/firstaid/fire, @@ -1991,10 +1894,10 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "adU" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "adV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -2011,10 +1914,10 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "adW" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "adZ" = ( /obj/effect/floor_decal/industrial/arrows{ dir = 4 @@ -2050,7 +1953,7 @@ locked = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "aea" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/power/breakerbox/activated{ @@ -2061,7 +1964,7 @@ pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "aeb" = ( /obj/item/modular_computer/console/preset/medical{ dir = 8 @@ -2069,7 +1972,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "aec" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -2085,14 +1988,14 @@ name = "1E-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "aee" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "aeg" = ( /obj/machinery/papershredder, /obj/machinery/ai_status_display{ @@ -2105,28 +2008,7 @@ network = list("Domicile") }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) -"aeh" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/open{ - layer = 3.5; - id = "Port Lockdown"; - name = "Lockdown Gate"; - desc = "A heavily reinforced gate, sector lockdown!" - }, -/obj/machinery/door/airlock/angled_bay/double/glass/engineering{ - dir = 8; - req_access = null; - name = "Port Sector Engineering-Cargo" - }, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/crew_quarters/Chapel_Office) "aei" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -2138,10 +2020,10 @@ id_tag = "sc-DBBstall1" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "aej" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aek" = ( /obj/structure/closet/wardrobe/science_white, /obj/item/storage/box/gloves, @@ -2152,10 +2034,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Locker_Room) +/area/rnd/Locker_Room) "ael" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "aem" = ( /obj/structure/closet/secure_closet/paramedic, /obj/machinery/firealarm{ @@ -2173,7 +2055,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "aeo" = ( /obj/machinery/firealarm{ dir = 8; @@ -2194,7 +2076,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "aeq" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/red{ @@ -2209,12 +2091,11 @@ /obj/machinery/door/airlock/angled_bay/double/color{ door_color = "#8c1d11"; name = "Security Lobby"; - id_tag = "SC-ODsecurityfoyer"; - req_one_access = list(5,1,11,24,19) + id_tag = "SC-ODsecurityfoyer" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aer" = ( /obj/structure/table/rack{ dir = 8; @@ -2224,7 +2105,7 @@ /obj/random/tech_supply, /obj/random/tech_supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "aet" = ( /obj/structure/table/rack, /obj/item/clothing/accessory/armor/legguards{ @@ -2279,7 +2160,7 @@ pixel_y = -4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "aeu" = ( /obj/machinery/light{ dir = 4 @@ -2326,7 +2207,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "aez" = ( /obj/machinery/computer/area_atmos/tag{ dir = 8; @@ -2334,7 +2215,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "aeA" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -2352,7 +2233,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "aeD" = ( /obj/machinery/status_display{ layer = 4; @@ -2364,7 +2245,7 @@ "aeE" = ( /obj/machinery/fitness/heavy/lifter, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "aeG" = ( /obj/machinery/light{ dir = 8; @@ -2378,7 +2259,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "aeJ" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 @@ -2387,7 +2268,7 @@ dir = 6 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aeK" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, @@ -2395,7 +2276,7 @@ dir = 8 }, /turf/space, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "aeL" = ( /obj/machinery/optable{ name = "Robotics Operating Table" @@ -2407,7 +2288,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "aeM" = ( /obj/item/radio/intercom/department/medbay{ dir = 4; @@ -2428,16 +2309,16 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "aeN" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "aeQ" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "aeR" = ( /obj/structure/table/steel_reinforced, /obj/item/tool/wrench/brass{ @@ -2453,7 +2334,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "aeU" = ( /obj/item/radio/intercom/department/security{ dir = 4; @@ -2474,7 +2355,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aeV" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/machinery/ai_status_display{ @@ -2489,7 +2370,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "aeW" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/gps/engineering, @@ -2500,7 +2381,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "aeY" = ( /obj/structure/closet/secure_closet/atmos_personal, /obj/machinery/status_display{ @@ -2516,7 +2397,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "afb" = ( /obj/structure/window/reinforced{ dir = 8 @@ -2528,33 +2409,28 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "afc" = ( /obj/item/storage/vore_egg/cocoon, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "afi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/structure/cable{ - d1 = 1; + d1 = 4; d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 + icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "afk" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "afm" = ( /obj/machinery/firealarm{ dir = 8; @@ -2568,7 +2444,7 @@ }, /obj/structure/table/reinforced, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "afn" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -2593,7 +2469,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "afp" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -2601,7 +2477,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "afq" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -2624,7 +2500,7 @@ }, /obj/structure/table/steel_reinforced, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "afr" = ( /obj/structure/table/steel_reinforced, /obj/item/mecha_parts/mecha_equipment/tool/cable_layer{ @@ -2644,7 +2520,7 @@ pixel_x = 13 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "afs" = ( /obj/structure/table/steel_reinforced, /obj/random/mech_toy, @@ -2661,13 +2537,13 @@ pixel_x = 2 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "aft" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "afw" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -2676,7 +2552,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "afx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -2695,36 +2571,38 @@ layer = 2.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "afy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/structure/cable{ d1 = 1; d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable{ d1 = 2; d2 = 8; icon_state = "2-8" }, -/obj/effect/floor_decal/borderfloor{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightorange/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner, +/obj/machinery/light{ + dir = 4; + name = "1E-light fixture" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "afz" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -2732,7 +2610,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "afA" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -2757,7 +2635,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "afD" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -2773,10 +2651,10 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "afF" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "afH" = ( /obj/structure/closet/secure_closet/atmos_personal, /obj/item/gps/engineering, @@ -2792,7 +2670,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "afI" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -2818,7 +2696,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "afJ" = ( /obj/structure/bed/chair{ dir = 1 @@ -2832,28 +2710,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) -"afK" = ( -/obj/structure/extinguisher_cabinet{ - dir = 8; - name = "1E-extinguisher cabinet"; - pixel_x = 27 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/area/security/Visitation_Room) "afL" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -2862,7 +2719,7 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "afO" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -2892,18 +2749,18 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "afP" = ( /obj/machinery/flasher/portable, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "afQ" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "afR" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -2923,12 +2780,12 @@ id_tag = "sc-HoSdoor" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "afT" = ( /obj/structure/smoletrack/roadS, /mob/living/simple_mob/animal/passive/mouse/rat, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "afU" = ( /obj/structure/closet/wardrobe/atmospherics_yellow, /obj/machinery/light{ @@ -2943,7 +2800,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "afV" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, @@ -2954,7 +2811,7 @@ layer = 10.1 }, /turf/space, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "afW" = ( /obj/structure/disposalpipe/trunk, /obj/machinery/disposal/deliveryChute{ @@ -2962,7 +2819,7 @@ }, /obj/structure/plasticflaps/mining, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "afX" = ( /obj/machinery/computer/security/engineering{ dir = 8 @@ -2978,21 +2835,23 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "afY" = ( /obj/machinery/vending/snack, -/obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/light{ + name = "1S-light fixture" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "agc" = ( /obj/machinery/door/window/brigdoor/westright{ req_access = list(58); req_one_access = list(19) }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "agd" = ( /obj/structure/cable/white{ d1 = 2; @@ -3000,10 +2859,10 @@ icon_state = "2-4" }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "agf" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "agg" = ( /mob/living/simple_mob/animal/passive/snake/python/noodle{ dir = 8; @@ -3015,11 +2874,11 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "agh" = ( /obj/structure/table/hardwoodtable, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "agi" = ( /obj/structure/table/reinforced, /obj/item/megaphone{ @@ -3046,7 +2905,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "agn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -3071,7 +2930,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "ago" = ( /obj/structure/closet/wardrobe/atmospherics_yellow, /obj/item/radio/intercom{ @@ -3086,7 +2945,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "agp" = ( /obj/item/bodybag/cryobag{ pixel_y = 8; @@ -3124,7 +2983,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "agr" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 1 @@ -3137,14 +2996,14 @@ icon_state = "1-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "agt" = ( /obj/machinery/light{ dir = 1; name = "1N-lighting fixture" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "agu" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -3157,7 +3016,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "agv" = ( /obj/structure/closet/secure_closet/scientist, /obj/machinery/light{ @@ -3171,7 +3030,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Locker_Room) +/area/rnd/Locker_Room) "agw" = ( /obj/structure/closet/secure_closet/cargotech{ name = "mailman's locker"; @@ -3192,7 +3051,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "agz" = ( /obj/machinery/light{ dir = 1; @@ -3209,7 +3068,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "agA" = ( /obj/structure/table/steel_reinforced, /obj/item/mecha_parts/mecha_equipment/storage, @@ -3219,7 +3078,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "agC" = ( /obj/structure/railing{ dir = 8 @@ -3229,7 +3088,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "agF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -3238,14 +3097,14 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/sec, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "agG" = ( /obj/structure/urinal{ dir = 8; pixel_x = 31 }, /turf/simulated/floor/tiled/kafel_full/red, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "agH" = ( /obj/machinery/recharge_station, /obj/machinery/light/small{ @@ -3263,7 +3122,7 @@ specialfunctions = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "agI" = ( /obj/machinery/shield_diffuser, /obj/structure/cable/white{ @@ -3272,7 +3131,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "agJ" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 1 @@ -3298,7 +3157,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "agL" = ( /obj/structure/table/rack/shelf/steel, /obj/item/ammo_magazine/ammo_box/b12g{ @@ -3342,7 +3201,7 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "agM" = ( /obj/structure/table/steel, /obj/machinery/alarm{ @@ -3355,7 +3214,7 @@ network = list("Commons") }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "agN" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/he3, @@ -3366,7 +3225,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "agO" = ( /obj/machinery/light{ dir = 4; @@ -3377,7 +3236,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "agQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -3394,7 +3253,7 @@ name = "Detective Access" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "agS" = ( /obj/structure/cable/white{ d1 = 4; @@ -3402,7 +3261,7 @@ icon_state = "4-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "agT" = ( /obj/structure/cable/white{ d1 = 2; @@ -3410,7 +3269,7 @@ icon_state = "2-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "agV" = ( /obj/structure/table/rack/shelf, /obj/item/storage/firstaid/o2{ @@ -3441,13 +3300,13 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "agX" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "agY" = ( /obj/structure/cable/white{ d1 = 1; @@ -3455,7 +3314,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "aha" = ( /obj/item/gun/projectile/p92x/rubber{ pixel_y = 11; @@ -3474,7 +3333,7 @@ layer = 2.9 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "ahb" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -3486,7 +3345,7 @@ id_tag = "sc-DBWstall1" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "ahc" = ( /obj/item/radio/intercom/department/security{ pixel_y = -22; @@ -3495,10 +3354,10 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "ahd" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "ahh" = ( /obj/structure/window/basic{ dir = 1; @@ -3526,14 +3385,14 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "ahk" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 1 }, /obj/effect/floor_decal/industrial/arrows/red, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "ahl" = ( /obj/structure/cable/white{ d1 = 4; @@ -3552,14 +3411,14 @@ id = "sc-GCsecurityreception" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "ahm" = ( /obj/machinery/button/remote/blast_door{ dir = 4; id = "sc-GCsecurityreception"; name = "Reception Shutters Control"; pixel_x = -24; - req_access = list(28); + req_access = list(1); pixel_y = 5 }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -3574,20 +3433,19 @@ /obj/machinery/button/remote/airlock{ desc = "A remote control switch for the brig foyer."; id = "SC-ODsecurityfoyer"; - name = "Brig Foyer Doors"; - req_access = list(63); + name = "Brig Foyer Doors Bolts"; + req_access = list(1); dir = 4; pixel_y = -5; - pixel_x = -24 + pixel_x = -24; + specialfunctions = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "ahn" = ( -/obj/machinery/door/window/brigdoor/northright{ - req_access = list(63) - }, +/obj/machinery/door/window/brigdoor/northright, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "aho" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/red{ @@ -3597,8 +3455,7 @@ /obj/machinery/door/airlock/angled_bay/double/color{ door_color = "#8c1d11"; name = "Security Lobby"; - id_tag = "SC-ODsecurityfoyer"; - req_one_access = list(5,1,11,24,19) + id_tag = "SC-ODsecurityfoyer" }, /obj/structure/cable/green{ d1 = 1; @@ -3608,7 +3465,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "ahq" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -3627,18 +3484,18 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "ahr" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "ahs" = ( /obj/structure/sign/painting/public, /turf/simulated/wall/wood, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "aht" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -3650,13 +3507,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "ahu" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "ahz" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "ahC" = ( /obj/structure/table/rack{ dir = 8; @@ -3685,13 +3542,8 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "ahE" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -3700,34 +3552,25 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "ahF" = ( /obj/structure/stripper_pole{ color = "grey" }, /obj/structure/table/hardwoodtable, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "ahH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "ahL" = ( /obj/machinery/ai_status_display{ name = "1W-AI display"; @@ -3740,7 +3583,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "ahP" = ( /obj/item/flashlight/lamp/green{ pixel_y = 12; @@ -3761,7 +3604,7 @@ }, /obj/structure/table/hardwoodtable, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "ahT" = ( /obj/item/storage/box/lights/mixed{ pixel_x = 8; @@ -3809,7 +3652,7 @@ pixel_x = 7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "ahZ" = ( /obj/structure/cable{ d1 = 2; @@ -3829,7 +3672,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "aia" = ( /obj/effect/catwalk_plated/white, /obj/structure/cable/green{ @@ -3847,14 +3690,14 @@ name = "Medical Doctor" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "aih" = ( /obj/machinery/status_display{ name = "W-status display"; pixel_x = -32 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "ail" = ( /obj/structure/cable{ d1 = 1; @@ -3871,16 +3714,16 @@ dir = 5 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aim" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "ain" = ( /obj/effect/floor_decal/carpet/blue{ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "aio" = ( /obj/structure/table/steel_reinforced, /obj/item/storage/toolbox/electrical{ @@ -3901,7 +3744,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "aip" = ( /obj/effect/floor_decal/carpet/blue{ dir = 4 @@ -3915,7 +3758,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "ait" = ( /obj/structure/table/reinforced, /obj/item/storage/box/snakesnackbox{ @@ -3952,7 +3795,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "aiz" = ( /obj/structure/cable/green{ d1 = 2; @@ -3966,7 +3809,7 @@ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "aiA" = ( /obj/structure/cable/green{ d1 = 4; @@ -3982,7 +3825,7 @@ icon_state = "1-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "aiB" = ( /obj/structure/cable/green{ d1 = 4; @@ -3996,7 +3839,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "aiC" = ( /obj/item/reagent_containers/blood/prelabeled/OMinus{ pixel_y = 6; @@ -4029,7 +3872,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "aiD" = ( /obj/effect/floor_decal/industrial/arrows/yellow, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -4050,14 +3893,14 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "aiF" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarCorridor1) +/area/maintenance/Deck2_Cargo_AftStarCorridor1) "aiG" = ( /obj/structure/cable{ d1 = 1; @@ -4068,7 +3911,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "aiI" = ( /obj/structure/closet/wardrobe/robotics_black, /obj/machinery/light{ @@ -4083,7 +3926,7 @@ pixel_x = -3 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Locker_Room) +/area/rnd/Locker_Room) "aiL" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -4100,11 +3943,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "aiN" = ( /obj/structure/sign/level/two/large, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "aiQ" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -4124,7 +3967,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "aiR" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -4149,7 +3992,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aiT" = ( /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, @@ -4159,16 +4002,16 @@ network = list("engineering") }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "aiU" = ( /turf/simulated/open, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "aiV" = ( /obj/structure/bed/chair/sofa/brown{ dir = 8 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "aja" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -4178,7 +4021,7 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Security_ForStar_Chamber) +/area/maintenance/Deck2_Security_ForStar_Chamber) "ajb" = ( /obj/machinery/power/apc{ dir = 8; @@ -4202,18 +4045,18 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "ajc" = ( /obj/structure/fans, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "aje" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "ajf" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -4250,11 +4093,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "ajh" = ( /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "ajk" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -4265,7 +4108,7 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "ajl" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -4306,7 +4149,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "ajm" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -4329,7 +4172,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "ajn" = ( /obj/machinery/power/apc{ dir = 8; @@ -4354,10 +4197,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "ajo" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "ajp" = ( /obj/item/clothing/suit/space/void/atmos{ pixel_x = -6 @@ -4391,7 +4234,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "ajr" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -4418,7 +4261,7 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_PortCorridor1) +/area/maintenance/Deck2_Security_PortCorridor1) "ajs" = ( /obj/machinery/power/apc{ dir = 4; @@ -4436,7 +4279,7 @@ icon_state = "0-8" }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "ajt" = ( /obj/structure/railing/grey, /turf/space, @@ -4464,7 +4307,7 @@ pixel_x = 4 }, /turf/simulated/floor/carpet/brown/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "ajz" = ( /obj/machinery/computer/skills{ pixel_y = -7; @@ -4480,7 +4323,7 @@ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "ajC" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -4492,7 +4335,7 @@ dir = 10 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "ajD" = ( /obj/machinery/papershredder, /obj/machinery/firealarm{ @@ -4500,7 +4343,7 @@ pixel_y = 25 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "ajE" = ( /obj/machinery/newscaster{ name = "1E-newscaster"; @@ -4511,7 +4354,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "ajF" = ( /obj/structure/table/steel, /obj/machinery/cell_charger{ @@ -4538,7 +4381,7 @@ pixel_x = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "ajG" = ( /obj/structure/cable/white{ d1 = 1; @@ -4546,7 +4389,7 @@ icon_state = "1-2" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "ajH" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -4557,7 +4400,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "ajJ" = ( /obj/structure/window/reinforced{ dir = 8 @@ -4569,7 +4412,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "ajL" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -4577,10 +4420,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "ajM" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "ajN" = ( /obj/structure/table/rack, /obj/item/rig/pmc/security/green/equipped{ @@ -4596,7 +4439,7 @@ req_access = list() }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "ajO" = ( /obj/structure/extinguisher_cabinet{ name = "1N-extinguisher cabinet"; @@ -4614,21 +4457,21 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "ajQ" = ( /obj/structure/table/reinforced, /obj/machinery/computer/skills{ pixel_y = 12 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "ajT" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Engineering Substation Bypass" }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "ajX" = ( /obj/random/tech_supply, /obj/random/tech_supply, @@ -4650,7 +4493,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "ajY" = ( /obj/machinery/turretid/lethal{ pixel_x = -29; @@ -4666,7 +4509,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "ajZ" = ( /obj/structure/bed/chair/oldsofa/left{ dir = 4 @@ -4674,8 +4517,11 @@ /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, +/obj/structure/sign/poster/custom{ + dir = 8 + }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aka" = ( /obj/structure/cable/white{ d1 = 1; @@ -4683,7 +4529,7 @@ icon_state = "1-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "akc" = ( /obj/structure/cable/green{ d1 = 1; @@ -4696,7 +4542,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "akd" = ( /obj/machinery/light{ dir = 1; @@ -4706,7 +4552,7 @@ dir = 4 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "akh" = ( /obj/machinery/computer/security/telescreen/entertainment{ name = "1N-entertainment monitor"; @@ -4723,30 +4569,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "akl" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/button/windowtint{ - name = "S-window tint control"; - pixel_x = -12; - pixel_y = -26 - }, -/obj/machinery/light_switch{ - dir = 1; - name = "S-light switch"; - pixel_x = 11; - pixel_y = -27 - }, -/obj/structure/table/standard, +/obj/structure/kitchenspike, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/Chomp_Kitchen) "ako" = ( /obj/machinery/flasher{ id = "testthis"; @@ -4757,7 +4587,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "akr" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 4 @@ -4766,7 +4596,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "akt" = ( /obj/structure/railing/grey{ color = "yellow" @@ -4776,35 +4606,27 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "aku" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 8 }, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "akw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 4; + d1 = 2; d2 = 8; - icon_state = "4-8" + icon_state = "2-8" }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_For_Corridor) "akA" = ( /obj/machinery/firealarm{ dir = 8; @@ -4819,7 +4641,7 @@ }, /obj/machinery/vending/emergencyfood/filled, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "akF" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/vending/wallmed1{ @@ -4833,7 +4655,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "akG" = ( /obj/structure/table/reinforced, /obj/machinery/photocopier/faxmachine{ @@ -4848,7 +4670,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "akH" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -4865,7 +4687,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "akI" = ( /obj/random/junk, /obj/structure/table/steel, @@ -4875,7 +4697,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "akJ" = ( /obj/machinery/newscaster/security_unit{ pixel_x = -28 @@ -4887,13 +4709,13 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "akK" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "akL" = ( /obj/structure/table/reinforced, /obj/machinery/photocopier/faxmachine{ @@ -4907,7 +4729,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "akO" = ( /obj/machinery/light{ dir = 8; @@ -4933,7 +4755,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "akR" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4953,7 +4775,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "akS" = ( /obj/item/rectape/random{ pixel_x = 2; @@ -4968,14 +4790,14 @@ }, /obj/structure/table/hardwoodtable, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "akV" = ( /obj/structure/bed/chair/office/light, /obj/effect/landmark/start{ name = "Head of Security" }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "akY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4984,7 +4806,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "ald" = ( /obj/item/gps{ pixel_x = 3; @@ -5008,31 +4830,16 @@ /area/shuttle/large_escape_pod3/station) "alh" = ( /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "all" = ( /obj/structure/closet/secure_closet/brig, /obj/item/radio/headset, /obj/structure/window/reinforced, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) -"alp" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/security/Wardens_Office) "alt" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "alv" = ( /obj/machinery/washing_machine, /obj/item/radio/intercom{ @@ -5047,7 +4854,7 @@ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "alw" = ( /obj/structure/cable/green{ d1 = 4; @@ -5067,7 +4874,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "alx" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/status_display{ @@ -5083,7 +4890,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "aly" = ( /obj/machinery/light/small{ dir = 1 @@ -5093,7 +4900,7 @@ id = "SC-CBdisposals" }, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "alz" = ( /obj/machinery/computer/security/telescreen/entertainment{ name = "1W-entertainment monitor"; @@ -5109,7 +4916,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "alB" = ( /obj/structure/bed/chair/oldsofa{ dir = 8 @@ -5118,7 +4925,7 @@ dir = 4 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "alF" = ( /obj/effect/floor_decal/carpet/blue{ dir = 4 @@ -5128,7 +4935,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "alG" = ( /obj/structure/closet/secure_closet/hos, /obj/item/gun/energy/hooklauncher{ @@ -5144,55 +4951,23 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "alH" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) -"alI" = ( -/obj/structure/closet/firecloset/full/atmos{ - req_one_access = list(10) - }, -/obj/item/taperoll/engineering{ - pixel_x = -4; - pixel_y = -8 - }, -/obj/item/taperoll/engineering{ - pixel_x = -2; - pixel_y = -6 - }, -/obj/effect/floor_decal/industrial/hatch/blue, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) -"alK" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Central" - }, -/obj/machinery/light{ - dir = 1; - name = "1N-lighting fixture" - }, -/obj/structure/sign/warning/high_voltage{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/area/maintenance/Deck2_Cargo_AftCorridor1) "alL" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Central Substation Bypass" +/obj/machinery/appliance/cooker/grill, +/obj/machinery/status_display{ + name = "S-status display"; + pixel_y = -32 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/orange/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "alP" = ( /obj/effect/floor_decal/industrial/stand_clear/blue, /obj/machinery/door/blast/regular/open{ @@ -5205,7 +4980,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "alR" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -5223,7 +4998,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "alS" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -5234,7 +5009,7 @@ name = "Engineering Substation" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "alU" = ( /obj/structure/table/marble, /obj/machinery/chemical_dispenser/bar_soft/full{ @@ -5242,7 +5017,7 @@ pixel_y = -13 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "alV" = ( /obj/structure/table/standard, /obj/item/storage/box/evidence{ @@ -5264,7 +5039,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "alW" = ( /obj/effect/landmark{ name = "carpspawn" @@ -5279,14 +5054,14 @@ dir = 8 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "ame" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor2) +/area/maintenance/Deck2_Security_AftPortCorridor2) "ami" = ( /obj/structure/bed/chair/sofa/left/beige, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "amj" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/cable{ @@ -5295,13 +5070,13 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "amy" = ( /obj/effect/floor_decal/carpet{ dir = 4 }, /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "amz" = ( /obj/structure/bed/chair/oldsofa/corner{ dir = 8 @@ -5310,7 +5085,7 @@ dir = 6 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "amB" = ( /obj/structure/railing/grey{ color = "yellow" @@ -5326,7 +5101,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber1) +/area/maintenance/Deck2_Engineering_ForStarChamber1) "amC" = ( /obj/effect/floor_decal/corner/blue/border{ dir = 8 @@ -5338,7 +5113,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "amE" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -5346,7 +5121,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "amG" = ( /obj/structure/closet{ name = "Evidence Closet" @@ -5358,7 +5133,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "amH" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -5367,7 +5142,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "amP" = ( /obj/machinery/light{ dir = 1; @@ -5381,10 +5156,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "amR" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "amU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -5412,15 +5187,15 @@ frequency = 1380 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "ane" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "anf" = ( /obj/machinery/r_n_d/circuit_imprinter, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "ang" = ( /obj/effect/floor_decal/industrial/arrows{ dir = 4 @@ -5450,7 +5225,7 @@ pixel_y = -24 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "ani" = ( /obj/effect/catwalk_plated/techfloor, /obj/machinery/power/apc{ @@ -5475,19 +5250,19 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "anj" = ( /obj/effect/floor_decal/milspec/box, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "anl" = ( /obj/machinery/light/spot, /turf/simulated/floor/tiled/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "anp" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "anq" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -5504,7 +5279,7 @@ }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "anr" = ( /obj/machinery/ai_status_display{ name = "1N-AI display"; @@ -5521,7 +5296,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "ant" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -5529,14 +5304,14 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "anu" = ( /obj/item/flashlight/lamp{ on = 0 }, /obj/structure/table, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "any" = ( /obj/machinery/ai_status_display{ pixel_x = 32; @@ -5549,7 +5324,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "anz" = ( /obj/machinery/shower{ pixel_y = 16 @@ -5563,7 +5338,7 @@ }, /obj/machinery/door/window/southright, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "anA" = ( /obj/structure/grille, /obj/structure/shuttle/window, @@ -5574,7 +5349,7 @@ /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "anH" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 1 @@ -5589,13 +5364,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "anI" = ( /obj/machinery/atmospherics/binary/pump, /obj/effect/catwalk_plated/techmaint, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "anJ" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/firealarm{ @@ -5604,7 +5379,7 @@ name = "W-fire alarm" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "anK" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 @@ -5618,7 +5393,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "anM" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/suit/storage/hazardvest/yw/Paramedic{ @@ -5650,14 +5425,14 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "anR" = ( /obj/effect/floor_decal/shuttle/loading/yellow{ dir = 8 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "anS" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -5674,7 +5449,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "anT" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -5683,7 +5458,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "anW" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -5703,7 +5478,7 @@ id = "sc-HSchemistry" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "anX" = ( /obj/structure/bed/chair/sofa/left/brown{ dir = 4; @@ -5713,7 +5488,7 @@ dir = 8 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aoa" = ( /obj/effect/catwalk_plated/techfloor, /obj/structure/cable/green{ @@ -5724,14 +5499,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "aoc" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "aof" = ( /obj/structure/sign/warning/evac, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "aog" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/white{ @@ -5756,7 +5531,7 @@ name = "deluxe fluffy worm" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarCorridor1) +/area/maintenance/Deck2_Engineering_ForStarCorridor1) "aoi" = ( /obj/machinery/light{ dir = 4 @@ -5780,21 +5555,21 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "aom" = ( /obj/structure/table/steel, /obj/item/binoculars, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "aon" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume, /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "aop" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "aos" = ( /obj/structure/cable/white{ d1 = 1; @@ -5802,46 +5577,44 @@ icon_state = "1-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "aov" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "aow" = ( /obj/structure/lattice, /obj/machinery/light/small/neon/police, /obj/machinery/shield_diffuser, /turf/space, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "aoA" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/area/maintenance/Deck2_For_Corridor) "aoB" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) -"aoC" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ +/area/quartermaster/Aft_Tool_Storage) +"aoE" = ( +/obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) -"aoE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_1) "aoG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aoK" = ( /obj/structure/cable{ d1 = 1; @@ -5861,33 +5634,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "aoL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) -"aoM" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - name = "1S-light fixture" - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) -"aoO" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "aoP" = ( /obj/machinery/disposal, /obj/machinery/newscaster{ @@ -5910,10 +5661,10 @@ dir = 8 }, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "aoR" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aoS" = ( /obj/item/tank/emergency/oxygen/engi{ pixel_y = 11; @@ -5966,14 +5717,14 @@ /obj/effect/floor_decal/corner/lightorange/border, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aoU" = ( /obj/effect/floor_decal/milspec/cargo_arrow{ dir = 1 }, /obj/effect/floor_decal/milspec/box, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "aoW" = ( /obj/fiftyspawner/wood, /obj/fiftyspawner/wood, @@ -6004,7 +5755,7 @@ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "aoX" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -6025,14 +5776,14 @@ /obj/effect/floor_decal/corner/red/bordercorner, /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "apd" = ( /obj/structure/table/steel_reinforced, /obj/item/mecha_parts/mecha_equipment/tool/passenger{ pixel_x = 3 }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "apf" = ( /obj/structure/table/reinforced, /obj/item/storage/quickdraw/syringe_case{ @@ -6062,7 +5813,7 @@ pixel_x = 5 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "apg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -6086,7 +5837,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "apj" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -6109,7 +5860,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "apl" = ( /obj/structure/cable/white{ d1 = 1; @@ -6124,7 +5875,7 @@ pixel_y = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "apm" = ( /turf/simulated/wall/rthull, /area/shuttle/escape_pod9/station) @@ -6139,7 +5890,7 @@ /obj/random/trash, /obj/structure/biowaste_tank, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "aps" = ( /obj/item/radio/intercom{ name = "1S-Station Intercom (General)"; @@ -6157,26 +5908,29 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "apu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "apv" = ( /obj/structure/table/steel, /obj/item/tool/wrench, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "apw" = ( -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_StarChamber2) "apy" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "apz" = ( /obj/structure/cable{ d1 = 1; @@ -6188,15 +5942,15 @@ /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, -/obj/effect/floor_decal/corner/green/border{ +/obj/effect/floor_decal/corner/orange/border{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "apD" = ( /obj/machinery/photocopier, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "apE" = ( /obj/structure/cable/white{ d1 = 1; @@ -6204,7 +5958,7 @@ icon_state = "1-2" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "apI" = ( /obj/structure/cable{ d1 = 4; @@ -6214,9 +5968,6 @@ /obj/machinery/alarm{ pixel_y = 25 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -6235,58 +5986,61 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "apJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/area/crew_quarters/Chomp_Kitchen) "apL" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "apM" = ( /obj/structure/sign/directions/cryo{ pixel_y = -9; dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "apN" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/blue, +/obj/structure/grille, +/obj/structure/window/basic/full, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ dir = 1 }, -/obj/machinery/door/airlock/maintenance/int, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/window/basic{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/turf/simulated/floor/plating, +/area/hallway/Port_2_Deck_Central_Corridor_2) "apO" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "apP" = ( /obj/effect/floor_decal/techfloor, /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Treatment_Hall) -"apR" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/medical/Treatment_Hall) +"apU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/wall, +/area/crew_quarters/Chomp_Kitchen) "apW" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor/corner{ @@ -6299,15 +6053,15 @@ dir = 5 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "apY" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "apZ" = ( /obj/structure/table/hardwoodtable, /obj/item/folder/red, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "aqa" = ( /obj/machinery/light{ dir = 1; @@ -6326,7 +6080,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "aqb" = ( /obj/machinery/power/apc{ dir = 1; @@ -6350,27 +6104,37 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "aqd" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/shieldwallgen, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "aqe" = ( -/obj/structure/sign/painting/public, -/turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_1) +"aqg" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/shuttle/blue{ + pixel_x = -1; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "aqh" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "aqi" = ( /obj/structure/sign/warning/caution, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "aql" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "aqm" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -6379,7 +6143,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "aqt" = ( /obj/structure/bed/chair/sofa/right/brown{ dir = 8 @@ -6393,13 +6157,13 @@ color = "#1b85b8" }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "aqx" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "aqF" = ( /obj/structure/window/reinforced{ dir = 8 @@ -6417,17 +6181,17 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "aqG" = ( /obj/effect/landmark{ name = "maint_pred" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "aqJ" = ( /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "aqK" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -6440,7 +6204,7 @@ id = "sc-WTsecurityreception" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "aqL" = ( /obj/item/retail_scanner/security{ pixel_y = 5; @@ -6454,17 +6218,17 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "aqN" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "aqP" = ( /obj/machinery/power/emitter{ dir = 4 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "aqQ" = ( /obj/random/junk, /obj/structure/railing{ @@ -6477,17 +6241,17 @@ id = "SC-PackageSort" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "aqR" = ( /obj/effect/decal/cleanable/spiderling_remains, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "aqV" = ( /obj/machinery/computer/secure_data/detective_computer{ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "arb" = ( /obj/machinery/power/apc{ dir = 1; @@ -6506,7 +6270,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "arf" = ( /obj/item/stool/padded{ dir = 8 @@ -6518,7 +6282,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "arj" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -6542,10 +6306,10 @@ /obj/structure/table/reinforced, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "arl" = ( /turf/simulated/floor/carpet/brown/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "aro" = ( /obj/structure/cable/green{ d1 = 4; @@ -6566,16 +6330,16 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "arr" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "ars" = ( /obj/effect/floor_decal/stairs{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "arv" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -6599,7 +6363,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "arw" = ( /obj/structure/cable/green{ d1 = 1; @@ -6619,7 +6383,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "arz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/tagger{ @@ -6627,7 +6391,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/red, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "arC" = ( /obj/structure/table/rack{ pixel_y = 34 @@ -6666,7 +6430,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "arD" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -6682,13 +6446,29 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "arE" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/structure/closet/chefcloset, +/obj/item/glass_jar, +/obj/item/retail_scanner/civilian, +/obj/item/soap/nanotrasen, +/obj/item/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/packageWrap, +/obj/item/packageWrap, +/obj/item/packageWrap, +/obj/item/clothing/gloves/sterile/latex, +/obj/item/clothing/gloves/sterile/latex, +/obj/machinery/light{ + name = "1S-light fixture" + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "arH" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -6702,10 +6482,10 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarCorridor1) +/area/maintenance/Deck2_Engineering_ForStarCorridor1) "arK" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "arL" = ( /obj/structure/cable/green{ d1 = 4; @@ -6722,7 +6502,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "arN" = ( /obj/structure/ladder/updown{ pixel_y = 3 @@ -6733,7 +6513,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "arO" = ( /obj/structure/table/reinforced, /obj/item/flashlight/lamp{ @@ -6744,11 +6524,11 @@ pixel_x = 12 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "arP" = ( /obj/structure/table/reinforced, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "arQ" = ( /obj/structure/table/reinforced, /obj/item/folder{ @@ -6770,7 +6550,7 @@ dir = 4 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "arR" = ( /obj/machinery/sleep_console{ dir = 4 @@ -6798,7 +6578,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "arU" = ( /obj/structure/closet/secure_closet/personal, /obj/machinery/status_display{ @@ -6812,7 +6592,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "arX" = ( /obj/machinery/vending/cigarette, /obj/structure/disposalpipe/segment{ @@ -6821,27 +6601,13 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "asa" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/ladder/up, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/small/warning/emerg_only{ - desc = "Ladder for emergency use only"; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "ask" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -6852,17 +6618,17 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "asl" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "asn" = ( /obj/structure/closet/secure_closet/bar, /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "aso" = ( /obj/structure/table/steel, /obj/random/maintenance/cargo, @@ -6873,14 +6639,14 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "ass" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1 }, /obj/effect/catwalk_plated, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "asw" = ( /obj/structure/cable/white{ d1 = 1; @@ -6897,7 +6663,7 @@ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "asG" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -6909,7 +6675,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "asK" = ( /obj/effect/floor_decal/industrial/stand_clear/blue{ dir = 1 @@ -6920,7 +6686,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "asQ" = ( /obj/structure/table/standard, /obj/item/reagent_containers/spray/cleaner{ @@ -6933,14 +6699,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "asR" = ( /obj/structure/stairs/spawner/south, /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "asU" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -6974,10 +6740,10 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "asV" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "asX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -6996,11 +6762,11 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber2) +/area/maintenance/Deck2_Engineering_ForStarChamber2) "asZ" = ( /obj/item/storage/vore_egg/cocoon, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "ata" = ( /obj/structure/bed/chair/backed_red, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ @@ -7008,11 +6774,15 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "atb" = ( /obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/brown/diagonal, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "atd" = ( /obj/structure/table/standard, /obj/machinery/light/small, @@ -7023,7 +6793,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "ate" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -7035,11 +6805,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "ati" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "atk" = ( /obj/structure/table/hardwoodtable, /obj/item/storage/box/seccarts{ @@ -7056,7 +6826,7 @@ }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "atn" = ( /obj/structure/window/reinforced{ dir = 1 @@ -7075,7 +6845,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "ato" = ( /obj/structure/cable/green{ d1 = 1; @@ -7089,16 +6859,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) -"atq" = ( -/obj/item/radio/intercom{ - dir = 8; - name = "1W-Station Intercom (General)"; - pixel_x = -22 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Lobby) "atr" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -28; @@ -7107,13 +6868,13 @@ }, /obj/effect/floor_decal/milspec/box, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "ats" = ( /obj/structure/table/hardwoodtable, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "att" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -7161,7 +6922,7 @@ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "atu" = ( /obj/machinery/computer/secure_data{ dir = 1 @@ -7182,7 +6943,7 @@ c_tag = "D2-Sec-HOS Office1" }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "atv" = ( /obj/item/modular_computer/console/preset/security{ dir = 1 @@ -7202,7 +6963,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "atw" = ( /obj/structure/table/marble, /obj/machinery/microwave{ @@ -7214,7 +6975,7 @@ }, /obj/effect/floor_decal/corner/beige/diagonal, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "aty" = ( /obj/structure/bed/chair/office/light, /obj/effect/landmark/start{ @@ -7223,7 +6984,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "atA" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -7242,7 +7003,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "atB" = ( /obj/structure/cable/white{ d1 = 1; @@ -7255,7 +7016,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "atI" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -7288,7 +7049,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "atP" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -7299,7 +7060,7 @@ }, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "atR" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/disposalpipe/segment{ @@ -7309,14 +7070,14 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber2) +/area/maintenance/Deck2_Engineering_ForStarChamber2) "atT" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "atV" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -7353,18 +7114,13 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "atZ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /obj/effect/floor_decal/industrial/arrows/blue, -/obj/machinery/door/airlock/angled_bay/standard/glass/common{ - dir = 4; - name = "Hydroponics"; - req_access = list(28) - }, /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -7376,8 +7132,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/door/airlock/angled_bay/standard/glass/common{ + dir = 4; + name = "Hydroponics"; + req_access = list(28) + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/area/crew_quarters/Chomp_Kitchen) "aua" = ( /obj/structure/table/standard, /obj/item/reagent_containers/glass/rag{ @@ -7388,14 +7149,22 @@ pixel_x = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "aue" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/arrows/yellow, +/obj/effect/floor_decal/industrial/arrows/yellow{ + dir = 1 + }, /obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/maintenance/Deck2_For_Corridor) "auf" = ( /obj/machinery/light{ dir = 4; @@ -7409,7 +7178,7 @@ dir = 9 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "aug" = ( /obj/structure/cable/green{ d1 = 4; @@ -7426,40 +7195,37 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "auh" = ( /obj/machinery/conveyor{ id = "SC-PackageSort" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "aui" = ( /obj/structure/closet/walllocker/emerglocker/north, /turf/simulated/shuttle/floor/white, /area/shuttle/large_escape_pod3/station) "auk" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/machinery/disposal/deliveryChute{ - dir = 8; - name = "Crew transit pipes"; - desc = "A specialized crew transit system, a tight inflatable hole of soft fabric with a strong suction. A quick way to travel long distances!"; - color = "#6b75ff" +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aul" = ( /obj/structure/bed/chair/oldsofa/left, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "aut" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "auv" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "auy" = ( /obj/structure/table/woodentable, /obj/item/paper_bin{ @@ -7485,7 +7251,7 @@ }, /obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "auz" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -7494,7 +7260,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "auB" = ( /obj/machinery/light{ dir = 8; @@ -7511,14 +7277,14 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/red, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "auC" = ( /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "auD" = ( /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "auG" = ( /obj/structure/table/steel_reinforced, /obj/item/reagent_containers/spray/cleaner{ @@ -7541,7 +7307,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "auJ" = ( /obj/structure/undies_wardrobe, /obj/item/towel/random{ @@ -7561,14 +7327,14 @@ pixel_y = -22 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "auK" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "auL" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "auN" = ( /obj/machinery/disposal/wall{ pixel_y = 34; @@ -7584,7 +7350,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "auO" = ( /obj/structure/cable/green{ d1 = 4; @@ -7598,7 +7364,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "auP" = ( /obj/structure/table/woodentable, /obj/machinery/computer/security/telescreen/entertainment{ @@ -7612,7 +7378,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "auQ" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/loading/blue{ @@ -7623,7 +7389,7 @@ desc = "A sign indicating the location for Extra-Vehicular Activity. Use the nearby chute for quick access." }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "auR" = ( /obj/structure/closet/emergsuit_wall{ pixel_y = 27; @@ -7636,14 +7402,16 @@ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "auX" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, +/obj/random/trash_pile, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "auY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorwhite/corner{ @@ -7653,33 +7421,33 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "avc" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "ave" = ( /obj/effect/floor_decal/milspec/box, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "avf" = ( /obj/structure/girder, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "avg" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "avh" = ( /obj/structure/table/standard, /obj/random/maintenance/engineering, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "avl" = ( /obj/structure/table/woodentable, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "avm" = ( /obj/machinery/light{ dir = 1; @@ -7694,7 +7462,7 @@ pixel_y = 28 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "avn" = ( /obj/machinery/power/apc{ dir = 4; @@ -7722,11 +7490,11 @@ icon_state = "pipe-c" }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "avq" = ( /obj/structure/bed/chair/sofa/beige, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "avr" = ( /obj/structure/ladder/updown{ pixel_y = 3 @@ -7737,7 +7505,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Port_Corridor) "avs" = ( /obj/structure/closet/secure_closet/paramedic, /obj/item/extraction_pack, @@ -7745,7 +7513,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "avu" = ( /obj/machinery/door/window/southright{ name = "Engineering Monitoring Room"; @@ -7772,7 +7540,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "avv" = ( /obj/structure/window/reinforced{ dir = 8 @@ -7784,7 +7552,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "avw" = ( /obj/structure/table/steel_reinforced, /obj/item/clothing/gloves/black{ @@ -7810,10 +7578,10 @@ /obj/item/lightreplacer, /obj/item/lightreplacer, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "avx" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "avy" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/gps/engineering, @@ -7828,7 +7596,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "avA" = ( /obj/structure/cable/white{ d1 = 4; @@ -7836,7 +7604,7 @@ icon_state = "4-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "avB" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -7850,7 +7618,7 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "avD" = ( /obj/structure/table/steel, /obj/structure/bedsheetbin{ @@ -7864,7 +7632,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "avE" = ( /obj/structure/bed/chair{ dir = 4 @@ -7877,7 +7645,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "avH" = ( /obj/machinery/firealarm{ dir = 1; @@ -7894,19 +7662,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Distillery) -"avI" = ( -/obj/machinery/ai_status_display{ - name = "1N-AI display"; - pixel_y = 32 - }, -/obj/structure/closet/emcloset, -/obj/machinery/light{ - dir = 1; - name = "1N-lighting fixture" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/medical/Distillery) "avJ" = ( /obj/machinery/firealarm{ dir = 8; @@ -7924,7 +7680,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "avM" = ( /obj/structure/cable{ d1 = 2; @@ -7941,7 +7697,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "avP" = ( /obj/structure/cable/green{ d1 = 2; @@ -7970,7 +7726,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "avS" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -7979,7 +7735,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "avT" = ( /obj/structure/table/rack/holorack, /obj/item/circuitboard/solar_control{ @@ -8026,7 +7782,7 @@ pixel_y = -5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "avU" = ( /obj/machinery/light{ dir = 4; @@ -8039,7 +7795,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "avV" = ( /obj/machinery/computer/security/mining{ desc = "Used to access the various cameras on the station."; @@ -8054,7 +7810,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "awb" = ( /obj/structure/cryofeed, /obj/structure/window/reinforced{ @@ -8068,7 +7824,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "awe" = ( /obj/machinery/firealarm{ dir = 4; @@ -8082,24 +7838,11 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "awf" = ( /obj/structure/bed/chair/office/dark, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Reception) -"awg" = ( -/obj/machinery/atmospherics/valve{ - name = "Domicile emergency air supply" - }, -/obj/effect/floor_decal/industrial/danger/full, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/security/Reception) "awh" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -8125,13 +7868,13 @@ /obj/structure/table/reinforced, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "awi" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 }, /turf/simulated/floor/tiled/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "awj" = ( /obj/structure/cable/green{ d1 = 4; @@ -8144,8 +7887,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/floor_decal/steeldecal/monofloor{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "awm" = ( /obj/machinery/ai_status_display{ name = "1W-AI display"; @@ -8166,12 +7912,12 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "awo" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, /turf/space, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "awq" = ( /obj/structure/table/standard, /obj/item/surgical/bonesetter{ @@ -8185,7 +7931,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "awr" = ( /obj/structure/closet/wardrobe/red, /obj/item/clothing/accessory/badge/holo/cord{ @@ -8236,13 +7982,13 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "aws" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "awv" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -8253,7 +7999,7 @@ name = "Civilian foyer" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "awx" = ( /obj/machinery/alarm{ dir = 8; @@ -8261,7 +8007,7 @@ }, /mob/living/simple_mob/animal/passive/cockroach, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "awy" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/sign/small/warning/emerg_only{ @@ -8269,7 +8015,7 @@ pixel_y = 32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "awA" = ( /obj/structure/cable/white{ d1 = 4; @@ -8277,14 +8023,14 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "awG" = ( /obj/structure/sign/directions/janitor{ pixel_y = 9 }, /obj/structure/sign/directions/evac, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "awI" = ( /obj/structure/cable/white{ d1 = 4; @@ -8292,18 +8038,18 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "awK" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "awO" = ( /obj/structure/bed/chair/comfy/yellow{ dir = 4 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "awQ" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 9 @@ -8312,7 +8058,7 @@ dir = 4 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "awS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -8332,18 +8078,18 @@ layer = 3.5 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/area/maintenance/Deck2_Star_Corridor) "awU" = ( /obj/structure/window/reinforced, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "awV" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "awW" = ( /obj/structure/closet/emcloset, /obj/item/storage/box/survival/space{ @@ -8365,7 +8111,7 @@ pixel_x = 22 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "axb" = ( /obj/effect/floor_decal/industrial/arrows{ dir = 4 @@ -8401,7 +8147,7 @@ pixel_y = -24 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "axp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -8424,7 +8170,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "axu" = ( /obj/machinery/light{ dir = 4; @@ -8437,11 +8183,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_2) "axv" = ( /obj/structure/bed/chair/sofa/left/blue, /obj/machinery/light{ @@ -8455,8 +8201,8 @@ /obj/effect/floor_decal/spline/fancy{ dir = 1 }, -/turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/turf/simulated/floor/carpet/sblucarpet, +/area/hallway/Star_Transit_Foyer) "axw" = ( /obj/machinery/computer/operating{ name = "Robotics Operating Computer" @@ -8472,7 +8218,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "axx" = ( /obj/structure/table/standard, /obj/item/storage/firstaid/surgery{ @@ -8491,7 +8237,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "axA" = ( /obj/structure/closet/wardrobe/engineering_yellow, /obj/machinery/light{ @@ -8513,10 +8259,10 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "axD" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "axG" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -8545,7 +8291,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "axJ" = ( /obj/machinery/newscaster/security_unit{ pixel_y = -30 @@ -8571,14 +8317,14 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "axN" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "axO" = ( /obj/item/radio/intercom{ dir = 8; @@ -8589,7 +8335,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "axP" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -8606,23 +8352,31 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "axQ" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "axX" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/disposalpipe/segment, +/obj/structure/sign/directions/cryo{ + pixel_y = 9; + dir = 1 + }, +/obj/structure/sign/directions/kitchen{ + dir = 1 + }, +/obj/structure/sign/directions/ladderwell{ dir = 1; - icon_state = "pipe-c" + pixel_y = -9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/maintenance/Distro_Civilian) "axY" = ( /obj/machinery/media/jukebox, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aya" = ( /obj/machinery/alarm{ dir = 8; @@ -8630,7 +8384,7 @@ }, /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "ayd" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -8644,20 +8398,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "ayg" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "ayj" = ( /obj/effect/floor_decal/spline/fancy{ dir = 6 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "ayk" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "ayl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8665,7 +8419,7 @@ dir = 5 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "aym" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -8680,19 +8434,23 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) +"ayo" = ( +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "ayq" = ( /obj/structure/table/glass, /obj/item/binoculars, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "ays" = ( /obj/structure/sign/directions/security/brig{ dir = 8; pixel_y = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "ayw" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -8704,7 +8462,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "ayA" = ( /obj/machinery/alarm{ dir = 8; @@ -8717,7 +8475,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "ayB" = ( /obj/structure/cable{ d1 = 1; @@ -8736,16 +8494,16 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "ayC" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "ayD" = ( /obj/effect/floor_decal/industrial/stand_clear/blue, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "ayE" = ( /obj/effect/floor_decal/industrial/loading/blue, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, @@ -8757,7 +8515,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "ayG" = ( /obj/machinery/holoplant{ pixel_y = 10; @@ -8771,7 +8529,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "ayH" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 5 @@ -8780,7 +8538,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "ayL" = ( /obj/machinery/light/floortube{ pixel_y = -2 @@ -8789,13 +8547,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "ayM" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "ayN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -8812,7 +8570,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "ayP" = ( /obj/structure/closet/wardrobe/engineering_yellow, /obj/effect/floor_decal/borderfloorblack{ @@ -8822,7 +8580,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "ayQ" = ( /obj/item/radio/off{ pixel_y = -5; @@ -8871,7 +8629,7 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "ayS" = ( /obj/structure/closet/crate/mail{ dir = 2 @@ -8898,7 +8656,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "ayU" = ( /obj/machinery/light{ dir = 8; @@ -8921,7 +8679,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "ayV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -8930,7 +8688,7 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "ayW" = ( /obj/machinery/suit_cycler/engineering{ req_one_access = list(11,24); @@ -8942,7 +8700,7 @@ pixel_y = -22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "ayX" = ( /obj/structure/dogbed{ name = "Poppy's bed" @@ -8960,11 +8718,11 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "azf" = ( /obj/structure/sign/nosmoking_2, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "azh" = ( /obj/machinery/cryopod, /obj/machinery/camera/network/security{ @@ -8973,7 +8731,7 @@ network = list("Security,Prison") }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "azi" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -8987,10 +8745,10 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "azj" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "azl" = ( /obj/structure/closet/emergsuit_wall{ pixel_y = 27; @@ -9003,7 +8761,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "azn" = ( /obj/item/reagent_containers/glass/beaker/cryoxadone{ pixel_x = 7; @@ -9021,7 +8779,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "azp" = ( /obj/machinery/button/remote/airlock{ id = "sc-maintroomstrip"; @@ -9030,19 +8788,19 @@ pixel_y = 25 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "azq" = ( /obj/structure/table/woodentable, /obj/item/halogen_counter{ pixel_y = 6 }, -/turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/turf/simulated/floor/carpet/sblucarpet, +/area/hallway/Star_Transit_Foyer) "azr" = ( /obj/machinery/shield_capacitor, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "azs" = ( /obj/structure/bed/chair/sofa/right/brown{ dir = 8; @@ -9052,13 +8810,13 @@ dir = 4 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "azA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/purple{ dir = 10 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "azD" = ( /obj/structure/cable/white{ d1 = 2; @@ -9066,21 +8824,12 @@ icon_state = "2-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "azG" = ( /obj/structure/ladder/updown, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Security_StarCorridor1) -"azH" = ( -/obj/machinery/alarm{ - pixel_y = 25 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/maintenance/Deck2_Security_StarCorridor1) "azJ" = ( /obj/structure/bed/padded, /obj/item/bedsheet/orange, @@ -9089,14 +8838,14 @@ name = "1N-entertainment monitor" }, /turf/simulated/floor/carpet/bcarpet/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "azK" = ( /obj/structure/bookcase/manuals/engineering, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "azM" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "azN" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -9113,31 +8862,21 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "azO" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "1E-Station Intercom (General)"; - pixel_x = 22 +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/orange/border, +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 1; + pixel_y = -10 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "azP" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "azT" = ( /obj/structure/ladder{ pixel_y = 3 @@ -9154,7 +8893,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "azU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -9167,7 +8906,7 @@ name = "Mailroom Access" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "azV" = ( /obj/structure/closet/crate/mail/full{ dir = 2 @@ -9195,7 +8934,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "azX" = ( /obj/item/mail/junkmail{ pixel_x = 5; @@ -9218,7 +8957,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "azY" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -9229,7 +8968,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "azZ" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -9237,7 +8976,7 @@ /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "aAc" = ( /obj/machinery/light{ dir = 1; @@ -9253,7 +8992,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "aAd" = ( /obj/item/radio/intercom/department/security{ dir = 1; @@ -9268,7 +9007,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "aAf" = ( /obj/structure/table/reinforced, /obj/machinery/photocopier/faxmachine{ @@ -9285,7 +9024,7 @@ pixel_x = -10 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "aAg" = ( /obj/structure/cable/green{ d1 = 4; @@ -9309,23 +9048,31 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_PortCorridor1) +/area/maintenance/Deck2_Security_PortCorridor1) "aAh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/carpet, -/turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Gallery) +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 8 + }, +/turf/simulated/floor/glass, +/area/hallway/Port_2_Deck_Central_Corridor_2) "aAi" = ( /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aAj" = ( /obj/structure/table/hardwoodtable, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aAo" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/machinery/vending/boozeomat, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "aAq" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/light{ @@ -9340,7 +9087,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "aAr" = ( /obj/machinery/atmospherics/binary/dp_vent_pump/high_volume{ frequency = 1379; @@ -9348,14 +9095,14 @@ dir = 8 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "aAs" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "aAt" = ( /obj/machinery/status_display{ pixel_x = 32; @@ -9368,7 +9115,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "aAu" = ( /obj/machinery/firealarm{ dir = 1; @@ -9378,7 +9125,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "aAv" = ( /obj/machinery/alarm{ dir = 4; @@ -9391,7 +9138,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "aAw" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -9421,14 +9168,18 @@ name = "1E-light fixture" }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "aAK" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) +"aAP" = ( +/obj/effect/graffitispawner, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "aAQ" = ( /obj/machinery/papershredder, /obj/machinery/button/remote/blast_door{ @@ -9449,7 +9200,7 @@ req_access = list(5) }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "aAR" = ( /obj/machinery/light{ dir = 4; @@ -9462,17 +9213,17 @@ dir = 4 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "aAT" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "aAU" = ( /obj/structure/sign/directions/ladderwell{ dir = 4; pixel_y = 9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "aAV" = ( /obj/effect/floor_decal/milspec/cargo_arrow{ dir = 1 @@ -9482,7 +9233,7 @@ }, /obj/effect/floor_decal/milspec/box, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "aAW" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -9496,7 +9247,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "aAZ" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/power/apc{ @@ -9508,7 +9259,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber2) +/area/maintenance/Deck2_Engineering_ForStarChamber2) "aBd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -9518,7 +9269,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "aBe" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -9534,7 +9285,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "aBi" = ( /obj/structure/cable/green{ d1 = 1; @@ -9552,12 +9303,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "aBl" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "aBm" = ( /obj/structure/cable/green{ d1 = 1; @@ -9566,7 +9317,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "aBp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -9583,7 +9334,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "aBr" = ( /obj/structure/closet/emergsuit_wall{ dir = 1; @@ -9596,7 +9347,7 @@ id = "sc-DBBstall1" }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "aBu" = ( /obj/fiftyspawner/glass, /obj/fiftyspawner/glass, @@ -9616,17 +9367,26 @@ /obj/structure/closet/crate/secure/large/reinforced, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "aBw" = ( /obj/machinery/camera/network/security{ dir = 10; - c_tag = "D2-Com-Aft Corridor5"; + c_tag = "D2-Com-Aft Corridor4"; network = list("Commons") }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/Aft_2_Deck_Central_Corridor_1) +"aBy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/tank/air/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/blue, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "aBA" = ( /obj/structure/cable/white{ d1 = 1; @@ -9634,7 +9394,7 @@ icon_state = "1-4" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aBC" = ( /obj/structure/cable/green{ d1 = 1; @@ -9643,7 +9403,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "aBD" = ( /obj/structure/table/rack{ dir = 8; @@ -9659,7 +9419,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "aBF" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -9670,7 +9430,7 @@ name = "EMT Bay" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "aBH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -9680,14 +9440,14 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "aBL" = ( /obj/structure/fitness/weightlifter, /obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "aBV" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -9704,7 +9464,7 @@ }, /obj/machinery/ai_status_display, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "aBW" = ( /obj/structure/cable/white{ d1 = 4; @@ -9725,7 +9485,7 @@ id = "sc-GCsecurityreception" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "aBX" = ( /obj/structure/cable/white{ d1 = 4; @@ -9746,7 +9506,7 @@ id = "sc-GCsecurityreception" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "aBZ" = ( /obj/structure/cable/white{ d1 = 2; @@ -9754,7 +9514,7 @@ icon_state = "2-4" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "aCb" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk{ @@ -9762,7 +9522,7 @@ }, /obj/structure/plasticflaps/mining, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "aCd" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -9779,7 +9539,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "aCe" = ( /obj/structure/table/reinforced, /obj/machinery/chemical_dispenser/biochemistry/full{ @@ -9792,7 +9552,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "aCg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -9814,21 +9574,21 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "aCh" = ( /obj/machinery/vending/wallmed1{ pixel_y = 26; name = "1N-NanoMed" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "aCi" = ( /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "aCj" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "aCk" = ( /obj/machinery/disposal, /obj/machinery/alarm{ @@ -9843,20 +9603,20 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "aCl" = ( /obj/structure/table/standard, /obj/machinery/recharger, /obj/item/tool/wrench, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "aCm" = ( /obj/structure/table/woodentable, /obj/item/modular_computer/laptop/preset/custom_loadout/cheap{ pixel_y = 16 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "aCo" = ( /obj/structure/table/woodentable, /obj/machinery/photocopier/faxmachine{ @@ -9864,7 +9624,7 @@ pixel_y = 12 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "aCq" = ( /obj/machinery/light{ dir = 8; @@ -9878,7 +9638,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "aCt" = ( /obj/structure/bed/chair/comfy/brown, /obj/machinery/light{ @@ -9886,7 +9646,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "aCu" = ( /obj/machinery/light{ dir = 1; @@ -9900,7 +9660,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "aCv" = ( /obj/item/storage/box/bodybags{ pixel_x = -8 @@ -9923,7 +9683,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "aCx" = ( /obj/machinery/light{ dir = 8; @@ -9937,20 +9697,20 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aCy" = ( /obj/machinery/door/window/eastleft{ name = "Engineering Suits"; req_access = list(11) }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aCD" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "aCG" = ( /obj/machinery/alarm{ dir = 4; @@ -9963,7 +9723,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "aCH" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -9990,7 +9750,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "aCK" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -10013,7 +9773,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "aCM" = ( /obj/structure/table/rack, /obj/item/gun/projectile/automatic/p90{ @@ -10032,7 +9792,7 @@ }, /obj/structure/window/reinforced, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "aCO" = ( /obj/machinery/papershredder, /obj/effect/floor_decal/borderfloorblack{ @@ -10042,7 +9802,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "aCR" = ( /obj/structure/sign/directions/engineering{ dir = 10; @@ -10058,16 +9818,16 @@ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "aCU" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/purple/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_2) "aCW" = ( /obj/structure/cable/white{ d1 = 1; @@ -10082,7 +9842,7 @@ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "aCX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -10102,11 +9862,13 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/purple/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_2) "aDb" = ( /obj/structure/cable/green{ d1 = 1; @@ -10114,7 +9876,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "aDc" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -10122,7 +9884,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "aDd" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -10130,7 +9892,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "aDe" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -10144,16 +9906,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/For_Medical_Post) -"aDi" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/medical/For_Medical_Post) "aDr" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -10171,7 +9924,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "aDs" = ( /obj/structure/table/rack, /obj/item/storage/briefcase{ @@ -10192,7 +9945,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aDv" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -10203,7 +9956,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "aDw" = ( /obj/machinery/computer/arcade, /obj/effect/floor_decal/borderfloorblack{ @@ -10213,7 +9966,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "aDy" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -10231,12 +9984,12 @@ name = "1W-guest pass terminal" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aDz" = ( /obj/machinery/suit_cycler/refit_only, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "aDA" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -10264,15 +10017,15 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "aDB" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/dark, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "aDD" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "aDE" = ( /obj/machinery/conveyor_switch/oneway{ id = "SC-PackageSort" @@ -10291,7 +10044,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "aDF" = ( /obj/machinery/door/window/eastright{ name = "Mass Driver"; @@ -10299,16 +10052,13 @@ }, /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "aDG" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) -"aDH" = ( -/turf/simulated/wall, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/crew_quarters/Office_Lounge) "aDK" = ( /obj/structure/bookcase{ name = "bookcase (Adult)" @@ -10319,7 +10069,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "aDL" = ( /obj/structure/table/steel, /obj/random/cigarettes, @@ -10333,10 +10083,10 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "aDO" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "aDQ" = ( /obj/machinery/mass_driver{ dir = 4; @@ -10348,7 +10098,7 @@ dir = 1 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "aDS" = ( /obj/machinery/light{ dir = 8; @@ -10365,7 +10115,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "aDT" = ( /obj/machinery/power/apc{ dir = 1; @@ -10388,7 +10138,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "aDV" = ( /obj/structure/table/standard, /obj/item/storage/bag/mail{ @@ -10414,10 +10164,10 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "aEb" = ( /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aEi" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -10435,7 +10185,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "aEk" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ @@ -10466,10 +10216,10 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "aEl" = ( /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "aEo" = ( /obj/structure/closet/walllocker/medical/south, /turf/simulated/shuttle/floor, @@ -10481,15 +10231,15 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aEs" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "aEt" = ( /obj/machinery/camera/network/security{ dir = 4; - c_tag = "D2-Com-For Corridor6"; + c_tag = "D2-Com-For Corridor5"; network = list("Commons") }, /obj/effect/floor_decal/borderfloor{ @@ -10499,7 +10249,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "aEB" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 4 @@ -10511,32 +10261,30 @@ /obj/machinery/door/window/westleft, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "aEC" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "aEF" = ( -/obj/structure/table/marble, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "aEG" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "aEI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -10546,7 +10294,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "aEJ" = ( /obj/machinery/computer/supplycomp{ dir = 8 @@ -10560,7 +10308,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "aEK" = ( /obj/structure/table/rack{ dir = 8; @@ -10571,7 +10319,7 @@ /obj/random/maintenance/cargo, /obj/random/maintenance/medical, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "aEP" = ( /obj/structure/easel, /obj/machinery/light{ @@ -10580,7 +10328,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "aES" = ( /obj/structure/table/rack/shelf, /obj/item/storage/toolbox/emergency{ @@ -10628,7 +10376,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "aET" = ( /obj/structure/cable{ d1 = 1; @@ -10642,7 +10390,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "aEU" = ( /obj/item/radio/intercom{ dir = 8; @@ -10651,7 +10399,7 @@ }, /obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "aEV" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -10671,7 +10419,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "aFa" = ( /obj/structure/cable/green{ d1 = 4; @@ -10690,7 +10438,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "aFh" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, @@ -10709,7 +10457,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "aFi" = ( /obj/machinery/papershredder, /obj/machinery/camera/network/security{ @@ -10724,14 +10472,14 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "aFl" = ( /obj/machinery/conveyor{ dir = 1; id = "QMDelivery" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "aFm" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -10753,7 +10501,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "aFn" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 4 @@ -10762,7 +10510,7 @@ /obj/machinery/door/window/westright, /obj/structure/curtain/open/shower/security, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "aFq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -10777,19 +10525,13 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "aFr" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, -/obj/machinery/door/airlock/angled_bay/double/glass/atmos{ - req_access = null; - name = "Medical EscapePod"; - frequency = 1380; - id_tag = "large_escape_pod_4_berth_hatch" - }, /obj/machinery/door/blast/regular/open{ layer = 3.5; id = "Star Lockdown"; @@ -10797,20 +10539,37 @@ desc = "A heavily reinforced gate, sector lockdown!"; dir = 4 }, +/obj/machinery/door/airlock/angled_bay/double/glass/medical{ + name = "Medical EscapePod"; + req_access = null; + id_tag = "large_escape_pod_4_berth_hatch"; + frequency = 1380 + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "aFs" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "aFt" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "aFu" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -10818,7 +10577,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aFx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -10841,7 +10600,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "aFA" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -10853,7 +10612,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "aFB" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -10866,13 +10625,13 @@ id = "sc-WTinternalaffairs" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aFD" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "aFF" = ( /obj/item/stack/material/phoron{ amount = 25; @@ -10917,22 +10676,24 @@ pixel_x = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "aFG" = ( -/obj/structure/sign/securearea{ - icon_state = "radiation_small"; - name = "\improper RAD SAFE"; - desc = "A warning sign which reads 'RADIATION SHIELDING IN THIS AREA'." +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 }, -/turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "aFH" = ( /obj/item/stool/padded, /obj/effect/floor_decal/carpet{ dir = 1 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "aFJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -10949,14 +10710,17 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "aFK" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/alarm{ - pixel_y = 22 +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "aFM" = ( /obj/machinery/body_scanconsole{ dir = 4 @@ -10970,7 +10734,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "aFN" = ( /obj/structure/table/steel, /obj/item/clothing/head/greenbandana{ @@ -10996,7 +10760,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "aFO" = ( /obj/structure/table/standard, /obj/item/toy/plushie/box, @@ -11007,11 +10771,11 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "aFT" = ( /obj/effect/floor_decal/milspec/box, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "aFW" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -11030,7 +10794,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "aGd" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -11053,24 +10817,24 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "aGf" = ( /obj/random/trash_pile, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "aGg" = ( /obj/machinery/computer/rdconsole/core{ dir = 8 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "aGh" = ( /obj/machinery/r_n_d/protolathe/engineering, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "aGj" = ( /obj/machinery/button/flasher{ id = "permentryflash"; @@ -11095,7 +10859,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "aGq" = ( /obj/structure/cable/green{ d1 = 2; @@ -11115,20 +10879,20 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "aGu" = ( /obj/structure/table/fancyblack, /obj/item/reagent_containers/food/snacks/sliceable/monkfishremains, /obj/item/toy/cultsword, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "aGw" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "aGz" = ( /obj/machinery/vending/dinnerware, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "aGA" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -11146,7 +10910,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "aGC" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -11183,7 +10947,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aGD" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -11214,7 +10978,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aGE" = ( /obj/structure/cable/green{ d1 = 2; @@ -11232,7 +10996,7 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "aGF" = ( /obj/structure/table/steel_reinforced, /obj/item/clamp{ @@ -11284,7 +11048,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aGJ" = ( /obj/structure/table/standard, /obj/machinery/sparker{ @@ -11294,7 +11058,7 @@ }, /obj/item/assembly/igniter, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "aGK" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -11302,22 +11066,10 @@ id = "sc-WTmailroom" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "aGM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_2) "aGN" = ( /obj/machinery/conveyor{ dir = 1; @@ -11327,7 +11079,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "aGO" = ( /obj/random/tech_supply, /obj/random/tech_supply, @@ -11349,7 +11101,7 @@ /obj/effect/floor_decal/corner/brown/border, /obj/structure/sign/poster/nanotrasen, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "aGR" = ( /obj/structure/table/rack/steel, /obj/random/tech_supply, @@ -11379,14 +11131,14 @@ pixel_x = -6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "aGT" = ( /obj/machinery/shield_diffuser, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "aGU" = ( /obj/machinery/power/apc{ dir = 8; @@ -11417,26 +11169,19 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "aGX" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "aGZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) -"aHb" = ( -/obj/structure/stairs/spawner/north, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/area/rnd/Research_Lab) "aHd" = ( /obj/structure/table/steel_reinforced, /obj/item/storage/belt/bandolier{ @@ -11450,11 +11195,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) -"aHe" = ( -/obj/machinery/seed_storage/garden, -/turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/area/security/Wardens_Office) "aHm" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -11468,7 +11209,7 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "aHo" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -11491,7 +11232,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "aHp" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -11525,7 +11266,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "aHq" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -11549,13 +11290,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "aHs" = ( /obj/structure/casino_table/blackjack_r{ dir = 1 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "aHw" = ( /obj/machinery/atmospherics/unary/freezer{ icon_state = "freezer"; @@ -11570,7 +11311,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "aHy" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -11592,7 +11333,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "aHB" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -11602,11 +11343,11 @@ name = "Medical Doctor" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "aHD" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "aHF" = ( /obj/machinery/alarm{ dir = 4; @@ -11616,7 +11357,7 @@ /obj/random/maintenance/cargo, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "aHI" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -11629,7 +11370,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "aHJ" = ( /obj/machinery/mech_recharger, /obj/mecha/working/hoverpod/shuttlepod, @@ -11644,7 +11385,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "aHK" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -11653,7 +11394,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "aHO" = ( /obj/effect/catwalk_plated/white, /turf/simulated/floor/glass/turfpack/airless, @@ -11674,14 +11415,14 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "aIa" = ( /obj/structure/table/woodentable, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aId" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "aIf" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -11689,17 +11430,17 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aIj" = ( /obj/structure/table/steel, /obj/item/mecha_parts/mecha_equipment/tool/passenger{ pixel_x = 3 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "aIl" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "aIm" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -11744,7 +11485,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "aIo" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -11756,14 +11497,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "aIp" = ( /obj/effect/floor_decal/shuttle/loading/yellow{ dir = 8 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "aIt" = ( /obj/structure/table/standard, /obj/item/surgical/scalpel, @@ -11773,7 +11514,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "aIv" = ( /obj/structure/cable/green{ d1 = 2; @@ -11783,63 +11524,21 @@ /obj/effect/catwalk_plated/techmaint, /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "aIx" = ( /obj/structure/table/hardwoodtable, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aIy" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "aIA" = ( -/obj/structure/railing{ - dir = 4 - }, +/obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) -"aIE" = ( -/obj/machinery/cell_charger{ - pixel_y = 11 - }, -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 6; - pixel_y = 4 - }, -/obj/machinery/recharger{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/structure/table/steel, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/area/hallway/For_2_Deck_Central_Corridor_1) "aIH" = ( /obj/structure/filingcabinet/filingcabinet, /obj/machinery/button/remote/blast_door{ @@ -11854,7 +11553,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "aIJ" = ( /obj/machinery/status_display{ pixel_x = -32; @@ -11871,7 +11570,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aIM" = ( /obj/machinery/alarm{ dir = 1; @@ -11887,7 +11586,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "aIP" = ( /obj/machinery/computer/timeclock/premade/north, /obj/effect/floor_decal/corner/blue/border{ @@ -11900,7 +11599,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "aIQ" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -11913,7 +11612,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "aIR" = ( /obj/structure/bed/chair{ dir = 8 @@ -11926,7 +11625,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "aIT" = ( /obj/structure/fireaxecabinet{ name = "1W-sfire axe cabinet"; @@ -11939,7 +11638,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "aIV" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -11960,7 +11659,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "aIW" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 @@ -11969,7 +11668,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "aIY" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -11980,7 +11679,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "aIZ" = ( /obj/machinery/light/small{ dir = 8 @@ -11998,24 +11697,28 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "aJa" = ( /obj/structure/sign/department/shield{ desc = "Sign of some important station compartment." }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "aJb" = ( /obj/structure/table/steel, +/obj/machinery/light{ + dir = 8; + name = "1E-light fixture" + }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "aJc" = ( /obj/structure/bed/chair, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "aJd" = ( /obj/structure/table/wooden_reinforced, /obj/item/flashlight/lamp/green{ @@ -12027,7 +11730,7 @@ pixel_y = 22 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "aJe" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner{ @@ -12037,7 +11740,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "aJg" = ( /obj/structure/table/rack, /obj/item/storage/briefcase{ @@ -12052,7 +11755,7 @@ pixel_y = -5 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "aJh" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -12065,7 +11768,7 @@ id = "sc-WTdetective" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "aJi" = ( /obj/structure/bed/chair/bay/chair/padded/red/bignest, /obj/machinery/alarm{ @@ -12073,15 +11776,15 @@ pixel_x = 22 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "aJk" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "aJm" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aJn" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -12110,7 +11813,7 @@ }, /obj/structure/table/steel, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "aJo" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -12141,42 +11844,39 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "aJt" = ( /obj/machinery/shield_capacitor, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "aJv" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "aJw" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "aJx" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "aJD" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "aJE" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "aJH" = ( /obj/structure/bed/chair/sofa/right/orange{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "aJJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -12184,10 +11884,8 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "aJK" = ( /obj/machinery/alarm{ dir = 1; @@ -12195,7 +11893,7 @@ }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "aJL" = ( /obj/structure/table/standard, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -12208,7 +11906,7 @@ id = "sc-GCmailroom" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "aJO" = ( /obj/machinery/power/apc{ dir = 4; @@ -12232,7 +11930,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "aJP" = ( /obj/machinery/door/window/northleft{ layer = 2.9 @@ -12255,11 +11953,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "aJQ" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "aJV" = ( /obj/machinery/vending/fitness{ dir = 1 @@ -12272,7 +11970,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "aJY" = ( /obj/structure/cable/white{ d1 = 1; @@ -12280,7 +11978,7 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "aKc" = ( /obj/machinery/flasher{ id = "testthis"; @@ -12299,38 +11997,29 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "aKd" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/machinery/chem_master/condimaster, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/orange/border, +/obj/structure/table/marble, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "aKf" = ( -/obj/machinery/smartfridge/produce, -/turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "aKg" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/industrial/hatch/blue, -/obj/structure/grille, -/obj/structure/window/basic/full, -/obj/structure/window/basic, -/obj/structure/window/basic{ - dir = 8 +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 }, -/obj/structure/window/basic{ - dir = 1 +/obj/effect/floor_decal/corner/orange/border{ + dir = 5 }, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "aKh" = ( /obj/structure/table/rack, /obj/item/rig/pmc/commander/green/equipped{ @@ -12349,7 +12038,7 @@ req_access = list() }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "aKi" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -12359,7 +12048,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "aKn" = ( /obj/machinery/ai_status_display{ pixel_y = 32 @@ -12370,13 +12059,13 @@ "aKo" = ( /obj/machinery/vending/cart, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "aKq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "aKr" = ( /obj/structure/railing/grey{ dir = 1 @@ -12388,7 +12077,7 @@ dir = 8 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "aKz" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -12402,7 +12091,7 @@ /area/shuttle/large_escape_pod3/station) "aKA" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "aKC" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, @@ -12411,7 +12100,7 @@ dir = 1 }, /turf/space, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "aKF" = ( /obj/structure/table/steel, /obj/item/newspaper, @@ -12422,7 +12111,7 @@ pixel_y = -8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "aKG" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -12454,7 +12143,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "aKH" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -12471,7 +12160,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "aKJ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -12491,7 +12180,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "aKM" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -12499,7 +12188,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "aKN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -12516,7 +12205,7 @@ name = "Forensics Access" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "aKO" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -12539,26 +12228,26 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "aKQ" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "aKR" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/unary/cryo_cell, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "aKS" = ( /obj/structure/bed/chair/sofa/right/beige, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "aKT" = ( /obj/structure/closet/crate/solar, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "aKU" = ( /obj/structure/table/woodentable, /obj/item/paper_bin{ @@ -12594,7 +12283,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "aKV" = ( /obj/structure/table/rack{ dir = 8; @@ -12647,26 +12336,19 @@ pixel_y = -9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "aKW" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aKX" = ( /obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "aKY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/machinery/light/floortube{ - dir = 1; - pixel_y = 2 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/obj/structure/lattice, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/plating/turfpack/airless, +/area/space) "aKZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -12679,14 +12361,14 @@ req_one_access = list(1,38) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aLb" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "aLd" = ( /obj/structure/cable/green{ d1 = 4; @@ -12706,10 +12388,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "aLe" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "aLf" = ( /obj/structure/table/steel, /obj/machinery/cell_charger{ @@ -12732,14 +12414,14 @@ pixel_y = -1 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "aLh" = ( /obj/structure/reagent_dispensers/fueltank/high, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "aLr" = ( /obj/effect/catwalk_plated, /obj/machinery/camera/network/security{ @@ -12748,7 +12430,7 @@ network = list("Science") }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "aLt" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -12764,14 +12446,20 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aLv" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aLw" = ( +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aLx" = ( /obj/structure/table/rack{ dir = 8; @@ -12810,7 +12498,7 @@ pixel_x = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aLy" = ( /obj/structure/table/steel, /obj/item/storage/briefcase/inflatable{ @@ -12840,12 +12528,12 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aLB" = ( /obj/structure/table/sifwoodentable, /obj/item/deck/tarot, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "aLD" = ( /obj/effect/floor_decal/corner/brown/border{ dir = 1 @@ -12855,7 +12543,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "aLE" = ( /obj/structure/cable{ d1 = 16; @@ -12873,7 +12561,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "aLG" = ( /obj/effect/floor_decal/corner/brown/border{ dir = 1 @@ -12885,7 +12573,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "aLH" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -12903,11 +12591,12 @@ pixel_y = -22 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "aLK" = ( /obj/random/trash_pile, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "aLL" = ( /obj/structure/window/reinforced{ dir = 8 @@ -12920,7 +12609,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "aLM" = ( /obj/machinery/papershredder, /obj/machinery/alarm{ @@ -12933,12 +12622,12 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "aLN" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "aLP" = ( /obj/structure/lattice, /obj/structure/railing/grey{ @@ -12949,7 +12638,7 @@ "aLS" = ( /obj/machinery/media/jukebox, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "aLT" = ( /obj/item/radio/intercom/department/security{ dir = 4; @@ -12968,11 +12657,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "aLU" = ( /obj/structure/table/bench/sifwooden/padded, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "aLX" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -12989,7 +12678,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "aLY" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/suit/space/void/security/fluff/hos{ @@ -13017,7 +12706,7 @@ pixel_x = -6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "aLZ" = ( /obj/machinery/vending/coffee, /obj/structure/disposalpipe/segment{ @@ -13025,8 +12714,11 @@ }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/light{ + name = "1S-light fixture" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "aMc" = ( /obj/structure/table/rack/shelf/steel, /obj/item/suit_cooling_unit{ @@ -13075,7 +12767,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "aMg" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -13084,7 +12776,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "aMi" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -13093,7 +12785,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "aMm" = ( /obj/structure/table/glass, /obj/item/stack/material/plastic{ @@ -13119,12 +12811,12 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "aMn" = ( /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "aMo" = ( /obj/machinery/light{ dir = 4; @@ -13133,7 +12825,7 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "aMp" = ( /obj/structure/table/rack{ dir = 8; @@ -13166,7 +12858,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "aMr" = ( /obj/machinery/photocopier, /obj/machinery/light{ @@ -13177,7 +12869,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "aMs" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/floor_decal/corner/purple/diagonal, @@ -13185,26 +12877,47 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) +"aMv" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/sign/directions/dorms{ + pixel_y = 9; + layer = 3.5 + }, +/obj/structure/sign/directions/chapel{ + layer = 3.5 + }, +/obj/structure/sign/directions/library{ + layer = 3.5; + pixel_y = -9 + }, +/turf/simulated/wall, +/area/hallway/Central_2_Deck_Hall) "aMx" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "aMy" = ( /obj/structure/table/fancyblack, /obj/item/material/twohanded/riding_crop, /obj/item/clothing/accessory/collar/shock, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "aMA" = ( /obj/structure/bed/chair/sofa/left/sif_ora, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, +/obj/structure/sign/poster/custom{ + dir = 4 + }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "aMB" = ( /obj/item/clothing/suit/space/void/engineering/alt{ pixel_x = -6 @@ -13232,7 +12945,7 @@ pixel_x = -6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "aMC" = ( /obj/structure/bed/chair/sofa/right/brown{ dir = 1 @@ -13242,7 +12955,7 @@ pixel_y = -32 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "aMH" = ( /obj/structure/cable{ d1 = 1; @@ -13252,7 +12965,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "aML" = ( /obj/structure/cable{ d1 = 1; @@ -13276,7 +12989,7 @@ req_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "aMN" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -13295,7 +13008,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "aMP" = ( /obj/machinery/power/apc{ dir = 8; @@ -13314,10 +13027,10 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "aMR" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "aMT" = ( /obj/machinery/camera/network/security{ c_tag = "D2-Com-Port Foyer3"; @@ -13330,7 +13043,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aMY" = ( /obj/structure/bed/chair/backed_red{ dir = 4 @@ -13339,7 +13052,7 @@ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "aMZ" = ( /obj/structure/ladder{ pixel_y = 3 @@ -13350,7 +13063,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Corridor) +/area/maintenance/Deck2_Science_ForPort_Corridor) "aNb" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -13368,15 +13081,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engineering_EVA) -"aNs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/engineering/Engineering_EVA) "aNt" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 10 @@ -13389,13 +13094,16 @@ pixel_x = -22 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "aNv" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aNw" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/borderfloorblack{ @@ -13406,7 +13114,7 @@ }, /obj/machinery/portable_atmospherics/canister/phoron, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "aNB" = ( /obj/structure/cable/green{ d1 = 1; @@ -13428,7 +13136,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "aNC" = ( /obj/structure/table/steel, /obj/machinery/alarm{ @@ -13440,7 +13148,7 @@ network = list("Commons") }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "aND" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 8 @@ -13449,13 +13157,13 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "aNE" = ( /obj/structure/bed/chair/sofa/left/orange{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "aNH" = ( /obj/item/radio/intercom{ dir = 4; @@ -13469,7 +13177,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "aNL" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, @@ -13480,7 +13188,7 @@ dir = 1 }, /turf/space, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "aNM" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -13509,13 +13217,13 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "aNN" = ( /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "aNP" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aNX" = ( /obj/machinery/computer/secure_data{ dir = 1 @@ -13531,7 +13239,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "aNY" = ( /obj/structure/table/rack/shelf/steel, /obj/item/ammo_magazine/m45{ @@ -13598,13 +13306,13 @@ pixel_x = -4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "aNZ" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "aOa" = ( /obj/machinery/light{ dir = 1; @@ -13617,13 +13325,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "aOc" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "aOd" = ( /obj/structure/cable/green{ d1 = 4; @@ -13637,7 +13345,7 @@ dir = 9 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aOe" = ( /obj/structure/table/reinforced, /obj/item/folder{ @@ -13667,7 +13375,7 @@ dir = 1 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aOg" = ( /obj/machinery/light{ dir = 4; @@ -13685,11 +13393,11 @@ /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, -/obj/effect/floor_decal/corner/green/border{ +/obj/effect/floor_decal/corner/orange/border{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aOi" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -13714,7 +13422,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "aOj" = ( /obj/machinery/light{ dir = 1; @@ -13738,7 +13446,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "aOk" = ( /obj/structure/table/gamblingtable, /obj/effect/floor_decal/carpet/blue{ @@ -13748,7 +13456,7 @@ dir = 1 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "aOm" = ( /obj/structure/table/gamblingtable, /obj/effect/floor_decal/carpet/blue{ @@ -13759,7 +13467,7 @@ dir = 1 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "aOn" = ( /obj/structure/table/rack/shelf, /obj/item/melee/chainofcommand/curator_whip, @@ -13785,11 +13493,11 @@ pixel_y = 6 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "aOo" = ( /obj/structure/bed/chair/sofa/brown, /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "aOt" = ( /obj/machinery/station_map{ dir = 1; @@ -13799,7 +13507,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aOD" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/floor_decal/borderfloorblack/corner{ @@ -13810,11 +13518,11 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "aOE" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "aOF" = ( /obj/machinery/suit_cycler/engineering{ req_one_access = list(11,24); @@ -13832,7 +13540,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aOG" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -13842,7 +13550,7 @@ /obj/effect/floor_decal/corner/lightorange/border, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aOK" = ( /obj/structure/cable{ d1 = 1; @@ -13856,43 +13564,26 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "aOL" = ( /obj/structure/bed/chair/comfy/beige, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "aON" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/railing{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_1) "aOO" = ( -/obj/structure/disposalpipe/tagger{ - dir = 4; - sort_tag = "transit_crew" +/obj/structure/disposalpipe/sortjunction/wildcard{ + dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) -"aOP" = ( -/obj/item/radio/intercom{ - dir = 1; - name = "1N-Station Intercom (General)"; - pixel_y = 22 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Central_2_Deck_Hall) "aOS" = ( /obj/structure/window/reinforced, /obj/machinery/firealarm{ @@ -13909,7 +13600,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "aOV" = ( /obj/structure/cable/green{ d1 = 1; @@ -13929,14 +13620,14 @@ pixel_x = -32 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "aOX" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ color = "#989898"; dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "aPa" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/bathrobe, @@ -13953,13 +13644,13 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "aPb" = ( /obj/effect/floor_decal/spline/fancy{ dir = 4 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "aPc" = ( /obj/machinery/light{ dir = 1; @@ -13971,7 +13662,7 @@ }, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aPd" = ( /obj/structure/table/rack{ dir = 8; @@ -14006,16 +13697,16 @@ pixel_y = 25 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "aPf" = ( /obj/machinery/alarm{ pixel_y = 25 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "aPk" = ( /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "aPm" = ( /obj/machinery/light{ dir = 1; @@ -14024,7 +13715,7 @@ /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "aPn" = ( /obj/structure/cable/white{ d1 = 2; @@ -14032,7 +13723,7 @@ icon_state = "2-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "aPo" = ( /obj/machinery/power/apc{ dir = 4; @@ -14063,7 +13754,7 @@ dir = 1 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aPp" = ( /obj/structure/cable/white{ d1 = 2; @@ -14071,7 +13762,7 @@ icon_state = "2-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aPr" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -14089,10 +13780,10 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "aPs" = ( /turf/simulated/floor/tiled/kafel_full/red, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "aPt" = ( /obj/structure/closet/boxinggloves, /obj/effect/floor_decal/borderfloor{ @@ -14103,11 +13794,11 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "aPu" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "aPv" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -14130,20 +13821,20 @@ req_one_access = list(1,11,24) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "aPz" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "aPA" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "aPG" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "aPH" = ( /obj/structure/cable{ d1 = 4; @@ -14163,7 +13854,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "aPK" = ( /obj/machinery/lapvend, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -14174,15 +13865,18 @@ dir = 6 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "aPN" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/light{ - dir = 1; - name = "1N-lighting fixture" +/obj/machinery/vending/dinnerware, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "aPO" = ( /obj/item/radio/intercom{ name = "1S-Station Intercom (General)"; @@ -14191,7 +13885,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aPP" = ( /obj/structure/table/steel_reinforced, /obj/item/storage/toolbox/electrical{ @@ -14214,7 +13908,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "aPS" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -14232,7 +13926,7 @@ /obj/effect/floor_decal/corner/lightorange/border, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aQb" = ( /obj/structure/bed/chair/sofa/corner/blue{ dir = 4 @@ -14254,22 +13948,11 @@ dir = 9 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "aQd" = ( /obj/structure/table/steel, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) -"aQe" = ( -/obj/structure/closet/emcloset, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/ai_status_display{ - name = "1E-AI display"; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/AftPort_2_Deck_Observatory) "aQg" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -14283,14 +13966,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "aQo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "aQr" = ( /obj/structure/sign/directions/science{ dir = 4; @@ -14307,12 +13990,8 @@ layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "aQt" = ( -/obj/machinery/ai_status_display{ - name = "1W-AI display"; - pixel_x = -32 - }, /obj/machinery/light{ dir = 8; layer = 3; @@ -14322,21 +14001,22 @@ /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aQu" = ( /obj/machinery/button/doorbell{ id = "sc-ChimeMed"; pixel_y = -24 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "aQw" = ( +/obj/effect/catwalk_plated/white, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/area/crew_quarters/Chomp_Kitchen) "aQB" = ( /obj/random/cargopod, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "aQD" = ( /obj/structure/cable/green{ d1 = 4; @@ -14347,17 +14027,17 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "aQE" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "aQG" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "aQH" = ( /obj/structure/flora/pottedplant/tropical{ pixel_y = 11; @@ -14394,7 +14074,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "aQI" = ( /obj/machinery/alarm{ dir = 8; @@ -14403,7 +14083,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "aQJ" = ( /obj/machinery/computer/HolodeckControl{ dir = 4 @@ -14419,20 +14099,20 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "aQN" = ( /obj/structure/ladder/updown{ pixel_y = 3 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "aQO" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "aQP" = ( /obj/item/stool/padded{ dir = 1 @@ -14442,20 +14122,7 @@ name = "Intern" }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) -"aQQ" = ( -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 2 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/crew_quarters/Rec_Lounge) "aQR" = ( /obj/machinery/washing_machine, /obj/machinery/light{ @@ -14469,7 +14136,7 @@ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "aQV" = ( /obj/machinery/ai_status_display{ pixel_y = -32; @@ -14485,14 +14152,11 @@ network = list("Domicile") }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "aQW" = ( -/obj/effect/floor_decal/milspec/cargo_arrow{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/box, -/turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/structure/flora/underwater/grass2, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_1) "aQY" = ( /obj/item/material/ashtray/glass, /obj/structure/disposalpipe/segment, @@ -14519,7 +14183,7 @@ name = "S-status display" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "aRa" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -14545,13 +14209,13 @@ name = "1S-light fixture" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "aRc" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "aRf" = ( /obj/structure/bed/chair/backed_red{ dir = 4 @@ -14570,7 +14234,7 @@ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "aRg" = ( /obj/structure/table/rack, /obj/item/storage/firstaid/toxin{ @@ -14607,7 +14271,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "aRh" = ( /obj/structure/table/rack, /obj/item/storage/firstaid/regular{ @@ -14644,10 +14308,10 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "aRi" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "aRl" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -14671,7 +14335,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "aRo" = ( /obj/machinery/light{ dir = 8; @@ -14689,7 +14353,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aRp" = ( /obj/structure/table/bench/wooden, /obj/structure/cable/green{ @@ -14708,10 +14372,10 @@ dir = 9 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aRq" = ( /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aRr" = ( /obj/effect/floor_decal/corner_techfloor_gray{ dir = 10 @@ -14724,7 +14388,7 @@ }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "aRs" = ( /obj/structure/disposalpipe/trunk{ dir = 1 @@ -14732,7 +14396,7 @@ /obj/structure/disposaloutlet, /obj/structure/plasticflaps/mining, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "aRt" = ( /obj/structure/sink{ pixel_y = 14 @@ -14747,10 +14411,10 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/kafel_full/red/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "aRu" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "aRv" = ( /obj/machinery/alarm{ dir = 8; @@ -14758,7 +14422,7 @@ }, /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "aRw" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -14775,7 +14439,7 @@ }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "aRz" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -14787,11 +14451,11 @@ name = "Holodeck" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "aRC" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "aRE" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -14800,10 +14464,32 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) +"aRM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/holoposter{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_2) "aRN" = ( /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aRR" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -14829,13 +14515,13 @@ pixel_x = -3 }, /turf/simulated/floor/tiled/kafel_full/red, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "aSc" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "aSd" = ( /obj/machinery/power/apc{ dir = 4; @@ -14855,11 +14541,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/lightorange/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "aSg" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 1 @@ -14878,29 +14564,35 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aSh" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_1) "aSi" = ( /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "aSj" = ( /obj/structure/bed/chair/sofa/left/beige, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "aSl" = ( /obj/structure/railing/grey{ color = "yellow" }, -/obj/structure/railing/grey{ - color = "yellow"; - dir = 8 - }, /obj/structure/disposalpipe/up, +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Port_Corridor) "aSm" = ( /obj/structure/railing/grey{ color = "yellow" @@ -14922,7 +14614,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Port_Corridor) "aSp" = ( /obj/machinery/power/apc{ dir = 8; @@ -14938,55 +14630,11 @@ /obj/structure/cable/green, /obj/machinery/atmospherics/pipe/simple/hidden/black, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "aSq" = ( -/obj/item/stack/material/phoron{ - amount = 25; - pixel_x = 9; - pixel_y = -9 - }, -/obj/item/t_scanner/upgraded{ - pixel_x = 11; - pixel_y = 3 - }, -/obj/item/clothing/glasses/meson{ - pixel_x = -6; - pixel_y = -13 - }, -/obj/item/clothing/glasses/welding{ - pixel_x = -6; - pixel_y = -8 - }, -/obj/structure/closet/crate/large/nanotrasen{ - req_one_access = list(10) - }, -/obj/item/stack/material/plasteel{ - amount = 30; - pixel_y = 1; - pixel_x = -8 - }, -/obj/item/stack/material/steel{ - amount = 50; - pixel_y = 4; - pixel_x = -8 - }, -/obj/item/stack/material/glass{ - amount = 50; - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/clothing/gloves/yellow{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/multitool{ - pixel_x = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/obj/machinery/feeder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/area/crew_quarters/Chomp_Kitchen) "aSr" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -14999,7 +14647,7 @@ name = "Internal Affairs Agent" }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aSs" = ( /obj/structure/bed/chair{ dir = 4 @@ -15018,7 +14666,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "aSt" = ( /obj/structure/bed/chair/comfy/blue{ dir = 4 @@ -15027,18 +14675,18 @@ dir = 8 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aSv" = ( /obj/structure/table/reinforced, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aSy" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "aSz" = ( /obj/effect/landmark/event_spawn/morphspawn, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "aSA" = ( /obj/structure/table/rack/shelf/steel, /obj/item/canvas/twentyfour_twentyfour, @@ -15067,7 +14715,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "aSC" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -15079,20 +14727,11 @@ d2 = 8; icon_state = "0-8" }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 +/obj/effect/wingrille_spawn/reinforced/polarized{ + id = "sc-WTsecEstorage" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "aSE" = ( /obj/structure/table/steel_reinforced, /obj/item/form_printer{ @@ -15105,7 +14744,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "aSG" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -15122,7 +14761,7 @@ name = "Research Director" }, /turf/simulated/floor/carpet/purple, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "aSH" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -15140,7 +14779,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "aSI" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/effect/floor_decal/borderfloorblack{ @@ -15150,14 +14789,14 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "aSK" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "aSL" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -15180,7 +14819,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Chamber) +/area/maintenance/Deck2_Science_ForPort_Chamber) "aSP" = ( /obj/item/stool/padded, /obj/machinery/power/apc{ @@ -15198,13 +14837,13 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "aSQ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "aSR" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "aST" = ( /obj/effect/floor_decal/industrial/danger{ dir = 8 @@ -15214,17 +14853,17 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "aSU" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "aSV" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "aSY" = ( /obj/structure/cable/green{ d1 = 2; @@ -15232,10 +14871,10 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "aTa" = ( /turf/unsimulated/mask, -/area/SouthernCrossV2/Maints/Room_89) +/area/maintenance/Room_89) "aTb" = ( /obj/structure/cable/green{ d1 = 4; @@ -15254,14 +14893,14 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "aTc" = ( /mob/living/simple_mob/animal/passive/cockroach, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "aTd" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "aTe" = ( /obj/machinery/power/apc{ dir = 1; @@ -15290,7 +14929,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "aTf" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -15299,16 +14938,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "aTh" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "aTk" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "aTm" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "aTn" = ( /obj/item/radio/intercom{ dir = 8; @@ -15322,7 +14961,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aTo" = ( /obj/structure/bed/chair/sofa/left/brown{ dir = 4; @@ -15333,7 +14972,7 @@ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aTp" = ( /obj/machinery/disposal/deliveryChute{ dir = 1 @@ -15341,7 +14980,7 @@ /obj/structure/disposalpipe/trunk, /obj/structure/plasticflaps/mining, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "aTq" = ( /obj/machinery/firealarm{ pixel_y = 25; @@ -15363,7 +15002,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "aTt" = ( /obj/machinery/firealarm{ dir = 4; @@ -15377,39 +15016,15 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aTu" = ( -/obj/structure/railing/grey{ - color = "yellow"; - dir = 1 +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/shuttle/blue{ + pixel_x = -1; + pixel_y = 1 }, -/obj/structure/cable/green{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/structure/lattice, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d1 = 32; - icon_state = "32-1" - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/down{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/structure/railing/grey{ - color = "yellow"; - dir = 8 - }, -/turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/turf/simulated/floor/tiled/techmaint, +/area/hallway/Star_2_Deck_Central_Corridor_1) "aTv" = ( /obj/machinery/firealarm{ dir = 8; @@ -15423,14 +15038,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "aTy" = ( /obj/item/flame/candle/candelabra/everburn{ pixel_y = 8 }, /obj/structure/table, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "aTB" = ( /obj/structure/cable{ d1 = 1; @@ -15459,7 +15074,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aTC" = ( /obj/machinery/disposal, /obj/structure/cable{ @@ -15480,7 +15095,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aTH" = ( /obj/machinery/light{ dir = 4; @@ -15501,7 +15116,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aTI" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -15532,11 +15147,11 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aTK" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aTR" = ( /obj/machinery/firealarm{ dir = 8; @@ -15551,17 +15166,17 @@ /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 }, -/obj/effect/floor_decal/corner/green/bordercorner{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 1 + }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aTS" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/power/smes/buildable{ @@ -15573,14 +15188,14 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "aTT" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "aTV" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -15594,22 +15209,7 @@ layer = 2.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) -"aTW" = ( -/obj/effect/catwalk_plated/techmaint, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/security/Deck2_1_Corridor) "aTX" = ( /obj/structure/cable{ d1 = 2; @@ -15642,7 +15242,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aTY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -15665,7 +15265,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Port_Corridor) "aTZ" = ( /obj/machinery/light{ dir = 1; @@ -15677,7 +15277,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "aUc" = ( /obj/structure/railing{ dir = 4 @@ -15688,7 +15288,7 @@ network = list("Commons") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "aUd" = ( /obj/structure/table/woodentable, /obj/item/book/manual/standard_operating_procedure{ @@ -15704,28 +15304,13 @@ icon_state = "1-2" }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Lobby) -"aUf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/holoposter{ - dir = 4; - pixel_x = 32 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/security/Lobby) "aUg" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/open, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aUh" = ( /obj/item/towel/random{ pixel_x = -5; @@ -15773,7 +15358,7 @@ }, /obj/structure/table/rack/shelf, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "aUm" = ( /obj/machinery/computer/aifixer{ dir = 8 @@ -15796,7 +15381,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "aUn" = ( /obj/structure/bed/chair/sofa/corner/brown{ dir = 8; @@ -15807,7 +15392,7 @@ dir = 6 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aUq" = ( /obj/structure/cable{ d1 = 1; @@ -15829,7 +15414,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aUu" = ( /obj/structure/closet/lawcloset, /obj/item/flash{ @@ -15851,7 +15436,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aUv" = ( /obj/structure/closet, /obj/item/storage/secure/briefcase{ @@ -15880,13 +15465,11 @@ pixel_x = 7; pixel_y = -7 }, -/obj/item/tape{ - pixel_y = 6; - pixel_x = -7 +/obj/item/rectape{ + pixel_y = -3 }, -/obj/item/tape{ - pixel_y = 10; - pixel_x = -7 +/obj/item/rectape{ + pixel_y = -3 }, /obj/item/toy/figure/agent{ pixel_y = 3; @@ -15898,7 +15481,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aUw" = ( /obj/machinery/r_n_d/protolathe, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -15908,7 +15491,7 @@ pixel_x = 22 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "aUx" = ( /obj/machinery/disposal, /obj/machinery/alarm{ @@ -15921,14 +15504,14 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aUy" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge{ scrub_id = "SC-Brig" }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "aUz" = ( /obj/machinery/papershredder, /obj/machinery/light{ @@ -15938,7 +15521,7 @@ dir = 8 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aUA" = ( /obj/structure/table/reinforced, /obj/item/clipboard{ @@ -15949,7 +15532,7 @@ pixel_x = -10 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aUB" = ( /obj/structure/cable/green{ d1 = 1; @@ -15957,7 +15540,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "aUC" = ( /obj/structure/cable/green{ d1 = 2; @@ -15979,7 +15562,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "aUD" = ( /obj/structure/cable{ d1 = 1; @@ -15990,17 +15573,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "aUE" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "aUF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "aUG" = ( /obj/structure/cable{ d1 = 4; @@ -16023,7 +15606,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "aUH" = ( /obj/machinery/alarm{ dir = 1; @@ -16031,7 +15614,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "aUI" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -16043,21 +15626,21 @@ d2 = 8; icon_state = "0-8" }, -/obj/effect/wingrille_spawn/reinforced/polarized{ - id = "sc-WTwarden" - }, /obj/machinery/holosign/chemistry{ id = "SC-HSsecmedpost" }, +/obj/effect/wingrille_spawn/reinforced/polarized{ + id = "sc-WTformedpost" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "aUJ" = ( /obj/structure/fireaxecabinet{ name = "1N-fire axe cabinet"; pixel_y = 27 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "aUK" = ( /obj/structure/closet/secure_closet/cargotech, /obj/item/stamp/cargo, @@ -16072,7 +15655,7 @@ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "aUM" = ( /obj/machinery/firealarm{ dir = 4; @@ -16091,7 +15674,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "aUN" = ( /obj/effect/floor_decal/industrial/arrows{ dir = 4 @@ -16119,7 +15702,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "aUO" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -16142,10 +15725,10 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "aUP" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "aUS" = ( /obj/structure/cable/green{ d1 = 4; @@ -16156,10 +15739,10 @@ name = "Intern" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "aUV" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aUW" = ( /obj/item/radio/intercom{ dir = 4; @@ -16170,7 +15753,7 @@ dir = 8 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "aUX" = ( /obj/structure/table/rack/shelf, /obj/item/bodybag/cryobag/robobag{ @@ -16208,7 +15791,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "aUZ" = ( /obj/machinery/power/apc{ dir = 8; @@ -16226,7 +15809,7 @@ dir = 5 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "aVb" = ( /obj/machinery/papershredder, /obj/item/radio/intercom{ @@ -16235,17 +15818,22 @@ pixel_x = -22 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "aVj" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aVn" = ( /obj/effect/catwalk_plated/techmaint, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Port_Corridor) "aVq" = ( /obj/structure/cable/green{ d1 = 4; @@ -16267,9 +15855,9 @@ network = list("Commons") }, /obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "aVy" = ( /obj/structure/closet/secure_closet/warden, /obj/item/personal_shield_generator/belt/security/loaded, @@ -16280,7 +15868,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "aVF" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -16289,10 +15877,10 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "aVG" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "aVJ" = ( /obj/structure/cable{ d1 = 1; @@ -16304,7 +15892,7 @@ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "aVL" = ( /obj/machinery/requests_console{ pixel_y = -22; @@ -16333,7 +15921,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "aVU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -16348,7 +15936,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "aWa" = ( /obj/item/radio/intercom{ dir = 8; @@ -16356,12 +15944,12 @@ pixel_x = -22 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "aWb" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "aWc" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -16370,7 +15958,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "aWe" = ( /obj/structure/railing{ dir = 4 @@ -16379,14 +15967,14 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "aWf" = ( /obj/structure/sign/securearea{ icon_state = "restroom"; desc = "A warning sign which reads 'Restroom'." }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "aWi" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -16395,7 +15983,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "aWl" = ( /obj/structure/table/glass, /obj/item/backup_implanter{ @@ -16409,7 +15997,7 @@ pixel_y = 12 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "aWm" = ( /obj/structure/cable/white{ d1 = 1; @@ -16418,7 +16006,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "aWn" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 10 @@ -16430,7 +16018,7 @@ dir = 5 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "aWo" = ( /obj/structure/table/rack/shelf/steel, /obj/item/storage/toolbox/mechanical{ @@ -16509,7 +16097,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "aWp" = ( /obj/machinery/vending/engivend, /obj/effect/floor_decal/borderfloorblack{ @@ -16518,14 +16106,29 @@ /obj/effect/floor_decal/corner/lightorange/border{ dir = 1 }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -27; + pixel_y = 12; + name = "W-light switch"; + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "aWq" = ( /obj/structure/girder, /obj/item/toy/plushie/mouse/white, /obj/item/cat_box/black, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "aWs" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -16544,11 +16147,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "aWt" = ( /obj/structure/closet/secure_closet/freezer/meat, /turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "aWu" = ( /obj/structure/railing/grey{ dir = 4 @@ -16572,13 +16175,13 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "aWx" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 }, /turf/simulated/floor/tiled/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "aWB" = ( /obj/machinery/computer/rdconsole/core, /obj/item/radio/intercom{ @@ -16593,7 +16196,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "aWC" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -16613,15 +16216,36 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "aWH" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "aWJ" = ( /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) +"aWK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/sign/poster/nanotrasen, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "aWL" = ( /obj/machinery/door/window/brigdoor/southleft{ req_one_access = list(5,1); @@ -16630,7 +16254,7 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "aWM" = ( /obj/structure/cable/green{ d1 = 4; @@ -16645,16 +16269,16 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "aWO" = ( /obj/machinery/vending/donksoft, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "aWQ" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "aWX" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -16666,10 +16290,10 @@ icon_state = "4-8" }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "aWZ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Cargo_StarChamber1) +/area/maintenance/Deck2_Cargo_StarChamber1) "aXa" = ( /obj/structure/table/steel, /obj/item/bikehorn/rubberducky, @@ -16695,7 +16319,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "aXe" = ( /obj/structure/table/steel, /obj/item/paper{ @@ -16718,22 +16342,17 @@ pixel_x = 28 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "aXf" = ( /obj/structure/closet/radiation, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "aXh" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) -"aXj" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/hatch/blue, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/area/maintenance/Deck2_Security_AftPortCorridor1) "aXk" = ( /obj/structure/table/bench/sifwooden, /obj/machinery/light{ @@ -16749,7 +16368,7 @@ dir = 1 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "aXo" = ( /obj/machinery/computer/robotics{ dir = 8 @@ -16768,7 +16387,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "aXp" = ( /obj/machinery/light{ dir = 1; @@ -16781,19 +16400,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) -"aXr" = ( -/obj/structure/closet/emcloset, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/status_display{ - name = "E-status display"; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_2) "aXu" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -16804,7 +16411,7 @@ name = "Stairwell" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "aXB" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -16823,7 +16430,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "aXC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -16835,7 +16442,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "aXF" = ( /obj/structure/cable{ d1 = 1; @@ -16859,7 +16466,11 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) +"aXH" = ( +/obj/structure/flora/underwater/grass3, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_2) "aXI" = ( /obj/machinery/light/small{ dir = 1 @@ -16869,13 +16480,13 @@ id = "SC-CBdisposals" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "aXJ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "aXM" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "aXQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -16893,7 +16504,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "aXR" = ( /obj/machinery/light{ dir = 1; @@ -16914,7 +16525,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "aXU" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -16923,7 +16534,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "aXW" = ( /obj/machinery/button/doorbell{ id = "sc-ChimeSci"; @@ -16936,7 +16547,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "aXX" = ( /obj/structure/table/steel_reinforced, /obj/item/tool/wrench/pipe, @@ -16944,11 +16555,11 @@ name = "1S-light fixture" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "aXY" = ( /obj/effect/decal/cleanable/filth, /turf/simulated/floor/wood/alt/panel/broken/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "aYa" = ( /obj/structure/cable/green{ d1 = 4; @@ -16960,7 +16571,7 @@ }, /obj/effect/floor_decal/corner/beige/diagonal, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "aYd" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -16978,10 +16589,10 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "aYe" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "aYl" = ( /obj/structure/reagent_dispensers/foam, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -16992,7 +16603,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "aYn" = ( /obj/effect/floor_decal/industrial/loading/blue{ dir = 8 @@ -17011,7 +16622,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aYo" = ( /obj/structure/bed/chair/sofa/left/brown{ dir = 1; @@ -17020,7 +16631,7 @@ /obj/structure/window/basic, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aYq" = ( /obj/machinery/camera/network/research{ c_tag = "SCI - Toxins Test Chamber East"; @@ -17028,7 +16639,15 @@ network = list("Research","Toxins Test Area") }, /turf/simulated/floor/tiled/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) +"aYr" = ( +/obj/random/junk, +/obj/random/junk, +/obj/random/trash, +/obj/random/trash, +/obj/structure/ghost_pod/ghost_activated/maintpred, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_PortChamber2) "aYs" = ( /obj/structure/bed/chair/sofa/corner/brown{ dir = 1; @@ -17040,7 +16659,7 @@ dir = 10 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aYt" = ( /obj/structure/bed/chair/sofa/right/brown{ dir = 1; @@ -17049,7 +16668,7 @@ /obj/structure/window/basic, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aYu" = ( /obj/structure/bed/chair/sofa/brown{ dir = 1; @@ -17063,7 +16682,7 @@ }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aYw" = ( /obj/machinery/atm{ pixel_x = 29; @@ -17084,7 +16703,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "aYy" = ( /obj/structure/cable{ d2 = 4; @@ -17100,7 +16719,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "aYA" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -17117,7 +16736,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "aYB" = ( /obj/machinery/firealarm{ dir = 4; @@ -17131,7 +16750,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "aYC" = ( /obj/structure/window/basic, /obj/structure/cable/green{ @@ -17146,7 +16765,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "aYD" = ( /obj/structure/table/rack/shelf, /obj/item/reagent_containers/glass/bottle/inaprovaline{ @@ -17192,7 +16811,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "aYE" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 @@ -17207,7 +16826,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "aYJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -17231,7 +16850,7 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "aYL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -17243,20 +16862,20 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "aYW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "aYX" = ( /obj/machinery/newscaster{ name = "1E-newscaster"; pixel_x = 28 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "aZf" = ( /obj/structure/table/sifwoodentable, /obj/item/radio/subspace{ @@ -17269,13 +16888,20 @@ pixel_y = -2 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "aZh" = ( -/obj/machinery/alarm{ - pixel_y = 25 +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + name = "1N-lighting fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_1) "aZj" = ( /obj/structure/closet/secure_closet/hos2, /obj/item/cell/device, @@ -17293,7 +16919,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "aZk" = ( /obj/structure/table/steel, /obj/item/storage/toolbox/electrical{ @@ -17315,12 +16941,12 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "aZm" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "aZn" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 8 @@ -17333,7 +16959,7 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "aZB" = ( /obj/structure/cable/white{ d1 = 2; @@ -17341,19 +16967,16 @@ icon_state = "2-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "aZC" = ( -/obj/item/radio/intercom{ - name = "1S-Station Intercom (General)"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "aZD" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -17384,10 +17007,10 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "aZE" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_1) "aZF" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -17401,7 +17024,7 @@ /obj/random/maintenance/misc, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "aZI" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -17414,13 +17037,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "aZK" = ( /obj/structure/bed/chair/sofa/right/brown{ layer = 2.9 }, /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "aZM" = ( /obj/structure/table/steel_reinforced, /obj/item/storage/firstaid/combat{ @@ -17442,7 +17065,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "aZN" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -17459,7 +17082,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "aZO" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -17467,12 +17090,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "aZQ" = ( /obj/structure/dispenser/oxygen, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "aZS" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -17505,7 +17128,7 @@ }, /obj/machinery/button/remote/airlock{ desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; + id = "sc-DCmedbay"; name = "Medbay Doors Control"; pixel_y = 24; pixel_x = -6; @@ -17514,7 +17137,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "aZV" = ( /obj/structure/table/steel_reinforced, /obj/machinery/magnetic_controller{ @@ -17533,7 +17156,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "aZW" = ( /obj/structure/bed/chair/sofa/corner/blue{ dir = 4 @@ -17545,8 +17168,8 @@ /obj/effect/floor_decal/spline/fancy{ dir = 9 }, -/turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/turf/simulated/floor/carpet/sblucarpet, +/area/hallway/Star_Transit_Foyer) "aZY" = ( /obj/structure/cable/white{ d1 = 1; @@ -17554,7 +17177,7 @@ icon_state = "1-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "aZZ" = ( /obj/structure/table/rack/steel, /obj/item/stack/material/glass/phoronrglass{ @@ -17586,7 +17209,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "baa" = ( /obj/structure/table/standard, /obj/fiftyspawner/plastic, @@ -17606,7 +17229,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "bac" = ( /obj/structure/railing/grey{ color = "yellow" @@ -17621,10 +17244,10 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "bad" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "bae" = ( /obj/structure/bed/chair/sofa/orange, /obj/machinery/computer/security/telescreen/entertainment{ @@ -17632,13 +17255,13 @@ pixel_y = 28 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "baj" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "bak" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -17661,7 +17284,7 @@ }, /obj/structure/table/steel_reinforced, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "bap" = ( /obj/item/gun/projectile/sec/flash{ pixel_y = 10; @@ -17679,30 +17302,41 @@ layer = 2.9 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "bas" = ( -/obj/machinery/firealarm{ +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/arrows/blue, +/obj/machinery/door/airlock/angled_bay/standard/glass/common{ dir = 4; - name = "E-fire alarm"; - pixel_x = 25 + name = "Kitchen"; + req_access = list(28) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/Chomp_Kitchen) "baw" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, -/obj/structure/girder/reinforced, +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "bax" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -17724,7 +17358,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "baC" = ( /obj/item/radio/intercom{ dir = 1; @@ -17735,25 +17369,31 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "baE" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/food/snacks/nachos, +/obj/machinery/computer/security/telescreen/entertainment{ + name = "1W-entertainment monitor"; + pixel_x = -32; + pixel_y = -4 + }, /obj/machinery/light{ - dir = 8; - layer = 3; - name = "1W-light fixture" + dir = 8 }, -/obj/item/radio/intercom{ - dir = 8; - name = "1W-Station Intercom (General)"; - pixel_x = -22 +/obj/machinery/door/blast/shutters{ + dir = 4; + name = "Kitchen Shutters"; + id = "sc-GCkitchen"; + layer = 3.3 }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/Chomp_Kitchen) "baG" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "baH" = ( /obj/structure/bed/chair/sofa/right/blue{ dir = 4 @@ -17762,11 +17402,11 @@ dir = 8 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "baI" = ( /obj/structure/table/woodentable, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "baJ" = ( /obj/structure/reagent_dispensers/water_cooler/full, /obj/structure/cable{ @@ -17784,7 +17424,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "baK" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -17800,7 +17440,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "baL" = ( /obj/structure/table/rack, /obj/structure/window/reinforced, @@ -17814,7 +17454,7 @@ pixel_y = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "baU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -17823,12 +17463,12 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Cargo_StarChamber1) +/area/maintenance/Deck2_Cargo_StarChamber1) "baV" = ( /obj/structure/girder, /obj/random/contraband, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "baY" = ( /obj/structure/table/woodentable, /obj/machinery/light{ @@ -17841,7 +17481,7 @@ icon_state = "1-4" }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "baZ" = ( /obj/structure/cable/white{ d1 = 1; @@ -17849,67 +17489,35 @@ icon_state = "1-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/CE_Office) -"bbb" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/open{ - layer = 3.5; - id = "Port Lockdown"; - name = "Lockdown Gate"; - desc = "A heavily reinforced gate, sector lockdown!" - }, -/obj/machinery/door/airlock/angled_bay/double/glass/atmos{ - dir = 8; - name = "Port Sector Engineering-Cargo"; - req_access = null - }, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) -"bbc" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/engineering/CE_Office) "bbd" = ( /obj/machinery/status_display, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "bbe" = ( -/obj/machinery/light/floortube{ - dir = 1; - pixel_y = 2 +/obj/structure/sign/directions/ai_core{ + pixel_y = 9; + dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/obj/structure/sign/levels/bridge{ + dir = 4 + }, +/obj/structure/sign/directions/bridge{ + dir = 4; + pixel_y = -9 + }, +/turf/simulated/wall/r_wall, +/area/maintenance/Deck2_Security_StarCorridor1) "bbf" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bbp" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, -/obj/machinery/alarm{ - pixel_y = 25 - }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "bbq" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 @@ -17921,7 +17529,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "bbr" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 9 @@ -17930,7 +17538,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "bbu" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -17938,7 +17546,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "bby" = ( /obj/effect/floor_decal/industrial/loading/blue, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, @@ -17946,10 +17554,11 @@ name = "ENGINEERING Department"; desc = "A sign indicating the location for Engineering department. Use the nearby chute for quick access." }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "bbE" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -17957,7 +17566,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "bbF" = ( /obj/item/stool/padded, /obj/machinery/camera/network/research{ @@ -17971,7 +17580,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "bbK" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 6 @@ -17980,7 +17589,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "bbM" = ( /obj/structure/bed/chair/sofa/right/blue{ dir = 4 @@ -17988,23 +17597,17 @@ /obj/effect/floor_decal/spline/fancy{ dir = 8 }, -/turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/turf/simulated/floor/carpet/sblucarpet, +/area/hallway/Star_Transit_Foyer) "bbN" = ( -/turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/turf/simulated/floor/carpet/sblucarpet, +/area/hallway/Star_Transit_Foyer) "bbP" = ( /obj/structure/sign/poster/custom{ dir = 8 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) -"bbR" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Lobby) "bbT" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -18012,7 +17615,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bbU" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -18024,7 +17627,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "bbV" = ( /obj/structure/cable/green{ d1 = 1; @@ -18051,7 +17654,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "bbZ" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -18065,7 +17668,7 @@ icon_state = "2-4" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "bcb" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -18089,7 +17692,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "bcc" = ( /obj/machinery/computer/general_air_control{ dir = 1; @@ -18102,7 +17705,7 @@ pixel_y = -28 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "bcd" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/status_display{ @@ -18118,7 +17721,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "bcg" = ( /obj/structure/sink{ dir = 4; @@ -18130,7 +17733,7 @@ pixel_y = 6 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "bcj" = ( /obj/machinery/alarm{ dir = 4; @@ -18143,11 +17746,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "bck" = ( /obj/structure/bed/chair/sofa/corner/orange, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "bcl" = ( /obj/item/stack/material/plasteel{ amount = 10; @@ -18179,7 +17782,7 @@ pixel_y = 22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bcn" = ( /obj/structure/cable{ d1 = 4; @@ -18203,7 +17806,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "bcp" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -18229,16 +17832,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "bcr" = ( /obj/random/trash, /obj/random/trash, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "bcs" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "bcu" = ( /obj/item/radio/intercom{ dir = 4; @@ -18252,7 +17855,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "bcv" = ( /obj/machinery/alarm{ dir = 8; @@ -18277,14 +17880,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "bcw" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "bcx" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -18296,13 +17899,13 @@ id_tag = "sc-DBBstall2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "bcy" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = -4 }, /turf/simulated/wall/wood, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "bcB" = ( /obj/structure/table/rack/shelf/steel, /obj/item/suit_cooling_unit{ @@ -18345,12 +17948,12 @@ pixel_x = -7 }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "bcE" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "bcH" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/cable{ @@ -18360,28 +17963,14 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) -"bcI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Port_2_Deck_Corridor_1) "bcK" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "bcM" = ( -/obj/machinery/status_display{ - name = "W-status display"; - pixel_x = -32 - }, /obj/machinery/light{ dir = 8; layer = 3; @@ -18392,7 +17981,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "bcN" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 @@ -18401,7 +17990,7 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "bcR" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/dropper, @@ -18419,7 +18008,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "bcS" = ( /obj/structure/table/rack, /obj/item/gun/energy/particle/cannon{ @@ -18439,7 +18028,7 @@ }, /obj/structure/window/reinforced, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "bcV" = ( /obj/structure/cable{ d1 = 1; @@ -18447,15 +18036,44 @@ icon_state = "1-2" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "bcY" = ( -/obj/structure/disposalpipe/segment{ +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/blue, +/obj/structure/grille, +/obj/structure/window/basic/full, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/obj/machinery/door/blast/regular/open{ + layer = 3.5; + id = "Star Lockdown"; + name = "Lockdown Gate"; + desc = "A heavily reinforced gate, sector lockdown!" + }, +/obj/structure/sign/directions/science{ + dir = 4; + layer = 3.5; + pixel_y = 9 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + layer = 3.5 + }, +/obj/structure/sign/directions/command{ + pixel_y = -9; + dir = 9; + layer = 3.5 + }, +/turf/simulated/floor/plating, +/area/hallway/Star_2_Deck_Central_Corridor_2) "bcZ" = ( /obj/random/trash, /obj/structure/cable/white{ @@ -18465,7 +18083,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "bdc" = ( /obj/structure/railing{ dir = 8 @@ -18476,7 +18094,7 @@ name = "1E-light fixture" }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "bdd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -18490,7 +18108,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/area/maintenance/Deck2_Star_Corridor) "bdg" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -18498,24 +18116,24 @@ id = "sc-WTcentergamble" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "bdh" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ +/obj/structure/table/woodentable, +/obj/item/starcaster_news, +/obj/item/clothing/accessory/scarf/christmas, +/obj/effect/floor_decal/spline/plain{ dir = 1 }, -/obj/machinery/door/airlock/maintenance/int, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/camera/network/security{ + dir = 10; + c_tag = "D2-Com-Aft Corridor3"; + network = list("Commons") }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/holoposter{ + pixel_y = -32 }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/turf/simulated/floor/tiled/dark, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "bdj" = ( /obj/machinery/light/small{ dir = 8 @@ -18537,14 +18155,14 @@ }, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "bdk" = ( /obj/structure/bed/double, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "bdn" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_2) +/area/hallway/Star_2_Deck_Central_Corridor_2) "bdp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -18553,7 +18171,7 @@ dir = 4 }, /turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "bdq" = ( /obj/structure/table/rack, /obj/item/clothing/accessory/armor/armorplate/blast{ @@ -18599,19 +18217,19 @@ layer = 2.9 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "bds" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "bdA" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "bdC" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "bdF" = ( /obj/effect/floor_decal/industrial/stand_clear/blue{ dir = 4 @@ -18636,7 +18254,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "bdH" = ( /obj/machinery/computer/prisoner, /obj/machinery/computer/security/telescreen/bodycamera{ @@ -18653,10 +18271,10 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "bdK" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Security_StarCorridor1) +/area/maintenance/Deck2_Security_StarCorridor1) "bdN" = ( /obj/structure/railing{ dir = 1 @@ -18666,7 +18284,7 @@ id = "SC-Recycle" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "bdO" = ( /obj/structure/railing{ dir = 1 @@ -18679,7 +18297,7 @@ id = "SC-Recycle" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "bdR" = ( /obj/structure/table/steel, /obj/machinery/microwave, @@ -18690,7 +18308,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "bdS" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -18713,13 +18331,13 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "bec" = ( /obj/structure/bed/chair/sofa/corner/brown{ dir = 8 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "bee" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -18730,10 +18348,10 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "bei" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "beo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -18742,7 +18360,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "bep" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -18750,7 +18368,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/black/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "beq" = ( /obj/structure/cable{ d1 = 4; @@ -18768,7 +18386,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "ber" = ( /obj/machinery/alarm{ dir = 8; @@ -18781,7 +18399,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "bet" = ( /obj/machinery/light{ dir = 8; @@ -18795,22 +18413,22 @@ dir = 8 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "bez" = ( /obj/effect/floor_decal/emblem/nt2, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "beB" = ( /obj/structure/sign/warning/high_voltage, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "beD" = ( /obj/machinery/telecomms/broadcaster, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "beH" = ( /obj/effect/floor_decal/chapel{ dir = 4 @@ -18820,34 +18438,40 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "beJ" = ( /obj/structure/table/rack/steel, /obj/random/maintenance/security, /obj/random/maintenance/security, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "beK" = ( /obj/structure/table/gamblingtable, /obj/effect/floor_decal/carpet{ dir = 4 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "beL" = ( /obj/machinery/atm{ name = "1N-Automatic Teller Machine"; pixel_y = 22 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) +"beM" = ( +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_PortChamber1) "beO" = ( /obj/structure/bed/chair/comfy/brown{ dir = 8 }, /obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "beP" = ( /obj/structure/table/marble, /obj/structure/sink/countertop{ @@ -18877,7 +18501,7 @@ dir = 8 }, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "beQ" = ( /obj/structure/table/rack, /obj/fiftyspawner/glass{ @@ -18893,7 +18517,7 @@ pixel_y = -8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "beT" = ( /obj/machinery/transhuman/synthprinter, /obj/effect/floor_decal/borderfloorblack{ @@ -18903,7 +18527,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "beY" = ( /obj/structure/table/glass, /obj/item/book/manual/wiki/medical_diagnostics_manual{ @@ -18912,7 +18536,7 @@ }, /obj/item/sleevemate, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "bfa" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -18920,7 +18544,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "bfb" = ( /obj/machinery/door/window/eastright{ name = "Medical Reception"; @@ -18944,7 +18568,7 @@ id = "sc-GCmedicalreception" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "bfh" = ( /obj/item/target{ pixel_x = -7 @@ -18970,7 +18594,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "bfl" = ( /obj/structure/table/rack{ pixel_x = 16 @@ -18993,7 +18617,7 @@ c_tag = "D2-Sec-Firing Range1" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "bfm" = ( /obj/item/modular_computer/console/preset/engineering{ dir = 8 @@ -19012,7 +18636,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "bfo" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/red, /obj/machinery/light{ @@ -19022,13 +18646,13 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bfp" = ( /obj/effect/floor_decal/carpet{ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bfr" = ( /obj/machinery/light{ dir = 8; @@ -19045,7 +18669,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "bfs" = ( /obj/structure/closet/secure_closet/security, /obj/item/tool/crowbar/red, @@ -19062,7 +18686,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "bft" = ( /obj/item/rig/hazmat/equipped{ pixel_y = 4 @@ -19104,7 +18728,7 @@ }, /obj/item/clothing/glasses/welding/superior, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "bfu" = ( /obj/machinery/alarm{ dir = 4; @@ -19124,7 +18748,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "bfv" = ( /obj/structure/table/rack/shelf, /obj/item/storage/pouch/ammo{ @@ -19172,15 +18796,7 @@ pixel_x = -17 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Security/Equipment_Storage) -"bfx" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/security/Equipment_Storage) "bfA" = ( /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, @@ -19190,7 +18806,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "bfB" = ( /obj/item/target/alien{ pixel_x = -7 @@ -19212,7 +18828,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "bfD" = ( /obj/structure/sink{ dir = 1; @@ -19225,17 +18841,18 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bfE" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bfF" = ( /obj/machinery/shield_gen/external, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "bfG" = ( /obj/structure/cable/white{ d1 = 4; @@ -19243,7 +18860,7 @@ icon_state = "4-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "bfH" = ( /obj/structure/table/glass, /obj/item/defib_kit/loaded, @@ -19259,7 +18876,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "bfI" = ( /obj/machinery/computer/operating{ dir = 4 @@ -19267,7 +18884,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "bfJ" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -19278,14 +18895,14 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "bfK" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "bfL" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "bfN" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -19305,7 +18922,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "bfO" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -19316,7 +18933,7 @@ color = "#00B8B2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "bfP" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -19324,7 +18941,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "bfQ" = ( /obj/structure/table/standard, /obj/item/megaphone/super{ @@ -19359,12 +18976,12 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "bfS" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/autolathe, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "bfV" = ( /obj/machinery/vending/altevian, /obj/structure/cable{ @@ -19382,9 +18999,8 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "bfW" = ( -/obj/structure/table/woodentable, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -19395,11 +19011,12 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 6 }, +/obj/structure/table/standard, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "bfY" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "bga" = ( /obj/structure/railing{ dir = 8 @@ -19408,7 +19025,7 @@ id = "SC-PackageSort" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "bgb" = ( /obj/structure/sink{ dir = 8; @@ -19423,7 +19040,7 @@ dir = 6 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "bge" = ( /obj/structure/closet/crate/mail{ dir = 2 @@ -19467,13 +19084,13 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "bgf" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "bgk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -19498,7 +19115,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "bgl" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -19516,7 +19133,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "bgm" = ( /obj/structure/table/rack/holorack, /obj/item/circuitboard/rcon_console{ @@ -19566,33 +19183,36 @@ pixel_y = -9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "bgo" = ( /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "bgp" = ( /obj/structure/table/woodentable, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "bgq" = ( -/turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain, +/obj/structure/flora/underwater/grass2, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_2) "bgB" = ( /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "bgF" = ( /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "bgG" = ( /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "bgI" = ( /obj/structure/casino_table/roulette_table, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "bgK" = ( /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "bgL" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -19601,7 +19221,7 @@ }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "bgR" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -19624,7 +19244,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "bgS" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/suit/space/void/engineering/hazmat{ @@ -19653,7 +19273,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "bgU" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -19676,7 +19296,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "bgW" = ( /obj/structure/cable/white{ d1 = 2; @@ -19684,7 +19304,7 @@ icon_state = "2-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "bgZ" = ( /obj/machinery/computer/transhuman/designer{ dir = 4 @@ -19696,7 +19316,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "bha" = ( /obj/item/stool/padded{ dir = 8 @@ -19704,7 +19324,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "bhd" = ( /obj/structure/table/rack, /obj/item/clothing/gloves/arm_guard/laserproof{ @@ -19739,7 +19359,7 @@ pixel_x = 6 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "bhf" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -19768,11 +19388,11 @@ pixel_y = -32 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "bhg" = ( /obj/machinery/light/small, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "bhi" = ( /obj/structure/sign/redcross{ desc = "The Star of Life, a symbol of Medical Aid."; @@ -19781,7 +19401,7 @@ pixel_y = -32 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "bhj" = ( /obj/structure/flora/pottedplant/orientaltree{ name = "Siengo" @@ -19789,8 +19409,8 @@ /obj/effect/floor_decal/spline/fancy{ dir = 10 }, -/turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/turf/simulated/floor/carpet/sblucarpet, +/area/hallway/Star_Transit_Foyer) "bhk" = ( /obj/machinery/alarm{ dir = 8; @@ -19803,7 +19423,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "bhl" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots{ @@ -19835,7 +19455,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bhm" = ( /obj/structure/cable{ d1 = 4; @@ -19843,7 +19463,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "bho" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -19856,11 +19476,11 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "bhp" = ( /obj/structure/lattice, /turf/space, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "bhq" = ( /obj/machinery/sleep_console{ dir = 4 @@ -19868,7 +19488,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "bhr" = ( /obj/machinery/alarm{ dir = 8; @@ -19890,7 +19510,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "bhs" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -19905,25 +19525,25 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "bhw" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "bhy" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "bhA" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "bhD" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "bhE" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "bhF" = ( /obj/machinery/shower{ pixel_y = 16 @@ -19935,14 +19555,14 @@ /obj/machinery/door/window/westright, /obj/structure/curtain/open/shower/security, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "bhH" = ( /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "bhL" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "bhM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -19951,7 +19571,7 @@ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "bhN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -19964,7 +19584,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "bhP" = ( /obj/item/stool/padded{ dir = 4 @@ -19979,7 +19599,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "bhV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -19990,20 +19610,20 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "bib" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "bid" = ( /obj/structure/table/bench/sifwooden/padded, /obj/random/trash, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "bih" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "bii" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -20017,12 +19637,38 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) +"bio" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/blue, +/obj/structure/grille, +/obj/structure/window/basic/full, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + layer = 3.5; + id = "Star Lockdown"; + name = "Lockdown Gate"; + desc = "A heavily reinforced gate, sector lockdown!" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/Star_2_Deck_Central_Corridor_2) "bip" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "bir" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -20044,23 +19690,23 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "biv" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "biw" = ( /obj/machinery/button/remote/blast_door{ id = "sc-GCarmory"; name = "Armory Door Control"; - req_access = list(29); dir = 8; - pixel_x = 24 + pixel_x = 24; + req_access = list(3) }, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "bix" = ( /obj/structure/table/rack/shelf/steel, /obj/item/storage/box/flashbangs{ @@ -20079,12 +19725,17 @@ pixel_y = 7; pixel_x = -8 }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 25; + name = "E-fire alarm" + }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "biz" = ( /obj/structure/sign/warning/airlock, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "biB" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -20094,7 +19745,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "biC" = ( /obj/machinery/power/apc{ dir = 4; @@ -20119,7 +19770,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "biD" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 @@ -20142,14 +19793,14 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "biF" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "biG" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "biI" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black, /obj/structure/cable/green{ @@ -20160,7 +19811,7 @@ /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "biK" = ( /obj/structure/closet/secure_closet/engineering_chief, /obj/random_multi/single_item/hand_tele, @@ -20171,7 +19822,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "biL" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -20195,7 +19846,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "biN" = ( /obj/machinery/firealarm{ dir = 8; @@ -20210,13 +19861,13 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "biO" = ( /obj/effect/floor_decal/spline/fancy{ dir = 10 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "biP" = ( /obj/machinery/light{ dir = 4; @@ -20227,10 +19878,10 @@ }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "biQ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "biT" = ( /obj/structure/table/rack{ dir = 8; @@ -20249,7 +19900,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "biU" = ( /obj/effect/catwalk_plated/techfloor, /obj/machinery/firealarm{ @@ -20258,7 +19909,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "biV" = ( /obj/structure/disposalpipe/trunk, /obj/structure/disposalpipe/segment{ @@ -20272,7 +19923,7 @@ color = "#6b75ff" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "biW" = ( /obj/effect/floor_decal/industrial/loading/blue{ dir = 4 @@ -20291,7 +19942,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "biX" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -20323,7 +19974,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "biY" = ( /obj/machinery/power/apc{ dir = 8; @@ -20359,10 +20010,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "biZ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "bjc" = ( /obj/machinery/photocopier, /obj/machinery/light{ @@ -20376,14 +20027,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "bje" = ( /obj/structure/table/standard, /obj/item/modular_computer/laptop/preset/custom_loadout/standard{ pixel_y = 12 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "bjf" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -20392,13 +20043,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "bjh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "bjn" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -20410,7 +20061,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "bjt" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/borderfloorblack{ @@ -20422,7 +20073,7 @@ /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "bju" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -20434,7 +20085,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "bjw" = ( /obj/structure/table/woodentable, /obj/item/storage/photo_album{ @@ -20452,12 +20103,12 @@ dir = 8 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "bjy" = ( /obj/structure/table/steel, /obj/item/mecha_parts/mecha_equipment/tool/extinguisher, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "bjC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -20474,13 +20125,13 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "bjD" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "bjE" = ( /obj/structure/railing{ dir = 1 @@ -20491,13 +20142,13 @@ name = "E-fire alarm" }, /turf/simulated/open, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "bjG" = ( /obj/structure/table/standard, /obj/random/maintenance/cargo, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "bjI" = ( /obj/structure/table/gamblingtable, /obj/item/deck/cah/black{ @@ -20518,17 +20169,17 @@ dir = 9 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "bjJ" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "bjL" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bjM" = ( /obj/structure/table/sifwoodentable, /obj/item/deck/cah{ @@ -20540,7 +20191,7 @@ pixel_y = -2 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "bjN" = ( /obj/structure/cable/green{ d1 = 2; @@ -20556,7 +20207,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "bjO" = ( /obj/structure/cable/green{ d1 = 2; @@ -20566,33 +20217,27 @@ /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "bjP" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /obj/effect/floor_decal/industrial/arrows/blue, +/obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/angled_bay/standard{ dir = 4; name = "Recreational Lounge" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "bjQ" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "bjR" = ( /obj/item/stool/padded, /obj/effect/floor_decal/carpet{ @@ -20605,7 +20250,7 @@ dir = 9 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "bjS" = ( /obj/structure/cable/green{ d1 = 1; @@ -20626,7 +20271,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "bka" = ( /obj/structure/table/rack/holorack, /obj/item/circuitboard/grounding_rod{ @@ -20682,13 +20327,13 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "bkc" = ( /obj/structure/table/glass, /obj/item/tool/screwdriver, /obj/item/taperecorder, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "bkd" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/dropper, @@ -20701,13 +20346,13 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "bke" = ( /obj/machinery/chemical_synthesizer, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "bkf" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/dropper, @@ -20717,7 +20362,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "bki" = ( /obj/item/stool/padded{ dir = 1 @@ -20729,7 +20374,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "bkj" = ( /obj/machinery/computer/med_data/laptop{ dir = 8; @@ -20749,7 +20394,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "bkk" = ( /obj/structure/table/reinforced, /obj/machinery/chemical_dispenser/full{ @@ -20761,7 +20406,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "bkl" = ( /obj/effect/floor_decal/industrial/stand_clear/blue, /obj/item/radio/intercom{ @@ -20775,7 +20420,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bkm" = ( /obj/machinery/button/remote/blast_door{ id = "SC-GCcell1"; @@ -20814,14 +20459,22 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "bko" = ( /obj/machinery/button/doorbell{ id = "sc-ChimeCar"; pixel_y = -24 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) +"bkp" = ( +/obj/structure/cable/white{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_PortChamber2) "bkt" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -20834,7 +20487,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "bku" = ( /obj/structure/cable/green{ d1 = 4; @@ -20848,14 +20501,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "bkx" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "bkz" = ( /obj/effect/floor_decal/stairs, /obj/structure/cable{ @@ -20864,7 +20517,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "bkB" = ( /obj/machinery/r_n_d/protolathe, /obj/effect/floor_decal/industrial/outline/yellow, @@ -20875,7 +20528,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "bkC" = ( /obj/machinery/button/remote/blast_door{ id = "sc-GCsouthshuttlebay"; @@ -20891,10 +20544,47 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "bkE" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) +"bkH" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/blue, +/obj/structure/grille, +/obj/structure/window/basic/full, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + layer = 3.5; + id = "Port Lockdown"; + name = "Lockdown Gate"; + desc = "A heavily reinforced gate, sector lockdown!" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/Port_2_Deck_Central_Corridor_2) "bkJ" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -20902,7 +20592,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bkK" = ( /obj/structure/railing/grey{ color = "yellow" @@ -20921,11 +20611,11 @@ /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, /obj/structure/disposalpipe/down, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "bkM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "bkO" = ( /obj/machinery/computer/supplycomp/control{ dir = 4 @@ -20939,7 +20629,7 @@ dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "bkP" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -20958,7 +20648,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "bkR" = ( /obj/machinery/status_display{ layer = 4; @@ -20978,7 +20668,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "bkV" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -20990,7 +20680,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "bkW" = ( /obj/structure/filingcabinet/filingcabinet, /obj/item/radio/intercom{ @@ -21005,12 +20695,12 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "bkY" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/area/maintenance/Deck2_For_Corridor) "bkZ" = ( /obj/structure/stairs/spawner/south, /obj/structure/sign/directions/medical/resleeving{ @@ -21025,11 +20715,11 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "blc" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "bld" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -21040,7 +20730,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "ble" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -21054,7 +20744,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "blf" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -21063,10 +20753,10 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "blg" = ( /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "blh" = ( /obj/structure/cable/white{ d1 = 1; @@ -21074,17 +20764,17 @@ icon_state = "1-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "bli" = ( /obj/structure/ladder/updown{ pixel_y = 3 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "blk" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "bll" = ( /obj/machinery/washing_machine, /obj/machinery/light{ @@ -21099,25 +20789,25 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "blm" = ( /obj/structure/stairs/spawner/west, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "blo" = ( /obj/random/maintenance/security, /obj/random/maintenance/security, /obj/random/maintenance/clean, /obj/structure/table/rack/shelf, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "blp" = ( /obj/effect/floor_decal/emblem/nt3, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "blr" = ( /obj/effect/floor_decal/carpet{ dir = 8 @@ -21127,7 +20817,7 @@ dir = 10 }, /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "blu" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -21142,17 +20832,17 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "blw" = ( /obj/structure/dispenser, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "blx" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "bly" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -21161,7 +20851,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "blB" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, @@ -21170,7 +20860,7 @@ dir = 8 }, /turf/space, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "blD" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -21179,7 +20869,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "blN" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -21188,7 +20878,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "blR" = ( /obj/machinery/alarm{ dir = 4; @@ -21204,7 +20894,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "blT" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -21212,7 +20902,7 @@ id = "sc-WTdistillery" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "blU" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 @@ -21224,7 +20914,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "blV" = ( /obj/effect/floor_decal/industrial/loading{ dir = 1 @@ -21238,7 +20928,7 @@ location = "Star_ToolStorage" }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "blZ" = ( /obj/structure/table/steel, /obj/machinery/cell_charger{ @@ -21261,11 +20951,11 @@ pixel_y = -1 }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "bma" = ( /obj/structure/railing, /turf/simulated/open, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "bmb" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -21274,7 +20964,7 @@ pixel_y = -22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bmd" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -21288,12 +20978,54 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) +"bmj" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + name = "S-light switch"; + pixel_x = 11; + pixel_y = -27 + }, +/obj/machinery/button/windowtint{ + id = "sc-WTkitchen"; + name = "S-window tint control"; + pixel_x = -12; + pixel_y = -26; + range = 10 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "bmk" = ( /obj/machinery/power/thermoregulator, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "bml" = ( /obj/structure/extinguisher_cabinet{ dir = 1; @@ -21307,12 +21039,12 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "bms" = ( /obj/structure/table/hardwoodtable, /obj/item/starcaster_news, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "bmt" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -21336,7 +21068,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "bmu" = ( /obj/structure/cable{ d1 = 1; @@ -21347,16 +21079,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "bmw" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "bmC" = ( /obj/effect/floor_decal/chapel{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "bmD" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -21381,7 +21113,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "bmG" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -21410,7 +21142,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "bmP" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 @@ -21418,7 +21150,16 @@ /turf/simulated/floor/boxing{ name = "yoga mat" }, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) +"bmS" = ( +/obj/effect/catwalk_plated/white, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/space) "bmT" = ( /obj/structure/cable/white{ d1 = 1; @@ -21426,7 +21167,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "bmV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -21436,15 +21177,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) -"bmX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "bmY" = ( /obj/machinery/computer/arcade/clawmachine, /obj/machinery/light{ @@ -21452,11 +21185,11 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "bmZ" = ( /obj/machinery/vending/giftvendor, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "bne" = ( /obj/structure/fireaxecabinet{ name = "1W-sfire axe cabinet"; @@ -21465,7 +21198,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "bnf" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -21475,10 +21208,10 @@ /obj/machinery/door/airlock/maintenance/int, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "bni" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "bnj" = ( /obj/structure/table/reinforced, /obj/machinery/photocopier/faxmachine{ @@ -21490,7 +21223,7 @@ pixel_x = -14 }, /turf/simulated/floor/carpet/purple, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "bnk" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/light{ @@ -21498,22 +21231,22 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "bno" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "bnq" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "bnr" = ( /obj/structure/closet/crate, /obj/item/storage/belt/champion, @@ -21534,14 +21267,14 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "bns" = ( /obj/structure/sign/directions/shuttle_bay{ dir = 8; pixel_y = -9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "bnu" = ( /obj/machinery/power/apc{ dir = 8; @@ -21562,7 +21295,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "bnz" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -21585,11 +21318,11 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "bnA" = ( /obj/structure/girder, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "bnB" = ( /obj/machinery/light{ dir = 4; @@ -21611,12 +21344,12 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "bnC" = ( /obj/machinery/r_n_d/destructive_analyzer, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "bnD" = ( /obj/structure/sign/directions/bridge{ dir = 9 @@ -21630,7 +21363,7 @@ pixel_y = -9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "bnE" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -21653,7 +21386,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "bnF" = ( /obj/machinery/atmospherics/binary/passive_gate{ regulate_mode = 0; @@ -21661,11 +21394,11 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "bnG" = ( /obj/structure/stairs/spawner/east, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "bnK" = ( /obj/structure/sign/directions/science{ dir = 4; @@ -21678,11 +21411,11 @@ }, /obj/structure/sign/directions/command{ pixel_y = -9; - dir = 5; + dir = 4; layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Cargo_StarChamber1) +/area/maintenance/Deck2_Cargo_StarChamber1) "bnM" = ( /obj/machinery/ai_status_display{ name = "1W-AI display"; @@ -21695,7 +21428,7 @@ /obj/structure/table/standard, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "bnN" = ( /obj/effect/floor_decal/industrial/loading/blue{ dir = 1 @@ -21715,15 +21448,15 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "bnO" = ( /obj/structure/table/standard, /obj/item/clipboard, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "bnP" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "bnQ" = ( /obj/machinery/light{ dir = 4; @@ -21739,13 +21472,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "bnR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "bnT" = ( /obj/machinery/atmospherics/valve{ name = "Cargo emergency air supply" @@ -21753,13 +21486,13 @@ /obj/effect/floor_decal/industrial/danger/full, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "bnW" = ( /obj/item/stool/padded{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "bnZ" = ( /obj/machinery/power/apc{ dir = 1; @@ -21800,7 +21533,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "bod" = ( /obj/structure/table/rack{ dir = 8; @@ -21819,7 +21552,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bof" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/sign/small/warning/emerg_only{ @@ -21828,7 +21561,7 @@ }, /obj/structure/ladder/up, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "bog" = ( /obj/machinery/status_display{ layer = 4; @@ -21842,8 +21575,13 @@ /obj/effect/floor_decal/corner/lightorange/border{ dir = 1 }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "bon" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/button/remote/driver{ @@ -21852,7 +21590,7 @@ name = "trash mass driver button" }, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "bos" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -21861,7 +21599,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "bou" = ( /obj/machinery/alarm{ dir = 4; @@ -21869,16 +21607,16 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "bov" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber1) +/area/maintenance/Deck2_Engineering_PortChamber1) "boB" = ( /obj/effect/floor_decal/borderfloorblack, /obj/machinery/vending/sol, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "boC" = ( /obj/machinery/vending/snack, /obj/machinery/light{ @@ -21887,13 +21625,13 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "boE" = ( /obj/machinery/vending/cigarette, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "boF" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -21906,7 +21644,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "boL" = ( /obj/structure/bed/chair, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -21918,7 +21656,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "boQ" = ( /obj/structure/sign/directions/teleporter{ pixel_y = 9; @@ -21932,7 +21670,7 @@ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "boR" = ( /obj/structure/cable/white{ d1 = 2; @@ -21940,7 +21678,7 @@ icon_state = "2-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "boU" = ( /obj/structure/table/gamblingtable, /obj/machinery/light{ @@ -21970,18 +21708,18 @@ dir = 10 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "boV" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/watertank/high, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "boY" = ( /obj/structure/table/gamblingtable, /obj/item/deck/tarot, /obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "bpa" = ( /obj/structure/table/standard, /obj/item/storage/toolbox/emergency{ @@ -22025,7 +21763,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "bpb" = ( /obj/item/storage/box/bodybags{ pixel_x = -8 @@ -22055,12 +21793,12 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "bpc" = ( /obj/structure/table/wooden_reinforced, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "bpf" = ( /obj/structure/sink/countertop{ pixel_y = 35; @@ -22074,7 +21812,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "bph" = ( /obj/machinery/light{ dir = 1; @@ -22086,13 +21824,13 @@ color = "#00B8B2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "bpj" = ( /obj/structure/table/rack, /obj/random/maintenance/security, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "bpl" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -22111,14 +21849,14 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "bpm" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "bpn" = ( /obj/machinery/light{ dir = 4; @@ -22129,7 +21867,7 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bpo" = ( /obj/structure/table/steel, /obj/item/folder/yellow, @@ -22148,7 +21886,7 @@ pixel_x = 7 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "bpp" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -22164,7 +21902,7 @@ color = "#6b75ff" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "bpq" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -22182,21 +21920,16 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "bpr" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/machinery/camera/network/security{ - dir = 1; - c_tag = "D2-Com-For Corridor1"; - network = list("Commons") - }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "bps" = ( /obj/structure/cable/green{ d1 = 1; @@ -22208,8 +21941,13 @@ d2 = 8; icon_state = "1-8" }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "bpt" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/milspec/box, @@ -22219,7 +21957,7 @@ }, /obj/mecha/combat/scarab, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "bpw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22236,62 +21974,33 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) -"bpz" = ( -/obj/item/radio/intercom{ - dir = 8; - name = "1W-Station Intercom (General)"; - pixel_x = -22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/engineering/Deck2_1_Corridor) "bpB" = ( /obj/structure/bed/chair/sofa/right/brown{ dir = 1 }, +/obj/structure/sign/poster/custom, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) -"bpE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/holoposter{ - dir = 4; - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/crew_quarters/Office_Lounge) "bpF" = ( -/obj/structure/table/standard, -/obj/item/analyzer/plant_analyzer{ - pixel_x = -4; - pixel_y = 3 +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/shuttle/blue{ + pixel_x = -1; + pixel_y = 1 }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 9; - pixel_y = 3 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 4; - pixel_y = -1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/ai_status_display{ - name = "1S-AI display"; - pixel_y = -32 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/Chomp_Kitchen) "bpG" = ( /obj/machinery/suit_cycler/engineering{ req_one_access = list(11,24); @@ -22310,13 +22019,13 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "bpH" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "bpI" = ( /obj/item/ammo_magazine/m45/rubber{ pixel_y = 12; @@ -22381,10 +22090,10 @@ }, /obj/structure/table/rack, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "bpK" = ( /turf/simulated/open, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "bpL" = ( /obj/structure/cable{ d1 = 4; @@ -22394,18 +22103,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "bpM" = ( /obj/machinery/power/apc{ dir = 4; @@ -22429,11 +22136,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "bpN" = ( /obj/structure/railing, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "bpO" = ( /obj/structure/cable/green{ d1 = 4; @@ -22442,7 +22149,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "bpP" = ( /obj/structure/shuttle/engine/propulsion{ dir = 4 @@ -22455,7 +22162,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "bqe" = ( /obj/machinery/sleeper{ dir = 4 @@ -22466,10 +22173,10 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "bqh" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "bqi" = ( /obj/structure/table/steel_reinforced, /obj/item/shield_projector/line, @@ -22477,7 +22184,7 @@ pixel_y = 6 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "bql" = ( /obj/structure/sink{ dir = 4; @@ -22490,11 +22197,11 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "bqo" = ( /obj/structure/table/reinforced, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "bqr" = ( /obj/machinery/air_sensor{ frequency = 1430; @@ -22502,7 +22209,7 @@ output = 63 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "bqu" = ( /obj/structure/bed/chair/comfy/black, /obj/effect/floor_decal/carpet{ @@ -22515,33 +22222,33 @@ dir = 5 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "bqy" = ( /obj/structure/table/woodentable, /obj/machinery/chemical_dispenser/bar_coffee{ pixel_y = 18 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "bqz" = ( /obj/machinery/iv_drip, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "bqC" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge{ scrub_id = "SC-Brig" }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "bqE" = ( /obj/machinery/vending/nifsoft_shop{ dir = 1 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "bqI" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -22553,7 +22260,7 @@ id_tag = "sc-DBNstall3" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "bqM" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22561,10 +22268,10 @@ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "bqR" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "bra" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -22580,7 +22287,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "brb" = ( /obj/machinery/button/remote/airlock{ desc = "A remote control switch for the medbay foyer."; @@ -22598,17 +22305,17 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "brh" = ( -/obj/machinery/smartfridge/produce, +/obj/machinery/smartfridge/produce/persistent_lossy, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "bri" = ( /obj/effect/floor_decal/industrial/danger{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "brj" = ( /obj/structure/bed/chair/sofa/brown{ dir = 1 @@ -22618,7 +22325,7 @@ name = "1S-entertainment monitor" }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "brk" = ( /obj/structure/closet{ name = "Prisoner's Locker" @@ -22640,14 +22347,14 @@ pixel_x = -22 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "brl" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "brm" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "bro" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -22665,7 +22372,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "brp" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -22675,13 +22382,13 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "brr" = ( /obj/structure/closet/secure_closet/xenoarchaeologist, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Locker_Room) +/area/rnd/Locker_Room) "brs" = ( /obj/structure/table/woodentable, /obj/item/deck/cards, @@ -22689,42 +22396,26 @@ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "brt" = ( /obj/structure/sign/level/two/large, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "bru" = ( /obj/structure/window/reinforced, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "brw" = ( -/obj/structure/railing/grey{ - color = "yellow"; - dir = 4 +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 }, -/obj/structure/railing/grey{ - color = "yellow"; - dir = 1 - }, -/obj/structure/lattice, -/obj/structure/cable{ - d1 = 32; - icon_state = "32-1" - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/up{ - dir = 1 - }, -/turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Star_Corridor) "brx" = ( /obj/machinery/light{ dir = 8; @@ -22747,7 +22438,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "bry" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -22764,10 +22455,10 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "brA" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "brB" = ( /obj/structure/cable/white{ d1 = 4; @@ -22775,7 +22466,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "brC" = ( /obj/machinery/light{ dir = 8; @@ -22785,10 +22476,10 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "brD" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "brF" = ( /obj/structure/cable/white{ d1 = 2; @@ -22796,7 +22487,7 @@ icon_state = "2-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "brG" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -22804,7 +22495,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "brH" = ( /obj/structure/cable/white{ d1 = 2; @@ -22813,7 +22504,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "brI" = ( /obj/structure/table/rack{ dir = 8; @@ -22842,7 +22533,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "brN" = ( /obj/machinery/light{ dir = 8; @@ -22864,7 +22555,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "brO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -22879,7 +22570,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/red, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "brP" = ( /obj/machinery/computer/security/engineering{ dir = 8 @@ -22892,7 +22583,7 @@ pixel_x = 28 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "brQ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -22904,7 +22595,7 @@ name = "Security Foyer" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "brT" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -22915,7 +22606,7 @@ id = "sc-HSsurgerytwo" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "brU" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -22939,7 +22630,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "brV" = ( /obj/machinery/flasher{ id = "testthis"; @@ -22953,7 +22644,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "brZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -22968,7 +22659,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "bsa" = ( /obj/machinery/alarm{ dir = 4; @@ -22981,7 +22672,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "bsb" = ( /obj/structure/railing{ dir = 1 @@ -22990,16 +22681,16 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "bsd" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "bse" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "bsf" = ( /obj/structure/cable/green{ d1 = 1; @@ -23008,7 +22699,19 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) +"bsk" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Security_AftStarCorridor2) +"bsn" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_For_Corridor) "bso" = ( /obj/machinery/firealarm{ dir = 1; @@ -23025,7 +22728,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "bsp" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -23038,11 +22741,15 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "bsq" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) +"bsr" = ( +/obj/structure/flora/underwater/grass3, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_1) "bsv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -23055,14 +22762,18 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "bsD" = ( /obj/effect/floor_decal/carpet{ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "bsG" = ( /obj/machinery/door/window/brigdoor/westright{ name = "Forensics Area"; @@ -23070,11 +22781,11 @@ req_one_access = list(1) }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "bsM" = ( /obj/random/plushielarge, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "bsN" = ( /obj/effect/floor_decal/carpet/blue{ dir = 1 @@ -23083,7 +22794,7 @@ dir = 1 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "bsO" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -23098,16 +22809,16 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "bsQ" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "bsU" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "bsV" = ( /obj/structure/table/steel, /obj/item/deck/cards{ @@ -23129,7 +22840,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "bsY" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -23158,10 +22869,10 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "bsZ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "bta" = ( /obj/structure/railing{ dir = 4 @@ -23170,7 +22881,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "btf" = ( /obj/machinery/status_display{ pixel_x = 32; @@ -23185,7 +22896,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "bth" = ( /obj/machinery/alarm{ dir = 1; @@ -23198,7 +22909,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "bti" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/northright{ @@ -23227,7 +22938,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "btk" = ( /obj/machinery/button/windowtint{ id = "sc-WTsauna"; @@ -23235,7 +22946,7 @@ range = 11 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "btq" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -23283,7 +22994,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "btr" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -23294,7 +23005,7 @@ pixel_x = -28 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "btt" = ( /obj/structure/table/rack{ pixel_x = 16 @@ -23385,11 +23096,11 @@ pixel_x = 20 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "btw" = ( /obj/structure/sign/warning/vacuum, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "bty" = ( /obj/structure/closet{ name = "Prisoner's Locker" @@ -23400,7 +23111,7 @@ /obj/item/clothing/head/soft/orange, /obj/item/reagent_containers/food/drinks/bottle/absinthe, /turf/simulated/floor/carpet/bcarpet/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "btE" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -23409,8 +23120,7 @@ /obj/effect/floor_decal/industrial/arrows/blue, /obj/machinery/door/airlock/angled_bay/standard/color/medical{ dir = 4; - name = "Observation Room"; - req_access = null + name = "Observation Room" }, /obj/structure/cable/green{ d1 = 4; @@ -23431,7 +23141,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "btH" = ( /obj/structure/cable/green{ d1 = 4; @@ -23454,7 +23164,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "btJ" = ( /obj/structure/table/rack/holorack, /obj/item/circuitboard/telecomms/broadcaster{ @@ -23518,7 +23228,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "btO" = ( /obj/structure/closet/secure_closet/quartermaster, /obj/machinery/firealarm{ @@ -23533,7 +23243,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "btV" = ( /obj/machinery/papershredder, /obj/machinery/light{ @@ -23542,7 +23252,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "btY" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -23565,12 +23275,12 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "bub" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "buc" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -23586,14 +23296,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "buf" = ( -/obj/machinery/biogenerator, -/turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/machinery/smartfridge/drinks/showcase, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "bug" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "buk" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -23610,7 +23327,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "bum" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 @@ -23619,23 +23336,23 @@ dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "buu" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "buw" = ( /obj/structure/bed/chair/oldsofa/right{ dir = 1 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "bux" = ( /obj/structure/bed/chair/oldsofa{ dir = 1 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "buy" = ( /obj/structure/bed/chair/oldsofa{ dir = 1 @@ -23644,21 +23361,21 @@ name = "1S-light fixture" }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "buz" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "buA" = ( /obj/structure/ladder/updown{ pixel_y = 3 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "buF" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -23682,7 +23399,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "buJ" = ( /obj/item/storage/firstaid/adv{ pixel_y = 7; @@ -23717,7 +23434,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "buL" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -23729,17 +23446,17 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "buM" = ( /obj/structure/sign/nosmoking_2, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "buN" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "buQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -23749,7 +23466,7 @@ /obj/machinery/door/airlock/maintenance/int, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "buR" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -23764,7 +23481,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "buS" = ( /obj/structure/table/rack/shelf, /obj/random/soap{ @@ -23777,7 +23494,7 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "buV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -23801,10 +23518,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "buW" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "buY" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 1 @@ -23818,7 +23535,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "buZ" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -23832,14 +23549,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "bvd" = ( /obj/structure/girder, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "bvf" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "bvh" = ( /obj/structure/table/rack, /obj/item/storage/briefcase/crimekit{ @@ -23847,7 +23564,7 @@ }, /obj/item/storage/briefcase/crimekit, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "bvi" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -23865,7 +23582,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "bvj" = ( /obj/effect/floor_decal/industrial/hatch, /obj/machinery/shield_diffuser, @@ -23875,10 +23592,10 @@ dir = 4 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "bvk" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "bvl" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/curtain/open/privacy, @@ -23889,11 +23606,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bvo" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "bvr" = ( /obj/item/radio/intercom{ dir = 1; @@ -23901,14 +23618,14 @@ pixel_y = 22 }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "bvu" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "bvx" = ( /obj/machinery/v_garbosystem, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "bvy" = ( /obj/effect/shuttle_landmark/southern_cross/large_escape_pod4/station, /turf/simulated/shuttle/floor, @@ -23925,7 +23642,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "bvA" = ( /obj/structure/cable/green{ d1 = 2; @@ -23938,7 +23655,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "bvB" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/fueltank/high, @@ -23949,7 +23666,7 @@ dir = 6 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "bvC" = ( /obj/structure/cable/green{ d1 = 1; @@ -23963,7 +23680,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "bvE" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -23978,7 +23695,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "bvF" = ( /obj/structure/table/standard, /obj/item/defib_kit/jumper_kit/loaded{ @@ -23992,13 +23709,13 @@ dir = 9 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "bvG" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, /turf/simulated/floor/tiled/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "bvH" = ( /obj/item/radio/intercom{ dir = 1; @@ -24012,13 +23729,13 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "bvI" = ( /obj/machinery/doorbell_chime{ id_tag = "sc-ChimeSci" }, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "bvJ" = ( /obj/structure/cable{ d1 = 4; @@ -24034,7 +23751,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "bvL" = ( /obj/structure/table/woodentable, /obj/machinery/light{ @@ -24049,17 +23766,17 @@ dir = 8 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "bvN" = ( /obj/structure/closet/acloset{ name = "leisure closet" }, /obj/item/storage/box/capguntoy, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "bvO" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "bvU" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -24068,7 +23785,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "bvZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -24076,8 +23793,14 @@ dir = 1 }, /obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "bwa" = ( /obj/structure/table/rack, /obj/item/rig/pmc/medical/green/equipped{ @@ -24096,7 +23819,7 @@ req_access = list() }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "bwd" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -24105,7 +23828,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "bwe" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -24120,20 +23843,20 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "bwk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "bwl" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "bwn" = ( /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "bwr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -24144,7 +23867,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "bws" = ( /obj/item/storage/box/bodybags{ pixel_y = -5; @@ -24179,7 +23902,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bwu" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/black, /obj/effect/catwalk_plated, @@ -24190,13 +23913,13 @@ icon_state = "1-2" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "bwz" = ( /obj/structure/table/woodentable, /obj/item/taperecorder, /obj/item/starcaster_news, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "bwB" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -24215,7 +23938,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bwC" = ( /obj/machinery/alarm{ dir = 4; @@ -24229,14 +23952,14 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "bwI" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 }, /obj/structure/fitness/punchingbag, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "bwJ" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/power/apc{ @@ -24249,14 +23972,14 @@ }, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_1) "bwK" = ( /obj/structure/bed/chair/office/dark, /obj/effect/floor_decal/carpet{ dir = 1 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bwR" = ( /obj/machinery/light{ dir = 8 @@ -24295,11 +24018,11 @@ }, /obj/structure/table/rack, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "bwU" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "bwV" = ( /obj/structure/closet/bombclosetsecurity, /obj/machinery/power/apc{ @@ -24325,20 +24048,20 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "bwW" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "bwX" = ( /obj/structure/sign/directions/evac{ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "bwY" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/red{ @@ -24357,7 +24080,7 @@ id_tag = "SC-ODsecurityfoyer" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "bwZ" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -24368,7 +24091,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "bxb" = ( /obj/effect/floor_decal/techfloor/orange, /obj/effect/floor_decal/techfloor/hole, @@ -24376,7 +24099,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "bxc" = ( /obj/structure/railing, /obj/machinery/light{ @@ -24384,7 +24107,7 @@ name = "1N-lighting fixture" }, /turf/simulated/open, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "bxd" = ( /obj/machinery/newscaster{ pixel_y = 28; @@ -24399,7 +24122,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "bxe" = ( /obj/machinery/alarm{ pixel_y = 25 @@ -24411,7 +24134,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "bxf" = ( /obj/structure/window/reinforced, /obj/machinery/computer/cryopod{ @@ -24419,7 +24142,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "bxg" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -24438,7 +24161,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "bxi" = ( /obj/structure/closet/secure_closet/cargotech, /obj/effect/floor_decal/borderfloor/corner{ @@ -24448,11 +24171,11 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "bxj" = ( /obj/machinery/photocopier, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "bxl" = ( /obj/machinery/light{ dir = 4 @@ -24467,7 +24190,7 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "bxm" = ( /obj/structure/table/steel_reinforced, /obj/item/storage/bag/trash, @@ -24490,7 +24213,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "bxn" = ( /obj/structure/table/rack{ dir = 8; @@ -24509,7 +24232,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "bxo" = ( /obj/structure/cable{ d1 = 2; @@ -24533,7 +24256,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "bxq" = ( /obj/structure/table/reinforced, /obj/item/packageWrap{ @@ -24586,14 +24309,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "bxr" = ( /obj/structure/table/standard, /obj/item/toy/plushie/squid/pink{ name = "Squiddler" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "bxt" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 1 @@ -24608,13 +24331,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "bxv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/machinery/disposal/deliveryChute{ + dir = 4; + name = "Crew transit pipes"; + desc = "A specialized crew transit system, a tight inflatable hole of soft fabric with a strong suction. A quick way to travel long distances!"; + color = "#6b75ff" }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "bxD" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -24632,7 +24362,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "bxL" = ( /obj/structure/cable/white{ d1 = 1; @@ -24640,10 +24370,10 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bxM" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bxQ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -24655,21 +24385,43 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "bxR" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) +"bxU" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/hatch, +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium, +/obj/structure/window/titanium{ + dir = 4 + }, +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium{ + dir = 8 + }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_PortChamber2) "bxX" = ( /obj/effect/landmark{ name = "maint_pred" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "bxY" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "bya" = ( /obj/item/stool/padded{ dir = 1 @@ -24685,7 +24437,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "byc" = ( /obj/structure/table/rack/shelf, /obj/item/radio/emergency{ @@ -24729,7 +24481,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "byd" = ( /obj/machinery/power/apc{ dir = 4; @@ -24751,20 +24503,20 @@ icon_state = "0-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bye" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "byg" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortChamber1) +/area/maintenance/Deck2_Medical_AftPortChamber1) "byh" = ( /obj/structure/girder, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "byj" = ( /obj/structure/table/steel_reinforced, /obj/machinery/camera/network/security{ @@ -24784,7 +24536,7 @@ pixel_y = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "byk" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -24806,7 +24558,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "bym" = ( /obj/machinery/camera/network/security{ dir = 4; @@ -24820,14 +24572,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "byn" = ( /obj/machinery/conveyor{ dir = 8; id = "SC-CBdisposals" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "byp" = ( /obj/machinery/power/rtg/reg/c, /obj/structure/cable{ @@ -24835,7 +24587,7 @@ icon_state = "0-8" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "byq" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 9 @@ -24847,7 +24599,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "byr" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -24870,7 +24622,7 @@ id = "sc-WTce" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "bys" = ( /obj/structure/cable/green{ d1 = 1; @@ -24881,7 +24633,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "byu" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -24902,12 +24654,12 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "byv" = ( /obj/machinery/suit_cycler/refit_only, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "byw" = ( /obj/structure/cable/green{ d1 = 2; @@ -24921,7 +24673,7 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "byy" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24929,17 +24681,9 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "byz" = ( /obj/structure/table/woodentable, -/obj/item/tape{ - pixel_y = -4; - pixel_x = 4 - }, -/obj/item/tape{ - pixel_y = -1; - pixel_x = 5 - }, /obj/item/taperecorder{ pixel_y = 1; pixel_x = -4 @@ -24947,8 +24691,12 @@ /obj/effect/floor_decal/carpet{ dir = 4 }, +/obj/item/rectape, +/obj/item/rectape{ + pixel_y = -3 + }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "byA" = ( /obj/machinery/suit_cycler/security, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -24957,7 +24705,7 @@ name = "1S-station intercom (Security)" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "byD" = ( /obj/item/cell/device/weapon{ pixel_y = 12; @@ -25025,7 +24773,7 @@ name = "1E-station intercom (Security)" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "byE" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/floor_decal/borderfloorblack{ @@ -25035,7 +24783,7 @@ dir = 5 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "byH" = ( /obj/structure/table/steel, /obj/item/paper{ @@ -25058,7 +24806,7 @@ pixel_x = -28 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "byI" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -25089,10 +24837,10 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "byK" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "byM" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -25105,7 +24853,7 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "byN" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -25116,7 +24864,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "byO" = ( /obj/structure/cable{ d1 = 4; @@ -25130,11 +24878,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "byP" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "byR" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -25145,19 +24893,19 @@ c_tag = "D2-Sec-Vault Reception1" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "byS" = ( /obj/machinery/vending/sol, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "byT" = ( /obj/machinery/vending/altevian, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "byU" = ( /obj/machinery/status_display, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "byW" = ( /obj/structure/bed/chair/sofa/right/brown{ dir = 8; @@ -25167,10 +24915,10 @@ dir = 4 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "byX" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "byY" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -25180,17 +24928,17 @@ icon_state = "0-2" }, /obj/effect/wingrille_spawn/reinforced/polarized{ - id = "sc-WTsecprocessing" + id = "sc-WTformedpost" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "bzb" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "bzc" = ( /obj/structure/lattice, /turf/space, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "bzd" = ( /obj/structure/table/rack{ dir = 8; @@ -25201,10 +24949,10 @@ /obj/random/maintenance/cargo, /obj/random/maintenance/cargo, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "bze" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "bzh" = ( /obj/structure/table/rack{ dir = 8; @@ -25220,7 +24968,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "bzj" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -25232,7 +24980,7 @@ id_tag = "sc-DBWstall2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "bzk" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/borderfloorblack{ @@ -25242,7 +24990,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bzm" = ( /obj/machinery/light{ dir = 4; @@ -25262,7 +25010,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "bzn" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -25270,7 +25018,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "bzp" = ( /obj/structure/cable{ d1 = 1; @@ -25298,7 +25046,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "bzt" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -25316,7 +25064,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "bzu" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -25331,7 +25079,7 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "bzy" = ( /obj/machinery/disposal, /obj/machinery/ai_status_display{ @@ -25342,7 +25090,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "bzz" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/light{ @@ -25356,7 +25104,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bzA" = ( /obj/machinery/power/apc{ dir = 1; @@ -25379,10 +25127,10 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bzC" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bzL" = ( /obj/structure/bed/chair/comfy/brown{ dir = 4 @@ -25395,10 +25143,10 @@ dir = 10 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "bzM" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "bzU" = ( /obj/machinery/deployable/barrier, /obj/machinery/firealarm{ @@ -25415,14 +25163,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Bridge/Vault_Reception) -"bzV" = ( -/obj/structure/bed/chair/backed_grey{ - color = "grey"; - dir = 1 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/area/bridge/Vault_Reception) "bzW" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -25460,7 +25201,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "bAc" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -25483,16 +25224,13 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "bAf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "bAh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -25507,15 +25245,15 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "bAi" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "bAj" = ( /obj/structure/dispenser/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bAk" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -25524,7 +25262,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "bAl" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, @@ -25536,7 +25274,7 @@ dir = 1 }, /turf/space, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "bAm" = ( /obj/machinery/door/blast/regular/open{ layer = 3.5; @@ -25547,13 +25285,13 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/area/maintenance/Deck2_For_Corridor) "bAn" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "bAq" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -25573,7 +25311,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "bAr" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -28; @@ -25582,7 +25320,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "bAs" = ( /obj/structure/table/rack, /obj/item/gun/projectile/serdy_pistols/tp23{ @@ -25601,7 +25339,7 @@ }, /obj/structure/window/reinforced, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "bAv" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -25617,7 +25355,7 @@ color = "#6b75ff" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "bAw" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -25637,7 +25375,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "bAx" = ( /obj/structure/closet, /obj/item/storage/backpack/dufflebag, @@ -25647,7 +25385,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "bAA" = ( /obj/random/tech_supply, /obj/random/tech_supply, @@ -25667,7 +25405,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "bAH" = ( /obj/machinery/alarm{ dir = 1; @@ -25677,12 +25415,12 @@ /obj/random/medical/pillbottle, /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "bAO" = ( /obj/structure/table/wooden_reinforced, /obj/item/clothing/glasses/sunglasses, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "bAP" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -25703,7 +25441,7 @@ name = "Mech Bay" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "bAQ" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/cable/green{ @@ -25715,7 +25453,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "bAT" = ( /obj/machinery/atmospherics/unary/heater/sauna{ dir = 8; @@ -25723,42 +25461,24 @@ use_power = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "bBa" = ( /obj/item/stool/padded{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "bBc" = ( /obj/structure/table/reinforced, /obj/machinery/microscope{ pixel_y = 16 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Security/Forensics_Office) -"bBd" = ( -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 2 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/holoposter{ - dir = 4; - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/security/Forensics_Office) "bBe" = ( /obj/structure/railing, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "bBg" = ( /obj/machinery/sleep_console, /turf/simulated/shuttle/floor/white, @@ -25781,10 +25501,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "bBk" = ( /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "bBm" = ( /obj/structure/ladder{ pixel_y = 3 @@ -25795,7 +25515,7 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarCorridor1) +/area/maintenance/Deck2_Engineering_ForStarCorridor1) "bBn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -25819,7 +25539,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "bBq" = ( /obj/effect/wingrille_spawn/reinforced_phoron, /obj/machinery/door/firedoor/glass, @@ -25828,7 +25548,7 @@ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "bBu" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -25847,13 +25567,13 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "bBv" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "bBx" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "bBz" = ( /obj/structure/ladder/updown{ pixel_y = 3 @@ -25881,11 +25601,16 @@ /obj/effect/floor_decal/corner/white/border{ dir = 8 }, +/obj/machinery/firealarm{ + dir = 8; + name = "W-fire alarm"; + pixel_x = -25 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "bBC" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortChamber1) +/area/maintenance/Deck2_Medical_AftPortChamber1) "bBF" = ( /obj/structure/ladder/updown{ pixel_y = 3 @@ -25902,17 +25627,17 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortChamber1) +/area/maintenance/Deck2_Medical_AftPortChamber1) "bBH" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "bBL" = ( /obj/machinery/sleeper, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bBN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -25936,7 +25661,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "bBR" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -25944,7 +25669,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "bBV" = ( /obj/structure/cable/green{ d1 = 4; @@ -25967,7 +25692,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "bCd" = ( /obj/machinery/power/apc{ dir = 1; @@ -25989,24 +25714,30 @@ icon_state = "0-2" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "bCe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/machinery/pointdefense{ + id_tag = "PD Primary" }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/structure/sign/poster/nanotrasen{ - dir = 4 +/obj/structure/cable/white{ + d2 = 4; + icon_state = "0-4" }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/obj/machinery/shield_diffuser, +/obj/effect/catwalk_plated/white, +/turf/simulated/floor/plating/turfpack/airless, +/area/space) "bCf" = ( -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/obj/structure/closet/emcloset, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/hallway/Central_2_Deck_Hall) "bCi" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "bCj" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 10 @@ -26015,7 +25746,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bCl" = ( /obj/machinery/disposal, /obj/machinery/firealarm{ @@ -26027,7 +25758,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bCu" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -26036,7 +25767,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "bCx" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -26061,7 +25792,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "bCy" = ( /obj/structure/sign/directions/engineering/engeqp{ dir = 4 @@ -26071,7 +25802,7 @@ pixel_y = -9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "bCA" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -26101,14 +25832,14 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bCC" = ( /obj/structure/railing, /turf/simulated/open, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "bCD" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "bCE" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -26122,11 +25853,11 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "bCH" = ( /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber1) +/area/maintenance/Deck2_Engineering_PortChamber1) "bCK" = ( /obj/machinery/conveyor_switch/oneway{ id = "SC-Recycle"; @@ -26138,49 +25869,49 @@ /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/steeldecal/steel_decals_central4, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "bCM" = ( /obj/structure/railing{ dir = 1 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "bCP" = ( /obj/structure/table/hardwoodtable, /obj/item/storage/box/snappops, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "bCT" = ( /obj/structure/sign/department/shield{ desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) +/area/maintenance/Deck2_Medical_AftCorridor1) "bCU" = ( /obj/structure/girder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "bCV" = ( /obj/structure/window/reinforced/tinted/frosted{ dir = 4 }, /obj/structure/table/reinforced, /turf/simulated/floor/carpet/bcarpet/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "bDc" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/porta_turret/industrial/teleport_defense{ faction = "nanotrasen" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "bDd" = ( /obj/structure/sign/department/operational{ desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "bDg" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -26189,7 +25920,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bDi" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -26198,7 +25929,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "bDj" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 @@ -26209,12 +25940,12 @@ color = "#00B8B2" }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bDk" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "bDl" = ( /obj/machinery/newscaster{ name = "1E-newscaster"; @@ -26223,7 +25954,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "bDn" = ( /obj/item/mecha_parts/mecha_equipment/tool/passenger{ pixel_x = 3 @@ -26257,7 +25988,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "bDo" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/spray/luminol{ @@ -26272,39 +26003,33 @@ pixel_y = -22 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "bDp" = ( /obj/structure/closet/emergsuit_wall{ pixel_y = 27; name = "1N-emergency suit storage" }, +/obj/structure/sign/securearea{ + icon_state = "radiation_small"; + name = "\improper RAD SAFE"; + desc = "A warning sign which reads 'RADIATION SHIELDING IN THIS AREA'."; + pixel_x = 32 + }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "bDr" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/clean, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "bDv" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/spline/fancy{ dir = 6 }, -/turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) -"bDy" = ( -/obj/structure/table/standard, -/obj/item/material/knife/machete/hatchet{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/multitool{ - pixel_y = 5; - pixel_x = 5 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/turf/simulated/floor/carpet/sblucarpet, +/area/hallway/Star_Transit_Foyer) "bDE" = ( /obj/item/radio/intercom{ dir = 4; @@ -26323,34 +26048,17 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) -"bDG" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/hatch, -/obj/structure/grille, -/obj/structure/window/titanium/full, -/obj/structure/window/titanium, -/obj/structure/window/titanium{ - dir = 4 - }, -/obj/structure/window/titanium{ - dir = 1 - }, -/obj/structure/window/titanium{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/engineering/Deck2_2_Corridor) "bDH" = ( /obj/effect/floor_decal/milspec/box, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bDK" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "bDO" = ( /obj/machinery/bodyscanner{ dir = 8 @@ -26358,7 +26066,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bDQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -26370,7 +26078,7 @@ dir = 8 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "bDU" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -26389,11 +26097,11 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "bDZ" = ( /obj/machinery/recharge_station, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "bEb" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/alarm{ @@ -26401,7 +26109,7 @@ pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "bEd" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 1 @@ -26410,14 +26118,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "bEe" = ( /obj/structure/ladder{ pixel_y = 3 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "bEf" = ( /obj/structure/railing/grey{ color = "yellow" @@ -26427,11 +26135,11 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "bEg" = ( /obj/effect/catwalk_plated/white, /turf/space, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "bEh" = ( /obj/item/radio/intercom{ dir = 8; @@ -26440,17 +26148,17 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bEi" = ( /obj/structure/sign/warning/vacuum, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "bEl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "bEp" = ( /obj/structure/table/woodentable, /obj/machinery/recharger, @@ -26460,7 +26168,7 @@ network = list("Domicile") }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bEr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -26477,21 +26185,26 @@ /obj/effect/floor_decal/corner/white/border{ dir = 4 }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 25; + name = "E-fire alarm" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "bEt" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "bEw" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "bEx" = ( /obj/structure/table/standard, /obj/machinery/newscaster{ @@ -26504,7 +26217,7 @@ pixel_x = -3 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "bEy" = ( /obj/item/clothing/suit/space/void/atmos/alt{ pixel_x = -6 @@ -26538,7 +26251,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "bEz" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -26565,7 +26278,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bEE" = ( /obj/item/capture_crystal, /obj/structure/table/standard, @@ -26574,7 +26287,7 @@ pixel_x = 2 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "bEF" = ( /obj/structure/cable/white{ d1 = 4; @@ -26585,33 +26298,15 @@ layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "bEJ" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarChamber1) +/area/maintenance/Deck2_Cargo_AftStarChamber1) "bEM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Holodeck) -"bEP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -3 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/holoposter{ - dir = 4; - pixel_x = 32 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/crew_quarters/Holodeck) "bFa" = ( /obj/machinery/alarm{ dir = 1; @@ -26623,29 +26318,84 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "bFb" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 +/obj/structure/table/rack/shelf, +/obj/item/storage/box/donkpockets{ + pixel_x = 7; + pixel_y = -7 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 +/obj/item/storage/box/donkpockets/berry{ + pixel_x = 7; + pixel_y = -3 }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/obj/item/storage/box/donkpockets/gondola{ + pixel_x = -9; + pixel_y = -7 + }, +/obj/item/storage/box/donkpockets/honk{ + pixel_x = -9; + pixel_y = -3 + }, +/obj/item/storage/box/donkpockets/pizza{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/storage/box/donkpockets/spicy{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/storage/box/donkpockets/teriyaki{ + pixel_y = 5 + }, +/obj/item/storage/box/donkpockets/teriyaki{ + pixel_y = 5 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 7; + pixel_y = -7 + }, +/obj/item/storage/box/donkpockets/gondola{ + pixel_x = -9; + pixel_y = -7 + }, +/obj/item/storage/box/donkpockets/berry{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/storage/box/donkpockets/honk{ + pixel_x = -9; + pixel_y = -3 + }, +/obj/item/storage/box/donkpockets/pizza{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/storage/box/donkpockets/spicy{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/storage/box/donkpockets/teriyaki{ + pixel_y = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/Chomp_Kitchen) "bFh" = ( /obj/structure/girder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "bFi" = ( /obj/effect/floor_decal/industrial/danger{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "bFk" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "bFm" = ( /obj/structure/railing/grey{ color = "yellow" @@ -26655,7 +26405,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "bFn" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -26673,23 +26423,23 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bFv" = ( /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bFw" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "bFy" = ( /obj/structure/window/reinforced{ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bFD" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "bFF" = ( /obj/structure/table/standard, /obj/item/form_printer{ @@ -26703,7 +26453,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "bFG" = ( /obj/machinery/deployable/barrier, /obj/effect/floor_decal/borderfloorblack{ @@ -26716,14 +26466,14 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bFH" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "bFK" = ( /obj/item/stool/padded, /obj/effect/floor_decal/borderfloorwhite{ @@ -26733,13 +26483,13 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "bFM" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "bFN" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "bFP" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -26755,7 +26505,7 @@ id = "sc-WTsecprocessing" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "bFQ" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = -4; @@ -26769,14 +26519,14 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "bFR" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "bFV" = ( /obj/machinery/bookbinder, /obj/machinery/newscaster{ @@ -26784,16 +26534,16 @@ pixel_y = -30 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bFW" = ( /obj/structure/lattice, /turf/space, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "bGe" = ( /obj/machinery/space_heater, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "bGg" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -26802,7 +26552,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "bGk" = ( /obj/structure/cable/green{ d1 = 1; @@ -26819,11 +26569,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "bGl" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_StarChamber1) +/area/maintenance/Deck2_Cargo_StarChamber1) "bGm" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -26837,7 +26587,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "bGn" = ( /obj/machinery/firealarm{ dir = 4; @@ -26867,7 +26617,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "bGs" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/cable{ @@ -26876,7 +26626,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "bGt" = ( /obj/machinery/portable_atmospherics/canister/phoron, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -26886,7 +26636,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "bGw" = ( /obj/machinery/alarm{ dir = 1; @@ -26894,7 +26644,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "bGz" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 10 @@ -26903,7 +26653,7 @@ dir = 9 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "bGA" = ( /obj/structure/cable/green{ d1 = 1; @@ -26913,11 +26663,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bGI" = ( /obj/structure/sign/warning/nosmoking_1, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "bGK" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -26926,7 +26676,7 @@ dir = 8 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bGL" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -26943,7 +26693,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "bGT" = ( /obj/item/storage/box/empslite{ pixel_y = -4; @@ -26966,7 +26716,7 @@ pixel_x = 11 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "bGZ" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -26983,7 +26733,7 @@ name = "Lockdown Gate" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortChamber1) +/area/maintenance/Deck2_Medical_AftPortChamber1) "bHc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -26998,7 +26748,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "bHd" = ( /obj/machinery/light{ dir = 1; @@ -27013,11 +26763,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "bHf" = ( /obj/machinery/computer/guestpass{ pixel_y = 19; @@ -27035,7 +26785,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "bHh" = ( /obj/machinery/light{ dir = 8; @@ -27047,14 +26797,14 @@ pixel_x = -22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bHo" = ( /obj/structure/stairs/spawner/south, /obj/structure/window/reinforced{ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bHr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -27066,7 +26816,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "bHt" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/milspec/box, @@ -27076,7 +26826,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "bHu" = ( /obj/structure/table/rack/shelf/steel, /obj/item/clothing/suit/storage/hazardvest/green{ @@ -27141,19 +26891,19 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "bHw" = ( /obj/structure/table/rack/steel, /obj/random/maintenance/misc, /obj/random/maintenance/misc, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "bHx" = ( /obj/structure/table/reinforced, /obj/item/forensics/sample_kit, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "bHz" = ( /obj/structure/table/rack/holorack, /obj/item/circuitboard/candymachine{ @@ -27203,7 +26953,7 @@ pixel_y = -9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "bHA" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 4 @@ -27213,7 +26963,7 @@ /obj/structure/curtain/open/shower/security, /obj/structure/window/reinforced/tinted/frosted, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "bHC" = ( /obj/structure/sink{ pixel_y = 16; @@ -27227,10 +26977,10 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "bHD" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "bHE" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -27247,7 +26997,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "bHG" = ( /obj/machinery/power/apc{ dir = 1; @@ -27259,7 +27009,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor2) +/area/maintenance/Deck2_Security_AftPortCorridor2) "bHH" = ( /obj/structure/cable/green{ d1 = 1; @@ -27277,14 +27027,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "bHL" = ( /obj/structure/table/reinforced, /obj/item/clipboard, /obj/item/stamp/hop, /obj/item/clothing/glasses/omnihud, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "bHQ" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -27303,11 +27053,11 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "bHR" = ( /obj/structure/lattice, /turf/space, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "bHV" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = -36; @@ -27320,7 +27070,7 @@ dir = 5 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "bHZ" = ( /obj/machinery/newscaster{ name = "1W-newscaster"; @@ -27338,25 +27088,7 @@ pixel_x = 7 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) -"bIl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/rnd/Circuitry_Den) "bIm" = ( /obj/machinery/power/apc{ dir = 8; @@ -27387,7 +27119,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "bIp" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 1 @@ -27400,10 +27132,10 @@ icon_state = "1-2" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "bIq" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "bIr" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -27412,7 +27144,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "bIw" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -27429,15 +27161,15 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "bIy" = ( /obj/machinery/shield_diffuser, /obj/effect/catwalk_plated/white, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "bIz" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "bIH" = ( /obj/structure/table/standard, /obj/item/autopsy_scanner{ @@ -27452,7 +27184,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "bIJ" = ( /obj/structure/table/rack/steel, /obj/fiftyspawner/plastic{ @@ -27478,7 +27210,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "bIL" = ( /obj/machinery/sleep_console{ dir = 1 @@ -27492,11 +27224,11 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bIM" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "bIO" = ( /obj/machinery/body_scanconsole{ dir = 4 @@ -27504,17 +27236,17 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bIQ" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "bIX" = ( /obj/structure/bed/chair/sofa/corner/brown{ dir = 8 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "bIY" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -27537,7 +27269,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bIZ" = ( /obj/effect/floor_decal/industrial/stand_clear/blue{ dir = 8 @@ -27546,7 +27278,7 @@ dir = 4 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bJa" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -27574,7 +27306,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "bJb" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Cargo Subgrid"; @@ -27591,7 +27323,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "bJc" = ( /obj/effect/floor_decal/industrial/stand_clear/blue{ dir = 4 @@ -27600,7 +27332,7 @@ dir = 8 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bJd" = ( /obj/machinery/alarm{ dir = 8; @@ -27608,13 +27340,13 @@ }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor2) +/area/maintenance/Deck2_Security_AftPortCorridor2) "bJe" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "bJj" = ( /obj/structure/closet/secure_closet/security, /obj/item/tool/crowbar/red, @@ -27639,12 +27371,12 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "bJm" = ( /obj/structure/closet/crate/rcd, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "bJn" = ( /obj/structure/closet/toolcloset, /obj/item/storage/box/lights/mixed, @@ -27656,7 +27388,7 @@ /obj/item/cell/high, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "bJo" = ( /obj/structure/table/steel, /obj/item/toy/figure/cargotech{ @@ -27678,7 +27410,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "bJq" = ( /obj/structure/bed/chair/sofa/left/black{ dir = 4 @@ -27698,17 +27430,17 @@ name = "1W-light fixture" }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bJs" = ( /obj/effect/floor_decal/carpet{ dir = 1 }, /obj/structure/table/bench/sifwooden/padded, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bJF" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_1) "bJG" = ( /obj/structure/sign/greencross{ name = "Medical Pod" @@ -27725,11 +27457,30 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "bJS" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_2) +"bJT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "bJY" = ( /obj/structure/window/basic{ dir = 4 @@ -27755,18 +27506,18 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "bJZ" = ( /obj/structure/table/bench/sifwooden, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "bKb" = ( /obj/structure/ladder{ pixel_y = 3 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Security_PortCorridor1) +/area/maintenance/Deck2_Security_PortCorridor1) "bKd" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -27794,7 +27545,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "bKf" = ( /obj/structure/table/steel, /obj/item/deck/cards, @@ -27809,7 +27560,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "bKg" = ( /obj/structure/table/wooden_reinforced, /obj/item/handcuffs, @@ -27820,7 +27571,7 @@ pixel_y = 2 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "bKk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -27837,7 +27588,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "bKm" = ( /obj/machinery/sleep_console{ dir = 1 @@ -27851,7 +27602,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bKn" = ( /obj/item/stool/padded{ dir = 1 @@ -27863,7 +27614,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "bKp" = ( /obj/machinery/conveyor_switch/oneway{ id = "SC-CBdisposals"; @@ -27871,18 +27622,18 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "bKs" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "bKt" = ( /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bKu" = ( /obj/effect/floor_decal/industrial/stand_clear/blue{ dir = 1 @@ -27894,11 +27645,11 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "bKF" = ( /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bKI" = ( /obj/effect/floor_decal/carpet{ dir = 4 @@ -27911,33 +27662,33 @@ }, /obj/structure/table/bench/sifwooden/padded, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bKJ" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bKK" = ( /obj/machinery/ai_status_display, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bKM" = ( /obj/effect/floor_decal/shuttle/loading/yellow{ dir = 1 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "bKN" = ( /obj/structure/dispenser/oxygen, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "bKO" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "bKR" = ( /obj/structure/closet/secure_closet/detective, /obj/item/reagent_containers/spray/pepper, @@ -27947,13 +27698,13 @@ }, /obj/item/gun/energy/stunrevolver/vintage, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "bKT" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "bKU" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 9 @@ -27961,7 +27712,7 @@ /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "bKX" = ( /obj/structure/cable/green{ d1 = 2; @@ -27991,12 +27742,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "bKY" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "bLa" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -28016,7 +27767,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "bLb" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -28038,11 +27789,11 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Corridor) +/area/maintenance/Deck2_Science_ForPort_Corridor) "bLg" = ( /obj/structure/sign/warning/evac, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "bLh" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -28070,7 +27821,7 @@ /obj/machinery/deployable/barrier, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "bLo" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -28087,13 +27838,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "bLq" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, /turf/simulated/floor/tiled/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "bLr" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 6 @@ -28106,11 +27857,11 @@ /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "bLs" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarChamber1) +/area/maintenance/Deck2_Cargo_AftStarChamber1) "bLt" = ( /obj/structure/bed/chair/sofa/right/black{ dir = 1 @@ -28120,10 +27871,10 @@ pixel_y = -22 }, /turf/simulated/floor/wood/alt/panel/broken/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "bLu" = ( /turf/simulated/floor/tiled/techmaint/airless, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "bLC" = ( /obj/structure/bed/chair/sofa/left/brown{ dir = 4 @@ -28138,7 +27889,7 @@ dir = 9 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "bLF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -28150,10 +27901,10 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "bLI" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bLN" = ( /turf/simulated/wall/rthull, /area/shuttle/escape_pod12/station) @@ -28168,7 +27919,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "bLQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -28177,7 +27928,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) +/area/maintenance/Deck2_Science_ForCorridor1) "bLV" = ( /obj/machinery/alarm{ dir = 4; @@ -28190,7 +27941,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "bLW" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 @@ -28204,13 +27955,13 @@ "bLX" = ( /obj/structure/sign/warning/evac, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "bLY" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "bLZ" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -28234,13 +27985,13 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "bMc" = ( /obj/structure/bed/chair/sofa/orange{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "bMf" = ( /obj/machinery/power/apc{ dir = 1; @@ -28277,7 +28028,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "bMh" = ( /obj/effect/floor_decal/shuttle/loading/yellow{ dir = 1 @@ -28288,7 +28039,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "bMj" = ( /obj/machinery/vr_sleeper{ dir = 8 @@ -28301,7 +28052,7 @@ pixel_y = -22 }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "bMl" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -28325,7 +28076,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "bMn" = ( /obj/structure/cable{ d1 = 4; @@ -28355,11 +28106,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "bMp" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "bMq" = ( /obj/item/radio/intercom{ dir = 8; @@ -28373,7 +28124,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "bMr" = ( /obj/structure/window/reinforced{ dir = 8 @@ -28390,11 +28141,11 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "bMs" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) +/area/maintenance/Deck2_Science_ForCorridor1) "bMt" = ( /obj/machinery/alarm{ dir = 4; @@ -28407,7 +28158,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "bMu" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -28425,20 +28176,25 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "bMw" = ( /obj/machinery/light{ name = "1S-light fixture" }, +/obj/machinery/light/small/neon/booze1{ + dir = 1; + pixel_x = -1; + pixel_y = -29 + }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "bMy" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "bMA" = ( /obj/structure/table/rack, /obj/item/gun/energy/laser{ @@ -28457,7 +28213,7 @@ pixel_x = -4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "bMC" = ( /obj/structure/railing{ dir = 4 @@ -28466,13 +28222,13 @@ name = "1S-light fixture" }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "bMK" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "bMS" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -28496,7 +28252,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "bMU" = ( /obj/structure/bed/chair/sofa/right/brown, /obj/machinery/newscaster{ @@ -28504,17 +28260,17 @@ pixel_y = 28 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "bMV" = ( /obj/random/trash_pile, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber1) +/area/maintenance/Deck2_Engineering_PortChamber1) "bMW" = ( /obj/machinery/portable_atmospherics/canister, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "bNb" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -28531,7 +28287,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "bNj" = ( /obj/structure/bed/chair/backed_red{ dir = 4 @@ -28547,7 +28303,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "bNn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28560,7 +28316,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "bNo" = ( /obj/effect/floor_decal/carpet{ dir = 8 @@ -28571,16 +28327,13 @@ /obj/effect/floor_decal/carpet{ dir = 9 }, -/obj/machinery/alarm{ - pixel_y = 22 - }, /obj/item/radio/intercom{ dir = 8; name = "1W-Station Intercom (General)"; pixel_x = -22 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bNp" = ( /obj/effect/floor_decal/carpet{ dir = 1 @@ -28596,7 +28349,7 @@ pixel_y = 32 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bNt" = ( /obj/structure/cable/green{ d1 = 4; @@ -28610,7 +28363,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "bNu" = ( /obj/structure/window/reinforced, /obj/machinery/alarm{ @@ -28620,20 +28373,20 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "bNv" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/shuttle/blue{ - pixel_x = -1; - pixel_y = 1 +/obj/structure/table/marble, +/obj/item/material/knife/butch{ + pixel_x = 3; + pixel_y = -2 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/item/material/kitchen/rollingpin{ + pixel_x = -2; + pixel_y = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "bNB" = ( /obj/item/gps{ pixel_x = 3; @@ -28711,7 +28464,7 @@ frequency = 1380 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "bNF" = ( /obj/structure/table/rack/shelf/steel, /obj/item/stack/cable_coil/random{ @@ -28739,7 +28492,7 @@ pixel_y = -5 }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "bNG" = ( /obj/machinery/light{ dir = 8; @@ -28748,10 +28501,10 @@ }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "bNH" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "bNJ" = ( /obj/machinery/door/blast/regular{ id = "SC-MSchapel_two"; @@ -28759,7 +28512,7 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "bNL" = ( /obj/effect/floor_decal/industrial/stand_clear/blue, /obj/structure/cable/green{ @@ -28776,7 +28529,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "bNM" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -28802,21 +28555,21 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "bNN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "bNO" = ( /obj/machinery/magnetic_module, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "bNQ" = ( /obj/item/stool/padded, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "bNR" = ( /obj/item/stool/padded, /obj/machinery/light{ @@ -28826,7 +28579,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "bNS" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -28843,7 +28596,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "bNT" = ( /obj/machinery/light{ dir = 8; @@ -28857,7 +28610,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "bNU" = ( /obj/structure/cable/green{ d1 = 4; @@ -28874,7 +28627,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "bNV" = ( /obj/structure/cable/green{ d1 = 4; @@ -28897,7 +28650,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "bNW" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -28921,7 +28674,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "bNX" = ( /obj/machinery/alarm{ dir = 1; @@ -28938,7 +28691,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "bNY" = ( /obj/structure/table/steel_reinforced, /obj/item/storage/fancy/cigarettes/carcinomas{ @@ -28947,7 +28700,7 @@ }, /obj/item/flame/lighter/random, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "bNZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -28955,14 +28708,16 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/borderfloor{ +/obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/purple/bordercorner{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_2) "bOa" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, @@ -28971,7 +28726,7 @@ dir = 4 }, /turf/space, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "bOb" = ( /obj/structure/window/basic{ dir = 4 @@ -28980,16 +28735,16 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "bOd" = ( /obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bOe" = ( /obj/structure/table/woodentable, /obj/item/clothing/glasses/regular/hipster, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bOg" = ( /obj/machinery/button/remote/blast_door{ id = "sc-GCeastshuttlebay"; @@ -29008,7 +28763,7 @@ icon_state = "1-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "bOj" = ( /obj/machinery/atm{ name = "1N-Automatic Teller Machine"; @@ -29021,17 +28776,17 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "bOk" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "bOl" = ( /obj/item/gun/launcher/confetti_cannon/fake_shottie{ layer = 2.5 }, /obj/structure/girder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bOq" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/foam, @@ -29041,17 +28796,17 @@ pixel_y = -25 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bOr" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bOt" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bOx" = ( /obj/machinery/light/floortube{ pixel_y = -2 @@ -29059,18 +28814,18 @@ /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/red/border{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "bOy" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "bOz" = ( /obj/structure/table/steel, /obj/effect/floor_decal/borderfloorblack{ @@ -29080,7 +28835,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "bOB" = ( /obj/random/trash, /obj/item/radio/intercom{ @@ -29089,7 +28844,7 @@ pixel_y = 22 }, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "bOC" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -29107,7 +28862,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "bOF" = ( /obj/machinery/photocopier/faxmachine{ department = "Medical Reception"; @@ -29121,7 +28876,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "bOH" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, @@ -29129,7 +28884,7 @@ icon = 'icons/turf/shuttle_alien_blue.dmi' }, /turf/space, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "bOK" = ( /obj/structure/bed/chair/sofa/corner/black{ dir = 1 @@ -29147,31 +28902,14 @@ pixel_y = -4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bOL" = ( /obj/structure/bed/chair/sofa/black{ dir = 1 }, /obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/Vault_Reception) -"bOQ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/hatch, -/obj/structure/grille, -/obj/structure/window/titanium/full, -/obj/structure/window/titanium, -/obj/structure/window/titanium{ - dir = 4 - }, -/obj/structure/window/titanium{ - dir = 1 - }, -/obj/structure/window/titanium{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_2) +/area/bridge/Vault_Reception) "bOY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -29188,7 +28926,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Corridor) +/area/maintenance/Deck2_Science_ForPort_Corridor) "bPd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -29205,7 +28943,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bPg" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -29214,7 +28952,7 @@ dir = 4 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bPj" = ( /obj/structure/table/hardwoodtable, /obj/item/storage/box/characters{ @@ -29230,7 +28968,7 @@ pixel_x = 7 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bPl" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -29242,7 +28980,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "bPp" = ( /obj/machinery/alarm{ dir = 8; @@ -29256,7 +28994,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "bPs" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 @@ -29280,7 +29018,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "bPu" = ( /obj/machinery/power/apc{ dir = 4; @@ -29301,11 +29039,13 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "bPx" = ( /obj/random/junk, +/obj/random/trash_pile, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "bPy" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -29313,7 +29053,7 @@ id = "sc-WTsurgeryone" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "bPz" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -29334,7 +29074,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "bPA" = ( /obj/structure/fireaxecabinet{ name = "1E-fire axe cabinet"; @@ -29347,7 +29087,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "bPC" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -29355,7 +29095,7 @@ id = "sc-WTsurgerytwo" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "bPG" = ( /obj/item/radio/intercom/department/medbay{ dir = 1; @@ -29383,7 +29123,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "bPI" = ( /obj/item/target/syndicate{ pixel_x = -6 @@ -29413,10 +29153,10 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "bPK" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "bPL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -29427,7 +29167,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "bPM" = ( /obj/structure/table/standard, /obj/item/storage/box/gloves{ @@ -29449,18 +29189,18 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "bPN" = ( /obj/structure/urinal{ pixel_y = 28 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "bPP" = ( /obj/structure/table/reinforced, /obj/item/toy/eight_ball, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "bPU" = ( /obj/effect/floor_decal/carpet{ dir = 4 @@ -29473,7 +29213,7 @@ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bPV" = ( /obj/machinery/firealarm{ dir = 4; @@ -29489,11 +29229,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "bPZ" = ( /obj/structure/sign/warning/lethal_turrets, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "bQa" = ( /obj/structure/table/steel_reinforced, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -29512,7 +29252,7 @@ id = "sc-GCvaulreception" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bQb" = ( /obj/machinery/computer/secure_data, /obj/effect/floor_decal/borderfloorblack{ @@ -29522,11 +29262,11 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bQd" = ( /obj/structure/sign/warning/vacuum, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "bQe" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -29545,13 +29285,13 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "bQf" = ( /obj/structure/target_stake, /obj/effect/floor_decal/industrial/hatch/red, /obj/item/target/syndicate, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "bQl" = ( /obj/machinery/light{ dir = 4; @@ -29564,17 +29304,17 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "bQn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bQq" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "bQr" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "bQw" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/borderfloorblack{ @@ -29591,7 +29331,7 @@ /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "bQy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorblack{ @@ -29601,10 +29341,21 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "bQz" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) +"bQG" = ( +/obj/structure/lattice, +/obj/effect/catwalk_plated/techmaint, +/obj/random/junk, +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_PortChamber2) "bQH" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -29625,18 +29376,18 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "bQK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "bQM" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "bQN" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "bQO" = ( /obj/structure/cable/green{ d1 = 1; @@ -29653,26 +29404,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "bQP" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) -"bQY" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/harbor/Aft_2_Deck_Airlock_Access) "bQZ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -29685,7 +29421,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "bRa" = ( /obj/machinery/alarm{ dir = 1; @@ -29694,10 +29430,10 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/green/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "bRb" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "bRf" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -29706,7 +29442,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "bRh" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -29727,7 +29463,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "bRi" = ( /obj/machinery/appliance/cooker/grill, /obj/item/radio/intercom{ @@ -29736,7 +29472,7 @@ pixel_y = 22 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "bRk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -29753,7 +29489,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarCorridor1) +/area/maintenance/Deck2_Engineering_ForStarCorridor1) "bRl" = ( /obj/item/implanter/compliance{ pixel_y = 4 @@ -29764,7 +29500,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "bRn" = ( /obj/structure/ladder{ pixel_y = 3 @@ -29775,14 +29511,14 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor2) +/area/maintenance/Deck2_Security_AftPortCorridor2) "bRo" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor2) +/area/maintenance/Deck2_Security_AftPortCorridor2) "bRp" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -29796,7 +29532,7 @@ pixel_y = 3 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bRq" = ( /obj/structure/cable/white{ d1 = 4; @@ -29804,7 +29540,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bRs" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -29829,7 +29565,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bRt" = ( /obj/structure/table/reinforced, /obj/item/storage/box/characters{ @@ -29842,7 +29578,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "bRu" = ( /obj/machinery/chem_master/condimaster{ name = "CondiMaster Neo" @@ -29852,7 +29588,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "bRw" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -29881,7 +29617,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "bRz" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -29897,7 +29633,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "bRA" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -29906,7 +29642,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "bRD" = ( /obj/structure/cable/green{ d1 = 1; @@ -29916,10 +29652,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "bRG" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "bRJ" = ( /obj/item/stool/padded{ dir = 4 @@ -29931,23 +29667,23 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "bRK" = ( /obj/structure/table/woodentable, /obj/item/paicard, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "bRL" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "bRN" = ( /obj/effect/floor_decal/milspec/cargo_arrow, /obj/effect/floor_decal/milspec/box, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "bRO" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -29955,7 +29691,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "bRQ" = ( /obj/machinery/button/remote/blast_door{ dir = 4; @@ -29987,7 +29723,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "bRU" = ( /obj/effect/floor_decal/carpet, /obj/effect/floor_decal/carpet{ @@ -29997,13 +29733,13 @@ dir = 6 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bRX" = ( /obj/structure/bookcase{ name = "bookcase (Non-Fiction)" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bSc" = ( /obj/structure/cable{ d2 = 4; @@ -30012,7 +29748,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/power/smes/batteryrack, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "bSd" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -30023,21 +29759,21 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "bSf" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "bSh" = ( /obj/machinery/door/window/brigdoor/northleft{ layer = 2.9 }, /obj/effect/floor_decal/industrial/outline/cut_corners/red, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "bSm" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -30046,7 +29782,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "bSo" = ( /obj/effect/floor_decal/carpet/blue{ dir = 1 @@ -30067,12 +29803,12 @@ dir = 5 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "bSq" = ( /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "bSt" = ( /obj/structure/table/reinforced, /obj/item/modular_computer/laptop/preset/custom_loadout/standard{ @@ -30082,7 +29818,7 @@ dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "bSu" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -30091,7 +29827,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "bSv" = ( /obj/structure/cable{ d1 = 1; @@ -30109,7 +29845,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "bSx" = ( /obj/structure/table/glass, /obj/item/sticky_pad/random{ @@ -30131,7 +29867,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "bSB" = ( /obj/structure/closet/emergsuit_wall{ dir = 1; @@ -30139,12 +29875,12 @@ name = "1S-emergency suit storage" }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "bSC" = ( /obj/structure/table/sifwoodentable, /obj/item/toy/eight_ball, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "bSD" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -30158,22 +29894,8 @@ layer = 2.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bSI" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - name = "N-light switch"; - pixel_x = 12; - pixel_y = 27 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 }, @@ -30181,10 +29903,10 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "bSJ" = ( /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bSL" = ( /obj/machinery/light{ dir = 1; @@ -30198,7 +29920,7 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "bSM" = ( /obj/structure/table/steel_reinforced, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -30214,7 +29936,7 @@ id = "sc-GCvaulreception" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bSN" = ( /obj/structure/bed/chair/bay/chair/padded/red{ dir = 8 @@ -30226,7 +29948,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bSO" = ( /obj/machinery/power/apc{ dir = 1; @@ -30243,7 +29965,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "bSQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -30254,7 +29976,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "bSR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -30263,11 +29985,16 @@ name = "blobstart" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bSS" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_StarCorridor1) +/area/maintenance/Deck2_Security_StarCorridor1) +"bSU" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "bSV" = ( /obj/structure/cryofeed{ dir = 4 @@ -30283,7 +30010,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "bTe" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -30296,19 +30023,30 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "bTf" = ( /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "bTh" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) +"bTi" = ( +/obj/structure/ladder/updown{ + pixel_y = 3 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/sign/small/warning/emerg_only{ + desc = "Ladder for emergency use only"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/Deck2_Aft_Corridor) "bTk" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "bTo" = ( /obj/structure/window/reinforced{ dir = 1 @@ -30343,11 +30081,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "bTu" = ( /obj/structure/bed/chair, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "bTv" = ( /obj/machinery/pointdefense{ id_tag = "PD Primary" @@ -30359,14 +30097,14 @@ icon_state = "0-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "bTw" = ( /obj/structure/table/reinforced, /obj/machinery/computer/med_data/laptop{ pixel_y = 16 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "bTx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -30380,12 +30118,12 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "bTz" = ( /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "bTD" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/item/radio/intercom{ @@ -30397,7 +30135,7 @@ emagged = 1 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "bTG" = ( /obj/machinery/iv_drip, /obj/machinery/light{ @@ -30411,10 +30149,10 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "bTH" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "bTJ" = ( /obj/machinery/computer/operating{ dir = 8 @@ -30422,7 +30160,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "bTO" = ( /obj/machinery/optable, /obj/machinery/oxygen_pump/anesthetic{ @@ -30432,7 +30170,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "bTQ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -30462,7 +30200,7 @@ layer = 3.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "bTS" = ( /obj/machinery/light{ dir = 8; @@ -30476,7 +30214,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "bTU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -30486,17 +30224,17 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "bTV" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "bUe" = ( /obj/effect/catwalk_plated/white, /turf/simulated/floor/airless, /area/space) "bUf" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber1) +/area/maintenance/Deck2_Engineering_ForStarChamber1) "bUg" = ( /obj/machinery/light{ dir = 8; @@ -30507,7 +30245,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "bUm" = ( /obj/structure/table/rack/shelf/steel, /obj/item/ammo_magazine/clip/sks/ap{ @@ -30583,7 +30321,7 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "bUn" = ( /obj/structure/cable{ d1 = 2; @@ -30591,10 +30329,10 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "bUo" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor2) +/area/maintenance/Deck2_Security_AftPortCorridor2) "bUq" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -30621,7 +30359,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "bUr" = ( /obj/machinery/power/apc{ dir = 8; @@ -30652,7 +30390,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "bUs" = ( /obj/structure/table/rack{ dir = 8; @@ -30684,7 +30422,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "bUt" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -30693,14 +30431,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "bUu" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "bUz" = ( /obj/structure/grille, /obj/structure/shuttle/window, @@ -30718,7 +30456,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "bUL" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -30728,23 +30466,23 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "bUN" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/milspec/box, /obj/mecha/combat/durand/old, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "bUP" = ( /obj/structure/ladder{ pixel_y = 3 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "bUQ" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "bUS" = ( /obj/machinery/power/apc{ dir = 4; @@ -30779,22 +30517,22 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "bUT" = ( /obj/structure/closet/bombcloset, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "bUU" = ( /obj/machinery/autolathe/armory, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "bUY" = ( /obj/structure/bed/chair/backed_red, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "bVb" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "bVd" = ( /obj/structure/table/steel, /obj/item/integrated_electronics/debugger{ @@ -30804,15 +30542,15 @@ pixel_x = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "bVe" = ( /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "bVh" = ( /obj/random/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "bVk" = ( /obj/effect/floor_decal/industrial/loading, /obj/machinery/power/apc{ @@ -30833,7 +30571,7 @@ location = "For_ToolStorage" }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "bVl" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -30853,7 +30591,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "bVs" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -30862,7 +30600,7 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/sec, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "bVt" = ( /obj/structure/cable/green{ d1 = 1; @@ -30889,7 +30627,7 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "bVv" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 10 @@ -30898,13 +30636,13 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "bVw" = ( /obj/structure/bookcase{ name = "bookcase (Reference)" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bVx" = ( /obj/machinery/alarm{ dir = 1; @@ -30918,13 +30656,13 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "bVy" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "bVz" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -30946,7 +30684,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bVA" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -30961,7 +30699,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "bVB" = ( /obj/structure/table/wooden_reinforced, /obj/item/flashlight/lamp/green{ @@ -30972,40 +30710,39 @@ pixel_y = -22 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "bVC" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 }, /obj/effect/catwalk_plated, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "bVF" = ( /obj/machinery/alarm{ pixel_y = 25 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber1) +/area/maintenance/Deck2_Engineering_PortChamber1) "bVH" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, /obj/effect/floor_decal/corner/lightgrey/bordercorner{ dir = 8 }, +/obj/machinery/light{ + name = "1S-light fixture" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "bVI" = ( /obj/machinery/ai_status_display{ pixel_y = -32; name = "1S-AI display" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "bVJ" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -31042,7 +30779,7 @@ id = "sc-GCvaulreception" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bVN" = ( /obj/structure/table/glass, /obj/item/mass_spectrometer{ @@ -31053,7 +30790,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "bVP" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -31082,11 +30819,11 @@ network = list("Domicile") }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bVT" = ( /obj/effect/floor_decal/chapel, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "bVW" = ( /obj/structure/cable/green{ d1 = 4; @@ -31105,7 +30842,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_PortCorridor1) +/area/maintenance/Deck2_Security_PortCorridor1) "bVX" = ( /obj/structure/cable/green{ d1 = 4; @@ -31114,7 +30851,7 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bWd" = ( /obj/structure/table/woodentable, /obj/item/storage/briefcase/bookbag{ @@ -31127,7 +30864,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bWf" = ( /obj/machinery/button/remote/blast_door{ dir = 1; @@ -31149,7 +30886,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bWi" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -31159,7 +30896,7 @@ c_tag = "D2-Sec-Vault Office1" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bWj" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -31175,7 +30912,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bWk" = ( /obj/structure/cable/green{ d1 = 1; @@ -31189,7 +30926,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/blue/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "bWl" = ( /obj/item/stack/medical/advanced/bruise_pack{ pixel_y = -6; @@ -31223,7 +30960,7 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "bWm" = ( /obj/structure/table/standard, /obj/item/surgical/surgicaldrill{ @@ -31239,7 +30976,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "bWn" = ( /obj/structure/table/standard, /obj/item/surgical/bonesetter{ @@ -31253,7 +30990,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "bWp" = ( /obj/structure/closet/secure_closet/detective, /obj/item/reagent_containers/spray/pepper, @@ -31263,7 +31000,7 @@ }, /obj/item/gun/energy/stunrevolver/detective, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "bWq" = ( /obj/structure/closet/secure_closet/medical1, /obj/machinery/ai_status_display{ @@ -31273,7 +31010,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "bWr" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -31297,7 +31034,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "bWt" = ( /obj/machinery/atmospherics/unary/freezer{ icon_state = "freezer"; @@ -31309,7 +31046,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "bWu" = ( /obj/structure/cable{ d1 = 1; @@ -31318,10 +31055,10 @@ }, /obj/effect/floor_decal/stairs, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "bWA" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bWB" = ( /obj/machinery/newscaster/security_unit{ pixel_y = 28 @@ -31333,7 +31070,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "bWD" = ( /obj/structure/window/reinforced, /obj/structure/table/rack/shelf, @@ -31440,13 +31177,13 @@ pixel_x = 10 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "bWG" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "bWL" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "bWM" = ( /obj/machinery/light/small{ dir = 1 @@ -31455,20 +31192,7 @@ /obj/random/maintenance/cargo, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) -"bWN" = ( -/obj/machinery/holoposter{ - dir = 1; - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "bWO" = ( /obj/item/stool/padded{ dir = 1 @@ -31480,7 +31204,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "bWR" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -31490,7 +31214,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bWU" = ( /obj/structure/bed/chair/sofa/corner/brown{ layer = 2.9 @@ -31499,13 +31223,13 @@ dir = 5 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bWW" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bWY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -31522,13 +31246,13 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "bWZ" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 4 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "bXb" = ( /obj/structure/bed/chair/sofa/right/blue, /obj/machinery/light{ @@ -31543,8 +31267,8 @@ /obj/effect/floor_decal/spline/fancy{ dir = 1 }, -/turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/turf/simulated/floor/carpet/sblucarpet, +/area/hallway/Star_Transit_Foyer) "bXf" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 @@ -31553,17 +31277,17 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "bXg" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "bXh" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "bXj" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/door/window/brigdoor/westright{ @@ -31577,7 +31301,7 @@ layer = 3.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "bXk" = ( /obj/structure/sign/securearea{ icon_state = "radiation_small"; @@ -31586,13 +31310,13 @@ pixel_x = -32 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "bXq" = ( /obj/structure/table/steel, /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "bXr" = ( /obj/machinery/alarm{ dir = 8; @@ -31603,18 +31327,12 @@ /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "bXz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -31622,9 +31340,16 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "bXA" = ( /obj/structure/table/sifwoodentable, /obj/machinery/light{ @@ -31632,8 +31357,12 @@ name = "1N-lighting fixture" }, /obj/item/starcaster_news, +/obj/machinery/light/small/neon/looktoucheat{ + pixel_y = 26; + pixel_x = 2 + }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "bXE" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -31654,7 +31383,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "bXF" = ( /obj/machinery/iv_drip, /obj/machinery/light{ @@ -31669,7 +31398,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "bXI" = ( /obj/machinery/newscaster{ pixel_x = -28; @@ -31682,7 +31411,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "bXK" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -31705,7 +31434,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForStar_Chamber) +/area/maintenance/Deck2_Security_ForStar_Chamber) "bXL" = ( /obj/structure/table/steel_reinforced, /obj/machinery/photocopier/faxmachine{ @@ -31723,12 +31452,12 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "bXM" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/powered/pump/huge, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "bXN" = ( /obj/structure/cable{ d1 = 1; @@ -31742,7 +31471,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "bXQ" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -31751,7 +31480,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "bXU" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -31770,7 +31499,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "bYa" = ( /obj/structure/table/woodentable, /obj/item/ammo_magazine/ammo_box/b12g/stunshell{ @@ -31793,7 +31522,7 @@ pixel_x = 8 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "bYc" = ( /obj/structure/bed/chair/comfy/brown{ dir = 4 @@ -31801,7 +31530,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "bYd" = ( /obj/effect/floor_decal/milspec/box, /obj/machinery/power/apc{ @@ -31820,7 +31549,7 @@ icon_state = "0-4" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "bYe" = ( /obj/machinery/computer/card, /obj/machinery/button/remote/blast_door{ @@ -31835,7 +31564,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "bYf" = ( /obj/machinery/light{ dir = 1; @@ -31848,7 +31577,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "bYh" = ( /obj/structure/lattice, /obj/structure/railing/grey, @@ -31862,7 +31591,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "bYk" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -31873,10 +31602,10 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "bYm" = ( /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "bYq" = ( /obj/item/radio/intercom{ name = "Station Intercom (General)"; @@ -31905,13 +31634,13 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "bYx" = ( /obj/structure/table/standard, /obj/random/maintenance/engineering, /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "bYB" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -31924,7 +31653,7 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "bYD" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -31936,11 +31665,11 @@ id_tag = "sc-DBWstall3" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "bYF" = ( /obj/structure/sign/warning/vacuum, /turf/simulated/wall, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "bYH" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 6 @@ -31953,7 +31682,7 @@ /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "bYI" = ( /obj/structure/cable/green{ d1 = 1; @@ -31972,7 +31701,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "bYL" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -31989,7 +31718,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "bYM" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -32002,7 +31731,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "bYN" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 4 @@ -32012,7 +31741,7 @@ pixel_x = -22 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "bYP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -32030,27 +31759,14 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) -"bYS" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/crew_quarters/Midnight_Kitchen) "bYU" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "bYV" = ( -/obj/machinery/light{ - dir = 4; - name = "1E-light fixture" - }, +/obj/machinery/vending/altevian, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "bYW" = ( /obj/structure/cable/white{ d1 = 1; @@ -32059,7 +31775,7 @@ }, /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "bYZ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -32076,13 +31792,13 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "bZb" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "bZf" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Medical Subgrid"; @@ -32101,7 +31817,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "bZi" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -32141,14 +31857,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "bZl" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bZm" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -32160,17 +31876,17 @@ req_one_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "bZo" = ( /obj/structure/disposalpipe/sortjunction/wildcard{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "bZx" = ( /mob/living/carbon/human/monkey/punpun, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "bZz" = ( /obj/structure/cable/green{ d1 = 4; @@ -32195,7 +31911,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "bZA" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -32208,7 +31924,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "bZD" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -32224,12 +31940,12 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarChamber1) +/area/maintenance/Deck2_Cargo_AftStarChamber1) "bZF" = ( /obj/machinery/shieldwallgen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "bZI" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/brflowers, @@ -32237,14 +31953,14 @@ dir = 1 }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bZK" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bZL" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/brflowers, @@ -32257,7 +31973,7 @@ }, /obj/machinery/light, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bZN" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/fullgrass, @@ -32269,7 +31985,7 @@ dir = 1 }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "bZR" = ( /obj/structure/closet/toolcloset, /obj/random/flashlight, @@ -32283,10 +31999,10 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "bZU" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "bZV" = ( /obj/structure/toilet{ dir = 4 @@ -32306,7 +32022,7 @@ specialfunctions = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "bZW" = ( /obj/machinery/turretid/stun{ control_area = "\improper Vault"; @@ -32314,7 +32030,7 @@ req_one_access = list(53) }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "bZY" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 1 @@ -32347,13 +32063,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "caa" = ( /obj/structure/closet/secure_closet/medical1, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "cad" = ( /obj/machinery/status_display{ pixel_x = -32; @@ -32371,7 +32087,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "caf" = ( /obj/structure/cable/green{ d1 = 1; @@ -32387,10 +32103,10 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "caj" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "cam" = ( /obj/effect/floor_decal/techfloor/orange, /obj/machinery/light/floortube{ @@ -32401,7 +32117,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "caq" = ( /obj/machinery/alarm{ dir = 4; @@ -32419,7 +32135,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "car" = ( /obj/machinery/light{ dir = 8; @@ -32433,16 +32149,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) -"cau" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/area/security/Brig) "cax" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -32457,7 +32164,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/crew_quarters/Library) "caz" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -32471,7 +32178,7 @@ dir = 4 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "caB" = ( /obj/structure/cable/green{ d1 = 4; @@ -32483,7 +32190,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "caC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -32498,7 +32205,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "caF" = ( /obj/structure/bed/chair/sofa/brown{ layer = 2.9 @@ -32507,7 +32214,7 @@ dir = 1 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "caJ" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -32533,7 +32240,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "caK" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -32560,12 +32267,12 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "caL" = ( /obj/effect/catwalk_plated/techfloor, /obj/machinery/computer/drone_control, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "caN" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -32579,10 +32286,10 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "caS" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "caW" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -32590,10 +32297,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/For_Medical_Post) -"caX" = ( -/turf/simulated/wall, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/medical/For_Medical_Post) "cbc" = ( /obj/structure/table/rack{ dir = 8; @@ -32620,13 +32324,13 @@ pixel_y = 25 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "cbe" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "cbj" = ( /obj/machinery/autolathe, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -32635,7 +32339,7 @@ pixel_y = 25 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "cbk" = ( /obj/machinery/alarm{ pixel_y = 25 @@ -32647,10 +32351,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "cbl" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "cbo" = ( /obj/structure/table/standard, /obj/item/surgical/hemostat{ @@ -32663,7 +32367,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "cbs" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -32687,7 +32391,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "cbu" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/atmospherics/portables_connector{ @@ -32701,7 +32405,7 @@ pixel_x = 25 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "cbw" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -32716,7 +32420,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "cbx" = ( /obj/structure/table/woodentable, /obj/item/storage/smolebrickcase, @@ -32727,13 +32431,13 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "cbA" = ( /obj/structure/table/gamblingtable, /obj/random/cash, /obj/random/maintenance/foodstuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "cbB" = ( /obj/structure/table/steel_reinforced, /obj/item/toy/rock{ @@ -32743,44 +32447,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "cbD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/obj/structure/flora/underwater/grass1, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_2) "cbG" = ( -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 8 - }, -/obj/machinery/door/airlock/angled_bay/double/glass/common{ - dir = 8; - name = "Library" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/turf/simulated/wall, +/area/crew_quarters/Chomp_Kitchen) "cbJ" = ( /obj/structure/girder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "cbN" = ( /obj/structure/bed/chair/sofa/right/brown{ dir = 8 @@ -32790,7 +32472,7 @@ pixel_x = 22 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "cbO" = ( /obj/structure/cable/green{ d1 = 4; @@ -32800,7 +32482,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cbP" = ( /obj/machinery/light/floortube{ dir = 1; @@ -32814,7 +32496,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cbQ" = ( /obj/machinery/light/floortube{ pixel_y = -2 @@ -32832,7 +32514,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cbT" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -32853,14 +32535,14 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cbV" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "cbZ" = ( /obj/structure/table/rack{ dir = 8; @@ -32919,7 +32601,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "ccb" = ( /obj/structure/table/steel_reinforced, /obj/item/storage/bag/sheetsnatcher{ @@ -32936,7 +32618,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "ccd" = ( /obj/machinery/alarm{ dir = 4; @@ -32952,7 +32634,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "ccf" = ( /obj/structure/cable/green{ d1 = 1; @@ -32970,7 +32652,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "ccg" = ( /obj/machinery/suit_cycler/engineering{ req_one_access = list(11,24); @@ -32978,7 +32660,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "ccm" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -32992,7 +32674,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "ccn" = ( /obj/structure/bed/chair/sofa/brown{ layer = 2.9 @@ -33002,13 +32684,16 @@ pixel_y = 25 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cco" = ( /obj/structure/bed/chair/sofa/corner/brown{ layer = 2.9 }, +/obj/structure/sign/poster/custom{ + dir = 4 + }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "ccq" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -33019,7 +32704,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/black/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "ccr" = ( /obj/structure/railing/grey{ color = "yellow" @@ -33029,7 +32714,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "ccs" = ( /obj/structure/table/rack{ dir = 8; @@ -33042,7 +32727,7 @@ /obj/random/maintenance/cargo, /obj/random/maintenance/engineering, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "cct" = ( /obj/machinery/power/apc{ dir = 8; @@ -33077,7 +32762,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "ccw" = ( /obj/structure/cable/white{ d1 = 1; @@ -33085,18 +32770,18 @@ icon_state = "1-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "ccy" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "ccz" = ( /obj/structure/closet/crate/wooden, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "ccA" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/red, /obj/structure/extinguisher_cabinet{ @@ -33106,7 +32791,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "ccB" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -33135,28 +32820,28 @@ id = "sc-GCsecmedpost" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "ccC" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "ccD" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "ccH" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = -4 }, /turf/simulated/wall/wood, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "ccI" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "ccM" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 @@ -33165,7 +32850,7 @@ dir = 8 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "ccN" = ( /obj/structure/table/woodentable, /obj/item/paicard, @@ -33178,7 +32863,7 @@ pixel_y = -28 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "ccP" = ( /obj/structure/bed/chair/backed_grey{ color = "grey" @@ -33187,18 +32872,18 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "ccQ" = ( /obj/structure/bed/chair/sofa/right/beige, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "ccS" = ( /obj/structure/table/woodentable, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "ccV" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -33215,7 +32900,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "ccW" = ( /obj/structure/ladder{ pixel_y = 3 @@ -33226,7 +32911,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "ccX" = ( /obj/machinery/alarm{ dir = 8; @@ -33239,7 +32924,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "cdk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -33248,10 +32933,10 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "cdl" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "cdm" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -33260,7 +32945,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "cdp" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -33271,15 +32956,15 @@ name = "Stairwell" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "cdq" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/shield_gen/external, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "cdr" = ( /turf/simulated/open, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "cds" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -33292,7 +32977,7 @@ req_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "cdt" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor/corner{ @@ -33303,7 +32988,7 @@ dir = 9 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "cdv" = ( /obj/machinery/power/rtg/reg/c, /obj/machinery/computer/security/telescreen/entertainment{ @@ -33315,7 +33000,7 @@ icon_state = "0-8" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "cdx" = ( /obj/machinery/light{ dir = 8; @@ -33341,7 +33026,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "cdy" = ( /obj/structure/cable/green{ d1 = 1; @@ -33354,11 +33039,11 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "cdz" = ( /obj/machinery/recycling/stamper, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "cdA" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/newscaster{ @@ -33366,7 +33051,7 @@ name = "1W-newscaster" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "cdC" = ( /obj/structure/table/marble, /obj/machinery/cash_register/civilian, @@ -33377,23 +33062,23 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "cdG" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "cdH" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "cdI" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "cdJ" = ( /obj/structure/sign/explosive, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "cdK" = ( /obj/structure/bed/chair/oldsofa/right{ dir = 8 @@ -33402,7 +33087,7 @@ dir = 5 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "cdL" = ( /obj/machinery/status_display{ pixel_x = -32; @@ -33415,7 +33100,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "cdM" = ( /obj/structure/mopbucket, /obj/item/mop, @@ -33431,7 +33116,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "cdN" = ( /obj/structure/cable/green{ d1 = 1; @@ -33443,14 +33128,14 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "cdO" = ( /obj/effect/mist, /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/water/pool, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "cdR" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -33488,7 +33173,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "cdU" = ( /obj/machinery/status_display{ layer = 4; @@ -33498,7 +33183,7 @@ /obj/structure/closet/emcloset, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "cdX" = ( /obj/machinery/alarm{ dir = 4; @@ -33514,16 +33199,16 @@ color = "red" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "cdZ" = ( /turf/simulated/wall/wood, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cea" = ( /obj/structure/bookcase{ name = "bookcase (Reference)" }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "ceb" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -33547,18 +33232,18 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "cec" = ( /obj/structure/table/woodentable, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cee" = ( /obj/structure/table/woodentable, /obj/item/deck/tarot{ pixel_y = 3 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cef" = ( /obj/structure/prop/statue{ desc = "The base reads 'Venus de Milo.' A tiny impression in the bottom right states 'Io Prints 2257.' "; @@ -33581,7 +33266,7 @@ dir = 4 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "ceh" = ( /obj/structure/table/woodentable, /obj/item/paper_bin{ @@ -33609,12 +33294,12 @@ dir = 9 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cei" = ( /obj/structure/table/woodentable, /obj/item/communicator, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cej" = ( /obj/structure/table/woodentable, /obj/structure/window/basic{ @@ -33631,7 +33316,7 @@ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cel" = ( /obj/machinery/light{ dir = 1; @@ -33644,7 +33329,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "cem" = ( /obj/machinery/light{ dir = 8; @@ -33666,14 +33351,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "ces" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "cet" = ( /obj/structure/cable/green{ d1 = 1; @@ -33690,7 +33375,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "cex" = ( /obj/structure/window/basic{ dir = 4 @@ -33702,7 +33387,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "ceC" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -33711,7 +33396,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "ceE" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -33723,7 +33408,7 @@ name = "Intern" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "ceF" = ( /obj/item/module/power_control{ pixel_y = -6; @@ -33791,7 +33476,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "ceG" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/machinery/alarm{ @@ -33799,7 +33484,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "ceH" = ( /obj/structure/table/glass, /obj/random/medical/pillbottle, @@ -33837,25 +33522,25 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "ceI" = ( /obj/structure/table/reinforced, /obj/item/gps/medical/cmo, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "ceM" = ( /obj/structure/bookcase{ name = "bookcase (Religious)" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "ceN" = ( /obj/structure/table/woodentable, /obj/item/starcaster_news, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "ceP" = ( /obj/item/form_printer{ pixel_y = 4 @@ -33883,7 +33568,7 @@ icon_state = "0-2" }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "ceR" = ( /obj/structure/cable/green{ d1 = 4; @@ -33903,12 +33588,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "ceS" = ( /obj/structure/table/bench/wooden, /obj/item/book/codex/lore/news, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cfa" = ( /obj/machinery/light{ dir = 8; @@ -33925,7 +33610,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "cfb" = ( /obj/item/radio/intercom/department/security{ dir = 8; @@ -33935,7 +33620,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "cfd" = ( /obj/structure/table/rack, /obj/machinery/door/window/brigdoor/westleft{ @@ -33982,18 +33667,22 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "cff" = ( /obj/structure/filingcabinet, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cfg" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cfh" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -34010,7 +33699,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortCorridor1) +/area/maintenance/Deck2_Medical_AftPortCorridor1) "cfk" = ( /obj/effect/shuttle_landmark/southern_cross/large_escape_pod3/station, /turf/simulated/shuttle/floor, @@ -34028,12 +33717,12 @@ layer = 2.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "cfn" = ( /obj/effect/floor_decal/spline/fancy/wood/cee, /obj/effect/floor_decal/plaque, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cfo" = ( /obj/structure/table/rack/shelf, /obj/item/storage/box/donkpockets{ @@ -34072,7 +33761,7 @@ name = "1S-extinguisher cabinet" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "cfp" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -34085,7 +33774,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cfq" = ( /obj/item/radio/intercom{ dir = 4; @@ -34093,7 +33782,7 @@ pixel_x = 22 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cfs" = ( /obj/machinery/power/apc{ dir = 8; @@ -34116,7 +33805,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "cft" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/pants/yogapants, @@ -34151,10 +33840,10 @@ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "cfF" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "cfH" = ( /obj/structure/table/reinforced, /obj/machinery/photocopier/faxmachine{ @@ -34170,7 +33859,7 @@ pixel_x = 7 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "cfO" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -28; @@ -34183,7 +33872,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "cfP" = ( /obj/item/stack/medical/advanced/bruise_pack{ pixel_y = -6; @@ -34217,7 +33906,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "cfQ" = ( /obj/structure/table/standard, /obj/item/surgical/hemostat{ @@ -34230,7 +33919,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "cfR" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -34247,12 +33936,12 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "cfS" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/shieldgen, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "cfT" = ( /obj/structure/bed/chair/sofa/brown{ dir = 4 @@ -34261,7 +33950,7 @@ dir = 8 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "cfU" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -34283,17 +33972,17 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "cfW" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 6 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "cfY" = ( /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "cfZ" = ( /obj/structure/table/rack, /obj/structure/window/reinforced{ @@ -34317,7 +34006,7 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "cga" = ( /obj/machinery/light{ dir = 1; @@ -34331,11 +34020,11 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "cgc" = ( /obj/effect/catwalk_plated/techfloor, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "cge" = ( /obj/effect/catwalk_plated/techfloor, /obj/machinery/light{ @@ -34343,7 +34032,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "cgf" = ( /obj/structure/sign/nanotrasen, /turf/simulated/shuttle/wall/no_join{ @@ -34354,13 +34043,20 @@ /area/shuttle/escape_pod9/station) "cgg" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Dressing_Room) -"cgk" = ( -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/medical/Dressing_Room) "cgn" = ( -/turf/simulated/wall, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/orange/bordercorner, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "cgo" = ( /obj/item/radio/intercom{ dir = 8; @@ -34368,15 +34064,37 @@ pixel_x = -22 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cgq" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "cgs" = ( /obj/machinery/atmospherics/pipe/tank/air/full, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) +"cgz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "cgA" = ( /obj/structure/cable/green{ d1 = 1; @@ -34394,7 +34112,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "cgC" = ( /obj/structure/table/rack, /obj/structure/window/reinforced, @@ -34415,7 +34133,7 @@ pixel_x = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "cgD" = ( /mob/living/bot/mulebot{ faction = "nanotrasen" @@ -34432,7 +34150,7 @@ }, /obj/effect/floor_decal/milspec/box, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "cgK" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -34441,21 +34159,21 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "cgL" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "cgM" = ( /obj/structure/sign/warning/compressed_gas, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "cgO" = ( /obj/machinery/conveyor{ dir = 8; id = "SC-CBdisposals" }, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "cgP" = ( /obj/machinery/photocopier, /obj/machinery/ai_status_display{ @@ -34466,7 +34184,7 @@ dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "cgQ" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -34528,7 +34246,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "cgS" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 2"; @@ -34536,7 +34254,7 @@ }, /obj/item/radio/headset, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "cgT" = ( /obj/structure/closet/secure_closet/freezer/money, /obj/item/storage/secure/briefcase/money{ @@ -34545,7 +34263,7 @@ }, /obj/structure/cable, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "cgU" = ( /obj/item/coin/gold, /obj/item/coin/gold, @@ -34563,10 +34281,10 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "cgV" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "cgW" = ( /obj/machinery/firealarm{ dir = 4; @@ -34585,7 +34303,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "cgZ" = ( /obj/structure/sink{ pixel_y = 14 @@ -34594,7 +34312,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/kafel_full/red/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "chb" = ( /obj/structure/cable/white{ d1 = 1; @@ -34602,7 +34320,7 @@ icon_state = "1-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "chc" = ( /obj/structure/sign/nanotrasen, /turf/simulated/shuttle/wall/no_join{ @@ -34622,7 +34340,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "che" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -34645,7 +34363,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "chf" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 @@ -34667,7 +34385,7 @@ pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "chj" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -34679,21 +34397,21 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "chl" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "chm" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "chp" = ( /obj/structure/sign/level/two/large, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "chs" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "cht" = ( /obj/structure/table/marble, /obj/machinery/chemical_dispenser/bar_coffee/full{ @@ -34704,7 +34422,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "chw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -34712,30 +34430,19 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "chy" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/machinery/door/airlock/maintenance/engi{ - name = "Central substation"; - req_one_access = list(28) +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "chE" = ( /obj/machinery/computer/security/telescreen/entertainment{ name = "1E-entertainment monitor"; @@ -34743,7 +34450,7 @@ pixel_y = -4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "chG" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -34755,7 +34462,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "chJ" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/milspec/box, @@ -34764,7 +34471,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "chK" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -34773,11 +34480,11 @@ name = "1S-AI display" }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "chL" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "chM" = ( /obj/random/tech_supply, /obj/random/tech_supply, @@ -34796,7 +34503,7 @@ pixel_y = -22 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "chN" = ( /obj/structure/cable/green{ d1 = 1; @@ -34809,7 +34516,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "chO" = ( /obj/fiftyspawner/wood, /obj/fiftyspawner/wood, @@ -34834,7 +34541,7 @@ name = "S-status display" }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "chT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -34843,7 +34550,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "chV" = ( /obj/structure/cable/green{ d1 = 1; @@ -34860,24 +34567,31 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "chW" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/industrial/hatch/blue, -/obj/structure/grille, -/obj/structure/window/basic/full, -/obj/structure/window/basic, -/obj/structure/window/basic{ - dir = 8 +/obj/machinery/door/blast/regular/open{ + layer = 3.5; + id = "Star Lockdown"; + name = "Lockdown Gate"; + desc = "A heavily reinforced gate, sector lockdown!" }, -/obj/structure/window/basic{ +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 }, -/obj/structure/window/basic{ +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/obj/machinery/door/airlock/angled_bay/double/glass/medical{ + dir = 8; + req_access = null; + name = "Star Sector Science-Medical" + }, +/turf/simulated/floor/tiled/techmaint, +/area/hallway/Star_2_Deck_Central_Corridor_2) "chY" = ( /obj/machinery/alarm{ pixel_y = 25 @@ -34891,7 +34605,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "cid" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -34899,7 +34613,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "cig" = ( /obj/structure/table/rack, /obj/item/clothing/accessory/armor/armorplate/bulletproof{ @@ -34967,7 +34681,7 @@ layer = 2.9 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "cih" = ( /obj/structure/table/rack/shelf/steel, /obj/item/canvas/nineteen_nineteen{ @@ -34998,7 +34712,7 @@ }, /obj/effect/floor_decal/borderfloor/corner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "cil" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -35029,29 +34743,30 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "cin" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "ciq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "cis" = ( /obj/structure/table/marble, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, +/obj/item/corncob, /obj/machinery/door/blast/gate/thin{ id = "sc-GCcoffeeshop"; layer = 3.3; - name = "Coffee-Shop Shutters" + name = "Coffee-Shop Shutters"; + dir = 2 }, -/obj/item/corncob, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "ciu" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -35071,11 +34786,11 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "civ" = ( /obj/machinery/smartfridge/produce, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "cix" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/loading/blue{ @@ -35086,7 +34801,7 @@ name = "BAR Section" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "ciy" = ( /obj/item/universal_translator{ pixel_x = -4 @@ -35101,12 +34816,12 @@ pixel_x = -25 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "ciz" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "ciB" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -35119,7 +34834,7 @@ req_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "ciC" = ( /obj/structure/table/rack/holorack, /obj/item/circuitboard/pointdefense{ @@ -35180,7 +34895,7 @@ pixel_y = -5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "ciF" = ( /obj/structure/window/reinforced{ dir = 8 @@ -35192,7 +34907,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "ciG" = ( /obj/machinery/power/apc/hyper{ dir = 1; @@ -35222,7 +34937,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "ciI" = ( /obj/structure/cable{ d1 = 1; @@ -35242,19 +34957,19 @@ }, /obj/effect/floor_decal/industrial/arrows/blue, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "ciJ" = ( /obj/structure/closet/secure_closet/engineering_electrical, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "ciK" = ( /obj/structure/sign/department/toxins{ desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "ciM" = ( /obj/item/melee/energy/spear{ pixel_y = 8; @@ -35288,15 +35003,15 @@ pixel_x = -10 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "ciN" = ( /obj/machinery/smartfridge/drinks/showcase, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "ciO" = ( /obj/structure/sign/painting/public, /turf/simulated/wall/sifwood, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "ciS" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -35315,7 +35030,7 @@ name = "1E-guest pass terminal" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "ciT" = ( /obj/structure/grille, /obj/structure/shuttle/window, @@ -35352,7 +35067,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "cjg" = ( /obj/machinery/status_display{ name = "W-status display"; @@ -35366,7 +35081,7 @@ dir = 9 }, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "cji" = ( /obj/structure/table/marble, /obj/item/reagent_containers/food/drinks/shaker{ @@ -35386,14 +35101,14 @@ }, /obj/effect/floor_decal/corner/beige/diagonal, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "cjp" = ( /obj/structure/table/reinforced, /obj/item/modular_computer/laptop/preset/custom_loadout/advanced{ pixel_y = 12 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "cjq" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -35471,10 +35186,10 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "cjv" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "cjw" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 8 @@ -35487,7 +35202,7 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "cjx" = ( /obj/machinery/light/floortube{ dir = 1; @@ -35502,7 +35217,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "cjy" = ( /obj/structure/bed/chair/wood/wings{ color = "#004b9a"; @@ -35515,21 +35230,21 @@ pixel_y = 32 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "cjB" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "cjC" = ( /obj/vehicle/train/trolley{ dir = 8 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "cjD" = ( /obj/machinery/microscope{ pixel_y = 16 @@ -35546,7 +35261,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "cjH" = ( /obj/machinery/alarm{ pixel_y = 25 @@ -35556,11 +35271,11 @@ /obj/random/medical/pillbottle, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortChamber1) +/area/maintenance/Deck2_Medical_AftPortChamber1) "cjI" = ( /obj/random/mainttoyloot, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "cjL" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -35582,7 +35297,7 @@ icon_state = "0-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "cjN" = ( /obj/effect/floor_decal/techfloor/orange, /obj/effect/floor_decal/techfloor/hole, @@ -35590,7 +35305,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "cjO" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/cable{ @@ -35599,7 +35314,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "cjP" = ( /obj/item/storage/box/flashbangs{ pixel_x = 11; @@ -35622,7 +35337,7 @@ layer = 2.9 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "cjQ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -35630,7 +35345,7 @@ id = "sc-WTlibraryoffice" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "cjR" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -35655,28 +35370,26 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "cjU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "ckb" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "ckd" = ( -/obj/machinery/suit_cycler/engineering{ - req_one_access = list(11,24); - req_access = null - }, -/obj/effect/floor_decal/industrial/hatch/blue, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain/corner, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "ckf" = ( /obj/machinery/recharge_station, /obj/structure/closet/emergsuit_wall{ @@ -35695,10 +35408,10 @@ specialfunctions = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "ckg" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "ckj" = ( /obj/structure/table/woodentable, /obj/item/toner{ @@ -35717,11 +35430,11 @@ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "ckk" = ( /obj/effect/floor_decal/corner/beige/diagonal, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "ckn" = ( /obj/machinery/button/windowtint{ id = "sc-WTlibraryoffice"; @@ -35745,7 +35458,7 @@ icon_state = "0-4" }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "cko" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -35759,7 +35472,7 @@ dir = 6 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "ckp" = ( /obj/machinery/alarm{ dir = 1; @@ -35768,7 +35481,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "ckq" = ( /obj/effect/floor_decal/borderfloorwhite/corner2{ dir = 8 @@ -35783,7 +35496,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "ckr" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -35812,19 +35525,19 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "ckt" = ( /obj/effect/floor_decal/emblem/nt1, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "ckv" = ( /obj/structure/table/woodentable, /obj/item/toy/figure/assistant, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "ckC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -35838,7 +35551,7 @@ dir = 4 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "ckE" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -35852,7 +35565,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "ckJ" = ( /obj/structure/table/reinforced, /obj/item/modular_computer/laptop/preset/custom_loadout/advanced{ @@ -35866,7 +35579,7 @@ pixel_y = 31 }, /turf/simulated/floor/carpet/purple, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "ckL" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloorblack, @@ -35877,7 +35590,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "ckO" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -35886,14 +35599,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "ckP" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; dir = 8 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "ckQ" = ( /obj/structure/toilet, /obj/structure/closet/emergsuit_wall{ @@ -35912,7 +35625,7 @@ specialfunctions = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "ckV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -35930,7 +35643,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "cld" = ( /obj/structure/cable/green{ d1 = 1; @@ -35952,7 +35665,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "cle" = ( /obj/structure/cable/green{ d1 = 1; @@ -35962,10 +35675,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) -"clg" = ( -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/crew_quarters/Chomp_Dinner_2) "clh" = ( /obj/structure/table/rack, /obj/machinery/status_display{ @@ -35974,7 +35684,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "cli" = ( /obj/machinery/computer/security/telescreen/entertainment{ name = "1S-entertainment monitor"; @@ -35984,7 +35694,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "clm" = ( /obj/item/radio/intercom{ dir = 4; @@ -35994,7 +35704,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/green/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "cln" = ( /obj/structure/cable/white{ d1 = 2; @@ -36002,7 +35712,7 @@ icon_state = "2-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "clo" = ( /obj/structure/cable/green{ d1 = 4; @@ -36019,14 +35729,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "clq" = ( /obj/machinery/camera/network/security{ c_tag = "D2-Com-For Foyer1"; network = list("Commons") }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "clr" = ( /obj/structure/toilet, /obj/structure/closet/emergsuit_wall{ @@ -36045,7 +35755,7 @@ specialfunctions = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "clt" = ( /obj/structure/closet/secure_closet{ desc = "It's an immobile card-locked storage unit. A note on the door reads: It's dangerous to go alone. This should help a little bit."; @@ -36083,10 +35793,10 @@ /obj/item/clothing/accessory/armor/helmcover/navy, /obj/item/clothing/accessory/armor/helmcover/navy, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "clv" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "clx" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -36098,11 +35808,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) -"cly" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/area/hallway/Port_2_Deck_Stairwell) "clD" = ( /obj/structure/cable/green{ d1 = 1; @@ -36122,15 +35828,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "clJ" = ( /obj/structure/bed/chair/sofa/brown{ - dir = 1 + dir = 1; + pixel_y = 5 }, /obj/structure/window/basic, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "clP" = ( /obj/structure/cable/green{ d1 = 1; @@ -36151,7 +35858,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "clQ" = ( /obj/structure/table/reinforced, /obj/item/megaphone{ @@ -36166,7 +35873,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "clT" = ( /obj/machinery/light{ dir = 1; @@ -36181,7 +35888,7 @@ }, /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "clW" = ( /obj/machinery/vending/dinnerware{ dir = 8; @@ -36207,13 +35914,13 @@ dir = 5 }, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "cma" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "cmc" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -36231,7 +35938,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cme" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -36253,7 +35960,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "cmg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -36262,20 +35969,17 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "cmh" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "cmj" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/turf/simulated/wall, +/area/maintenance/Deck2_For_Corridor) "cmk" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -36291,15 +35995,24 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "cml" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/holoposter{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_2) "cmm" = ( /obj/structure/girder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "cmn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -36322,7 +36035,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "cmp" = ( /obj/structure/table/reinforced, /obj/item/mass_spectrometer{ @@ -36342,7 +36055,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "cms" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ @@ -36352,7 +36065,7 @@ dir = 10 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "cmu" = ( /obj/machinery/disposal, /obj/machinery/firealarm{ @@ -36363,7 +36076,7 @@ dir = 8 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "cmx" = ( /obj/machinery/alarm{ dir = 4; @@ -36388,7 +36101,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "cmy" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -36397,11 +36110,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "cmC" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central7, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "cmD" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -36431,22 +36144,24 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "cmF" = ( +/obj/machinery/power/thermoregulator, +/obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/area/maintenance/Distro_Civilian) "cmH" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "cmO" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "cmP" = ( /obj/effect/floor_decal/industrial/stand_clear/blue{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "cmQ" = ( /obj/machinery/cryopod/robot{ dir = 4 @@ -36456,7 +36171,7 @@ name = "S-status display" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "cmT" = ( /obj/effect/floor_decal/techfloor/orange, /obj/machinery/light/floortube{ @@ -36467,12 +36182,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "cna" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "cnb" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -36484,7 +36199,7 @@ req_one_access = list(1,11,24) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Security_StarCorridor1) +/area/maintenance/Deck2_Security_StarCorridor1) "cnc" = ( /obj/structure/dogbed{ name = "Poppy's bed" @@ -36512,12 +36227,12 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "cnd" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "cnf" = ( /obj/effect/floor_decal/chapel{ dir = 8 @@ -36528,7 +36243,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "cnq" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -36537,7 +36252,7 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "cns" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -36548,7 +36263,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "cnt" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -36559,7 +36274,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "cny" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 8 @@ -36572,7 +36287,7 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "cnC" = ( /obj/structure/table/steel_reinforced, /obj/item/mmi{ @@ -36587,16 +36302,16 @@ name = "1S-light fixture" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "cnD" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "cnE" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "cnI" = ( /obj/structure/table/steel, /obj/item/storage/box/flare{ @@ -36624,7 +36339,7 @@ pixel_x = -5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "cnJ" = ( /obj/structure/table/rack/steel, /obj/fiftyspawner/steel{ @@ -36654,7 +36369,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "cnL" = ( /obj/structure/bookcase{ name = "bookcase (Religious)" @@ -36705,7 +36420,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "cnM" = ( /obj/structure/table/hardwoodtable, /obj/machinery/alarm{ @@ -36737,15 +36452,15 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "cnN" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "cnP" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "coe" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -36754,7 +36469,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "coh" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ @@ -36779,17 +36494,18 @@ id = "sc-GCmedicalreception" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "coi" = ( /obj/structure/sign/warning/evac, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "col" = ( /obj/effect/floor_decal/chapel{ dir = 4 }, /obj/structure/flora/pottedplant/stoutbush{ - pixel_y = 9 + pixel_y = 9; + name = "Uriel" }, /obj/structure/table/bench/marble, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -36804,20 +36520,19 @@ sortType = "Chapel" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "con" = ( /obj/machinery/door/morgue{ dir = 2; name = "Confession Booth" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "cop" = ( -/obj/machinery/feeder, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "cos" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -36848,7 +36563,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "cot" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -36862,7 +36577,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "cou" = ( /obj/structure/bed/chair/bay/chair/padded/red/smallnest, /obj/machinery/alarm{ @@ -36873,7 +36588,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "cow" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -36882,7 +36597,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "cox" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -36899,14 +36614,14 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "coy" = ( /obj/structure/sign/securearea{ icon_state = "restroom"; desc = "A warning sign which reads 'Restroom'." }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "coG" = ( /obj/structure/cable/green{ d1 = 1; @@ -36923,7 +36638,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "coN" = ( /obj/structure/cable/green{ d1 = 1; @@ -36935,7 +36650,7 @@ dir = 10 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "coP" = ( /obj/structure/cable/green{ d1 = 2; @@ -36953,11 +36668,11 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "coR" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "coU" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -36978,7 +36693,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/black/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "cpd" = ( /obj/machinery/light{ dir = 8; @@ -36986,13 +36701,13 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "cpg" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "cpi" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "cpl" = ( /obj/machinery/light/small{ dir = 8 @@ -37009,10 +36724,10 @@ id = "sc-DBBstall2" }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "cpm" = ( /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "cpw" = ( /obj/structure/cable{ d1 = 1; @@ -37024,7 +36739,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "cpB" = ( /obj/structure/cable{ d1 = 4; @@ -37037,11 +36752,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 4 +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Chomp Kitchen"; + sortType = "Chomp Kitchen" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "cpD" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 @@ -37050,14 +36767,14 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "cpH" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "cpL" = ( /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "cpN" = ( /obj/structure/table/standard, /obj/item/surgical/surgicaldrill{ @@ -37073,19 +36790,19 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "cpO" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 4 }, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "cpQ" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -37098,22 +36815,10 @@ icon_state = "0-8" }, /obj/effect/wingrille_spawn/reinforced/polarized{ - id = "sc-WTwarden" + id = "sc-WTformedpost" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/For_Medical_Post) -"cpT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, -/obj/effect/catwalk_plated/techmaint, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/medical/For_Medical_Post) "cpW" = ( /obj/structure/table/steel, /obj/item/hand_labeler{ @@ -37131,12 +36836,12 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "cqj" = ( /obj/item/survivalcapsule/superpose, /obj/structure/closet/crate/secure, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "cqk" = ( /obj/machinery/door_timer/cell_1{ req_access = null; @@ -37150,12 +36855,12 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "cqm" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/ladder/up, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Cargo_StarChamber1) +/area/maintenance/Deck2_Cargo_StarChamber1) "cqn" = ( /obj/structure/bed/chair/oldsofa/left{ dir = 1 @@ -37166,27 +36871,9 @@ /obj/effect/floor_decal/carpet{ dir = 4 }, +/obj/structure/sign/poster/custom, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) -"cqo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Storage) +/area/crew_quarters/Rec_Lounge) "cqp" = ( /obj/structure/safe, /obj/item/clothing/under/color/yellow, @@ -37199,7 +36886,7 @@ /obj/item/moneybag/vault, /obj/item/clothing/glasses/monocoole, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "cqq" = ( /obj/item/modular_computer/console/preset/security{ dir = 1 @@ -37215,12 +36902,12 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "cqr" = ( /obj/structure/table/woodentable, /obj/item/starcaster_news, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "cqs" = ( /obj/structure/cable/green{ d1 = 4; @@ -37235,7 +36922,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "cqt" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -37255,7 +36942,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "cqu" = ( /obj/item/reagent_containers/blood/prelabeled/OMinus{ pixel_y = 6; @@ -37284,21 +36971,21 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "cqv" = ( /obj/structure/bed/chair/bay/chair/padded/red/bignest, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "cqx" = ( /turf/simulated/wall/rthull, /area/shuttle/escape_pod11/station) "cqy" = ( /obj/structure/sign/warning/evac, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "cqz" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "cqA" = ( /obj/structure/closet/secure_closet/medical1, /obj/machinery/light{ @@ -37309,14 +36996,14 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "cqC" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "cqM" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "cqN" = ( /obj/machinery/alarm{ dir = 4; @@ -37329,7 +37016,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "cqO" = ( /obj/structure/table/steel, /obj/item/electronic_assembly/large{ @@ -37350,20 +37037,20 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "cqQ" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "cqR" = ( /obj/structure/bed/chair/sofa/right/orange{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "cqT" = ( /obj/structure/table/rack/shelf, /obj/item/reagent_containers/glass/bucket/wood{ @@ -37387,7 +37074,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "cqU" = ( /obj/structure/plasticflaps, /obj/structure/window/reinforced/tinted/frosted{ @@ -37403,15 +37090,7 @@ icon_state = "1-2" }, /turf/simulated/floor/wood/broken, -/area/SouthernCrossV2/Maints/ab_TeshDen) -"cqV" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/maintenance/ab_TeshDen) "cqX" = ( /obj/effect/floor_decal/corner_techfloor_gray{ dir = 5 @@ -37438,7 +37117,7 @@ pixel_x = 22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "cqY" = ( /obj/structure/cable/white{ d1 = 1; @@ -37447,7 +37126,7 @@ }, /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "cqZ" = ( /obj/machinery/sleeper{ dir = 4 @@ -37455,7 +37134,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "cra" = ( /obj/machinery/light{ dir = 8; @@ -37469,12 +37148,12 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "cre" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "crf" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -37498,11 +37177,11 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "cri" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "crk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -37513,7 +37192,7 @@ name = "Gym Access" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "crl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -37524,10 +37203,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "crn" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "crp" = ( /obj/effect/floor_decal/corner/blue/border{ dir = 8 @@ -37536,12 +37215,12 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "crq" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "crs" = ( /obj/effect/floor_decal/industrial/arrows/yellow{ dir = 8 @@ -37550,13 +37229,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "crt" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "crC" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 8 @@ -37565,7 +37244,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "crD" = ( /obj/structure/closet/crate/secure, /obj/machinery/light{ @@ -37579,7 +37258,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "crE" = ( /obj/machinery/alarm{ dir = 1; @@ -37592,7 +37271,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "crG" = ( /obj/effect/floor_decal/stairs{ dir = 8 @@ -37601,7 +37280,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "crH" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -37614,31 +37293,10 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "crJ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) -"crL" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/reagent_dispensers/foam, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) -"crV" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/camera/network/security{ - dir = 1; - c_tag = "D2-Dmc-Chomp Hydroponics2"; - network = list("Domicile") - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/area/hallway/Star_2_Deck_Corridor_2) "crW" = ( /obj/machinery/atmospherics/valve{ name = "Medical emergency air supply"; @@ -37653,7 +37311,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "crZ" = ( /obj/effect/floor_decal/industrial/arrows/yellow, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -37675,7 +37333,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "csa" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -37686,7 +37344,7 @@ name = "Circuitry Access" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "csb" = ( /obj/machinery/power/apc{ dir = 4; @@ -37710,7 +37368,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "csc" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -37743,7 +37401,7 @@ name = "1W-NanoMed" }, /turf/simulated/floor/tiled/kafel_full/red/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "cse" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -37769,7 +37427,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "csf" = ( /obj/structure/cable/green{ d1 = 4; @@ -37786,7 +37444,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "csg" = ( /obj/structure/window/reinforced{ dir = 1 @@ -37805,12 +37463,12 @@ pixel_x = 3 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "csh" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "csm" = ( /obj/machinery/atmospherics/binary/pump, /obj/structure/cable/green{ @@ -37820,7 +37478,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "cso" = ( /obj/machinery/computer/rdconsole/security{ dir = 4 @@ -37833,7 +37491,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "csp" = ( /obj/machinery/light{ dir = 4; @@ -37845,15 +37503,15 @@ /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/purple/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_2) "csx" = ( /obj/structure/closet/crate/secure, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "csy" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -37865,7 +37523,7 @@ id_tag = "sc-DBNstall4" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "csz" = ( /obj/structure/cable/white{ d1 = 1; @@ -37873,7 +37531,7 @@ icon_state = "1-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "csA" = ( /obj/structure/cable/white{ d1 = 1; @@ -37881,14 +37539,14 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "csB" = ( /obj/structure/filingcabinet/security, /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "csD" = ( /obj/item/coin/silver{ pixel_x = 7; @@ -37919,7 +37577,7 @@ pixel_y = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "csE" = ( /obj/structure/closet/crate/secure/large/reinforced, /obj/effect/floor_decal/borderfloor{ @@ -37932,13 +37590,13 @@ /obj/fiftyspawner/steel, /obj/fiftyspawner/plastic, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "csF" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "csG" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/red{ @@ -37956,7 +37614,7 @@ layer = 2.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "csH" = ( /obj/machinery/light{ dir = 4; @@ -37966,7 +37624,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "csI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -37989,7 +37647,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "csL" = ( /obj/structure/table/rack/shelf/steel, /obj/item/storage/box/frags{ @@ -38009,7 +37667,7 @@ pixel_x = -8 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "csM" = ( /obj/structure/cable/green{ d1 = 4; @@ -38032,7 +37690,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "csN" = ( /obj/machinery/light{ dir = 1; @@ -38051,7 +37709,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "csY" = ( /obj/structure/closet/acloset{ name = "Art supplies" @@ -38115,7 +37773,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "csZ" = ( /obj/structure/closet/acloset{ name = "Art supplies" @@ -38156,8 +37814,12 @@ /obj/item/tape_roll, /obj/item/tape_roll, /obj/item/tape_roll, -/obj/item/tape, -/obj/item/tape, +/obj/item/rectape{ + pixel_y = -3 + }, +/obj/item/rectape{ + pixel_y = -3 + }, /obj/item/taperecorder, /obj/item/taperecorder, /obj/item/stack/cable_coil/random, @@ -38200,7 +37862,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "cta" = ( /obj/structure/table/rack/shelf/steel, /obj/item/canvas/nineteen_nineteen{ @@ -38238,7 +37900,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "ctc" = ( /obj/structure/table/glass, /obj/item/defib_kit/loaded, @@ -38261,7 +37923,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "ctd" = ( /obj/structure/cable/white{ d1 = 1; @@ -38269,7 +37931,7 @@ icon_state = "1-2" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "cte" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -38296,16 +37958,16 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "cth" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "cti" = ( /obj/structure/reagent_dispensers/fueltank/high, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "ctj" = ( /turf/simulated/floor/reinforced/airless, /area/space) @@ -38315,7 +37977,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "cto" = ( /obj/structure/cable/green{ d1 = 1; @@ -38335,11 +37997,11 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "ctu" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber1) +/area/maintenance/Deck2_Engineering_ForStarChamber1) "ctv" = ( /obj/machinery/light{ dir = 8; @@ -38353,7 +38015,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "ctx" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -38362,10 +38024,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "ctG" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "ctJ" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -38374,19 +38036,19 @@ }, /obj/machinery/bluespace_beacon, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "ctK" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "ctL" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "ctN" = ( /obj/item/radio/intercom{ dir = 8; @@ -38394,7 +38056,7 @@ pixel_x = -22 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "ctP" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -38429,7 +38091,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "ctQ" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -38437,7 +38099,7 @@ /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "ctR" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/railing, @@ -38445,12 +38107,12 @@ dir = 2 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "ctS" = ( /obj/machinery/portable_atmospherics/canister/phoron, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "ctU" = ( /obj/machinery/light{ dir = 8; @@ -38465,14 +38127,14 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "ctW" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "ctY" = ( /obj/structure/window/reinforced{ dir = 8 @@ -38482,7 +38144,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "ctZ" = ( /obj/structure/cable/green{ d1 = 4; @@ -38504,7 +38166,7 @@ color = "#00B8B2" }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "cua" = ( /obj/structure/table/glass, /obj/machinery/firealarm{ @@ -38521,7 +38183,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "cuc" = ( /obj/structure/filingcabinet/medical{ desc = "A large cabinet with hard copy medical records."; @@ -38531,14 +38193,14 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "cue" = ( /obj/machinery/status_display{ name = "S-status display"; pixel_y = -32 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "cuf" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, @@ -38546,7 +38208,7 @@ layer = 10.1 }, /turf/space, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "cug" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -38562,16 +38224,18 @@ name = "Medical Hardsuits" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "cuh" = ( -/obj/machinery/firealarm{ - dir = 4; - name = "E-fire alarm"; - pixel_x = 25 - }, /obj/effect/floor_decal/industrial/warning, +/obj/machinery/button/remote/blast_door{ + id = "sc-GCarmory"; + name = "Armory Door Control"; + dir = 8; + pixel_x = 24; + req_access = list(3) + }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "cui" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -38586,7 +38250,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "cul" = ( /obj/structure/cable{ d1 = 4; @@ -38594,10 +38258,10 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "cum" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "cun" = ( /obj/structure/table/rack/shelf, /obj/item/storage/belt/medical{ @@ -38643,7 +38307,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "cuo" = ( /obj/machinery/camera/network/research{ c_tag = "SCI - Toxins Test Chamber South"; @@ -38651,11 +38315,13 @@ network = list("Research","Toxins Test Area") }, /turf/simulated/floor/tiled/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "cuq" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 4 + }, +/turf/simulated/floor/glass, +/area/hallway/Port_2_Deck_Central_Corridor_1) "cur" = ( /obj/structure/cable{ d1 = 1; @@ -38663,18 +38329,14 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "cus" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/shield_capacitor{ dir = 8 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "cuu" = ( /obj/structure/flora/pottedplant/thinbush{ pixel_y = 11; @@ -38682,18 +38344,18 @@ }, /obj/structure/table/bench/marble, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "cux" = ( /obj/structure/stairs/spawner/south, /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "cuy" = ( /obj/structure/stairs/spawner/south, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "cuC" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -38701,14 +38363,14 @@ }, /obj/structure/cable/green, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "cuD" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "cuE" = ( /obj/machinery/light{ dir = 8; @@ -38730,13 +38392,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "cuG" = ( /obj/structure/sign/double/barsign{ pixel_y = 32 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "cuH" = ( /obj/machinery/light{ dir = 8; @@ -38757,7 +38419,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "cuJ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -38774,7 +38436,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "cuK" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -38784,7 +38446,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "cuL" = ( /obj/random/junk, /obj/random/maintenance/research, @@ -38796,7 +38458,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "cuM" = ( /obj/machinery/computer/security/telescreen/entertainment{ name = "1S-entertainment monitor"; @@ -38809,7 +38471,7 @@ /obj/effect/floor_decal/corner/purple/border, /obj/structure/table/steel, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "cuN" = ( /obj/structure/table/steel, /obj/item/reagent_containers/food/drinks/cans/space_mountain_wind{ @@ -38830,7 +38492,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "cuO" = ( /obj/structure/table/steel, /obj/item/storage/bag/circuits/basic{ @@ -38849,17 +38511,17 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "cuP" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 6 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "cuQ" = ( /obj/structure/girder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "cuR" = ( /obj/machinery/doppler_array, /obj/machinery/button/remote/driver{ @@ -38873,7 +38535,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "cuS" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/floor_decal/industrial/hatch/blue, @@ -38882,21 +38544,21 @@ name = "1E-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "cuT" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "cuU" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cuV" = ( /obj/structure/table/bench/wooden, /obj/item/starcaster_news, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cuW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -38908,7 +38570,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "cvc" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -38930,14 +38592,14 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "cvd" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "cve" = ( /obj/machinery/light{ dir = 4; @@ -38955,23 +38617,17 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) -"cvf" = ( -/obj/structure/sign/department/shield{ - desc = "Sign of some important station compartment." - }, -/turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/area/security/Locker_Room) "cvg" = ( /obj/machinery/computer/security/telescreen/entertainment{ name = "1N-entertainment monitor"; pixel_y = 28 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "cvh" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "cvi" = ( /obj/structure/cable/green{ d1 = 1; @@ -38980,39 +38636,19 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "cvk" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) -"cvo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Central Subgrid"; - name_tag = "Central Subgrid" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/catwalk_plated/techmaint, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/area/security/Prison_Wing) "cvr" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "cvs" = ( /obj/structure/cable{ d1 = 4; @@ -39026,7 +38662,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "cvt" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -39034,13 +38670,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techfloor, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "cvw" = ( /obj/machinery/atmospherics/valve{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "cvy" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -39049,18 +38685,19 @@ /area/space) "cvz" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "cvG" = ( /obj/structure/bed/chair/sofa/corner/brown{ layer = 2.9 }, +/obj/machinery/light/small/neon/generic_purple{ + pixel_y = 32 + }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "cvI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -39069,23 +38706,23 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Central_Corridor_1) "cvJ" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/corner/green/bordercorner, +/obj/effect/floor_decal/corner/orange/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "cvK" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "cvL" = ( /obj/effect/catwalk_plated, /obj/item/radio/intercom{ @@ -39094,7 +38731,7 @@ pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "cvM" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -39103,7 +38740,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "cvO" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8; @@ -39116,7 +38753,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "cvR" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, @@ -39125,14 +38762,14 @@ dir = 4 }, /turf/space, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "cvU" = ( /obj/structure/sign/warning/airlock, /turf/simulated/wall, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "cvV" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "cvX" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -39141,7 +38778,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "cvY" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -39166,7 +38803,7 @@ name = "lightsout" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "cvZ" = ( /obj/structure/cable{ d1 = 4; @@ -39176,7 +38813,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/cyan, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "cwa" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -39201,26 +38838,26 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "cwb" = ( /obj/structure/table/reinforced, /obj/machinery/computer/skills{ pixel_y = 12 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "cwc" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "cwj" = ( /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "cwk" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "cwp" = ( /obj/machinery/camera/network/security{ dir = 10; @@ -39232,7 +38869,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "cwr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 @@ -39265,7 +38902,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "cws" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -39273,7 +38910,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "cwt" = ( /obj/structure/cable/green{ d1 = 1; @@ -39287,7 +38924,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "cwu" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -39295,9 +38932,9 @@ network = list("Domicile") }, /obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/green/border, +/obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "cwv" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -39308,14 +38945,14 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "cww" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "cwx" = ( /obj/item/stool/padded, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "cwy" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -39329,12 +38966,12 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "cwz" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/milspec/box, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "cwA" = ( /obj/vehicle/train/trolley{ dir = 8 @@ -39346,22 +38983,26 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "cwB" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "cwD" = ( /obj/structure/sign/warning/server_room, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cwE" = ( /obj/machinery/camera/network/security{ dir = 4; c_tag = "D2-Dmc-Midnight Bar3"; network = list("Domicile") }, +/obj/machinery/light/small/neon/booze2{ + dir = 4; + pixel_x = -25 + }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "cwF" = ( /obj/machinery/alarm{ dir = 4; @@ -39374,14 +39015,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "cwH" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cwI" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "cwJ" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -39394,7 +39035,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "cwK" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -39424,13 +39065,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "cwM" = ( /obj/structure/lattice, /obj/machinery/shield_diffuser, /obj/effect/catwalk_plated/white, /turf/space, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "cwN" = ( /obj/machinery/portable_atmospherics/canister/phoron, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -39440,7 +39081,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "cwS" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -39457,7 +39098,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarCorridor1) +/area/maintenance/Deck2_Cargo_AftStarCorridor1) "cwT" = ( /obj/structure/cable/green{ d1 = 1; @@ -39476,7 +39117,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "cwV" = ( /obj/structure/closet/lasertag/blue, /obj/item/stack/flag/blue, @@ -39488,12 +39129,12 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "cwZ" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "cxc" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -39501,7 +39142,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "cxe" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -39510,7 +39151,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "cxh" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 @@ -39519,14 +39160,14 @@ dir = 4 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cxi" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; pixel_y = 25 }, /turf/simulated/floor/tiled/kafel_full/red, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "cxn" = ( /obj/machinery/light{ dir = 8; @@ -39543,7 +39184,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "cxo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -39556,40 +39197,41 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "cxv" = ( /obj/random/maintenance/security, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "cxw" = ( /turf/simulated/floor/tiled/kafel_full/red/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "cxx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, /obj/effect/floor_decal/borderfloor{ dir = 4 }, /obj/effect/floor_decal/corner/lightgrey/border{ dir = 4 }, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -3 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "cxA" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, /turf/simulated/floor/tiled/kafel_full/red, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "cxF" = ( /obj/structure/smoletrack/roadT{ dir = 8 }, /mob/living/simple_mob/animal/passive/mouse/rat, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "cxI" = ( /obj/structure/bed/chair/sofa/right/orange, /obj/machinery/camera/network/security{ @@ -39600,14 +39242,14 @@ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "cxL" = ( /obj/machinery/light/small{ dir = 8 }, /obj/effect/catwalk_plated, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "cxM" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/grille, @@ -39628,7 +39270,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "cxN" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -39654,13 +39296,16 @@ /obj/effect/floor_decal/corner/red/bordercorner{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) -"cxO" = ( -/obj/machinery/status_display{ - name = "E-status display"; - pixel_x = 32 +/obj/machinery/button/windowtint{ + id = "sc-WTsecEstorage"; + name = "S-window tint control"; + pixel_x = -12; + pixel_y = -26; + range = 15 }, +/turf/simulated/floor/tiled/dark, +/area/security/Equipment_Storage) +"cxO" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" @@ -39669,12 +39314,12 @@ /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "cxV" = ( /obj/effect/floor_decal/milspec/box, /obj/machinery/mech_recharger, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "cxW" = ( /obj/machinery/light{ dir = 8; @@ -39703,7 +39348,7 @@ sortType = "Midnight Kitchen" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "cxX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -39720,7 +39365,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_1) "cyb" = ( /obj/structure/table/rack, /obj/item/gun/projectile/revolver/saa{ @@ -39738,17 +39383,17 @@ }, /obj/structure/window/reinforced, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "cyi" = ( /obj/effect/floor_decal/milspec/box, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "cyj" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "cyk" = ( /obj/item/gun/energy/gun{ pixel_x = -6; @@ -39774,7 +39419,7 @@ layer = 2.9 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "cym" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -39789,7 +39434,7 @@ name = "Mech Bay" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "cyo" = ( /obj/structure/flora/pottedplant/aquatic{ pixel_y = 12; @@ -39803,7 +39448,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "cyp" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -39820,7 +39465,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cyq" = ( /obj/machinery/atmospherics/unary/freezer{ icon_state = "freezer_1"; @@ -39839,7 +39484,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cyr" = ( /obj/structure/table/reinforced, /obj/item/radio/intercom{ @@ -39854,7 +39499,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cys" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/machinery/atmospherics/portables_connector, @@ -39865,7 +39510,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cyt" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -39885,7 +39530,7 @@ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cyu" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 8; @@ -39901,7 +39546,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cyv" = ( /obj/machinery/r_n_d/server/robotics, /turf/simulated/floor/bluegrid{ @@ -39910,7 +39555,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cyy" = ( /obj/item/radio/intercom/department/medbay{ pixel_y = -22; @@ -39957,12 +39602,12 @@ pixel_x = -22 }, /turf/simulated/floor/tiled/kafel_full/red/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "cyA" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "cyB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -39972,7 +39617,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "cyD" = ( /obj/structure/table/standard, /obj/item/paper{ @@ -39991,7 +39636,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "cyF" = ( /obj/structure/table/marble, /obj/item/reagent_containers/food/snacks/onionrings{ @@ -40004,7 +39649,7 @@ name = "Bar Shutters" }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "cyN" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -40016,10 +39661,10 @@ dir = 9 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "cyO" = ( /turf/simulated/floor/tiled/kafel_full/blue/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "cyT" = ( /obj/structure/table/rack/shelf, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -40047,7 +39692,7 @@ pixel_x = -6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "cyU" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -40056,17 +39701,17 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber2) +/area/maintenance/Deck2_Engineering_ForStarChamber2) "cyV" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "cyW" = ( /obj/structure/girder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "cyX" = ( /obj/effect/floor_decal/industrial/arrows/yellow{ dir = 4 @@ -40084,7 +39729,7 @@ id_tag = "Sci Lockdown" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "cyY" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -40104,7 +39749,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "cza" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -40113,7 +39758,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "czc" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/item/storage/toolbox/lunchbox/survival/zaddat, @@ -40128,12 +39773,12 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "czd" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "czq" = ( /obj/machinery/power/apc{ dir = 4; @@ -40164,7 +39809,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "czx" = ( /obj/machinery/alarm{ dir = 4; @@ -40177,7 +39822,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "czG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -40195,18 +39840,18 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "czJ" = ( /obj/structure/table/hardwoodtable, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "czK" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "czL" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "czO" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -40223,13 +39868,13 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "czR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Port_Corridor) "czV" = ( /obj/structure/table/marble{ color = "grey" @@ -40237,7 +39882,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "czY" = ( /obj/structure/table/standard, /obj/item/towel/random, @@ -40248,7 +39893,7 @@ pixel_y = 8 }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "cAb" = ( /obj/structure/window/basic, /obj/structure/table/reinforced, @@ -40262,7 +39907,7 @@ name = "Lucifer" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "cAc" = ( /obj/machinery/alarm{ dir = 1; @@ -40271,7 +39916,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "cAe" = ( /obj/structure/cable/green{ d1 = 4; @@ -40289,7 +39934,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "cAf" = ( /obj/structure/cable{ d1 = 2; @@ -40309,7 +39954,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "cAg" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -40322,7 +39967,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cAq" = ( /obj/machinery/ai_status_display{ name = "1S-AI display"; @@ -40354,7 +39999,7 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "cAu" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -40370,7 +40015,7 @@ id = "sc-WTseclockroom" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "cAv" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -40382,7 +40027,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "cAw" = ( /obj/item/gps{ pixel_x = 3; @@ -40414,11 +40059,11 @@ pixel_y = 25 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "cAz" = ( /obj/structure/girder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "cAB" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -40434,11 +40079,11 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "cAC" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "cAJ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -40446,10 +40091,10 @@ id = "sc-WTcenterlounge" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "cAK" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "cAM" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -40458,7 +40103,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "cAN" = ( /obj/structure/table/standard, /obj/item/storage/toolbox/brass{ @@ -40472,7 +40117,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "cAO" = ( /obj/machinery/optable{ name = "Robotics Operating Table" @@ -40484,14 +40129,14 @@ dir = 5 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "cAP" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "cAU" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -40505,7 +40150,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "cAV" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -40523,7 +40168,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "cAW" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/keycard_auth{ @@ -40547,18 +40192,18 @@ pixel_y = 8 }, /turf/simulated/floor/carpet/purple, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "cAY" = ( /obj/structure/reagent_dispensers/watertank/high, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "cAZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cBa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -40579,13 +40224,13 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Locker_Room) +/area/rnd/Locker_Room) "cBe" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "cBg" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "cBi" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -40594,22 +40239,22 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "cBj" = ( /obj/machinery/vending/phoronresearch, /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "cBk" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "cBl" = ( /obj/structure/closet/firecloset/full/atmos, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "cBp" = ( /obj/structure/extinguisher_cabinet{ dir = 1; @@ -40618,7 +40263,7 @@ }, /obj/structure/closet/bombcloset, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "cBr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -40636,13 +40281,13 @@ dir = 8 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "cBs" = ( /obj/structure/table/woodentable, /obj/item/starcaster_news, /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "cBt" = ( /obj/machinery/power/apc{ dir = 4; @@ -40670,11 +40315,11 @@ }, /obj/structure/cable/green, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "cBu" = ( /obj/structure/sign/electricshock, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "cBw" = ( /obj/structure/railing{ dir = 1 @@ -40683,13 +40328,13 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "cBx" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "cBz" = ( /obj/effect/floor_decal/industrial/loading/blue{ dir = 8 @@ -40702,7 +40347,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "cBD" = ( /obj/structure/table/steel, /obj/machinery/alarm{ @@ -40715,14 +40360,14 @@ network = list("Commons") }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "cBI" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "cBK" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -40733,31 +40378,35 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "cBL" = ( /obj/item/defib_kit/loaded, /obj/structure/table/reinforced, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "cBM" = ( -/obj/machinery/status_display{ - layer = 4; - name = "N-status display"; - pixel_y = 32 - }, -/obj/structure/closet/emcloset, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ +/obj/machinery/power/apc{ dir = 1; - name = "1N-lighting fixture" + name = "north bump"; + pixel_y = 24 }, -/turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_1) "cBN" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/area/maintenance/Deck2_For_Corridor) "cBU" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -40766,14 +40415,14 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "cBX" = ( /obj/structure/bed/chair/comfy/yellow{ dir = 4 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "cBY" = ( /obj/structure/table/woodentable, /obj/machinery/computer/security/telescreen/entertainment{ @@ -40782,7 +40431,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "cBZ" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -40793,14 +40442,14 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "cCa" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "cCb" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -40822,7 +40471,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "cCc" = ( /obj/structure/sign/directions/security/armory{ dir = 1 @@ -40836,7 +40485,7 @@ pixel_y = -9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "cCd" = ( /obj/structure/cable{ d1 = 4; @@ -40847,7 +40496,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "cCe" = ( /obj/machinery/door/window/southright{ layer = 2.9 @@ -40869,7 +40518,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "cCh" = ( /obj/structure/table/woodentable, /obj/item/paper_bin{ @@ -40894,7 +40543,7 @@ pixel_y = -3 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cCk" = ( /obj/structure/cable/green{ d1 = 4; @@ -40923,7 +40572,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "cCm" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -40933,21 +40582,21 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cCq" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "cCv" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "cCw" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "cCy" = ( /obj/machinery/alarm{ pixel_y = 25 @@ -40966,7 +40615,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_StarCorridor1) +/area/maintenance/Deck2_Security_StarCorridor1) "cCC" = ( /obj/structure/window/reinforced/tinted/frosted{ dir = 1 @@ -40975,14 +40624,14 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "cCG" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "cCH" = ( /obj/structure/table/steel, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "cCI" = ( /obj/item/radio/intercom{ dir = 4; @@ -40996,7 +40645,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "cCJ" = ( /obj/machinery/power/apc{ dir = 8; @@ -41014,17 +40663,17 @@ icon_state = "0-4" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "cCK" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8; color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "cCM" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "cCO" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -41032,11 +40681,11 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "cCP" = ( /obj/machinery/light/small, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "cCR" = ( /obj/item/mecha_parts/mecha_equipment/tool/passenger, /obj/machinery/light{ @@ -41044,7 +40693,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "cCS" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -41064,7 +40713,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "cCT" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -41075,7 +40724,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cCU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -41088,7 +40737,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cCV" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -41106,7 +40755,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cCW" = ( /turf/simulated/floor/bluegrid{ name = "Server Base"; @@ -41114,7 +40763,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cCX" = ( /obj/machinery/firealarm{ dir = 8; @@ -41137,7 +40786,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "cCY" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/alarm{ @@ -41151,7 +40800,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "cCZ" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/spline/fancy/wood{ @@ -41162,7 +40811,7 @@ pixel_y = -22 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "cDa" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -41170,7 +40819,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "cDb" = ( /obj/machinery/cryopod{ dir = 4 @@ -41181,10 +40830,10 @@ network = list("Security,Prison") }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "cDd" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Chamber) +/area/maintenance/Deck2_Science_ForPort_Chamber) "cDf" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -41194,7 +40843,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "cDg" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -41213,7 +40862,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "cDk" = ( /obj/machinery/vending/wallmed1{ dir = 1; @@ -41221,17 +40870,17 @@ name = "1S-NanoMed" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "cDm" = ( /obj/structure/toilet, /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "cDn" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "cDp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -41250,16 +40899,16 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "cDr" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "cDs" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "cDt" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "cDu" = ( /obj/structure/table/steel_reinforced, /obj/item/stack/cable_coil/random, @@ -41281,7 +40930,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "cDv" = ( /obj/structure/railing/grey{ color = "yellow" @@ -41297,34 +40946,13 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "cDw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) -"cDx" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/ladder/up, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/small/warning/emerg_only{ - desc = "Ladder for emergency use only"; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/area/rnd/Toxins_Mixing_Room) "cDy" = ( /obj/structure/cable/green{ d1 = 1; @@ -41351,13 +40979,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "cDz" = ( /obj/item/stool/padded{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "cDA" = ( /obj/structure/cable{ d1 = 4; @@ -41377,7 +41005,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "cDB" = ( /obj/machinery/firealarm{ dir = 4; @@ -41391,7 +41019,7 @@ dir = 10 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "cDC" = ( /obj/machinery/bomb_tester, /obj/machinery/computer/security/telescreen/entertainment{ @@ -41399,7 +41027,7 @@ pixel_y = -36 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "cDD" = ( /obj/machinery/suit_cycler/medical, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -41408,12 +41036,12 @@ name = "1S-station intercom (Medbay)" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "cDE" = ( /obj/structure/table/reinforced, /obj/item/forensics/sample_kit/powder, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "cDF" = ( /obj/machinery/door_timer/cell_2{ req_access = null; @@ -41427,7 +41055,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "cDH" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -41445,7 +41073,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "cDS" = ( /obj/machinery/alarm{ dir = 8; @@ -41456,19 +41084,44 @@ pixel_y = 14 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "cDW" = ( /obj/effect/catwalk_plated/white, /turf/space, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "cDX" = ( -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/sign/directions/dorms{ + pixel_y = 9; + layer = 3.5 + }, +/obj/structure/sign/directions/chapel{ + layer = 3.5 + }, +/obj/structure/sign/directions/library{ + layer = 3.5; + pixel_y = -9 + }, +/turf/simulated/floor/plating, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "cEa" = ( /obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "cEb" = ( /obj/machinery/light{ dir = 4; @@ -41489,14 +41142,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "cEc" = ( /obj/structure/closet{ name = "Evidence Closet" }, /obj/item/detective_scanner, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "cEd" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/disposalpipe/up{ @@ -41507,7 +41160,7 @@ pixel_y = 32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "cEf" = ( /obj/structure/sink{ dir = 4; @@ -41520,7 +41173,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "cEg" = ( /obj/machinery/mecha_part_fabricator, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -41529,7 +41182,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "cEh" = ( /obj/structure/table/steel_reinforced, /obj/item/storage/box/mechabeacons{ @@ -41545,7 +41198,7 @@ pixel_x = 2 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "cEi" = ( /obj/structure/bed/chair/sofa/brown, /obj/machinery/computer/security/telescreen/entertainment{ @@ -41553,7 +41206,7 @@ name = "1N-entertainment monitor" }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "cEl" = ( /obj/machinery/power/apc{ dir = 8; @@ -41577,7 +41230,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "cEm" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -41586,7 +41239,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "cEn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -41600,7 +41253,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "cEo" = ( /obj/machinery/computer/message_monitor{ dir = 1 @@ -41611,7 +41264,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cEp" = ( /obj/machinery/computer/rdservercontrol{ dir = 1 @@ -41627,7 +41280,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cEq" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -41647,7 +41300,7 @@ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cEr" = ( /obj/machinery/r_n_d/server/core, /turf/simulated/floor/bluegrid{ @@ -41656,7 +41309,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cEt" = ( /obj/structure/table/reinforced, /obj/structure/table/reinforced, @@ -41685,7 +41338,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "cEu" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/electrical{ @@ -41705,7 +41358,53 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) +"cEw" = ( +/obj/structure/table/steel, +/obj/item/clamp{ + pixel_y = -3; + pixel_x = -7 + }, +/obj/item/clamp{ + pixel_x = -7 + }, +/obj/item/clamp{ + pixel_y = 3; + pixel_x = -7 + }, +/obj/item/clamp{ + pixel_y = 6; + pixel_x = -7 + }, +/obj/item/clamp{ + pixel_y = 9; + pixel_x = -7 + }, +/obj/item/clothing/mask/gas{ + pixel_y = -5; + pixel_x = 6 + }, +/obj/item/clothing/mask/gas{ + pixel_y = -2; + pixel_x = 7 + }, +/obj/item/clothing/mask/gas{ + pixel_y = 1; + pixel_x = 8 + }, +/obj/item/taperoll/atmos{ + pixel_y = 12; + pixel_x = 8 + }, +/obj/item/taperoll/atmos{ + pixel_y = 14; + pixel_x = 6 + }, +/obj/item/t_scanner{ + pixel_y = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "cEz" = ( /obj/structure/table/reinforced, /obj/machinery/computer/security/telescreen{ @@ -41719,7 +41418,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "cEA" = ( /obj/structure/table/reinforced, /obj/machinery/button/remote/blast_door{ @@ -41744,7 +41443,7 @@ }, /obj/item/core_sampler, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "cEB" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -41777,7 +41476,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "cEC" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -41800,7 +41499,7 @@ }, /obj/structure/table/woodentable, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "cED" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -41810,7 +41509,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "cEE" = ( /obj/machinery/shieldwallgen{ anchored = 1; @@ -41831,7 +41530,7 @@ layer = 3.5 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "cEH" = ( /obj/structure/sign/goldenplaque{ desc = "Done No Harm."; @@ -41848,7 +41547,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "cEI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -41865,17 +41564,17 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "cEJ" = ( /obj/structure/table/gamblingtable, /obj/random/maintenance/clean, /obj/random/cash/big, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "cEM" = ( /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "cEN" = ( /obj/structure/window/reinforced{ dir = 4 @@ -41887,14 +41586,14 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "cEO" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "cEP" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "cEX" = ( /obj/structure/target_stake, /obj/item/target/alien, @@ -41906,7 +41605,7 @@ }, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "cEZ" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/structure/cable/green{ @@ -41926,20 +41625,36 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "cFb" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 9 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) +"cFe" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "cFi" = ( /obj/machinery/atmospherics/portables_connector{ layer = 10.1; dir = 1 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "cFj" = ( /obj/structure/table/steel_reinforced, /obj/item/stack/cable_coil{ @@ -42019,7 +41734,7 @@ network = list("engineering") }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "cFm" = ( /obj/structure/sign/directions/bar{ pixel_y = 9; @@ -42034,7 +41749,7 @@ dir = 5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "cFt" = ( /obj/machinery/ai_status_display{ name = "1E-AI display"; @@ -42044,25 +41759,25 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cFw" = ( /obj/structure/loot_pile/maint/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "cFC" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/engineering, /obj/random/maintenance/medical, /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "cFF" = ( /obj/structure/bed/chair/comfy/red{ dir = 1 }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "cFG" = ( /obj/structure/lattice, /obj/structure/grille, @@ -42070,7 +41785,7 @@ /area/space) "cFH" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "cFI" = ( /obj/item/storage/box/evidence{ pixel_x = 6 @@ -42103,7 +41818,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "cFK" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 6 @@ -42113,7 +41828,7 @@ dir = 9 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "cFM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -42131,7 +41846,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "cFO" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -42148,7 +41863,7 @@ }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "cFP" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -42165,10 +41880,10 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "cFU" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "cFV" = ( /obj/structure/cable/green{ d1 = 2; @@ -42187,7 +41902,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "cFW" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -42204,7 +41919,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/maintenance/Distro_Civilian) "cFY" = ( /obj/item/clothing/suit/space/void/medical/bio{ pixel_x = -6 @@ -42232,13 +41947,13 @@ pixel_y = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "cFZ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "cGa" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "cGd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -42252,7 +41967,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Chamber) +/area/maintenance/Deck2_Science_ForPort_Chamber) "cGf" = ( /obj/structure/filingcabinet/chestdrawer, /obj/item/reagent_containers/glass/beaker/sulphuric{ @@ -42266,7 +41981,12 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) +"cGh" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Science_StarCorridor2) "cGi" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, @@ -42288,7 +42008,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "cGm" = ( /obj/structure/table/standard, /obj/item/book/manual/robotics_cyborgs{ @@ -42305,7 +42025,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "cGn" = ( /obj/structure/table/standard, /obj/machinery/computer/med_data/laptop{ @@ -42321,7 +42041,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "cGo" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -42333,14 +42053,14 @@ id_tag = "sc-DBEstall2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "cGp" = ( /obj/structure/fireaxecabinet{ name = "1N-fire axe cabinet"; pixel_y = 27 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "cGq" = ( /obj/structure/bed/chair/wood/wings{ color = "#004b9a" @@ -42349,7 +42069,7 @@ name = "Intern" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "cGw" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -42366,7 +42086,7 @@ }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "cGx" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -42378,7 +42098,7 @@ req_one_access = list(47) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "cGy" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -42392,7 +42112,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "cGD" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -42406,7 +42126,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "cGE" = ( /obj/machinery/light{ dir = 8; @@ -42424,7 +42144,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "cGF" = ( /obj/structure/bed/chair/oldsofa/right{ dir = 4 @@ -42435,11 +42155,11 @@ network = list("Security,Prison") }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "cGJ" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "cGK" = ( /obj/structure/table/standard, /obj/item/haircomb{ @@ -42459,14 +42179,14 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "cGL" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "cGQ" = ( /obj/structure/sign/level/two/large, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "cGT" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -42480,7 +42200,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "cGU" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -42492,7 +42212,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "cGY" = ( /obj/machinery/recharger{ pixel_y = -1; @@ -42512,7 +42232,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "cHe" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -42521,13 +42241,13 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "cHk" = ( /obj/effect/floor_decal/steeldecal/monofloor{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "cHs" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -42537,7 +42257,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "cHu" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -42554,17 +42274,21 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "cHL" = ( /obj/random/trash, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "cHM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "cIg" = ( /obj/structure/cable/green{ d1 = 1; @@ -42574,14 +42298,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "cIn" = ( -/obj/structure/sign/directions/dock{ - layer = 3.5; - dir = 6 - }, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/turf/simulated/wall, +/area/hallway/Port_2_Deck_Central_Corridor_2) "cIo" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/corner/purple/diagonal, @@ -42590,28 +42310,22 @@ }, /obj/item/ano_scanner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "cIx" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cII" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "cIK" = ( /obj/effect/decal/cleanable/blood/splatter{ name = "Liquid"; icon_state = "mgibbl4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "cIM" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -42621,11 +42335,11 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "cJn" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "cJo" = ( /obj/machinery/station_map{ dir = 8; @@ -42633,34 +42347,45 @@ name = "1E-station holomap" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "cJp" = ( /obj/structure/sign/directions/evac{ dir = 1 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) +"cJG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "cJU" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "cKg" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "cKh" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/tiled/eris/steel/techfloor, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "cKs" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "cKu" = ( /obj/structure/window/reinforced{ dir = 4 @@ -42680,13 +42405,7 @@ layer = 3.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) -"cKv" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/rnd/Testing_Lab) "cKE" = ( /obj/structure/cable/white{ d1 = 1; @@ -42697,13 +42416,13 @@ /obj/effect/catwalk_plated/white, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "cKO" = ( /obj/random/trash, /obj/random/junk, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "cLp" = ( /obj/machinery/light/floortube{ dir = 1; @@ -42712,7 +42431,10 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) +"cLL" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/Deck2_Aft_Corridor) "cLT" = ( /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, @@ -42722,7 +42444,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "cMi" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 @@ -42735,7 +42457,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "cMl" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -42747,7 +42469,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "cMz" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -42759,7 +42481,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "cMC" = ( /obj/structure/bed/chair/sofa/brown{ dir = 1; @@ -42768,7 +42490,7 @@ /obj/structure/window/titanium, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "cMU" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -42777,7 +42499,7 @@ dir = 4 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "cNu" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/atmospherics/pipe/tank/air/full{ @@ -42790,7 +42512,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) +/area/maintenance/Deck2_Medical_AftCorridor1) "cNB" = ( /obj/structure/table/rack/shelf, /obj/item/radio{ @@ -42832,12 +42554,12 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "cND" = ( /obj/structure/curtain/open/shower, /obj/machinery/door/window/northright, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "cNV" = ( /obj/structure/window/reinforced{ dir = 1 @@ -42856,7 +42578,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "cOc" = ( /obj/structure/cable/green{ d1 = 1; @@ -42875,12 +42597,12 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "cOu" = ( /obj/structure/table/steel, /obj/item/buttonofnormal, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "cOC" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -42898,11 +42620,11 @@ dir = 4 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "cOH" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "cON" = ( /obj/structure/cable{ d1 = 1; @@ -42911,7 +42633,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "cPe" = ( /obj/item/stack/material/wood{ amount = 24 @@ -42921,15 +42643,15 @@ name = "1S-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "cPg" = ( /obj/item/deck/cards, /obj/structure/table/hardwoodtable, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cPl" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarCorridor1) +/area/maintenance/Deck2_Cargo_AftStarCorridor1) "cPv" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Substation - Engineering" @@ -42948,44 +42670,29 @@ pixel_y = -32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "cPz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "cPP" = ( /obj/structure/table/rack, /obj/random/maintenance/cargo, /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "cQc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/catwalk_plated/techmaint, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "cQk" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "cQo" = ( /obj/structure/cable/green{ d1 = 2; @@ -43009,7 +42716,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "cQJ" = ( /obj/machinery/vr_sleeper{ dir = 8 @@ -43020,7 +42727,7 @@ pixel_y = -25 }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "cQM" = ( /obj/random/tech_supply, /obj/random/tech_supply, @@ -43038,7 +42745,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "cQN" = ( /obj/structure/sign/directions/engineering/reactor{ dir = 8 @@ -43052,7 +42759,7 @@ pixel_y = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "cRb" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -43061,12 +42768,12 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "cRd" = ( /obj/structure/table/steel, /obj/item/binoculars, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "cRi" = ( /obj/structure/table/standard, /obj/item/towel/random, @@ -43077,7 +42784,7 @@ pixel_y = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "cRQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -43093,7 +42800,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "cRZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -43101,14 +42808,14 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "cSb" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "cSn" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "cSs" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -43120,10 +42827,10 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "cSC" = ( /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "cSE" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -43138,11 +42845,11 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "cSF" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "cSJ" = ( /obj/structure/table/rack/shelf/steel, /obj/random/trash, @@ -43151,7 +42858,7 @@ /obj/random/maintenance/cargo, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "cSR" = ( /obj/machinery/vr_sleeper{ dir = 4 @@ -43161,7 +42868,7 @@ pixel_x = -31 }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "cTa" = ( /obj/structure/cable{ d1 = 1; @@ -43176,7 +42883,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "cTb" = ( /obj/structure/closet/walllocker/emerglocker/south, /turf/simulated/shuttle/floor/white, @@ -43189,12 +42896,12 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "cTj" = ( /obj/structure/dispenser/oxygen, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "cTq" = ( /obj/structure/cable/green{ d1 = 4; @@ -43214,13 +42921,20 @@ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) +"cTE" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/Star_2_Deck_Central_Corridor_1) "cTF" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "cTL" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -43239,18 +42953,18 @@ opacity = 1 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "cTU" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "cUg" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "cUk" = ( /obj/structure/cable{ d1 = 1; @@ -43275,14 +42989,14 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "cUw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "cUx" = ( /obj/machinery/portable_atmospherics/canister, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -43291,7 +43005,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "cUz" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/random{ @@ -43318,11 +43032,11 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "cUH" = ( /obj/effect/catwalk_plated, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "cUT" = ( /obj/item/storage/box/lights/mixed{ pixel_x = 8; @@ -43366,7 +43080,7 @@ }, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "cVi" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4 @@ -43378,7 +43092,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "cVv" = ( /obj/structure/cable{ d1 = 1; @@ -43393,7 +43107,16 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) +"cVD" = ( +/obj/machinery/pointdefense{ + id_tag = "PD Primary" + }, +/obj/machinery/shield_diffuser, +/obj/structure/cable/white, +/obj/effect/catwalk_plated/white, +/turf/simulated/floor/airless, +/area/space) "cVG" = ( /obj/structure/table/marble, /obj/machinery/chemical_dispenser/bar_soft/full{ @@ -43404,7 +43127,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "cVI" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -43417,23 +43140,23 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Locker_Room) -"cWa" = ( -/obj/structure/inflatable, -/turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) -"cWj" = ( -/obj/structure/sign/painting/public{ - pixel_y = 32 - }, +/area/medical/Locker_Room) +"cVZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 1 }, +/obj/machinery/alarm{ + pixel_y = 25 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) +"cWa" = ( +/obj/structure/inflatable, +/turf/simulated/wall, +/area/maintenance/Deck2_Cargo_AftCorridor2) "cWk" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -43445,7 +43168,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "cWN" = ( /obj/machinery/alarm{ dir = 4; @@ -43459,7 +43182,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "cXb" = ( /obj/structure/cable{ d1 = 1; @@ -43473,7 +43196,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "cXd" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/suit/space/void/hev{ @@ -43501,11 +43224,11 @@ pixel_x = -6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "cXf" = ( /obj/item/frame, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "cXg" = ( /obj/structure/cable/green{ d1 = 4; @@ -43515,7 +43238,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "cXz" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -43529,7 +43252,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "cXB" = ( /obj/machinery/door/morgue{ dir = 2; @@ -43537,7 +43260,7 @@ req_access = list(22) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "cXJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -43555,15 +43278,15 @@ pixel_y = 32 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "cXQ" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "cXW" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "cXX" = ( /obj/effect/floor_decal/chapel{ dir = 8 @@ -43575,7 +43298,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "cXZ" = ( /obj/structure/closet/secure_closet/RD, /obj/random_multi/single_item/hand_tele, @@ -43587,17 +43310,17 @@ dir = 4 }, /turf/simulated/floor/carpet/purple, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "cYp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/blue/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "cZC" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "cZH" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /obj/structure/cable/green{ @@ -43606,7 +43329,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "dar" = ( /obj/structure/table/reinforced, /obj/item/modular_computer/laptop/preset/custom_loadout/advanced{ @@ -43620,7 +43343,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "day" = ( /obj/structure/closet/l3closet/medical, /obj/machinery/alarm{ @@ -43630,7 +43353,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "daD" = ( /obj/structure/table/hardwoodtable, /obj/item/flame/lighter/random, @@ -43639,7 +43362,7 @@ pixel_x = 9 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "daJ" = ( /obj/structure/cable/green{ d1 = 1; @@ -43664,7 +43387,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "daK" = ( /obj/structure/cable{ d1 = 4; @@ -43674,46 +43397,83 @@ /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) +"daR" = ( +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) +"daU" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/blue, +/obj/structure/grille, +/obj/structure/window/basic/full, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + layer = 3.5; + id = "Star Lockdown"; + name = "Lockdown Gate"; + desc = "A heavily reinforced gate, sector lockdown!" + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + layer = 3.5; + pixel_y = 9 + }, +/obj/structure/sign/directions/cargo{ + dir = 8; + layer = 3.5 + }, +/obj/structure/sign/directions/security{ + pixel_y = -9; + dir = 9; + layer = 3.5 + }, +/turf/simulated/floor/plating, +/area/hallway/Star_2_Deck_Central_Corridor_2) "dbf" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "dbg" = ( -/obj/machinery/power/apc{ +/obj/structure/bed/chair/sofa/beige, +/obj/machinery/light{ dir = 1; - name = "north bump"; - pixel_y = 24 + name = "1N-lighting fixture" }, -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = 27; - name = "N-light switch" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/turf/simulated/floor/tiled/dark, +/area/hallway/ForPort_2_Deck_Observatory) "dbk" = ( /obj/structure/smoletrack/roadturn{ dir = 1 }, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "dbv" = ( /obj/structure/cable/green{ d1 = 1; @@ -43724,7 +43484,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "dbx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -43738,7 +43498,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "dbA" = ( /obj/effect/floor_decal/shuttle/loading/yellow{ dir = 1 @@ -43751,14 +43511,14 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "dbE" = ( /obj/machinery/light/small{ dir = 8 }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) +/area/maintenance/Deck2_Science_ForCorridor1) "dbK" = ( /obj/structure/table/rack, /obj/item/clothing/head/helmet/combat{ @@ -43859,7 +43619,7 @@ pixel_x = 3 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "dck" = ( /obj/item/stack/material/phoron{ amount = 25; @@ -43904,14 +43664,16 @@ pixel_x = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) -"dcl" = ( -/obj/structure/table/steel, -/obj/machinery/light/small{ - dir = 8 +/area/maintenance/Engineering_Substation) +"dcA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "dcC" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor/corner{ @@ -43921,7 +43683,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "dcF" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -43933,7 +43695,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "dcS" = ( /obj/structure/cable/green{ d1 = 1; @@ -43944,7 +43706,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "dcV" = ( /obj/structure/sign/directions/cryo{ dir = 1 @@ -43953,8 +43715,12 @@ pixel_y = -9; dir = 1 }, +/obj/structure/sign/directions/kitchen{ + dir = 1; + pixel_y = 9 + }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/area/maintenance/Deck2_Star_Corridor) "ddf" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/black{ dir = 1 @@ -43963,18 +43729,12 @@ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "ddv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/obj/structure/table/hardwoodtable, +/obj/item/mail/junkmail, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/Chomp_Dinner_2) "ddH" = ( /obj/structure/table/standard, /obj/item/bodybag/cryobag, @@ -43993,7 +43753,7 @@ }, /obj/structure/table/bench/marble, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "ddS" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/status_display{ @@ -44001,7 +43761,7 @@ name = "W-status display" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "deb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -44010,7 +43770,7 @@ dir = 1 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "den" = ( /obj/structure/table/rack{ dir = 8; @@ -44037,7 +43797,7 @@ pixel_y = 25 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "deQ" = ( /obj/structure/table/steel, /obj/item/analyzer/plant_analyzer, @@ -44056,13 +43816,13 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "dfc" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "dfe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -44077,11 +43837,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "dfo" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "dfp" = ( /obj/structure/railing, /obj/structure/curtain/bed{ @@ -44091,13 +43851,13 @@ }, /obj/machinery/light_construct/floortube, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "dfx" = ( /obj/structure/table/rack, /obj/item/tvcamera, /obj/item/tvcamera, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "dfB" = ( /obj/random/obstruction, /obj/structure/cable/green{ @@ -44106,7 +43866,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "dfD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -44122,7 +43882,17 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) +"dfO" = ( +/obj/structure/lattice, +/obj/effect/catwalk_plated/techmaint, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_StarChamber1) "dfR" = ( /obj/structure/cable/green{ d1 = 1; @@ -44134,7 +43904,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "dgq" = ( /obj/structure/closet/secure_closet/brig, /obj/item/radio/headset, @@ -44143,13 +43913,8 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "dgA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -44164,8 +43929,13 @@ /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 9 }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "dgE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -44174,7 +43944,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "dgF" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/steeldecal/steel_decals10{ @@ -44198,7 +43968,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "dgI" = ( /obj/structure/cable/green{ d1 = 4; @@ -44224,13 +43994,30 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) +"dgJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "1N-Station Intercom (General)"; + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_2) "dgQ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "dgU" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -44247,7 +44034,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "dgY" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -44259,14 +44046,14 @@ id_tag = "sc-DBBstall3" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "dhN" = ( /obj/structure/table/fancyblack, /obj/item/flame/candle/candelabra/everburn{ pixel_y = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "dhP" = ( /obj/structure/table/rack/shelf/steel, /obj/item/radio/off{ @@ -44310,7 +44097,7 @@ pixel_x = -4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "dhR" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -44333,7 +44120,7 @@ id = "sc-GCmedicalreception" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "dhS" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -44349,13 +44136,30 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "dii" = ( /obj/structure/table/standard, /obj/random/maintenance/cargo, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) +"diF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/structure/sign/painting/public{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "diW" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -44376,7 +44180,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "diZ" = ( /obj/structure/cable{ d1 = 4; @@ -44387,15 +44191,15 @@ dir = 4 }, /obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "dja" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "djg" = ( /obj/effect/floor_decal/industrial/danger{ dir = 1 @@ -44406,7 +44210,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) +/area/maintenance/Deck2_Science_ForCorridor1) "djr" = ( /obj/machinery/door/window/holowindoor{ name = "Mass Driver"; @@ -44414,18 +44218,34 @@ }, /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "djH" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4; color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) +"djZ" = ( +/obj/machinery/appliance/cooker/fryer, +/obj/machinery/ai_status_display{ + name = "1S-AI display"; + pixel_y = -32 + }, +/obj/machinery/camera/network/security{ + dir = 1; + c_tag = "D3-Dmc-Chomp Kitchen1"; + network = list("Domicile") + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "dkb" = ( /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "dkf" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, @@ -44433,7 +44253,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "dkA" = ( /obj/machinery/power/terminal{ dir = 8 @@ -44447,7 +44267,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "dkH" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals10{ @@ -44457,7 +44277,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "dkM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -44471,7 +44291,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "dld" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -44483,7 +44303,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "dln" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -44491,7 +44311,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "dlt" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -44500,7 +44320,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "dlB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -44509,15 +44329,15 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "dlD" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "dlL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "dlP" = ( /obj/structure/table/reinforced, /obj/item/dice, @@ -44528,7 +44348,7 @@ }, /obj/item/radio/headset, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "dlR" = ( /obj/structure/cable/green{ d1 = 1; @@ -44545,7 +44365,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "dlW" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -44570,33 +44390,39 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) +"dme" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "dmf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "dmr" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1; color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "dmt" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) -"dmB" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "dmJ" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "dmL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor{ @@ -44606,7 +44432,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "dmT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -44623,7 +44449,23 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) +"dnp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/multi_tile/glass, +/obj/effect/floor_decal/industrial/arrows/blue, +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 1 + }, +/obj/machinery/door/airlock/angled_bay/double/glass/common{ + name = "Aft Sector Domicile-Docks" + }, +/turf/simulated/floor/tiled/techmaint, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "dnC" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -44640,11 +44482,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "dnF" = ( /obj/structure/bed/chair/bay/chair/padded/red/bignest, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "dod" = ( /obj/structure/cable/green{ d1 = 1; @@ -44671,7 +44513,7 @@ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "doj" = ( /obj/structure/table/standard, /obj/structure/bedsheetbin, @@ -44682,7 +44524,7 @@ dir = 9 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "dos" = ( /obj/structure/sign/directions/science{ dir = 6; @@ -44698,7 +44540,7 @@ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "doy" = ( /obj/structure/table/steel, /obj/item/cell/apc, @@ -44708,7 +44550,7 @@ network = list("engineering") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "doz" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -44718,7 +44560,7 @@ /obj/machinery/door/airlock/maintenance/common, /obj/item/tape/police, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "doG" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -44727,7 +44569,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "doR" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -44738,14 +44580,14 @@ network = list("Medical") }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "doV" = ( /obj/machinery/camera/network/security{ c_tag = "D2-Com-Port Foyer2"; network = list("Commons") }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "dpp" = ( /obj/structure/cable/green{ d1 = 4; @@ -44757,7 +44599,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "dpq" = ( /obj/item/bodysnatcher, /obj/structure/table/standard, @@ -44766,7 +44608,7 @@ pixel_x = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "dpv" = ( /obj/structure/cable/green{ d1 = 1; @@ -44781,35 +44623,32 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "dpC" = ( /obj/structure/loot_pile/maint/technical, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) +"dpD" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "dpO" = ( /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "dpQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/spline/plain{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/security{ - dir = 4; - c_tag = "D2-Com-Star Corridor2"; - network = list("Commons") - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/turf/simulated/floor/tiled/dark, +/area/hallway/Port_2_Deck_Central_Corridor_1) "dpZ" = ( /obj/structure/cable/green{ d1 = 4; @@ -44829,8 +44668,17 @@ dir = 8; color = "#989898" }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) +"dqa" = ( +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced/airless, +/area/space) "dqu" = ( /obj/structure/cable/green{ d1 = 1; @@ -44842,7 +44690,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "dqv" = ( /obj/structure/cable{ d1 = 4; @@ -44858,17 +44706,17 @@ /obj/effect/landmark{ name = "lightsout" }, -/obj/machinery/light/floortube{ - pixel_y = -3 - }, /obj/effect/floor_decal/borderfloor{ dir = 1 }, /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "dqy" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -44895,7 +44743,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "dqB" = ( /obj/machinery/atmospherics/unary/outlet_injector{ frequency = 1443; @@ -44904,7 +44752,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "dqF" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 4 @@ -44917,7 +44765,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "dqI" = ( /obj/structure/closet/cabinet, /obj/item/clothing/suit/storage/toggle/tesharicoatwhite, @@ -44926,7 +44774,7 @@ /obj/item/clothing/shoes/footwraps, /obj/item/clothing/shoes/footwraps, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "dqL" = ( /obj/structure/cable/green{ d1 = 1; @@ -44940,37 +44788,22 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "drb" = ( /obj/machinery/light{ dir = 1; name = "1N-lighting fixture" }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, /obj/effect/floor_decal/shuttle/loading{ dir = 4; color = "#00B8B2" }, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "drh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_1) "drl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -44984,7 +44817,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "drD" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -44995,7 +44828,7 @@ name = "Gym Showers Access" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "drJ" = ( /obj/structure/noticeboard{ pixel_y = 30 @@ -45007,7 +44840,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "drQ" = ( /obj/effect/floor_decal/industrial/loading/blue{ dir = 1 @@ -45027,7 +44860,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "drS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -45038,14 +44871,14 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "drV" = ( /obj/structure/smoletrack/roadT{ dir = 4 }, /mob/living/simple_mob/animal/passive/mouse/rat, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "dsa" = ( /obj/structure/cable/green{ d1 = 4; @@ -45059,7 +44892,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "dsj" = ( /obj/effect/floor_decal/corner_techfloor_gray{ dir = 10 @@ -45071,7 +44904,7 @@ network = list("Domicile") }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "dst" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -45081,7 +44914,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "dsx" = ( /obj/structure/cable/green{ d1 = 2; @@ -45091,7 +44924,7 @@ /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "dsV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -45109,7 +44942,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "dsX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -45121,7 +44954,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "dtw" = ( /obj/machinery/button/remote/blast_door{ dir = 8; @@ -45146,14 +44979,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "dtL" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "dtN" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ @@ -45161,7 +44994,13 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) +"dtP" = ( +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Cargo_AftCorridor2) "dtR" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -45172,7 +45011,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "due" = ( /obj/structure/cable/green{ d1 = 1; @@ -45189,7 +45028,7 @@ dir = 6 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "duE" = ( /obj/structure/closet/l3closet/security, /obj/machinery/camera/network/security{ @@ -45204,11 +45043,11 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "duK" = ( /obj/machinery/dnaforensics, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "duN" = ( /obj/structure/cable/green{ d1 = 1; @@ -45222,7 +45061,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "duU" = ( /obj/machinery/door/window/holowindoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -45232,11 +45071,11 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "duV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "dve" = ( /obj/item/stack/material/steel{ amount = 50 @@ -45255,14 +45094,10 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) -"dvk" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/area/rnd/Robotics_Lab) "dvr" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "dvs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -45273,7 +45108,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "dvz" = ( /obj/machinery/autolathe, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -45282,7 +45117,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "dvB" = ( /obj/structure/table/reinforced, /obj/item/sticky_pad/random{ @@ -45295,7 +45130,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "dvL" = ( /obj/structure/cable/green{ d1 = 2; @@ -45303,7 +45138,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "dvR" = ( /obj/structure/cable{ d1 = 4; @@ -45317,11 +45152,24 @@ /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) +"dvW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/camera/network/security{ + c_tag = "D2-Com-Port Corridor1"; + network = list("Commons") + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "dwa" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -45330,7 +45178,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "dwh" = ( /obj/effect/floor_decal/industrial/hatch, /obj/machinery/atmospheric_field_generator/perma/underdoors{ @@ -45362,7 +45210,7 @@ locked = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "dwV" = ( /obj/structure/extinguisher_cabinet{ name = "1N-extinguisher cabinet"; @@ -45372,21 +45220,21 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "dxj" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8; color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "dxM" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 4; icon_state = "pipe-c" }, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "dxO" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/machinery/disposal, @@ -45395,7 +45243,7 @@ }, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "dyv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -45407,7 +45255,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "dyw" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -45426,7 +45274,7 @@ id = "sc-GCsouthshuttlebay" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "dyy" = ( /obj/structure/table/reinforced, /obj/item/clothing/glasses/science{ @@ -45435,7 +45283,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "dyE" = ( /obj/structure/closet/emcloset, /obj/item/storage/box/survival/space{ @@ -45458,18 +45306,7 @@ dir = 5 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) -"dyS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "dyX" = ( /obj/structure/table/rack{ dir = 8; @@ -45484,21 +45321,32 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) +"dyZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/techmaint, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "dzb" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; pixel_y = 25 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "dzd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "dzn" = ( /obj/structure/sign/warning/evac, /turf/simulated/shuttle/wall/no_join{ @@ -45515,7 +45363,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "dzG" = ( /obj/structure/cable/green{ d1 = 4; @@ -45538,7 +45386,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "dzN" = ( /obj/item/radio/intercom{ dir = 1; @@ -45552,7 +45400,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "dzR" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -45561,16 +45409,16 @@ dir = 1 }, /turf/simulated/floor/carpet/brown/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "dzV" = ( /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "dzW" = ( /obj/effect/floor_decal/spline/fancy{ dir = 8 }, /turf/simulated/floor/carpet/purple, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "dzX" = ( /obj/machinery/station_map{ dir = 8; @@ -45584,7 +45432,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "dAt" = ( /obj/effect/floor_decal/industrial/loading/blue{ dir = 1 @@ -45602,7 +45450,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "dBb" = ( /obj/structure/cable/green{ d1 = 4; @@ -45617,9 +45465,9 @@ dir = 4 }, /obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "dBF" = ( /obj/item/toy/plushie/snakeplushie{ color = "#62b5cf" @@ -45640,24 +45488,24 @@ }, /obj/structure/closet/crate/chest, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "dBK" = ( /obj/machinery/vending/loadout/gadget, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "dCk" = ( /obj/random/tech_supply, /obj/structure/table/rack/steel, /obj/random/tech_supply/component, /obj/random/tech_supply/component, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "dCA" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "dCH" = ( /obj/vehicle/train/trolley{ dir = 8 @@ -45666,7 +45514,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "dCI" = ( /obj/structure/table/rack/shelf/steel, /obj/item/radio/off{ @@ -45710,7 +45558,7 @@ pixel_x = -4 }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "dCK" = ( /obj/structure/cable/green{ d1 = 4; @@ -45718,15 +45566,17 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "dCO" = ( -/obj/machinery/camera/network/security{ - dir = 8; - c_tag = "D2-Com-Port Corridor1"; - network = list("Commons") +/obj/structure/closet/emcloset, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/obj/machinery/light{ + name = "1S-light fixture" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/hallway/Port_2_Deck_Central_Corridor_1) "dCR" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -45741,7 +45591,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "dCU" = ( /obj/structure/cable{ d1 = 1; @@ -45754,23 +45604,23 @@ dir = 4 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "dDg" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "dDt" = ( /obj/effect/decal/remains/xeno, /obj/effect/decal/cleanable/greenglow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "dDv" = ( /obj/structure/loot_pile/maint/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Chamber) +/area/maintenance/Deck2_Science_ForPort_Chamber) "dDw" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -45798,7 +45648,7 @@ pixel_x = -4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "dDJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -45812,11 +45662,11 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "dDL" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "dDQ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -45824,7 +45674,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "dDR" = ( /obj/structure/cable{ d1 = 1; @@ -45839,7 +45689,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "dDU" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -45849,7 +45699,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "dEa" = ( /obj/machinery/button/remote/driver{ id = "SC-MSchapel_one"; @@ -45869,7 +45719,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "dEh" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -45885,7 +45735,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "dEo" = ( /obj/structure/closet/wardrobe/science_white, /obj/item/storage/box/gloves, @@ -45899,7 +45749,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Locker_Room) +/area/rnd/Locker_Room) "dEu" = ( /obj/structure/cable/green{ d1 = 1; @@ -45913,7 +45763,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "dEJ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -45921,11 +45771,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/red/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "dER" = ( /obj/structure/cable/green{ d1 = 1; @@ -45934,7 +45784,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "dEU" = ( /obj/structure/table/standard, /obj/item/storage/laundry_basket, @@ -45953,7 +45803,7 @@ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "dEY" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 8 @@ -45962,16 +45812,16 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "dEZ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "dFg" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "dFm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -45980,19 +45830,19 @@ dir = 1 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "dFn" = ( /obj/structure/sign/department/sci{ desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "dFK" = ( /obj/structure/sign/department/shield{ desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "dFR" = ( /obj/structure/cable/green{ d1 = 1; @@ -46006,7 +45856,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "dFS" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -46016,7 +45866,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "dGb" = ( /obj/machinery/camera/network/security{ dir = 4; @@ -46030,7 +45880,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "dGo" = ( /obj/effect/catwalk_plated/white, /obj/machinery/power/apc{ @@ -46043,7 +45893,7 @@ icon_state = "0-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "dGs" = ( /obj/structure/table/rack/shelf, /obj/item/gps/science{ @@ -46093,7 +45943,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Locker_Room) +/area/rnd/Locker_Room) "dGC" = ( /obj/structure/closet/secure_closet/scientist, /obj/machinery/firealarm{ @@ -46108,7 +45958,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Locker_Room) +/area/rnd/Locker_Room) "dGF" = ( /obj/structure/cable/green{ d1 = 1; @@ -46116,7 +45966,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "dGT" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -46127,19 +45977,24 @@ name = "Aft Sector Domicile-Docks" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "dHd" = ( /obj/random/trash, /obj/random/junk, /obj/random/junk, +/obj/structure/cable/white{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "dHv" = ( /obj/effect/landmark/start{ name = "Librarian" }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "dHR" = ( /obj/structure/cable/green{ d1 = 4; @@ -46150,12 +46005,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "dHX" = ( /obj/random/trash, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "dIf" = ( /obj/structure/cable/green{ d1 = 4; @@ -46175,28 +46030,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Emergency_EVA) -"dIj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/crew_quarters/Emergency_EVA) "dIm" = ( /obj/structure/table/steel, /obj/effect/catwalk_plated/techfloor, @@ -46213,15 +46047,15 @@ pixel_y = -2 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "dIq" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "dIu" = ( /obj/structure/sign/warning/vacuum, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "dIx" = ( /obj/item/cell/device/weapon{ pixel_y = 12; @@ -46267,7 +46101,7 @@ }, /obj/structure/table/rack, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "dIy" = ( /obj/structure/cable/green{ d1 = 1; @@ -46284,7 +46118,7 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "dIH" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -46294,7 +46128,7 @@ /obj/machinery/door/airlock/maintenance/common, /obj/item/tape/engineering, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "dIT" = ( /obj/machinery/atmospherics/binary/passive_gate{ regulate_mode = 0; @@ -46306,7 +46140,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "dIY" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -46327,7 +46161,7 @@ pixel_y = 25 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Port_Corridor) "dJi" = ( /obj/item/stool/padded{ dir = 8 @@ -46343,7 +46177,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "dJr" = ( /obj/machinery/vending/sovietsoda, /obj/effect/floor_decal/borderfloor{ @@ -46358,13 +46192,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "dJs" = ( /obj/machinery/doorbell_chime{ id_tag = "sc-ChimeMed" }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "dJH" = ( /obj/structure/cable/green{ d1 = 2; @@ -46390,7 +46224,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "dJI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -46400,10 +46234,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "dJJ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "dJL" = ( /obj/structure/cable/green{ d1 = 4; @@ -46429,7 +46263,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "dJN" = ( /obj/structure/sink{ dir = 8; @@ -46448,7 +46282,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "dJS" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -46462,21 +46296,63 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) +"dKd" = ( +/obj/structure/lattice, +/obj/effect/catwalk_plated/techmaint, +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_StarChamber2) "dKp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) +"dKB" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/flora/lily3, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_1) "dKG" = ( -/obj/machinery/camera/network/security{ - dir = 4; - c_tag = "D2-Com-Star Corridor1"; - network = list("Commons") +/obj/structure/closet/emcloset, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + name = "1N-lighting fixture" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/hallway/Star_2_Deck_Central_Corridor_1) +"dLb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "dLe" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 8 @@ -46514,7 +46390,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "dLw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -46530,7 +46406,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "dLz" = ( /obj/structure/cable/green{ d1 = 2; @@ -46547,7 +46423,19 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) +"dLB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/structure/sign/painting/public{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "dLF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -46555,8 +46443,13 @@ dir = 1 }, /obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "dLQ" = ( /obj/structure/cable/green{ d1 = 4; @@ -46572,7 +46465,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "dLR" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -46580,10 +46473,10 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "dMl" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "dMp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -46606,7 +46499,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "dMv" = ( /obj/structure/cable/green{ d1 = 2; @@ -46617,7 +46510,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "dMF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -46631,7 +46524,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "dNa" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -46639,15 +46532,15 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "dNh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "dNj" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_StarCorridor1) +/area/maintenance/Deck2_Security_StarCorridor1) "dNq" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -46659,7 +46552,7 @@ icon_state = "4-8" }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "dNr" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -46678,7 +46571,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "dNB" = ( /obj/structure/cable/green{ d1 = 1; @@ -46692,20 +46585,20 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "dNI" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "dOn" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "dOq" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -46744,7 +46637,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "dOv" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -46755,7 +46648,7 @@ }, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "dOx" = ( /obj/structure/cable/green{ d1 = 1; @@ -46776,7 +46669,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "dOF" = ( /obj/machinery/atmospheric_field_generator/perma/underdoors{ color = "Yellow" @@ -46795,13 +46688,13 @@ }, /obj/effect/floor_decal/industrial/hatch, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "dOR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "dOV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -46813,7 +46706,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "dPi" = ( /obj/structure/table/rack, /obj/item/gun/projectile/shotgun/pump/rifle/practice{ @@ -46828,13 +46721,13 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "dPo" = ( /obj/effect/floor_decal/spline/fancy{ dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "dPs" = ( /obj/machinery/light/small{ dir = 1 @@ -46845,17 +46738,12 @@ /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "dPK" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/obj/structure/table/hardwoodtable, +/obj/item/mail/junkmail, +/turf/simulated/floor/carpet/brown, +/area/crew_quarters/Library) "dPW" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -46879,14 +46767,14 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "dPY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "dQc" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -46895,7 +46783,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "dQH" = ( /obj/structure/cable/green{ d1 = 4; @@ -46910,7 +46798,20 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) +"dQN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 25; + name = "N-fire alarm" + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_2) "dQR" = ( /obj/structure/table/woodentable, /obj/machinery/alarm{ @@ -46918,7 +46819,29 @@ pixel_x = -22 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) +"dQS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/hatch, +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium, +/obj/structure/window/titanium{ + dir = 4 + }, +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium{ + dir = 8 + }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/ab_TeshDen) "dQV" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -46928,21 +46851,27 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "dRp" = ( /obj/structure/inflatable, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "dRD" = ( /obj/structure/reagent_dispensers/fueltank/high, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "dRH" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "dRN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorblack{ @@ -46952,7 +46881,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "dRO" = ( /obj/structure/table/hardwoodtable, /obj/item/storage/box/holobadge{ @@ -46960,7 +46889,7 @@ pixel_x = -4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "dSe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -46974,7 +46903,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "dSt" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -46984,7 +46913,7 @@ req_one_access = list(7,29) }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "dSu" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor{ @@ -46994,13 +46923,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "dSH" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/blue/bordercorner, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "dSO" = ( /obj/machinery/disposal, /obj/effect/floor_decal/borderfloor{ @@ -47013,7 +46942,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "dSW" = ( /obj/machinery/light{ dir = 4; @@ -47034,10 +46963,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "dSY" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "dTd" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -47049,7 +46978,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "dTh" = ( /obj/structure/bed/double/padded{ pixel_y = 25 @@ -47082,7 +47011,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/bcarpet/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "dTp" = ( /obj/structure/cable{ d1 = 1; @@ -47103,7 +47032,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "dTv" = ( /obj/effect/floor_decal/chapel, /obj/structure/flora/pottedplant/stoutbush{ @@ -47113,14 +47042,14 @@ /obj/structure/table/bench/marble, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "dTy" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "dTA" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -47133,7 +47062,7 @@ dir = 4 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "dTC" = ( /obj/structure/cable/green{ d1 = 1; @@ -47153,7 +47082,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "dTE" = ( /obj/machinery/pointdefense{ id_tag = "PD Primary" @@ -47165,28 +47094,28 @@ icon_state = "0-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "dTF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/holoposter{ - pixel_y = -32 - }, /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, /obj/effect/floor_decal/corner/lightgrey/bordercorner{ dir = 8 }, +/obj/machinery/holoposter{ + pixel_y = -32 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "dTH" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "dTN" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -47197,7 +47126,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "dUc" = ( /obj/machinery/alarm{ dir = 1; @@ -47224,24 +47153,26 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "dUk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Dinner_2) "dUp" = ( /obj/structure/table/standard, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "dUw" = ( /obj/structure/cable/green{ d1 = 4; @@ -47255,7 +47186,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "dUz" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 8; @@ -47264,23 +47195,23 @@ use_power = 1 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "dUH" = ( /obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "dUI" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ color = "#989898"; dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "dUK" = ( /obj/machinery/shieldgen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "dUM" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -47291,7 +47222,17 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) +"dUQ" = ( +/obj/structure/lattice, +/obj/effect/catwalk_plated/techmaint, +/obj/structure/cable/white{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_PortChamber1) "dVl" = ( /obj/machinery/camera/network/research{ c_tag = "D2-Sci-Testing1"; @@ -47299,7 +47240,7 @@ network = list("Science","Testing Chamber") }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "dVm" = ( /obj/structure/cable/green{ d1 = 4; @@ -47315,50 +47256,38 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) -"dVE" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/maintenance/Deck2_Medical_AftCorridor2) "dVO" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ dir = 8 }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "dVT" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; dir = 8 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "dVV" = ( /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "dWe" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 10 }, /obj/effect/catwalk_plated/techfloor, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "dWm" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "dWp" = ( /obj/structure/cable/white{ d1 = 1; @@ -47366,14 +47295,14 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "dWv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "dWG" = ( /obj/structure/table/reinforced, /obj/item/toy/figure/detective{ @@ -47391,7 +47320,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "dWM" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/spline/fancy/wood{ @@ -47399,11 +47328,11 @@ }, /obj/item/bikehorn/fluff/chew_ire, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "dWN" = ( /obj/structure/bed/pillowpilefront/green, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "dWW" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -47412,7 +47341,7 @@ dir = 8 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "dXa" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloorblack{ @@ -47422,18 +47351,19 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "dXw" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/table/standard, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "dXD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "dXI" = ( /obj/machinery/disposal/wall/cleaner{ name = "1W-Resleeving lost & found bin"; @@ -47444,11 +47374,11 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/red, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "dXJ" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor2) +/area/maintenance/Deck2_Science_StarCorridor2) "dYe" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -47460,18 +47390,7 @@ dir = 8 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) -"dYm" = ( -/obj/structure/ladder{ - pixel_y = 3 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/small/warning/emerg_only{ - desc = "Ladder for emergency use only"; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/area/crew_quarters/Office_Lounge) "dYu" = ( /obj/machinery/light{ dir = 1; @@ -47484,7 +47403,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "dYz" = ( /obj/structure/cable/green{ d1 = 4; @@ -47495,7 +47414,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "dYC" = ( /obj/item/radio/intercom{ dir = 4; @@ -47509,7 +47428,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "dYJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -47526,7 +47445,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "dYS" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -47547,22 +47466,7 @@ /area/shuttle/escape_pod10/station) "dYT" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) -"dZt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/light/floortube{ - pixel_y = -2 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/engineering/Storage) "dZA" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -47578,7 +47482,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "dZD" = ( /obj/structure/cable/green{ d1 = 1; @@ -47598,12 +47502,12 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "dZM" = ( /obj/item/toy/cat_toy/rod, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "dZO" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -47611,24 +47515,24 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "dZS" = ( /obj/structure/table/standard, /obj/random/maintenance/security, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "dZT" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "eae" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "eag" = ( /obj/structure/bed/chair/sofa/blue, /obj/structure/window/titanium{ @@ -47638,15 +47542,15 @@ /obj/effect/floor_decal/spline/fancy{ dir = 1 }, -/turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/turf/simulated/floor/carpet/sblucarpet, +/area/hallway/Star_Transit_Foyer) "eao" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "eaB" = ( /obj/structure/table/steel_reinforced, /obj/structure/window/reinforced{ @@ -47672,7 +47576,7 @@ pixel_x = -6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "eaF" = ( /obj/structure/bed/chair/sofa/purp{ dir = 4 @@ -47682,7 +47586,7 @@ pixel_x = -22 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "eaH" = ( /obj/structure/railing{ dir = 8 @@ -47699,7 +47603,11 @@ network = list("Cargo") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) +"eaI" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/grass, +/area/hallway/Central_2_Deck_Hall) "eaJ" = ( /obj/structure/cable/green{ d1 = 1; @@ -47713,21 +47621,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) -"eaM" = ( -/obj/structure/railing/grey{ - color = "yellow"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 1 - }, -/obj/structure/railing/grey{ - color = "yellow"; - dir = 8 - }, -/turf/simulated/open, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/rnd/Toxins_Viewing_Port) "eaR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -47742,7 +47636,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "eaY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -47751,7 +47645,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "ebe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -47770,10 +47664,11 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "ebf" = ( /obj/structure/bed/chair/sofa/corner/brown{ - dir = 1 + dir = 1; + pixel_y = 5 }, /obj/structure/cable{ d1 = 1; @@ -47790,7 +47685,7 @@ dir = 10 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "ebw" = ( /obj/structure/table/glass, /obj/item/storage/box/gloves{ @@ -47817,20 +47712,11 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "ebG" = ( /obj/random/trash, /turf/simulated/floor/wood/alt/panel/broken/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Theater) -"ebL" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/maintenance/ab_Theater) "ecb" = ( /obj/structure/cable/green{ d1 = 1; @@ -47849,7 +47735,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "eck" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -47861,11 +47747,11 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "eco" = ( /obj/structure/girder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForPortChamber1) +/area/maintenance/Deck2_Security_ForPortChamber1) "ecx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -47874,7 +47760,7 @@ dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "ecy" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -47882,23 +47768,23 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "ecO" = ( /obj/machinery/portable_atmospherics/powered/pump, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "ecT" = ( /obj/structure/bed/chair/sofa/left/orange{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "ecU" = ( /obj/machinery/doorbell_chime{ id_tag = "sc-ChimeMed" }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "edc" = ( /obj/machinery/door/blast/regular/open{ layer = 3.5; @@ -47913,7 +47799,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "edf" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -47922,7 +47808,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "edO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -47944,20 +47830,20 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "edR" = ( /obj/structure/stairs/spawner/west, /obj/structure/window/basic{ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "eeb" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "eej" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 4 @@ -47966,18 +47852,18 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "eem" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "eeE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "eeH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -47988,7 +47874,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "eeP" = ( /obj/structure/cable{ d1 = 1; @@ -48002,7 +47888,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "eeQ" = ( /obj/effect/landmark/start, /obj/effect/landmark{ @@ -48010,7 +47896,7 @@ pixel_y = 5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "efb" = ( /obj/machinery/atmospherics/unary/outlet_injector{ frequency = 1443; @@ -48022,11 +47908,11 @@ pixel_x = -22 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "eff" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "efl" = ( /obj/machinery/atmospherics/omni/mixer{ tag_east = 2; @@ -48037,7 +47923,7 @@ tag_south = 2 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "efo" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -48048,13 +47934,32 @@ /obj/effect/floor_decal/steeldecal/steel_decals10, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) +"efB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/item/radio/intercom{ + dir = 8; + name = "1W-Station Intercom (General)"; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Corridor_2) "efH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "efV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -48065,14 +47970,10 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "egk" = ( /obj/structure/cable/green{ d1 = 4; @@ -48093,7 +47994,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "egQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -48107,11 +48008,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "egU" = ( /obj/random/mainttoyloot, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "egW" = ( /obj/structure/cable/green{ d1 = 1; @@ -48140,7 +48041,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "ehd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -48149,17 +48050,30 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "ehe" = ( /obj/structure/loot_pile/maint/trash, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "ehg" = ( /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) +"ehn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/holoposter{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "ehE" = ( /obj/structure/closet/secure_closet/engineering_electrical, /obj/machinery/light{ @@ -48168,18 +48082,18 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "ehX" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "eia" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "eib" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 @@ -48187,7 +48101,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "eic" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -48203,7 +48117,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "eid" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -48213,7 +48127,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "eip" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -48225,12 +48139,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "eit" = ( /obj/effect/spider/stickyweb/dark, /obj/item/storage/vore_egg/bugcocoon, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "eiv" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -48254,7 +48168,7 @@ pixel_x = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "eiy" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -48262,7 +48176,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "eiA" = ( /obj/structure/table/marble, /obj/item/material/knife/butch{ @@ -48282,7 +48196,7 @@ pixel_y = -22 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "eiB" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/floor_decal/borderfloorblack{ @@ -48292,7 +48206,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "eiF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -48304,7 +48218,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "eiG" = ( /obj/machinery/door/window/eastright, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -48314,32 +48228,25 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "eiV" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) +"ejj" = ( +/obj/structure/disposalpipe/tagger{ + dir = 4; + sort_tag = "transit_crew" + }, +/turf/simulated/wall/r_wall, +/area/maintenance/Deck2_Port_Corridor) "ejl" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ +/obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/area/hallway/For_2_Deck_Central_Corridor_2) "ejC" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/power/apc{ @@ -48352,11 +48259,11 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "ejD" = ( /obj/structure/table/woodentable, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "ejF" = ( /obj/structure/cable{ d1 = 1; @@ -48365,7 +48272,16 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) +"ejY" = ( +/obj/random/trash, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_PortChamber2) "ejZ" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -48378,7 +48294,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "eke" = ( /obj/structure/table/glass, /obj/machinery/alarm{ @@ -48391,14 +48307,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "ekf" = ( /obj/machinery/atmospherics/pipe/tank/air/full{ dir = 8 }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "ekh" = ( /obj/structure/cable/green{ d1 = 2; @@ -48407,7 +48323,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Corridor) +/area/maintenance/Deck2_Science_ForPort_Corridor) "ekk" = ( /obj/machinery/button/remote/blast_door{ id = "sc-GCwestshuttlebay"; @@ -48426,7 +48342,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "ekr" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -48445,7 +48361,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "ekz" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -48454,28 +48370,33 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "ekI" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "ekR" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "ekT" = ( /obj/structure/cable{ d1 = 4; @@ -48485,7 +48406,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "eli" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -48493,7 +48414,7 @@ id = "sc-WTchapel_office" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "elw" = ( /obj/machinery/camera/network/security{ dir = 4; @@ -48501,7 +48422,7 @@ network = list("Domicile") }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "elN" = ( /obj/structure/cable/green{ d1 = 4; @@ -48519,7 +48440,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "elZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -48531,14 +48452,14 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "emk" = ( /turf/simulated/floor/tiled/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "emn" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "emv" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor/corner{ @@ -48548,33 +48469,30 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "emC" = ( -/obj/machinery/door/blast/regular/open{ - layer = 3.5; - id = "Star Lockdown"; - name = "Lockdown Gate"; - desc = "A heavily reinforced gate, sector lockdown!" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/arrows/blue{ +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -3 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "emF" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_For_Corridor) "emI" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "emX" = ( /obj/machinery/alarm{ pixel_y = 25 @@ -48587,19 +48505,26 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "emZ" = ( /obj/structure/table/woodentable, /obj/item/starcaster_news, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "end" = ( -/turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/effect/catwalk_plated/techmaint, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_AftStar_Corridor) "enl" = ( /obj/structure/loot_pile/maint/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "enA" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -48608,7 +48533,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "enC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -48631,7 +48556,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "enG" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 9 @@ -48640,12 +48565,12 @@ dir = 10 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "enO" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "enP" = ( /obj/structure/cable/green{ d1 = 4; @@ -48664,7 +48589,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "enQ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -48676,7 +48601,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "eol" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -48694,13 +48619,13 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "eov" = ( /obj/machinery/alarm{ pixel_y = 25 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "eoK" = ( /obj/structure/table/steel_reinforced, /obj/item/taperoll/engineering{ @@ -48732,13 +48657,13 @@ pixel_x = -1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "epi" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "epn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -48749,7 +48674,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "eps" = ( /obj/structure/lattice, /obj/machinery/shield_diffuser, @@ -48759,13 +48684,28 @@ id = "sc-GCnorthshuttlebay" }, /turf/space, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) +"epJ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/arrows/yellow, +/obj/effect/floor_decal/industrial/arrows/yellow{ + dir = 1 + }, +/obj/structure/simple_door/wood, +/obj/item/tape/engineering, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/ab_TeshDen) "eqi" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "eqs" = ( /obj/machinery/camera/network/security{ c_tag = "D2-Com-Star Foyer4"; @@ -48779,7 +48719,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "eqB" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -48790,7 +48730,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Security_ForStar_Chamber) +/area/maintenance/Deck2_Security_ForStar_Chamber) "eqD" = ( /obj/machinery/light{ dir = 4; @@ -48799,7 +48739,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "eqG" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -48814,7 +48754,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "eqS" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -48827,7 +48767,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "eqT" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -48837,36 +48777,45 @@ /obj/machinery/door/airlock/maintenance/int, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "eqY" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + pixel_y = 25; + name = "N-fire alarm" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_1) "erf" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "erh" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "ers" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "erE" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "erH" = ( /obj/structure/table/bench/padded, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/black/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "erJ" = ( /obj/machinery/light{ dir = 4; @@ -48881,7 +48830,12 @@ dir = 8 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) +"erM" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_StarChamber1) "esc" = ( /obj/machinery/power/apc{ dir = 1; @@ -48913,7 +48867,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "esm" = ( /obj/machinery/suit_cycler/medical, /obj/machinery/alarm{ @@ -48923,7 +48877,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "esB" = ( /obj/effect/decal/cleanable/blood/splatter{ name = "Liquid"; @@ -48934,7 +48888,7 @@ icon_state = "mfloor2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "esD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -48943,14 +48897,14 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "esF" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/cargo, /obj/random/maintenance/cargo, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "esJ" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -48976,7 +48930,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "esV" = ( /obj/machinery/camera/network/security{ dir = 4; @@ -48984,14 +48938,14 @@ network = list("Science") }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "etA" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "etC" = ( /obj/machinery/light{ dir = 1; @@ -49010,36 +48964,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "etF" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ color = "#989898"; dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) -"etY" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance/engi{ - name = "Domicile Air Distribution" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/security/Visitation_Room) "euk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -49056,7 +48988,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "eup" = ( /obj/effect/floor_decal/industrial/loading/red{ dir = 1 @@ -49067,7 +48999,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "euB" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -49079,7 +49011,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "euD" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloorblack{ @@ -49089,10 +49021,20 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "euF" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/double/glass/common{ + dir = 8; + name = "Central Lobby" }, /obj/structure/cable{ d1 = 4; @@ -49100,7 +49042,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_1) "eva" = ( /obj/item/stool/padded{ dir = 1 @@ -49112,7 +49054,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "evb" = ( /obj/structure/table/wooden_reinforced, /obj/item/handcuffs, @@ -49126,7 +49068,7 @@ pixel_y = 25 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "evp" = ( /obj/structure/cable/green{ d1 = 1; @@ -49139,12 +49081,12 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "evu" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "evM" = ( /obj/structure/closet/secure_closet/paramedic, /obj/machinery/firealarm{ @@ -49154,7 +49096,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "evS" = ( /obj/effect/floor_decal/chapel{ dir = 4 @@ -49164,13 +49106,13 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "evU" = ( /obj/structure/curtain/bed{ name = "curtain" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "ewb" = ( /obj/structure/bed/chair/oldsofa{ dir = 1 @@ -49178,7 +49120,7 @@ /obj/effect/landmark/start/visitor, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "ewd" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -49189,7 +49131,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "ewf" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -49198,7 +49140,7 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/sec, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Security_ForPortChamber1) +/area/maintenance/Deck2_Security_ForPortChamber1) "ewp" = ( /obj/machinery/light/floortube{ dir = 1; @@ -49213,7 +49155,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "ews" = ( /obj/structure/cable{ d1 = 4; @@ -49221,7 +49163,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "eww" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -49230,7 +49172,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "ewD" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -49239,7 +49181,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "ewQ" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -49250,7 +49192,7 @@ name = "Civilian Foyer" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "ewV" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -49273,7 +49215,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "exb" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -49298,13 +49240,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "exy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "exE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -49316,12 +49258,12 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "exK" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "exR" = ( /obj/structure/bed/chair/office/light, /obj/effect/landmark/start{ @@ -49330,7 +49272,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "exU" = ( /obj/structure/cable{ d1 = 1; @@ -49345,7 +49287,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "exZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -49354,7 +49296,7 @@ dir = 5 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "eyb" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -49365,7 +49307,7 @@ name = "Patient Ward" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "eym" = ( /obj/structure/closet/wardrobe/medic_gown, /obj/machinery/camera/network/research{ @@ -49375,18 +49317,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Locker_Room) -"eyn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/medical/Locker_Room) "eyx" = ( /obj/structure/cable/green{ d1 = 4; @@ -49410,7 +49341,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "eyV" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -49422,7 +49353,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "ezf" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -49431,7 +49362,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "ezj" = ( /obj/structure/cable/green{ d1 = 2; @@ -49448,33 +49379,43 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) -"ezo" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/quartermaster/Aft_Tool_Storage) "ezu" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/green/border, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light_switch{ + pixel_x = 11; + pixel_y = -27; + name = "S-light switch"; + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "ezU" = ( /obj/structure/closet/cabinet, /obj/item/clothing/shoes/cult, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "ezV" = ( /obj/machinery/alarm{ pixel_y = 25 }, /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber2) +/area/maintenance/Deck2_Engineering_ForStarChamber2) "ezZ" = ( /obj/random/maintenance/security, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForPortChamber1) +/area/maintenance/Deck2_Security_ForPortChamber1) "eAc" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/camera/network/security{ @@ -49483,13 +49424,19 @@ network = list("Cargo") }, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) +"eAl" = ( +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Security_AftStarCorridor2) "eAr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "eAy" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 @@ -49498,13 +49445,13 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "eAW" = ( /obj/item/stool/padded{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "eBi" = ( /obj/machinery/vr_sleeper{ dir = 4 @@ -49518,7 +49465,7 @@ pixel_y = -22 }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "eBm" = ( /obj/structure/table/bench/padded, /obj/effect/floor_decal/chapel, @@ -49529,14 +49476,14 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/black/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "eBv" = ( /obj/machinery/light{ dir = 1; name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "eBL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -49549,7 +49496,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "eBR" = ( /obj/structure/cable/green{ d1 = 1; @@ -49563,16 +49510,16 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarCorridor1) +/area/maintenance/Deck2_Engineering_ForStarCorridor1) "eBY" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "eCc" = ( /turf/unsimulated/mask, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "eCo" = ( /obj/item/book/codex, /obj/structure/disposalpipe/segment, @@ -49580,7 +49527,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "eCI" = ( /obj/structure/cable/green{ d1 = 1; @@ -49591,7 +49538,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "eCM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor/corner{ @@ -49601,7 +49548,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "eCW" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/machinery/atmospherics/portables_connector{ @@ -49610,7 +49557,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "eDi" = ( /obj/machinery/alarm{ dir = 8; @@ -49627,11 +49574,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/purple/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "eDC" = ( /obj/structure/cable/green{ d1 = 4; @@ -49654,7 +49601,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "eDT" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -49668,7 +49615,11 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) +"eDX" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_2) "eDZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -49677,7 +49628,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "eEi" = ( /obj/effect/catwalk_plated/techfloor, /obj/structure/cable/green{ @@ -49689,7 +49640,7 @@ name = "JoinLateCyborg" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "eEj" = ( /obj/structure/table/woodentable, /obj/machinery/firealarm{ @@ -49698,7 +49649,7 @@ pixel_x = -25 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "eEr" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -49730,7 +49681,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "eEy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -49745,7 +49696,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "eEO" = ( /obj/structure/cable/green{ d1 = 4; @@ -49758,7 +49709,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "eEU" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -49771,11 +49722,11 @@ name = "Chapel" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "eFe" = ( /obj/item/clothing/head/dress, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "eFg" = ( /obj/structure/curtain/bed{ icon_state = "open"; @@ -49783,7 +49734,7 @@ opacity = 0 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "eFj" = ( /obj/structure/table/glass, /obj/item/storage/box/gloves{ @@ -49799,20 +49750,29 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "eFm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) +"eFx" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_2) "eFH" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "eGh" = ( /obj/structure/sign/directions/cargo{ pixel_y = 9; @@ -49829,7 +49789,7 @@ layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "eGp" = ( /obj/item/mmi/digital/robot{ pixel_y = 10; @@ -49860,7 +49820,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "eGr" = ( /obj/structure/table/standard, /obj/machinery/light/small{ @@ -49877,7 +49837,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "eGw" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/random{ @@ -49904,19 +49864,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) -"eGP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/maintenance/Deck2_Civilian_StarCorridor1) "eHa" = ( /obj/structure/table/reinforced, /obj/item/multitool{ @@ -49934,21 +49882,21 @@ req_access = null }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "eHf" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "eHo" = ( /obj/structure/bed/chair/wood/wings{ color = "#004b9a"; dir = 1 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "eHw" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "eHz" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/black/bordercorner, @@ -49958,14 +49906,14 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "eHK" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "eHT" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/techmaint, @@ -49976,7 +49924,7 @@ }, /obj/random/junk, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "eHV" = ( /obj/structure/window/reinforced{ dir = 8 @@ -49989,24 +49937,26 @@ }, /obj/structure/window/reinforced, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "eHX" = ( /obj/machinery/chem_master, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "eIc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "eIi" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "eIu" = ( /obj/machinery/door/airlock/angled_bay/standard/color/research{ dir = 4; @@ -50027,7 +49977,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Locker_Room) +/area/rnd/Locker_Room) "eIB" = ( /obj/structure/cable/green{ d1 = 4; @@ -50050,7 +50000,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "eID" = ( /obj/structure/cable/green{ d1 = 1; @@ -50058,8 +50008,14 @@ icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "eIE" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -50071,7 +50027,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "eIL" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -50091,7 +50047,7 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "eIM" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -50113,7 +50069,7 @@ id_tag = "sc-DBsauna" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "eIQ" = ( /obj/machinery/alarm{ pixel_y = 25 @@ -50132,7 +50088,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber1) +/area/maintenance/Deck2_Engineering_ForStarChamber1) "eIX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -50157,7 +50113,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Locker_Room) +/area/rnd/Locker_Room) "eIY" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -50171,7 +50127,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "eJb" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -50188,7 +50144,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "eJd" = ( /obj/structure/cable/green{ d1 = 2; @@ -50206,24 +50162,16 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "eJf" = ( /obj/structure/table/steel, /obj/item/binoculars, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) -"eJn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, +/area/harbor/Aft_2_Deck_Airlock_Access) +"eJq" = ( +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_1) "eJs" = ( /obj/structure/cable{ d1 = 4; @@ -50247,11 +50195,11 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "eJu" = ( /obj/structure/bed/chair/oldsofa/right, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "eJN" = ( /obj/structure/cable/green{ d1 = 1; @@ -50268,7 +50216,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "eKe" = ( /obj/structure/closet/secure_closet/medical2, /obj/machinery/firealarm{ @@ -50283,7 +50231,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "eKp" = ( /obj/structure/cable/green{ d1 = 4; @@ -50317,7 +50265,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "eKt" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -50325,7 +50273,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "eKx" = ( /obj/machinery/alarm{ pixel_y = 25 @@ -50336,39 +50284,11 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) -"eKz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/sign/poster/custom{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "eKA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/holoposter{ - dir = 4; - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_For_Corridor) "eKB" = ( /obj/effect/wingrille_spawn/reinforced_phoron, /obj/machinery/door/firedoor/glass, @@ -50377,7 +50297,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "eKH" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -50386,10 +50306,10 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "eKK" = ( /turf/simulated/floor/wood/sif/broken, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "eKL" = ( /obj/structure/cable{ d1 = 1; @@ -50403,11 +50323,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "eKU" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "eLa" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/power/apc{ @@ -50423,7 +50343,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "eLe" = ( /obj/machinery/door/window/westleft{ name = "Test Chamber"; @@ -50433,11 +50353,11 @@ dir = 4 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "eLl" = ( /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "eLq" = ( /obj/machinery/flasher{ id = "testthis"; @@ -50452,7 +50372,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "eLz" = ( /obj/structure/cable/green{ d1 = 4; @@ -50466,7 +50386,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "eLB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -50475,7 +50395,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "eLH" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/red{ @@ -50499,22 +50419,13 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Equipment_Storage) -"eLI" = ( -/obj/structure/bed/chair/backed_grey{ - color = "grey" - }, -/obj/effect/landmark/start{ - name = "Botanist" - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/area/security/Equipment_Storage) "eMf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "eMm" = ( /obj/structure/table/steel_reinforced, /obj/random/medical/lite, @@ -50529,7 +50440,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "eMp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -50540,7 +50451,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "eMv" = ( /obj/structure/table/rack{ dir = 8; @@ -50594,13 +50505,13 @@ department = "EVA" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "eMA" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "eMF" = ( /obj/machinery/photocopier/faxmachine{ department = "Security Lobby"; @@ -50614,7 +50525,11 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) +"eMM" = ( +/obj/structure/flora/lily1, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_2) "eMV" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/portable_atmospherics/powered/reagent_distillery, @@ -50622,7 +50537,45 @@ pixel_y = 29 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) +"eNh" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/blue, +/obj/structure/grille, +/obj/structure/window/basic/full, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + layer = 3.5; + id = "For Lockdown"; + name = "Lockdown Gate"; + desc = "A heavily reinforced gate, sector lockdown!"; + dir = 4 + }, +/obj/structure/sign/directions/teleporter{ + pixel_y = 9; + dir = 1; + layer = 3.5 + }, +/obj/structure/sign/directions/cryo{ + dir = 1; + layer = 3.5 + }, +/obj/structure/sign/directions/science/exploration{ + pixel_y = -9; + dir = 1; + layer = 3.5 + }, +/turf/simulated/floor/plating, +/area/hallway/For_2_Deck_Central_Corridor_2) "eNj" = ( /obj/machinery/alarm{ dir = 1; @@ -50630,7 +50583,7 @@ }, /obj/structure/fitness/punchingbag, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "eNr" = ( /obj/structure/cable/green{ d1 = 1; @@ -50656,7 +50609,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "eNs" = ( /obj/structure/table/woodentable, /obj/machinery/newscaster{ @@ -50670,7 +50623,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "eNu" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -50680,7 +50633,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "eNz" = ( /obj/structure/table/standard, /obj/item/storage/box/cups{ @@ -50709,7 +50662,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "eNJ" = ( /obj/structure/bed/chair/comfy/brown{ dir = 8 @@ -50718,7 +50671,7 @@ name = "Librarian" }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "eNL" = ( /obj/structure/cable/green{ d1 = 1; @@ -50732,7 +50685,7 @@ dir = 5 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "eNQ" = ( /obj/structure/cable/green{ d1 = 4; @@ -50743,7 +50696,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "eNR" = ( /obj/structure/cable/green{ d1 = 1; @@ -50757,7 +50710,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "eNU" = ( /obj/machinery/alarm{ dir = 4; @@ -50770,7 +50723,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "eNY" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -50798,7 +50751,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "eOc" = ( /obj/structure/cable/green{ d1 = 4; @@ -50816,7 +50769,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "eOd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/hologram/holopad, @@ -50825,7 +50778,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "eOl" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -50853,10 +50806,10 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "eOm" = ( /obj/machinery/camera/network/security{ - c_tag = "D2-Com-For Corridor7"; + c_tag = "D2-Com-For Corridor3"; network = list("Commons") }, /obj/effect/floor_decal/borderfloor{ @@ -50866,7 +50819,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "eOo" = ( /obj/structure/table/standard, /obj/random/maintenance/research, @@ -50876,13 +50829,13 @@ name = "1S-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "eOz" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "eOJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -50891,7 +50844,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "ePd" = ( /obj/effect/floor_decal/chapel{ dir = 1 @@ -50901,7 +50854,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "ePm" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -50917,11 +50870,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "ePp" = ( /obj/item/target/alien, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "ePO" = ( /obj/structure/cable/green{ d1 = 2; @@ -50929,7 +50882,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "ePV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloorblack{ @@ -50939,7 +50892,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "eQK" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -50957,7 +50910,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "eRd" = ( /obj/structure/table/glass, /obj/item/storage/box/gloves{ @@ -50980,7 +50933,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "eRl" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -50989,14 +50942,14 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "eRm" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "eRo" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "eRx" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -51004,19 +50957,19 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "eRJ" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "eRK" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "eRO" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -51032,14 +50985,14 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "eRZ" = ( /obj/effect/decal/cleanable/blood/splatter{ name = "Liquid"; icon_state = "mfloor6" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "eSd" = ( /obj/structure/cable/green{ d1 = 1; @@ -51057,7 +51010,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "eSf" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -51066,7 +51019,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "eSl" = ( /obj/structure/sign/directions/medical/chemlab{ dir = 5 @@ -51077,15 +51030,14 @@ layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "eSw" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/shield_capacitor{ dir = 1 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "eSB" = ( /obj/structure/cable{ d1 = 1; @@ -51103,7 +51055,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "eSF" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -51115,7 +51067,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "eSQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -51140,7 +51092,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "eSV" = ( /obj/structure/cable/green{ d1 = 1; @@ -51154,13 +51106,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "eTf" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ dir = 8 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "eTt" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/black, /obj/effect/catwalk_plated, @@ -51171,7 +51123,7 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "eTD" = ( /obj/machinery/alarm{ dir = 1; @@ -51179,7 +51131,7 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "eTE" = ( /obj/machinery/alarm{ dir = 4; @@ -51187,7 +51139,7 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "eTM" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -51213,7 +51165,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "eTO" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -51227,22 +51179,24 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Star) -"eUi" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 +/area/hallway/Stairwell_Star) +"eTP" = ( +/obj/effect/catwalk_plated/techmaint, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "eUr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/area/maintenance/Deck2_Star_Corridor) "eUs" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -51252,7 +51206,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "eUA" = ( /obj/structure/cable/green{ d1 = 4; @@ -51268,24 +51222,28 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "eUL" = ( /obj/structure/table/standard, /obj/random/maintenance/cargo, /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "eUS" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarCorridor1) +/area/maintenance/Deck2_Cargo_AftStarCorridor1) "eVf" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "eVp" = ( /obj/structure/table/woodentable, /obj/item/paper_bin{ @@ -51299,13 +51257,13 @@ pixel_y = 3 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "eVz" = ( /obj/structure/smoletrack/roadT{ dir = 4 }, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "eVL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -51327,11 +51285,28 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "eVY" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) +"eWk" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "eWo" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -51345,26 +51320,10 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "eWt" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Reception) -"eWP" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/open{ - layer = 3.5; - id = "Port Lockdown"; - name = "Lockdown Gate"; - desc = "A heavily reinforced gate, sector lockdown!" - }, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/engineering/Reception) "eXe" = ( /obj/structure/table/reinforced, /obj/machinery/power/apc{ @@ -51381,7 +51340,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "eXg" = ( /obj/machinery/computer/station_alert/all{ dir = 8 @@ -51405,11 +51364,11 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "eXk" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "eXp" = ( /obj/machinery/alarm{ dir = 1; @@ -51421,7 +51380,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "eXq" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -51445,7 +51404,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "eXs" = ( /obj/structure/ladder{ pixel_y = 3 @@ -51456,12 +51415,12 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "eXt" = ( /obj/structure/table/steel, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "eXy" = ( /obj/structure/cable{ d1 = 16; @@ -51479,26 +51438,7 @@ /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) -"eXN" = ( -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 2 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/harbor/Port_Shuttlebay) "eXP" = ( /obj/machinery/firealarm{ dir = 8; @@ -51513,7 +51453,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "eYd" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -51531,7 +51471,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "eYu" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -51548,7 +51488,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "eYz" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -51562,7 +51502,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "eYX" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -51581,11 +51521,11 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "eZd" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "eZe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor{ @@ -51595,7 +51535,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "eZg" = ( /obj/structure/cable{ d1 = 1; @@ -51605,17 +51545,17 @@ /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ +/obj/effect/floor_decal/corner/brown/bordercorner{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "eZn" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "eZp" = ( /obj/structure/closet/secure_closet/atmos_personal, /obj/item/gps/engineering, @@ -51630,21 +51570,21 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "eZt" = ( /obj/structure/table/woodentable, /obj/machinery/librarypubliccomp, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "eZG" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 }, -/obj/effect/floor_decal/corner/green/bordercorner{ +/obj/effect/floor_decal/corner/orange/bordercorner{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "eZQ" = ( /obj/structure/sign/directions/stairwell{ dir = 8 @@ -51654,7 +51594,7 @@ dir = 8 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "fac" = ( /obj/structure/cable/green{ d1 = 1; @@ -51668,7 +51608,7 @@ dir = 8 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "faf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -51680,7 +51620,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "fal" = ( /obj/effect/floor_decal/chapel{ dir = 8 @@ -51690,10 +51630,10 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "fav" = ( /turf/simulated/floor/wood/broken, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "faO" = ( /obj/structure/cable/green{ d1 = 4; @@ -51712,7 +51652,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "fbc" = ( /obj/structure/bed/chair/backed_red{ dir = 8 @@ -51724,7 +51664,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "fbk" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -51739,7 +51679,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "fbr" = ( /obj/structure/loot_pile/surface/medicine_cabinet/fresh{ pixel_y = 25 @@ -51754,7 +51694,16 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Chamber) +/area/maintenance/Deck2_Science_ForPort_Chamber) +"fbA" = ( +/obj/random/trash, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_StarChamber2) "fbN" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -51766,21 +51715,21 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "fbP" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "1E-Station Intercom (General)"; - pixel_x = 22 - }, /obj/effect/floor_decal/borderfloor{ dir = 4 }, /obj/effect/floor_decal/corner/lightgrey/border{ dir = 4 }, +/obj/item/radio/intercom{ + dir = 4; + name = "1E-Station Intercom (General)"; + pixel_x = 22 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_1) "fbX" = ( /obj/structure/cable{ d1 = 4; @@ -51804,7 +51753,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "fbZ" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -51837,7 +51786,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "fce" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -51847,7 +51796,7 @@ /obj/machinery/door/airlock/maintenance/int, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "fcy" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ @@ -51856,7 +51805,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "fcH" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -51879,7 +51828,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarChamber1) +/area/maintenance/Deck2_Cargo_AftStarChamber1) "fcX" = ( /turf/simulated/floor/reinforced{ name = "Holodeck Projector Floor" @@ -51891,32 +51840,28 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "fdB" = ( -/obj/machinery/alarm{ - pixel_y = 22 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "fdE" = ( /obj/structure/railing, /obj/structure/railing{ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "fdL" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -51925,7 +51870,7 @@ /obj/effect/floor_decal/industrial/loading/blue, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "fdO" = ( /obj/structure/cable/white{ d1 = 1; @@ -51933,7 +51878,7 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "fdP" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -51945,20 +51890,20 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "fdV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "feb" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "fee" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -51972,7 +51917,7 @@ req_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "fek" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -51980,12 +51925,12 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "fep" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "feq" = ( /obj/structure/cable{ d1 = 4; @@ -52002,13 +51947,12 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "few" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "feK" = ( /obj/effect/floor_decal/shuttle/blue{ pixel_x = -1; @@ -52017,17 +51961,23 @@ /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "feR" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "feX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "ffh" = ( /obj/structure/cable/green{ d1 = 4; @@ -52050,7 +52000,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "ffB" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -52059,18 +52009,18 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "ffY" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "fgc" = ( /obj/structure/table, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "fge" = ( /obj/machinery/disposal, /obj/machinery/newscaster/security_unit{ @@ -52086,7 +52036,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "fgg" = ( /obj/effect/floor_decal/industrial/arrows{ dir = 4 @@ -52118,7 +52068,7 @@ req_one_access = list(11,24) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "fgn" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 @@ -52127,21 +52077,19 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "fgD" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "fgJ" = ( /obj/structure/stairs/spawner/east, /obj/structure/railing, @@ -52160,7 +52108,7 @@ pixel_x = 32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "fgL" = ( /obj/machinery/atmospherics/unary/cryo_cell{ layer = 3.3 @@ -52190,13 +52138,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "fgY" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "fhj" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner{ @@ -52206,25 +52154,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "fhn" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) -"fho" = ( -/obj/machinery/holoposter{ - dir = 1; - pixel_y = -32 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/turf/simulated/wall/r_wall, +/area/maintenance/Distro_Civilian) "fhs" = ( /obj/effect/catwalk_plated/white, /obj/structure/cable/green{ @@ -52233,7 +52166,7 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "fhu" = ( /obj/structure/cable/green{ d1 = 1; @@ -52243,7 +52176,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "fhw" = ( /obj/structure/cable/green{ d1 = 2; @@ -52252,7 +52185,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "fhC" = ( /obj/structure/cable/green{ d1 = 1; @@ -52262,7 +52195,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "fhH" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -52292,11 +52225,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "fhN" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "fhU" = ( /obj/structure/table/rack{ dir = 8; @@ -52318,7 +52251,7 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "fhX" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -52326,13 +52259,13 @@ }, /obj/machinery/light/small, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "fhZ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "fia" = ( /obj/structure/cable{ d1 = 4; @@ -52344,26 +52277,37 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, /obj/structure/cable{ d1 = 1; d2 = 8; icon_state = "1-8" }, -/obj/effect/floor_decal/borderfloor{ +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ +/obj/effect/floor_decal/corner/paleblue/bordercorner{ dir = 8 }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8; + layer = 3; + name = "1W-light fixture" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_2) "fii" = ( /obj/structure/cable/green{ d1 = 4; @@ -52378,30 +52322,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) -"fil" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_2) "fiw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -52412,7 +52333,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "fiG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -52435,7 +52356,17 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) +"fja" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "fjp" = ( /obj/structure/table/reinforced, /obj/item/folder/red{ @@ -52453,16 +52384,16 @@ pixel_y = -5 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "fjy" = ( /obj/effect/floor_decal/milspec/cargo_arrow, /obj/effect/floor_decal/milspec/box, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "fjz" = ( /obj/effect/catwalk_plated/white, /turf/space, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "fjA" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ dir = 8 @@ -52474,20 +52405,14 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "fjD" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "fjG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "fjI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -52502,7 +52427,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "fjT" = ( /obj/structure/railing/grey{ color = "yellow" @@ -52512,20 +52437,31 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) +"fjU" = ( +/obj/structure/table/marble, +/obj/item/toy/chewtoy, +/obj/machinery/door/blast/shutters{ + dir = 8; + name = "Kitchen Shutters"; + id = "sc-GCkitchen"; + layer = 3.3 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/Chomp_Dinner_1) "fkn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor2) +/area/maintenance/Deck2_Science_StarCorridor2) "fkF" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "fkU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -52536,7 +52472,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "fld" = ( /obj/item/radio/intercom/department/security{ dir = 4; @@ -52547,7 +52483,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "flB" = ( /obj/structure/table/steel, /obj/machinery/alarm{ @@ -52559,7 +52495,7 @@ network = list("Commons") }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "flC" = ( /obj/machinery/mecha_part_fabricator/pros, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -52578,7 +52514,21 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) +"flI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/camera/network/security{ + dir = 5; + c_tag = "D2-Com-Aft Corridor2"; + network = list("Commons") + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "flL" = ( /obj/structure/cable{ d1 = 4; @@ -52595,7 +52545,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "flS" = ( /obj/structure/cable/green{ d1 = 1; @@ -52612,46 +52562,39 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) +"flV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Aft_Corridor) "fma" = ( /obj/machinery/chem_master, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "fmi" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "fmv" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Gym) -"fmx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/crew_quarters/Gym) "fmA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "fmG" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) +/area/maintenance/Deck2_Medical_AftCorridor1) "fmK" = ( /obj/structure/cable/green{ d1 = 1; @@ -52668,25 +52611,11 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "fmR" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) -"fmS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "fmT" = ( /obj/structure/cable/green{ d1 = 4; @@ -52703,7 +52632,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "fnf" = ( /obj/structure/cable{ d1 = 1; @@ -52717,20 +52646,20 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "fnk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "fnp" = ( /obj/structure/table/standard, /obj/item/storage/briefcase/crimekit, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "fnw" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -52744,13 +52673,13 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "fnG" = ( /obj/machinery/vitals_monitor, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "fnO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -52762,7 +52691,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "foc" = ( /obj/structure/ladder{ pixel_y = 3 @@ -52779,12 +52708,12 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarChamber1) +/area/maintenance/Deck2_Cargo_AftStarChamber1) "foi" = ( /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "foq" = ( /obj/structure/cable/green{ d1 = 4; @@ -52807,7 +52736,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "foz" = ( /obj/machinery/light{ dir = 8; @@ -52815,7 +52744,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "foF" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -52838,7 +52767,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortCorridor1) +/area/maintenance/Deck2_Medical_AftPortCorridor1) "foG" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -52849,7 +52778,7 @@ /obj/effect/floor_decal/industrial/loading/blue, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "foN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -52860,14 +52789,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "foZ" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "fpc" = ( /obj/structure/toilet{ dir = 8 @@ -52887,7 +52816,7 @@ specialfunctions = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "fpg" = ( /obj/structure/cable/green{ d1 = 1; @@ -52904,11 +52833,11 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "fpp" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "fpr" = ( /obj/machinery/power/apc{ dir = 8; @@ -52930,11 +52859,19 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "fpt" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) +"fpx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "fpz" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 @@ -52943,7 +52880,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "fpA" = ( /obj/structure/reagent_dispensers/acid{ pixel_x = 32 @@ -52962,7 +52899,7 @@ pixel_x = -4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "fpD" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/effect/floor_decal/borderfloorblack/corner{ @@ -52972,7 +52909,7 @@ dir = 4 }, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "fpT" = ( /obj/structure/cable{ d1 = 4; @@ -52992,11 +52929,21 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) +"fqd" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/flora/lily2, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_2) "fql" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "fqy" = ( /obj/machinery/alarm{ dir = 4; @@ -53009,31 +52956,22 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortCorridor1) +/area/maintenance/Deck2_Medical_AftPortCorridor1) "fqD" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/industrial/hatch/blue, -/obj/structure/grille, -/obj/structure/window/basic/full, -/obj/structure/window/basic, -/obj/structure/window/basic{ - dir = 8 +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 +/obj/effect/floor_decal/corner/orange/border{ + dir = 9 }, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) -"fqL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) +"fqL" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 @@ -53041,11 +52979,11 @@ /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, -/obj/effect/floor_decal/corner/green/border{ +/obj/effect/floor_decal/corner/orange/border{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "fqM" = ( /obj/structure/cable/green{ d1 = 1; @@ -53063,7 +53001,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "fqU" = ( /obj/structure/cable/green{ d1 = 4; @@ -53083,19 +53021,19 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "fra" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/area/crew_quarters/Chomp_Kitchen) "frb" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "frt" = ( /obj/structure/cable/green{ d1 = 4; @@ -53112,7 +53050,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "frG" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -53121,7 +53059,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "frM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -53133,69 +53071,32 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) -"frO" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance/engi{ - name = "Domicile Air Distribution" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/hallway/Star_Transit_Foyer) "frT" = ( /obj/structure/sign/department/rnd{ desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "fsb" = ( /obj/item/pizzabox/old, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) -"fsh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/security{ - dir = 8; - c_tag = "D2-Com-Port Corridor2"; - network = list("Commons") - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/maintenance/Deck2_Civilian_PortChamber2) "fsn" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "fst" = ( /obj/structure/table, /obj/item/storage/mre/random, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "fsV" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "fti" = ( /obj/structure/cable/green{ d1 = 1; @@ -53209,7 +53110,21 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) +"ftk" = ( +/obj/structure/lattice, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_StarChamber2) "fts" = ( /obj/structure/cable/green{ d1 = 2; @@ -53229,7 +53144,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber1) +/area/maintenance/Deck2_Engineering_ForStarChamber1) "ftv" = ( /obj/structure/closet/wardrobe/robotics_black, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -53242,7 +53157,7 @@ pixel_x = -3 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Locker_Room) +/area/rnd/Locker_Room) "ftC" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 5 @@ -53251,7 +53166,7 @@ dir = 6 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "ftE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -53260,21 +53175,21 @@ dir = 4 }, /turf/simulated/floor/carpet/purple, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "ftF" = ( /obj/machinery/light/small{ dir = 1 }, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "ftK" = ( /obj/machinery/light/small{ dir = 4 }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "ftQ" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -53285,7 +53200,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor2) +/area/maintenance/Deck2_Security_AftPortCorridor2) "fub" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -53298,7 +53213,7 @@ id = "sc-WTsecprocessing" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "fug" = ( /obj/structure/cable/green{ d1 = 4; @@ -53312,13 +53227,13 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "fuk" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "fuq" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -53331,7 +53246,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "fur" = ( /obj/structure/window/reinforced{ dir = 4 @@ -53353,7 +53268,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "fuv" = ( /obj/structure/cable{ d1 = 4; @@ -53370,7 +53285,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "fuw" = ( /obj/structure/cable/green{ d1 = 1; @@ -53386,7 +53301,7 @@ name = "E-fire alarm" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "fuA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -53395,7 +53310,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "fuR" = ( /obj/structure/cable/green{ d1 = 4; @@ -53412,7 +53327,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "fuU" = ( /obj/structure/table/marble, /obj/machinery/light{ @@ -53441,7 +53356,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "fva" = ( /obj/structure/table/standard, /obj/item/measuring_tape{ @@ -53470,7 +53385,7 @@ pixel_x = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Locker_Room) +/area/rnd/Locker_Room) "fvk" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -53482,7 +53397,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "fvE" = ( /obj/effect/floor_decal/industrial/arrows/yellow{ dir = 1 @@ -53494,7 +53409,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "fvF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -53502,7 +53417,7 @@ dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "fvH" = ( /obj/item/godfig{ pixel_y = 5 @@ -53510,13 +53425,36 @@ /obj/structure/table/fancyblack, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) +"fwy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "fwI" = ( /obj/effect/floor_decal/spline/fancy{ dir = 9 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "fwQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -53524,11 +53462,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "fwY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -53537,7 +53475,7 @@ dir = 6 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "fwZ" = ( /obj/structure/table/woodentable, /obj/item/storage/photo_album{ @@ -53556,7 +53494,7 @@ pixel_y = 7 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "fxe" = ( /obj/effect/floor_decal/industrial/loading/blue{ dir = 1 @@ -53566,11 +53504,10 @@ name = "CARGO Department"; desc = "A sign indicating the location for Cargo department. Use the nearby chute for quick access." }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "fxg" = ( /obj/structure/cable/green{ d1 = 4; @@ -53579,7 +53516,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortCorridor1) +/area/maintenance/Deck2_Medical_AftPortCorridor1) "fxl" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -53609,15 +53546,12 @@ }, /obj/structure/table/standard, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "fxq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_1) "fxL" = ( /obj/structure/cable/green{ d1 = 1; @@ -53635,7 +53569,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "fxO" = ( /obj/structure/cable/green{ d1 = 4; @@ -53651,7 +53585,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "fxZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -53660,7 +53594,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "fya" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -53669,7 +53603,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "fyo" = ( /obj/structure/table/standard, /obj/item/storage/firstaid/regular{ @@ -53688,7 +53622,19 @@ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) +"fyA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "fyD" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -53696,7 +53642,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "fyJ" = ( /obj/machinery/camera/network/security{ c_tag = "D2-Eng-Substation Engineering1"; @@ -53704,7 +53650,7 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "fyL" = ( /obj/structure/bed/chair/wood/wings{ color = "#004b9a"; @@ -53722,7 +53668,7 @@ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "fyN" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -53740,7 +53686,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "fyU" = ( /obj/structure/cable/green{ d1 = 1; @@ -53753,14 +53699,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "fza" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "fzI" = ( /obj/structure/cable/green{ d1 = 4; @@ -53776,13 +53722,13 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/black/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "fzJ" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "fzU" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -53791,7 +53737,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "fAg" = ( /obj/item/clothing/suit/space/void/engineering{ pixel_x = -7 @@ -53816,7 +53762,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "fAi" = ( /obj/structure/cable/green{ d1 = 1; @@ -53847,11 +53793,11 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "fAk" = ( /obj/random/tank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber1) +/area/maintenance/Deck2_Engineering_PortChamber1) "fAl" = ( /obj/structure/cable/green{ d1 = 1; @@ -53868,14 +53814,14 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "fAt" = ( /obj/structure/table/bench/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "fAy" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/cargo, @@ -53883,7 +53829,7 @@ /obj/random/maintenance/cargo, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "fAH" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -53892,7 +53838,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "fAQ" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Substation - Medical" @@ -53914,7 +53860,7 @@ pixel_y = 32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "fBz" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 8 @@ -53927,13 +53873,13 @@ icon_state = "1-8" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "fBA" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "fBJ" = ( /obj/machinery/conveyor{ dir = 10; @@ -53943,7 +53889,7 @@ pixel_x = -32 }, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "fBW" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -53954,7 +53900,7 @@ pixel_y = -22 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "fCh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -53970,7 +53916,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "fCo" = ( /obj/structure/cable/green{ d1 = 1; @@ -53992,14 +53938,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "fCr" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "fCx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloorwhite/corner{ @@ -54009,7 +53955,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "fCA" = ( /obj/structure/closet/secure_closet/freezer/kitchen, /obj/item/reagent_containers/chem_disp_cartridge/berry{ @@ -54036,11 +53982,11 @@ pixel_x = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "fCI" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "fDf" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -54052,14 +53998,14 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "fDv" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "fDD" = ( /obj/structure/closet/crate/nanotrasen, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "fDG" = ( /obj/structure/cable{ d2 = 8; @@ -54068,7 +54014,7 @@ /obj/machinery/power/smes/batteryrack/mapped, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "fDI" = ( /obj/structure/cable/green{ d1 = 4; @@ -54076,17 +54022,17 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "fDZ" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "fEi" = ( /obj/structure/railing/grey{ dir = 8 @@ -54101,12 +54047,12 @@ /obj/structure/table/standard, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "fEm" = ( /obj/item/starcaster_news, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "fEv" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -54115,7 +54061,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "fEE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -54127,7 +54073,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "fEP" = ( /obj/effect/floor_decal/stairs{ dir = 1 @@ -54141,9 +54087,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "fFj" = ( -/obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -54152,8 +54097,36 @@ /obj/machinery/alarm{ pixel_y = 25 }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/area/maintenance/Deck2_Star_Corridor) +"fFn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/holoposter{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "fFv" = ( /obj/structure/table/woodentable, /obj/item/universal_translator, @@ -54165,7 +54138,7 @@ pixel_y = -36 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "fFA" = ( /obj/structure/table/rack/shelf, /obj/item/roller{ @@ -54202,7 +54175,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "fFD" = ( /obj/structure/ladder{ pixel_y = 3 @@ -54213,10 +54186,10 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "fFG" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "fFX" = ( /obj/structure/cable/green{ d1 = 4; @@ -54240,22 +54213,22 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "fGb" = ( /obj/machinery/r_n_d/circuit_imprinter, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "fGl" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "fGB" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "fGG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -54288,12 +54261,12 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "fGW" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "fHa" = ( /obj/structure/cable/green{ d1 = 1; @@ -54307,7 +54280,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "fHc" = ( /obj/structure/cable/green{ d1 = 4; @@ -54318,11 +54291,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "fHf" = ( /obj/structure/bed/chair/bay/chair/padded/red/bignest, /turf/simulated/floor/carpet/bcarpet/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "fHh" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -54345,15 +54318,15 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "fHv" = ( /obj/machinery/gibber, /turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "fHB" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForPortChamber1) +/area/maintenance/Deck2_Security_ForPortChamber1) "fHQ" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -54372,7 +54345,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "fHV" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -54402,13 +54375,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "fIe" = ( /obj/effect/floor_decal/industrial/stand_clear/blue, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "fIi" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 @@ -54417,7 +54390,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "fIl" = ( /obj/structure/target_stake, /obj/effect/floor_decal/borderfloor{ @@ -54428,7 +54401,7 @@ }, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "fIx" = ( /obj/machinery/power/apc{ dir = 1; @@ -54460,12 +54433,23 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) +"fII" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/orange/border, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + dir = 1; + pixel_y = -10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "fIL" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "fIO" = ( /obj/structure/table/standard, /obj/item/reagent_containers/spray/cleaner{ @@ -54482,7 +54466,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "fIW" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -54491,7 +54475,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "fIX" = ( /obj/structure/cable/green{ d1 = 1; @@ -54508,15 +54492,25 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "fJd" = ( /obj/structure/loot_pile/mecha/hoverpod, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "fJp" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) +"fJw" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/flora/underwater/grass4, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_2) "fJy" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -54533,11 +54527,11 @@ req_one_access = list(47) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "fJI" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "fJK" = ( /obj/structure/cable/green{ d1 = 1; @@ -54554,23 +54548,23 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "fJM" = ( /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "fJP" = ( /obj/machinery/vending/snack, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "fJX" = ( /obj/structure/sign/directions/engineering/atmospherics{ pixel_y = 9; dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "fKc" = ( /obj/structure/table/steel_reinforced, /obj/item/cell/device/weapon{ @@ -54584,10 +54578,10 @@ dir = 6 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "fKl" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "fKI" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/borderfloorblack{ @@ -54597,7 +54591,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "fLb" = ( /obj/structure/closet/secure_closet/security, /obj/item/tool/crowbar/red, @@ -54618,24 +54612,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) -"fLt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/holoposter{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/security/Locker_Room) "fLy" = ( /obj/structure/cable/green{ d1 = 4; @@ -54656,7 +54633,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "fLA" = ( /obj/structure/table/glass, /obj/random/medical/pillbottle, @@ -54690,12 +54667,12 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "fLG" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "fLH" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -54707,23 +54684,16 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_1) -"fLQ" = ( -/obj/structure/sign/painting/public{ - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/medical/Surgery_Room_1) "fLS" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) +"fMb" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "fMs" = ( /obj/machinery/alarm{ pixel_y = 25 @@ -54744,7 +54714,38 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_PortCorridor1) +/area/maintenance/Deck2_Security_PortCorridor1) +"fMy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/light/floortube{ + pixel_y = -2 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "1N-Station Intercom (General)"; + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_2) "fMC" = ( /obj/machinery/account_database{ dir = 1 @@ -54757,19 +54758,19 @@ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "fME" = ( /obj/item/packageWrap, /obj/structure/table, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "fMO" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "fMS" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "fMV" = ( /obj/machinery/shower{ pixel_y = 16 @@ -54786,25 +54787,11 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "fNa" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) -"fNr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/maintenance/Deck2_Science_StarCorridor1) "fNB" = ( /obj/structure/table/rack/holorack, /obj/item/circuitboard/thermoregulator{ @@ -54865,7 +54852,44 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) +"fNY" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/blue, +/obj/structure/grille, +/obj/structure/window/basic/full, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + layer = 3.5; + id = "Port Lockdown"; + name = "Lockdown Gate"; + desc = "A heavily reinforced gate, sector lockdown!" + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + layer = 3.5; + pixel_y = 9 + }, +/obj/structure/sign/directions/cargo{ + dir = 8; + layer = 3.5 + }, +/obj/structure/sign/directions/security{ + pixel_y = -9; + dir = 5; + layer = 3.5 + }, +/turf/simulated/floor/plating, +/area/hallway/Port_2_Deck_Central_Corridor_2) "fOE" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -54873,11 +54897,11 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "fON" = ( /obj/machinery/appliance/cooker/fryer, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "fOV" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -54892,7 +54916,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "fOY" = ( /obj/structure/cable/green{ d1 = 4; @@ -54909,13 +54933,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "fPa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "fPb" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -54926,7 +54950,7 @@ network = list("Domicile") }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "fPh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -54938,7 +54962,7 @@ /obj/effect/floor_decal/corner/paleblue/border, /obj/structure/sign/poster/nanotrasen, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "fPi" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -54947,14 +54971,20 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "fPk" = ( /obj/structure/closet/emergsuit_wall{ pixel_y = 27; name = "1N-emergency suit storage" }, +/obj/structure/sign/securearea{ + icon_state = "radiation_small"; + name = "\improper RAD SAFE"; + desc = "A warning sign which reads 'RADIATION SHIELDING IN THIS AREA'."; + pixel_x = -32 + }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "fPn" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -54974,7 +55004,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "fPt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -54982,7 +55012,25 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) +"fPz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/directions/science{ + dir = 4; + layer = 3.5; + pixel_y = 9 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + layer = 3.5 + }, +/obj/structure/sign/directions/command{ + pixel_y = -9; + dir = 1; + layer = 3.5 + }, +/turf/simulated/wall, +/area/maintenance/Distro_Civilian) "fPD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -54994,7 +55042,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "fPE" = ( /obj/structure/table/woodentable, /obj/item/storage/fancy/crayons{ @@ -55026,10 +55074,10 @@ pixel_y = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "fPJ" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "fPL" = ( /obj/structure/cable/green{ d1 = 1; @@ -55039,7 +55087,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "fPU" = ( /obj/structure/ladder/updown{ pixel_y = 3 @@ -55050,7 +55098,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "fPV" = ( /obj/machinery/shower{ dir = 1 @@ -55063,7 +55111,7 @@ }, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "fPX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -55071,7 +55119,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "fQa" = ( /obj/structure/railing, /obj/machinery/camera/network/security{ @@ -55079,13 +55127,36 @@ network = list("Cargo") }, /turf/simulated/open, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "fQb" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/borderfloorwhite/corner2, /obj/effect/floor_decal/corner/white/bordercorner2, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) +"fQe" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_2) "fQl" = ( /obj/machinery/flasher{ id = "testthis"; @@ -55097,11 +55168,11 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "fQr" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "fQD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -55119,7 +55190,7 @@ pixel_y = -32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "fQF" = ( /obj/structure/cable/green{ d1 = 2; @@ -55127,7 +55198,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "fQU" = ( /obj/structure/cable/green{ d1 = 4; @@ -55144,33 +55215,33 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "fQW" = ( /obj/structure/sign/directions/kitchen{ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "fQY" = ( /obj/structure/sign/department/sci{ desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "fRz" = ( /obj/structure/bed/chair/wood/wings{ color = "#004b9a" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "fRL" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "fRM" = ( /obj/item/pen/red{ pixel_x = 5; @@ -55180,7 +55251,7 @@ color = "red" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "fRP" = ( /obj/machinery/atmospherics/pipe/tank/air/full{ dir = 1 @@ -55193,19 +55264,20 @@ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) +/area/maintenance/Deck2_Medical_AftCorridor1) "fRS" = ( /obj/structure/closet/crate/wooden, -/obj/machinery/light{ - name = "1S-light fixture" - }, /obj/machinery/camera/network/security{ dir = 8; c_tag = "D2-Car-Warehouse2"; network = list("Cargo") }, +/obj/machinery/light/spot{ + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "fSb" = ( /obj/item/stool{ color = "grey" @@ -55214,20 +55286,7 @@ dir = 8 }, /turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) -"fSc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 25; - name = "E-fire alarm" - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/crew_quarters/Midnight_Kitchen) "fSk" = ( /obj/item/storage/box/flare{ pixel_y = 1; @@ -55255,7 +55314,7 @@ pixel_x = -8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "fSv" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -55265,7 +55324,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "fSK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -55283,7 +55342,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "fSQ" = ( /obj/structure/ladder{ pixel_y = 3 @@ -55294,7 +55353,7 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Security_ForStar_Chamber) +/area/maintenance/Deck2_Security_ForStar_Chamber) "fTf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -55309,7 +55368,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Locker_Room) +/area/rnd/Locker_Room) "fTB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -55323,7 +55382,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "fTJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -55332,7 +55391,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "fTL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -55344,7 +55403,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "fUj" = ( /obj/structure/cable/green{ d1 = 4; @@ -55369,7 +55428,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "fUs" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -55378,7 +55437,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "fUE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -55396,7 +55455,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "fUK" = ( /obj/structure/cable/green{ d1 = 4; @@ -55423,7 +55482,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "fUN" = ( /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, @@ -55433,7 +55492,7 @@ icon_state = "1-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "fUQ" = ( /obj/item/storage/box/glasses/coffeecup{ pixel_x = -6; @@ -55467,7 +55526,23 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) +"fUX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "fVg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -55486,7 +55561,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "fVj" = ( /obj/structure/table/standard, /obj/item/reagent_containers/spray/cleaner{ @@ -55503,7 +55578,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "fVp" = ( /obj/structure/cable/green{ d1 = 1; @@ -55524,7 +55599,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "fVr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -55544,11 +55619,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "fVt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -55556,7 +55631,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "fVu" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/light{ @@ -55564,13 +55639,13 @@ }, /obj/structure/reagent_dispensers/he3, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "fVv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "fVA" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -55598,24 +55673,23 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "fVB" = ( /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "fVJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/railing{ + dir = 8 }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain{ + dir = 10 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/obj/structure/flora/lily3, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_1) "fVO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -55627,20 +55701,20 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "fVP" = ( /obj/effect/floor_decal/carpet{ dir = 8 }, /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "fVU" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/security, /obj/random/maintenance/cargo, /obj/random/maintenance/security, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "fWd" = ( /obj/machinery/disposal, /obj/machinery/light{ @@ -55652,7 +55726,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "fWj" = ( /obj/item/stack/material/steel{ amount = 50 @@ -55715,7 +55789,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "fWk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -55745,12 +55819,21 @@ id_tag = "sc-dom_shuttlebay1" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "fWn" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) +"fWy" = ( +/obj/structure/table/rack/shelf, +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_StarChamber2) "fXa" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -55759,7 +55842,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "fXg" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -55768,7 +55851,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "fXk" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 @@ -55779,13 +55862,13 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "fXB" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "fXT" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -55800,7 +55883,17 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) +"fYn" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/firealarm{ + pixel_y = -25; + name = "S-fire alarm"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_2) "fYw" = ( /obj/machinery/light{ dir = 1; @@ -55812,7 +55905,18 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) +"fYE" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_alc/full{ + dir = 1; + pixel_y = -10 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "fYH" = ( /obj/structure/closet/crate/nanotrasen{ name = "robotics parts"; @@ -55921,13 +56025,13 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "fYN" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "fYO" = ( /obj/structure/cable{ d1 = 4; @@ -55942,7 +56046,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) +"fZj" = ( +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain, +/obj/structure/flora/lily1, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_1) "fZm" = ( /obj/structure/table/steel, /obj/item/storage/briefcase/inflatable{ @@ -55988,23 +56098,37 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "fZr" = ( +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "fZD" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "fZP" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, +/obj/structure/inflatable, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "fZU" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) +"gao" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_2) "gar" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -56016,12 +56140,12 @@ name = "Chaplain" }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "gaD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "gaI" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -56036,7 +56160,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "gaL" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -56052,7 +56176,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "gaM" = ( /obj/structure/cable/green{ d1 = 2; @@ -56061,21 +56185,21 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "gbc" = ( /obj/structure/girder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "gbd" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "gbk" = ( /obj/effect/floor_decal/shuttle/loading/yellow{ dir = 4 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "gbn" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, @@ -56085,13 +56209,13 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "gbs" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "gbB" = ( /obj/structure/cable/white{ d1 = 1; @@ -56099,16 +56223,16 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "gbG" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "gbH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "gbQ" = ( /obj/structure/railing/grey{ color = "yellow" @@ -56123,10 +56247,10 @@ name = "Lockdown Gate" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "gbW" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "gcb" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 @@ -56134,7 +56258,7 @@ /obj/machinery/meter, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "gcc" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -56156,7 +56280,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "gch" = ( /obj/structure/window/reinforced{ dir = 8 @@ -56164,7 +56288,7 @@ /obj/item/storage/laundry_basket, /obj/structure/table/standard, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "gck" = ( /obj/machinery/alarm{ dir = 4; @@ -56181,11 +56305,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "gcn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -56193,7 +56317,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "gcB" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -56210,7 +56334,7 @@ icon_state = "0-8" }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "gcE" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/disposalpipe/segment{ @@ -56223,7 +56347,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "gcT" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -56233,7 +56357,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "gda" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -56245,14 +56369,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "gdd" = ( /obj/machinery/alarm{ pixel_y = 25 }, /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "gdr" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/cable/green{ @@ -56264,19 +56388,29 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "gdt" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/arrows/yellow, +/obj/effect/floor_decal/industrial/arrows/yellow{ + dir = 1 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 +/obj/machinery/door/airlock/maintenance/engi{ + name = "Domicile Air Distribution"; + req_one_access = null }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/Distro_Civilian) "gdA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -56284,7 +56418,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "gdJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -56308,24 +56442,24 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "gdO" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "gdQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/floor_decal/borderfloorblack/corner, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/corner/green/bordercorner, +/obj/effect/floor_decal/corner/orange/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "gdV" = ( /obj/machinery/computer/rdconsole/robotics{ dir = 8 @@ -56335,7 +56469,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "geg" = ( /obj/machinery/alarm{ dir = 1; @@ -56343,14 +56477,24 @@ }, /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "gel" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "gex" = ( /obj/machinery/alarm{ dir = 8; @@ -56371,10 +56515,10 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "geE" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "geI" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -56386,21 +56530,21 @@ network = list("Medical") }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "gff" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/security, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "gfh" = ( /obj/structure/bed/chair/sofa/left, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "gfq" = ( /obj/structure/smoleruins, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "gfw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -56413,7 +56557,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "gfx" = ( /obj/effect/floor_decal/stairs, /obj/structure/cable/green{ @@ -56425,28 +56569,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) -"gfK" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "gfQ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Science/Locker_Room) +/area/rnd/Locker_Room) "gfW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -56458,7 +56584,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "ggj" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -56480,7 +56606,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "ggu" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -56489,12 +56615,12 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "ggz" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "ggA" = ( /obj/structure/cable{ d1 = 1; @@ -56512,24 +56638,29 @@ }, /obj/structure/cable, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "ggO" = ( /obj/machinery/alarm{ pixel_y = 25 }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "ggY" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 +/obj/structure/table/standard, +/obj/item/material/knife/butch{ + pixel_x = 3; + pixel_y = -2 }, -/obj/effect/floor_decal/corner/green/bordercorner{ - dir = 1 +/obj/item/material/knife/hook{ + pixel_x = -3; + pixel_y = 3 }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/Chomp_Kitchen) "gha" = ( /obj/structure/cable/green{ d1 = 4; @@ -56548,40 +56679,13 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) -"gho" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance/int, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/open{ - layer = 3.5; - id = "Port Lockdown"; - name = "Lockdown Gate"; - desc = "A heavily reinforced gate, sector lockdown!" - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/rnd/Toxins_Mixing_Room) "ghq" = ( /obj/random/trash_pile, /obj/random/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "ghx" = ( /obj/structure/cable/green{ d1 = 2; @@ -56594,19 +56698,32 @@ }, /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym) -"ghH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 +/area/crew_quarters/Gym) +"ghQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, /obj/effect/floor_decal/corner/lightgrey/bordercorner{ dir = 8 }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 2 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "ghX" = ( /obj/item/radio/intercom{ dir = 4; @@ -56628,7 +56745,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "gil" = ( /obj/structure/table/glass, /obj/item/reagent_containers/blood/OPlus{ @@ -56683,18 +56800,18 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "git" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/milspec/box, /obj/mecha/working/ripley/firefighter, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "giv" = ( /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "giE" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -56702,7 +56819,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "giF" = ( /obj/structure/cable/green{ d1 = 2; @@ -56710,11 +56827,11 @@ icon_state = "2-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "giU" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "giY" = ( /obj/structure/cable/white{ d1 = 1; @@ -56722,7 +56839,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "gjb" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -56730,27 +56847,24 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "gjf" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/blue, +/obj/structure/grille, +/obj/structure/window/basic/full, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ dir = 1 }, -/obj/machinery/door/airlock/maintenance/int, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/window/basic{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/turf/simulated/floor/plating, +/area/hallway/Star_2_Deck_Central_Corridor_2) "gjl" = ( /obj/item/stack/material/phoron{ amount = 25; @@ -56795,7 +56909,7 @@ pixel_x = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "gjr" = ( /obj/structure/bed/double/padded{ pixel_x = 10; @@ -56825,7 +56939,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "gju" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -56838,26 +56952,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) +"gjv" = ( +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_StarChamber2) "gjy" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) -"gjG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/painting/public, -/turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/harbor/Aft_2_Deck_Airlock_Access) "gjJ" = ( /obj/structure/cable{ d1 = 1; @@ -56870,7 +56977,16 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) +"gjO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "gjQ" = ( /obj/machinery/airlock_sensor{ pixel_y = 24 @@ -56878,13 +56994,13 @@ /obj/effect/map_helper/airlock/sensor/chamber_sensor, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "gjU" = ( /obj/structure/sign/directions/kitchen{ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "gjV" = ( /obj/structure/cable{ d1 = 16; @@ -56901,18 +57017,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) -"gjW" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light{ - name = "1S-light fixture" - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/maintenance/Engineering_Substation) "gjY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -56921,7 +57026,24 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) +"gjZ" = ( +/obj/machinery/atmospherics/pipe/tank/air/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/blue, +/obj/structure/sign/atmos_air{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) +"gkg" = ( +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "gkh" = ( /obj/machinery/shower{ pixel_y = 16 @@ -56933,7 +57055,7 @@ /obj/machinery/door/window/westright, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "gki" = ( /obj/structure/cable/green{ d1 = 4; @@ -56949,7 +57071,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "gkl" = ( /obj/item/radio/intercom{ dir = 8; @@ -56966,7 +57088,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "gkJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -56976,7 +57098,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "gkZ" = ( /obj/machinery/disposal, /obj/machinery/firealarm{ @@ -56994,7 +57116,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "glD" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -57003,7 +57125,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "glE" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/light{ @@ -57012,11 +57134,11 @@ }, /obj/machinery/shield_gen/external, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "glF" = ( /obj/effect/spider/stickyweb, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "glL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -57025,7 +57147,7 @@ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "gmg" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -57033,12 +57155,12 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "gmo" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "gmp" = ( /obj/structure/extinguisher_cabinet{ dir = 1; @@ -57048,12 +57170,12 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "gmx" = ( /obj/structure/table/standard, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "gmy" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -57062,12 +57184,12 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) +/area/maintenance/Deck2_Science_ForCorridor1) "gmI" = ( /obj/machinery/autolathe, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "gmX" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -57075,7 +57197,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "gnb" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -57092,7 +57214,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "gnl" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /obj/machinery/camera/network/security{ @@ -57101,14 +57223,14 @@ network = list("engineering") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "gnm" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "gnG" = ( /obj/structure/cable/green{ d1 = 1; @@ -57128,12 +57250,12 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "goo" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "got" = ( /obj/structure/casino_table/blackjack_l{ dir = 1 @@ -57142,7 +57264,7 @@ dir = 8 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "goF" = ( /obj/machinery/light{ dir = 1; @@ -57156,7 +57278,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "goH" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -57165,29 +57287,33 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "goU" = ( /obj/structure/smoletrack/roadF, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "goX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) +"gpd" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass, +/area/hallway/For_2_Deck_Central_Corridor_1) +"gpf" = ( +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Medical_AftStarChamber1) "gpk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Science_StarCorridor1) "gpn" = ( /obj/machinery/power/apc{ dir = 4; @@ -57195,8 +57321,12 @@ pixel_x = 24 }, /obj/structure/cable/green, +/obj/structure/cable/white{ + d2 = 2; + icon_state = "0-2" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "gpB" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -57204,7 +57334,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/green/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "gpE" = ( /obj/structure/cable{ d1 = 1; @@ -57228,7 +57358,7 @@ req_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "gpG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -57242,7 +57372,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "gpI" = ( /obj/structure/table/rack/shelf/steel, /obj/item/stack/cable_coil/random{ @@ -57270,19 +57400,19 @@ pixel_y = -5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) +/area/maintenance/Deck2_Science_ForCorridor1) "gpS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "gpU" = ( /obj/machinery/doorbell_chime{ id_tag = "sc-ChimeMed" }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "gqb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -57297,7 +57427,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "gqc" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -57309,8 +57439,13 @@ dir = 1; icon_state = "pipe-c" }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Port_Corridor) "gqm" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -57324,7 +57459,7 @@ layer = 2.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "gqp" = ( /obj/machinery/light{ dir = 4; @@ -57340,16 +57475,16 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "gqD" = ( -/obj/structure/table/woodentable, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/table/standard, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "gqH" = ( /obj/structure/cable{ d1 = 1; @@ -57363,7 +57498,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "grb" = ( /obj/structure/table/rack/shelf/steel, /obj/item/stack/cable_coil, @@ -57384,16 +57519,16 @@ /obj/item/frame/light/small, /obj/item/frame/light/small, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "grh" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/red/border{ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "grF" = ( /obj/structure/cable/green{ d1 = 4; @@ -57412,7 +57547,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "grM" = ( /obj/structure/table/steel_reinforced, /obj/item/tool/crowbar/brass{ @@ -57424,7 +57559,7 @@ }, /obj/item/storage/belt/utility, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "grV" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -57434,7 +57569,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "gsb" = ( /obj/structure/cable/green{ d1 = 1; @@ -57449,17 +57584,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "gsz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/turf/simulated/floor/grass, +/area/hallway/Central_2_Deck_Hall) "gsK" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -57485,7 +57613,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "gsP" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -57494,7 +57622,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "gsX" = ( /obj/structure/table/rack, /obj/item/radio/intercom/department/security{ @@ -57525,11 +57653,11 @@ pixel_x = 6 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "gtm" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "gto" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -57542,7 +57670,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "gtA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -57559,27 +57687,26 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "gtP" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "gud" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "gus" = ( /obj/structure/table/standard, /obj/item/flashlight/lamp{ @@ -57590,7 +57717,7 @@ pixel_x = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "guC" = ( /obj/structure/closet/crate/radiation, /obj/item/clothing/glasses/meson, @@ -57600,14 +57727,14 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "guD" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "guQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -57619,27 +57746,68 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) -"guX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/area/hallway/Aft_2_Deck_Corridor_1) +"gvb" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 +/obj/structure/sign/double/barsign{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) +"gvi" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/sign/poster/nanotrasen, +/obj/machinery/light{ + name = "1S-light fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_2) "gvF" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) +"gvT" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/sign/poster/nanotrasen, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) +"gwb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 25 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "gwj" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -57648,16 +57816,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Reception) -"gws" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/quartermaster/Reception) "gwJ" = ( /obj/structure/sign/directions/science/xenobiology{ pixel_y = 9; @@ -57671,7 +57830,7 @@ dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "gxm" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner{ @@ -57681,7 +57840,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "gxq" = ( /obj/item/folder{ pixel_x = -6; @@ -57689,13 +57848,50 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) +"gxC" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/blue, +/obj/structure/grille, +/obj/structure/window/basic/full, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + layer = 3.5; + id = "Star Lockdown"; + name = "Lockdown Gate"; + desc = "A heavily reinforced gate, sector lockdown!" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/Star_2_Deck_Central_Corridor_2) "gxJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "gxS" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -57703,8 +57899,9 @@ }, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "gxT" = ( /obj/structure/cable/green{ d1 = 2; @@ -57735,7 +57932,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "gyc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -57743,7 +57940,7 @@ dir = 10 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "gyf" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -57766,15 +57963,18 @@ d2 = 8; icon_state = "4-8" }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "gyg" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "gyn" = ( /obj/structure/cable/green{ d1 = 2; @@ -57791,13 +57991,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "gyS" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/area/maintenance/Deck2_For_Corridor) "gyT" = ( /obj/structure/cable{ d1 = 1; @@ -57815,14 +58015,23 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) +"gzd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "gzh" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ name = "Security Officer" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "gzr" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -57831,31 +58040,31 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "gzv" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, /obj/structure/cable{ + d1 = 2; d2 = 8; - icon_state = "0-8" + icon_state = "2-8" }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "gzD" = ( /obj/structure/cable/green{ d1 = 2; @@ -57882,7 +58091,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "gzI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/camera/network/security{ @@ -57891,7 +58100,7 @@ network = list("Commons") }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "gzQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -57900,7 +58109,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarCorridor1) +/area/maintenance/Deck2_Cargo_AftStarCorridor1) "gzX" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/power/apc{ @@ -57912,24 +58121,13 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) -"gzZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/sign/directions/chapel{ - layer = 3.5 - }, -/obj/structure/sign/directions/library{ - layer = 3.5; - pixel_y = -9 - }, -/obj/structure/sign/directions/dorms{ - pixel_y = 9 - }, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/area/maintenance/Deck2_Security_AftStarCorridor2) +"gAe" = ( +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain, +/obj/structure/flora/lily2, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_1) "gAq" = ( /obj/item/stool/padded, /obj/effect/floor_decal/borderfloorblack/corner{ @@ -57939,7 +58137,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "gAv" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -57954,7 +58152,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "gAB" = ( /obj/structure/cable{ d1 = 1; @@ -57977,7 +58175,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "gAD" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -57995,7 +58193,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "gAK" = ( /obj/machinery/firealarm{ pixel_y = -25; @@ -58009,7 +58207,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "gAM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -58023,7 +58221,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "gAX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -58032,7 +58230,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "gBb" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -58041,23 +58239,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Locker_Room) -"gBt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/medical/Locker_Room) "gBu" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -58069,7 +58251,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor2) +/area/maintenance/Deck2_Security_AftPortCorridor2) "gBz" = ( /obj/structure/cable{ d1 = 2; @@ -58079,11 +58261,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 5 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "gBV" = ( /obj/structure/cable/green{ d1 = 1; @@ -58098,12 +58280,12 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "gCa" = ( /obj/random/trash, /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "gCh" = ( /obj/structure/cable/green{ d1 = 1; @@ -58114,7 +58296,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "gCj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -58129,7 +58311,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "gCo" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/ai_status_display{ @@ -58150,7 +58332,7 @@ icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "gCr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -58165,7 +58347,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "gCy" = ( /obj/structure/table/marble, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -58204,7 +58386,7 @@ dir = 6 }, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "gCz" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Science Subgrid"; @@ -58227,7 +58409,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "gCS" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -58236,7 +58418,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "gCT" = ( /obj/machinery/lapvend, /obj/effect/floor_decal/borderfloor{ @@ -58246,7 +58428,7 @@ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "gDc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -58255,15 +58437,15 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "gDe" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "gDg" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "gDk" = ( /obj/structure/bed/chair/comfy/red{ dir = 8 @@ -58277,11 +58459,11 @@ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "gDn" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_PortCorridor1) +/area/maintenance/Deck2_Security_PortCorridor1) "gDr" = ( /obj/structure/cable{ d1 = 2; @@ -58295,7 +58477,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "gDA" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/red, /obj/machinery/camera/network/security{ @@ -58304,7 +58486,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "gDC" = ( /obj/item/radio/intercom{ dir = 1; @@ -58314,26 +58496,10 @@ /obj/structure/bed/chair/bay/shuttle, /turf/simulated/shuttle/floor/white, /area/shuttle/large_escape_pod3/station) -"gDI" = ( -/obj/effect/catwalk_plated/techmaint, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) "gDQ" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "gDR" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -58349,7 +58515,7 @@ color = "#6b75ff" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "gDU" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -58358,7 +58524,26 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) +"gDV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/arrows/yellow, +/obj/effect/floor_decal/industrial/arrows/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance/engi{ + name = "Domicile Air Distribution"; + req_one_access = null + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/Distro_Civilian) "gEj" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -58383,18 +58568,18 @@ id_tag = "sc-DBNstall2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "gER" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "gEZ" = ( /obj/structure/stairs/spawner/north, /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "gFa" = ( /obj/structure/cable/green{ d1 = 4; @@ -58407,7 +58592,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "gFB" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 4 @@ -58416,7 +58601,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "gFD" = ( /obj/structure/cable/white{ d1 = 4; @@ -58424,7 +58609,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "gFH" = ( /obj/structure/cable/white{ d1 = 4; @@ -58432,13 +58617,17 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) +"gFJ" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/hydro, +/area/hallway/Central_2_Deck_Hall) "gFK" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "gFM" = ( /obj/structure/cable{ d1 = 1; @@ -58447,7 +58636,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "gFO" = ( /obj/structure/cable/white{ d1 = 4; @@ -58455,7 +58644,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "gFU" = ( /obj/structure/cable/green{ d1 = 1; @@ -58474,7 +58663,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "gGk" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -58483,12 +58672,12 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "gGm" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "gGw" = ( /obj/machinery/power/apc{ dir = 1; @@ -58511,7 +58700,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "gGE" = ( /obj/machinery/computer/power_monitor{ dir = 4 @@ -58528,7 +58717,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "gHc" = ( /obj/structure/cable/green{ d1 = 1; @@ -58541,7 +58730,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "gHn" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass, @@ -58557,16 +58746,16 @@ name = "HoP Office Shutters" }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "gHt" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "gHw" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "gHy" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -58589,7 +58778,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "gHA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -58603,19 +58792,25 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) +"gHD" = ( +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/hallway/Central_2_Deck_Hall) "gHN" = ( /obj/structure/table/hardwoodtable, /obj/item/reagent_containers/food/snacks/winegum/yellow, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "gIc" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /obj/structure/curtain/open/privacy, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "gIA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -58623,18 +58818,13 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) -"gID" = ( -/obj/machinery/power/thermoregulator, -/obj/effect/floor_decal/industrial/hatch/blue, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/hallway/Aft_2_Deck_Corridor_1) "gIJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "gIM" = ( /obj/structure/table/rack, /obj/item/wheelchair{ @@ -58669,7 +58859,13 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) +"gJj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "gJk" = ( /obj/structure/cable/green{ d1 = 1; @@ -58681,7 +58877,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "gJr" = ( /obj/structure/bed/chair/sofa/corner/blue, /obj/structure/window/titanium{ @@ -58691,7 +58887,7 @@ dir = 5 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "gJB" = ( /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -58705,11 +58901,11 @@ /obj/structure/closet/emcloset, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "gJG" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "gJR" = ( /obj/effect/floor_decal/chapel{ dir = 1 @@ -58720,7 +58916,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "gJV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -58743,10 +58939,10 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "gKc" = ( /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "gKn" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -58758,27 +58954,52 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "gKw" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "gKx" = ( /obj/machinery/status_display, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "gKM" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) +"gKQ" = ( +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/ab_TeshDen) +"gKV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "gLd" = ( /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "gLq" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -58792,7 +59013,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "gLw" = ( /obj/machinery/computer/security/engineering{ dir = 8 @@ -58808,14 +59029,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "gLO" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "gLR" = ( /obj/structure/cable/green{ d1 = 1; @@ -58828,18 +59049,16 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "gMa" = ( -/obj/structure/ladder/updown{ - pixel_y = 3 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/small/warning/emerg_only{ - desc = "Ladder for emergency use only"; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Star_Corridor) "gMe" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -58848,7 +59067,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "gMg" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -58857,7 +59076,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "gMm" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/steeldecal/steel_decals10{ @@ -58867,13 +59086,13 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "gMq" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "gMr" = ( /obj/structure/cable{ d1 = 1; @@ -58891,33 +59110,44 @@ /obj/effect/floor_decal/corner/lightgrey/bordercorner{ dir = 4 }, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -3 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "gMw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "gMy" = ( -/obj/structure/railing/grey{ - color = "yellow"; +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/railing/grey{ - color = "yellow"; +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 4 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 4 +/obj/item/radio/intercom{ + dir = 1; + name = "1N-Station Intercom (General)"; + pixel_y = 22 }, -/obj/structure/lattice, -/obj/structure/railing/grey{ - color = "yellow" - }, -/turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "gMz" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/milspec/box, @@ -58926,7 +59156,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "gME" = ( /obj/structure/cable{ d1 = 4; @@ -58943,13 +59173,16 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "gMN" = ( /obj/machinery/light_construct{ dir = 4 }, +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "gMS" = ( /obj/structure/cable/green{ d1 = 4; @@ -58967,7 +59200,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "gMU" = ( /obj/structure/cable/green{ d1 = 1; @@ -58988,12 +59221,12 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "gNj" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "gNm" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -59002,7 +59235,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "gNu" = ( /obj/machinery/power/apc{ dir = 8; @@ -59011,17 +59244,17 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "gNw" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "gNy" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "gNC" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "gNI" = ( /obj/machinery/alarm{ dir = 8; @@ -59034,31 +59267,31 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) -"gNX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/rnd/Toxins_Viewing_Port) "gOr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/door/blast/regular/open{ + layer = 3.5; + id = "Star Lockdown"; + name = "Lockdown Gate"; + desc = "A heavily reinforced gate, sector lockdown!" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/structure/sign/poster/custom, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/obj/machinery/door/airlock/angled_bay/double/glass/research{ + dir = 8; + req_access = null; + name = "Star Sector Science-Medical" + }, +/turf/simulated/floor/tiled/techmaint, +/area/hallway/Star_2_Deck_Central_Corridor_2) "gOI" = ( /obj/machinery/vending/coffee, /obj/effect/floor_decal/borderfloor{ @@ -59068,7 +59301,7 @@ dir = 5 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "gOV" = ( /obj/structure/cable/green{ d1 = 2; @@ -59090,7 +59323,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Locker_Room) +/area/rnd/Locker_Room) "gOX" = ( /obj/structure/cable/green{ d1 = 4; @@ -59098,7 +59331,12 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) +"gPb" = ( +/obj/structure/table/hardwoodtable, +/obj/item/locator, +/turf/simulated/floor/carpet/bcarpet, +/area/security/Boardroom) "gPc" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 8; @@ -59115,7 +59353,7 @@ }, /obj/machinery/light/small, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "gPr" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -59146,7 +59384,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "gPt" = ( /obj/structure/cable/green{ d1 = 2; @@ -59171,7 +59409,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "gPA" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/suit/space/void/security/alt{ @@ -59199,10 +59437,10 @@ pixel_x = -6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "gPC" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "gPG" = ( /obj/structure/table/rack{ dir = 8; @@ -59228,12 +59466,12 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "gPS" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "gQu" = ( /obj/machinery/ai_status_display{ name = "1N-AI display"; @@ -59241,7 +59479,7 @@ }, /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "gQv" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/alarm{ @@ -59250,7 +59488,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "gQM" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -59263,7 +59501,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "gQP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloorwhite/corner2{ @@ -59279,11 +59517,11 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "gQR" = ( /obj/structure/sign/warning/vacuum, /turf/simulated/wall, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "gQT" = ( /obj/structure/ladder{ pixel_y = 3 @@ -59300,7 +59538,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber1) +/area/maintenance/Deck2_Engineering_ForStarChamber1) "gRc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -59312,18 +59550,24 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "gRo" = ( /obj/machinery/light/small{ dir = 1 }, /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "gRF" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) +"gRK" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass, +/area/hallway/Central_2_Deck_Hall) "gRL" = ( /obj/structure/table/glass, /obj/machinery/computer/med_data/laptop{ @@ -59334,30 +59578,34 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "gRQ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/effect/floor_decal/corner/green/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "gSe" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/table/marble, +/obj/machinery/cash_register/civilian{ + dir = 4 }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/obj/machinery/door/blast/shutters{ + dir = 8; + name = "Kitchen Shutters"; + id = "sc-GCkitchen"; + layer = 3.3 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/Chomp_Dinner_1) "gSh" = ( /obj/structure/loot_pile/maint/technical, /obj/random/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber1) +/area/maintenance/Deck2_Engineering_PortChamber1) "gSn" = ( /obj/structure/table/glass, /obj/item/storage/box/nifsofts_medical{ @@ -59374,23 +59622,24 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Reception) -"gSv" = ( -/obj/structure/cable/green{ +/area/medical/Reception) +"gSB" = ( +/obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor{ dir = 8 }, /obj/effect/floor_decal/corner/lightgrey/border{ dir = 8 }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/Central_2_Deck_Hall) "gSJ" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -59401,7 +59650,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "gSR" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -59421,7 +59670,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "gTh" = ( /obj/structure/cable{ d1 = 4; @@ -59439,7 +59688,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "gTi" = ( /obj/machinery/atmospherics/valve/shutoff{ name = "Security automatic shutoff valve"; @@ -59447,7 +59696,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "gTx" = ( /obj/machinery/alarm{ dir = 1; @@ -59462,19 +59711,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) -"gTy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "gUd" = ( /obj/machinery/button/remote/airlock{ dir = 4; @@ -59491,7 +59728,7 @@ icon_state = "1-2" }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "gUj" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 1 @@ -59505,7 +59742,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "gUm" = ( /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -59514,8 +59751,9 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/structure/table/standard, /obj/effect/floor_decal/corner/green/bordercorner, +/obj/item/mail/envelope, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "gUt" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -59524,7 +59762,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "gUy" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -59536,16 +59774,16 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "gUV" = ( /obj/structure/bed/chair/oldsofa, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "gVb" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "gVe" = ( /obj/structure/cable{ d1 = 4; @@ -59562,7 +59800,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "gVl" = ( /obj/machinery/camera/network/security{ c_tag = "D2-Com-Aft Stairwell1"; @@ -59572,39 +59810,39 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "gVs" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "gVv" = ( /obj/structure/disposalpipe/tagger{ dir = 4; sort_tag = "transit_crew" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/area/crew_quarters/Chomp_Kitchen) "gVw" = ( /obj/machinery/portable_atmospherics/powered/pump/huge, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "gVx" = ( /obj/effect/graffitispawner, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "gVB" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "gVK" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1; color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "gWf" = ( /obj/structure/table/rack/steel, /obj/fiftyspawner/glass{ @@ -59619,20 +59857,6 @@ /obj/fiftyspawner/glass{ pixel_y = -7 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - name = "N-light switch"; - pixel_x = 12; - pixel_y = 27 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -59640,7 +59864,18 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) +"gWh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "gWj" = ( /obj/machinery/transhuman/resleever, /obj/effect/floor_decal/borderfloorblack{ @@ -59650,7 +59885,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "gWp" = ( /obj/machinery/shield_diffuser, /obj/structure/lattice, @@ -59663,7 +59898,7 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "gWC" = ( /obj/structure/table/reinforced, /obj/structure/noticeboard{ @@ -59684,7 +59919,7 @@ name = "HoP Office Shutters" }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "gWL" = ( /obj/structure/table/standard, /obj/item/material/knife/butch{ @@ -59699,7 +59934,7 @@ dir = 1 }, /turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "gWU" = ( /obj/machinery/alarm{ dir = 8; @@ -59709,14 +59944,14 @@ /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "gWZ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "gXf" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "gXj" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -59725,7 +59960,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "gXk" = ( /obj/structure/cable/green{ d1 = 1; @@ -59743,16 +59978,16 @@ icon_state = "pipe-c" }, /obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "gXB" = ( /obj/machinery/computer/security/wooden_tv, /obj/structure/window/reinforced{ dir = 8 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "gXI" = ( /obj/structure/cable/green{ d1 = 4; @@ -59763,8 +59998,11 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/monofloor{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "gXM" = ( /obj/machinery/alarm{ dir = 8; @@ -59777,7 +60015,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "gXW" = ( /obj/structure/extinguisher_cabinet{ dir = 8; @@ -59785,11 +60023,21 @@ pixel_x = 27 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "gYe" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_1) "gYm" = ( /obj/machinery/pipedispenser, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -59799,14 +60047,14 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "gYn" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "gYq" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -59814,15 +60062,15 @@ network = list("Domicile") }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "gYY" = ( /obj/structure/girder/reinforced, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "gYZ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "gZj" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/structure/cable/green{ @@ -59835,7 +60083,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "gZm" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -59843,7 +60091,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "gZD" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable{ @@ -59854,11 +60102,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "gZF" = ( /obj/structure/table/rack, /obj/item/gun/energy/temperature{ @@ -59874,7 +60122,7 @@ pixel_x = -4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "gZW" = ( /obj/random/trash, /obj/structure/cable/green{ @@ -59883,13 +60131,13 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "had" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "hao" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -59899,7 +60147,7 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "hax" = ( /obj/structure/sign/directions/stairwell{ dir = 8 @@ -59909,7 +60157,7 @@ dir = 9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "haz" = ( /obj/structure/disposalpipe/sortjunction{ dir = 2; @@ -59920,13 +60168,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "haC" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "haO" = ( /obj/item/radio/intercom{ dir = 8; @@ -59941,11 +60189,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "hba" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "hbi" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/structure/cable/green{ @@ -59956,7 +60204,7 @@ /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "hbn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -59964,20 +60212,30 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "hbu" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) +"hbB" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/flora/lily2, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_2) "hbI" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "hbK" = ( /obj/structure/table/woodentable, /obj/effect/floor_decal/borderfloorblack{ @@ -59987,7 +60245,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "hbY" = ( /obj/structure/cable/green{ d1 = 1; @@ -60006,7 +60264,7 @@ }, /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "hcg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -60017,7 +60275,7 @@ name = "Gallery Access" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "hcl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -60026,13 +60284,13 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "hcr" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "hcx" = ( /obj/structure/cable/green{ d1 = 1; @@ -60052,7 +60310,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "hcy" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 @@ -60061,7 +60319,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "hcA" = ( /obj/structure/cable/green{ d1 = 4; @@ -60079,7 +60337,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_PortCorridor1) +/area/maintenance/Deck2_Security_PortCorridor1) "hcI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -60096,18 +60354,18 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "hcM" = ( /obj/effect/landmark{ name = "lightsout" }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "hcP" = ( /obj/structure/bed/chair, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "hcU" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -60116,14 +60374,14 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "hdd" = ( /obj/machinery/atmospherics/unary/freezer{ icon_state = "freezer" }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "hdn" = ( /obj/structure/cable/green{ d1 = 4; @@ -60143,27 +60401,33 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "hdo" = ( /obj/structure/table/standard, /obj/item/paper_bin, /obj/item/pen/multi, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "hdp" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "hdu" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) -"hdz" = ( -/obj/structure/disposalpipe/sortjunction/wildcard/flipped, -/turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/maintenance/Deck2_Medical_AftStarChamber1) +"hdB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "hdI" = ( /obj/effect/floor_decal/industrial/loading/blue{ dir = 4 @@ -60177,7 +60441,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "hdT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -60187,7 +60451,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_StarChamber1) +/area/maintenance/Deck2_Cargo_StarChamber1) "hdV" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor/corner{ @@ -60198,14 +60462,14 @@ dir = 9 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "hen" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /obj/machinery/fitness/punching_bag/clown, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "heo" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -60229,7 +60493,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "heC" = ( /obj/structure/cable/green{ d1 = 1; @@ -60248,7 +60512,23 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) +"heF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/techmaint, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "heP" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 8 @@ -60257,7 +60537,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "heW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -60266,7 +60546,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "heZ" = ( /obj/machinery/shield_diffuser, /obj/structure/cable/white{ @@ -60275,28 +60555,14 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "hff" = ( -/obj/structure/closet/chefcloset, -/obj/item/glass_jar, -/obj/item/retail_scanner/civilian, -/obj/item/soap/nanotrasen, -/obj/item/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/packageWrap, -/obj/item/packageWrap, -/obj/item/packageWrap, -/obj/item/clothing/gloves/sterile/latex, -/obj/item/clothing/gloves/sterile/latex, -/obj/machinery/light{ - name = "1S-light fixture" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "hft" = ( /obj/machinery/status_display{ layer = 4; @@ -60310,20 +60576,29 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "hfI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "hfJ" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) +"hfR" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "hfT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -60331,7 +60606,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "hfX" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -60343,7 +60618,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "hgl" = ( /obj/structure/cable/green{ d1 = 2; @@ -60360,16 +60635,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "hgn" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "hgu" = ( /obj/structure/lattice, /obj/machinery/light/small/neon/nif2, /turf/space, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "hgv" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -60377,7 +60652,7 @@ /obj/machinery/portable_atmospherics/powered/pump, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "hgz" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -60394,7 +60669,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "hgN" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/random{ @@ -60421,7 +60696,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor2) +/area/maintenance/Deck2_Science_StarCorridor2) "hgO" = ( /obj/structure/bed/chair/sofa/corner/blue, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -60435,7 +60710,7 @@ dir = 5 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "hhe" = ( /obj/structure/cable/green{ d1 = 4; @@ -60454,7 +60729,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "hhi" = ( /obj/machinery/power/apc{ dir = 4; @@ -60464,7 +60739,7 @@ /obj/structure/cable/green, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "hhj" = ( /obj/structure/cable/green{ d1 = 2; @@ -60481,7 +60756,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "hhp" = ( /obj/structure/sign/directions/science{ dir = 4; @@ -60494,34 +60769,14 @@ }, /obj/structure/sign/directions/security{ pixel_y = -9; - dir = 1; + dir = 9; layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) -"hhr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -3 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/crew_quarters/Chomp_Dinner_2) "hhw" = ( /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "hhL" = ( /obj/structure/cable/green{ d1 = 2; @@ -60546,17 +60801,42 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) +"hhO" = ( +/obj/structure/lattice, +/obj/random/trash, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_PortChamber2) "hhQ" = ( /obj/machinery/mass_driver{ dir = 8; id = "SC-MSdisposals" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "hic" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/double/glass/common{ + dir = 8; + name = "Central Lobby" }, /obj/structure/cable{ d1 = 4; @@ -60564,18 +60844,18 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_1) "hif" = ( /obj/structure/sign/directions/science/toxins{ dir = 1 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "hiu" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "hiy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -60583,7 +60863,17 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) +"hiC" = ( +/obj/structure/lattice, +/obj/effect/catwalk_plated/techmaint, +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_StarChamber1) "hiN" = ( /obj/structure/cable/green{ d1 = 1; @@ -60604,19 +60894,19 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "hiQ" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "hjn" = ( /obj/machinery/status_display/supply_display{ pixel_y = -32 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "hjo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -60627,18 +60917,18 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "hjA" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "hjY" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "hkd" = ( /obj/structure/disposalpipe/tagger{ sort_tag = "transit_crew" @@ -60653,7 +60943,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "hkk" = ( /obj/structure/cable/green{ d1 = 2; @@ -60679,7 +60969,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "hkp" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -60694,13 +60984,13 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "hkr" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "hku" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -60734,18 +61024,23 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) +"hkB" = ( +/obj/effect/catwalk_plated/techmaint, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Science_StarCorridor2) "hkI" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "hkK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "hkO" = ( /obj/structure/table/woodentable, /obj/machinery/librarycomp, @@ -60753,7 +61048,7 @@ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "hkW" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -60766,12 +61061,12 @@ network = list("Commons") }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "hlb" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/table/standard, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "hlA" = ( /obj/structure/cable/green{ d1 = 4; @@ -60794,13 +61089,13 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "hlC" = ( /obj/structure/bed/chair/backed_red{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "hlI" = ( /obj/structure/cable{ d1 = 4; @@ -60823,7 +61118,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "hlT" = ( /obj/structure/cable/green{ d1 = 4; @@ -60842,7 +61137,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "hlU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -60861,7 +61156,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "hlX" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -60878,7 +61173,7 @@ }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "hmb" = ( /obj/structure/cable/green{ d1 = 4; @@ -60886,7 +61181,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "hmd" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -60895,17 +61190,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "hmn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/catwalk_plated/techmaint, -/obj/effect/landmark/event_spawn/morphspawn, /obj/machinery/door/blast/regular/open{ layer = 3.5; id = "For Lockdown"; @@ -60914,8 +61200,17 @@ dir = 4 }, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/obj/machinery/door/firedoor/multi_tile/glass, +/obj/effect/floor_decal/industrial/arrows/blue, +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 1 + }, +/obj/machinery/door/airlock/angled_bay/double/glass/command{ + name = "Fore Sector Security-Command"; + req_access = null + }, +/turf/simulated/floor/tiled/techmaint, +/area/hallway/For_2_Deck_Central_Corridor_2) "hmo" = ( /obj/structure/cable/green{ d1 = 4; @@ -60932,14 +61227,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Locker_Room) +/area/rnd/Locker_Room) "hmv" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "hmF" = ( /obj/structure/cable{ d1 = 1; @@ -60953,7 +61248,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "hmH" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, @@ -60961,13 +61256,13 @@ icon = 'icons/turf/shuttle_alien_blue.dmi' }, /turf/space, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "hmM" = ( /obj/structure/sign/directions/dorms{ pixel_y = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "hnd" = ( /obj/structure/cable/green{ d1 = 2; @@ -60983,19 +61278,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "hnj" = ( /obj/structure/sign/directions/command{ pixel_y = -9; - dir = 1; + dir = 9; layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "hny" = ( /obj/structure/girder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "hnG" = ( /obj/machinery/alarm{ dir = 1; @@ -61004,25 +61299,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/CMO_Office) -"hnL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/camera/network/security{ - dir = 4; - c_tag = "D2-Com-Aft Corridor1"; - network = list("Commons") - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/medical/CMO_Office) "hnS" = ( /obj/structure/table/reinforced, /obj/item/robotanalyzer{ @@ -61043,7 +61320,7 @@ pixel_x = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "hnT" = ( /obj/structure/cable/green{ d1 = 4; @@ -61063,7 +61340,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "hnX" = ( /obj/structure/cable/green{ d1 = 1; @@ -61074,7 +61351,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "hnZ" = ( /obj/structure/cable/green{ d1 = 1; @@ -61085,7 +61362,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "hoa" = ( /turf/simulated/wall/rthull, /area/shuttle/large_escape_pod3/station) @@ -61102,7 +61379,7 @@ dir = 10 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "hou" = ( /obj/structure/cable/green{ d1 = 2; @@ -61110,7 +61387,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "hoz" = ( /obj/machinery/atmospherics/omni/mixer{ tag_north_con = 0.5; @@ -61125,7 +61402,7 @@ network = list("Science") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "hoK" = ( /obj/structure/bed/chair/sofa/blue, /obj/structure/window/basic{ @@ -61135,11 +61412,11 @@ dir = 1 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "hoN" = ( /obj/structure/sign/warning/airlock, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "hpA" = ( /obj/structure/table/reinforced, /obj/item/tool/crowbar{ @@ -61154,7 +61431,7 @@ pixel_y = 7 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "hpC" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/simple/visible, @@ -61171,22 +61448,7 @@ locked = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) -"hpO" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance/int, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/area/rnd/Toxins_Mixing_Room) "hqc" = ( /obj/structure/cable/green{ d1 = 4; @@ -61202,14 +61464,14 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "hqj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/tagger{ sort_tag = "transit_crew" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "hqk" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -61217,10 +61479,10 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "hqA" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "hqB" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/electrical{ @@ -61236,7 +61498,7 @@ pixel_y = 2 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "hqD" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/grille, @@ -61267,14 +61529,14 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "hqF" = ( /obj/structure/girder/reinforced, /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "hqU" = ( /obj/structure/undies_wardrobe, /obj/item/towel/random{ @@ -61294,7 +61556,7 @@ pixel_y = -22 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "hqW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -61304,7 +61566,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "hrl" = ( /obj/structure/closet/secure_closet/cargotech, /obj/effect/floor_decal/borderfloor{ @@ -61314,20 +61576,29 @@ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) +"hrp" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/grass, +/area/hallway/Central_2_Deck_Hall) "hrq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "hru" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "hrE" = ( /obj/structure/cable/green{ d1 = 4; @@ -61341,14 +61612,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "hsn" = ( /obj/machinery/light/small{ dir = 1 }, /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "hsr" = ( /obj/structure/cable/green{ d1 = 4; @@ -61365,7 +61636,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "hsv" = ( /obj/structure/cable{ d1 = 4; @@ -61376,11 +61647,11 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "hsE" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "hsI" = ( /obj/structure/lattice, /obj/structure/railing/grey{ @@ -61410,7 +61681,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber1) +/area/maintenance/Deck2_Engineering_ForStarChamber1) "hsP" = ( /obj/structure/bed/chair/sofa/brown{ dir = 8 @@ -61420,7 +61691,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "htb" = ( /obj/machinery/firealarm{ dir = 8; @@ -61437,11 +61708,11 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "hte" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "hti" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4 @@ -61453,7 +61724,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "htm" = ( /obj/structure/cable/green{ d1 = 1; @@ -61464,7 +61735,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) +/area/maintenance/Deck2_Medical_AftCorridor1) "htD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -61477,7 +61748,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "htE" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -61489,27 +61760,27 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "htH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "htI" = ( /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "htP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "hua" = ( /obj/structure/table/glass, /obj/item/roller/adv, @@ -61520,7 +61791,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "hul" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -61548,7 +61819,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "hun" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -61557,7 +61828,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "huu" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -61566,7 +61837,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "huG" = ( /obj/structure/cable/green{ d1 = 4; @@ -61586,12 +61857,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "hva" = ( /obj/structure/table/steel, /obj/random/maintenance/security, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "hvb" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -61608,7 +61879,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "hvE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -61622,17 +61893,28 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) +"hvI" = ( +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "hvW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "hwm" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/bcarpet/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) +"hwo" = ( +/obj/effect/floor_decal/spline/plain/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/hydro, +/area/hallway/Central_2_Deck_Hall) "hwH" = ( /obj/effect/floor_decal/chapel{ dir = 8 @@ -61656,7 +61938,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "hwI" = ( /obj/structure/cable{ d1 = 4; @@ -61671,7 +61953,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_StarCorridor1) +/area/maintenance/Deck2_Security_StarCorridor1) "hwR" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -61685,7 +61967,7 @@ }, /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "hxs" = ( /obj/machinery/power/port_gen/pacman, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -61694,7 +61976,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "hxx" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -61709,7 +61991,7 @@ }, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "hxA" = ( /obj/machinery/atmospherics/pipe/tank/air/full{ dir = 1 @@ -61723,7 +62005,7 @@ }, /obj/machinery/light, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "hxN" = ( /obj/structure/filingcabinet/chestdrawer{ dir = 1 @@ -61733,7 +62015,7 @@ name = "1N-newscaster" }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "hxP" = ( /obj/effect/floor_decal/industrial/loading{ dir = 4 @@ -61741,15 +62023,17 @@ /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, -/obj/structure/plasticflaps{ - opacity = 1 - }, /obj/machinery/navbeacon/delivery/east{ location = "Midnight_Bar" }, -/obj/machinery/door/window/survival_pod, +/obj/machinery/door/window/survival_pod{ + req_access = list(25) + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "hyf" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -61772,7 +62056,7 @@ }, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "hyh" = ( /obj/structure/cable/green{ d1 = 4; @@ -61786,7 +62070,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "hyz" = ( /obj/structure/cable/green{ d1 = 1; @@ -61799,7 +62083,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "hyH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -61811,7 +62095,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "hzq" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -61827,7 +62111,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "hzt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -61842,13 +62126,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "hzx" = ( /obj/structure/table/steel, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "hzy" = ( /obj/machinery/computer/atmos_alert{ dir = 8 @@ -61865,7 +62149,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "hzK" = ( /obj/structure/cable/green{ d1 = 4; @@ -61882,7 +62166,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "hzO" = ( /obj/structure/cable{ d1 = 4; @@ -61890,19 +62174,24 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "hzQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Port_Medical_Post) -"hzV" = ( -/obj/structure/sign/poster/custom{ - dir = 4 +/obj/machinery/disposal/wall{ + dir = 8; + pixel_x = 34; + name = "1E-inset disposal unit" }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/Port_Medical_Post) +"hzV" = ( +/turf/simulated/floor/glass, +/area/hallway/Star_2_Deck_Central_Corridor_2) "hzX" = ( /obj/machinery/button/remote/airlock{ desc = "A remote control switch for the CE's office."; @@ -61919,12 +62208,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "hAc" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "hAu" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -61941,7 +62230,7 @@ name = "Lockdown Gate" }, /turf/simulated/open, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "hAF" = ( /obj/machinery/camera/network/research{ c_tag = "D2-Med-Medbay2"; @@ -61955,16 +62244,11 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "hAI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Reception) -"hBl" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/engineering/Reception) "hBo" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -61998,10 +62282,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "hBt" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) +/area/maintenance/Deck2_Science_ForCorridor1) "hBF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -62012,14 +62296,14 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "hBG" = ( /obj/effect/floor_decal/corner/purple/diagonal, /obj/effect/floor_decal/corner/purple/diagonal{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "hBM" = ( /obj/item/radio/intercom/department/medbay{ pixel_y = -22; @@ -62035,12 +62319,12 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "hBX" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "hCx" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -62049,7 +62333,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "hCV" = ( /obj/structure/cable{ d1 = 4; @@ -62068,7 +62352,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "hCW" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -62085,7 +62369,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "hCX" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -62093,12 +62377,12 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "hDc" = ( /obj/structure/stasis_cage, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "hDe" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -62120,14 +62404,7 @@ sortType = "Mail Room" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) -"hDm" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/hallway/Port_Transit_Foyer) "hDn" = ( /obj/structure/cable/green{ d1 = 4; @@ -62144,7 +62421,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "hDz" = ( /obj/structure/cable/white{ d1 = 2; @@ -62152,7 +62429,7 @@ icon_state = "2-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "hDG" = ( /obj/structure/cable{ d1 = 16; @@ -62173,7 +62450,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "hDL" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -62182,13 +62459,13 @@ icon_state = "1-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "hEh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "hEv" = ( /obj/structure/closet/crate{ dir = 2 @@ -62201,7 +62478,7 @@ /obj/random/maintenance/research, /obj/random/maintenance/engineering, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "hEC" = ( /obj/machinery/alarm{ dir = 4; @@ -62215,7 +62492,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Corridor) +/area/maintenance/Deck2_Science_ForPort_Corridor) "hEU" = ( /obj/structure/table/standard, /obj/item/reagent_containers/food/drinks/cans/waterbottle{ @@ -62231,7 +62508,22 @@ pixel_x = 22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) +"hFj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 1 + }, +/obj/machinery/light/floortube{ + pixel_y = -2 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_2) "hFz" = ( /obj/structure/cable/green{ d1 = 4; @@ -62244,7 +62536,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "hGd" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -62253,7 +62545,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "hGu" = ( /obj/machinery/flasher{ id = "testthis"; @@ -62264,34 +62556,31 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "hGy" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "hGB" = ( /obj/structure/curtain/bed{ name = "curtain" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "hHg" = ( /obj/structure/sign/department/mail{ desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "hHv" = ( /obj/effect/floor_decal/industrial/loading, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, -/obj/structure/plasticflaps{ - opacity = 1 - }, /obj/machinery/door/blast/regular/open{ layer = 3.5; id = "Sci Lockdown"; @@ -62303,14 +62592,18 @@ location = "Science" }, /obj/machinery/door/window/survival_pod{ - dir = 2 + dir = 2; + req_access = list(47) + }, +/obj/structure/plasticflaps{ + opacity = 1 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "hHG" = ( /obj/structure/bed/padded, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "hHQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -62330,7 +62623,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "hHW" = ( /obj/structure/bed/chair/comfy/yellow{ dir = 4 @@ -62339,7 +62632,7 @@ dir = 10 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "hIh" = ( /obj/structure/window/reinforced{ dir = 4 @@ -62358,7 +62651,7 @@ layer = 3.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "hIq" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -62380,7 +62673,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "hIE" = ( /obj/machinery/light{ dir = 4; @@ -62389,16 +62682,16 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "hIS" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ color = "#989898"; dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "hJb" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -62407,18 +62700,37 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "hJo" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/window/reinforced{ dir = 8 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) +"hJr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 4; + name = "1E-Station Intercom (General)"; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Corridor_1) "hJs" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "hJt" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/pipedispenser, @@ -62427,7 +62739,7 @@ pixel_x = -4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "hJz" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/grille, @@ -62445,31 +62757,31 @@ /obj/effect/floor_decal/industrial/hatch/red, /obj/structure/cable/white, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "hJC" = ( /obj/machinery/status_display, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "hJL" = ( /mob/living/simple_mob/animal/giant_spider/nurse/hat{ name = "Joy" }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "hJU" = ( /obj/machinery/light{ dir = 1; name = "1N-lighting fixture" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "hJV" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "hJX" = ( /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "hKa" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -62482,37 +62794,53 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "hKb" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "hKl" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/disposalpipe/up{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber2) +/area/maintenance/Deck2_Engineering_ForStarChamber2) "hKo" = ( /obj/machinery/camera/network/security{ c_tag = "D2-Sci-Reception1"; network = list("Science") }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "hKu" = ( /obj/structure/salvageable/console_broken_os, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "hKz" = ( /obj/effect/landmark/event_spawn/morphspawn, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) +"hLt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/holoposter{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "hLK" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "hLP" = ( /obj/machinery/atmospherics/pipe/tank/air/full{ dir = 8 @@ -62523,7 +62851,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "hLX" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -62532,7 +62860,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "hMh" = ( /obj/structure/sign/warning/evac, /turf/simulated/shuttle/wall/no_join{ @@ -62559,24 +62887,24 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "hMB" = ( /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "hMG" = ( /obj/structure/bed/chair/sofa/left/brown, /obj/effect/floor_decal/carpet{ dir = 4 }, /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "hMJ" = ( /obj/machinery/light_construct{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "hMR" = ( /obj/machinery/vending/wallmed1{ dir = 4; @@ -62584,13 +62912,13 @@ name = "1W-NanoMed" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "hNe" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "hNm" = ( /obj/structure/cable/green{ d1 = 2; @@ -62612,13 +62940,13 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "hNv" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "hNJ" = ( /obj/structure/cable{ d1 = 1; @@ -62629,7 +62957,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "hNK" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -62640,13 +62968,13 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "hNS" = ( /obj/structure/sign/directions/shuttle_bay{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "hNU" = ( /obj/structure/cable/green{ d1 = 4; @@ -62669,7 +62997,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "hNW" = ( /obj/structure/cable/green{ d1 = 4; @@ -62680,7 +63008,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "hOj" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -62699,7 +63027,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "hOu" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -62721,13 +63049,13 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "hOJ" = ( /obj/machinery/alarm{ pixel_y = 25 }, /turf/simulated/floor/wood/broken, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "hOK" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -62754,23 +63082,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Aft) -"hOL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Stairwell_Aft) "hON" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -62778,7 +63090,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "hPl" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -62795,10 +63107,10 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "hPt" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "hPx" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -62815,7 +63127,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "hPB" = ( /obj/structure/cable{ d1 = 1; @@ -62830,7 +63142,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "hPC" = ( /obj/structure/cable/green{ d1 = 1; @@ -62838,7 +63150,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "hPJ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -62848,7 +63160,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor2) +/area/maintenance/Deck2_Security_AftPortCorridor2) "hPQ" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -62871,7 +63183,7 @@ }, /obj/structure/table/steel, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "hPS" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -62880,7 +63192,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "hPV" = ( /obj/structure/table/steel_reinforced, /obj/item/deck/wizoff, @@ -62891,15 +63203,15 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "hPY" = ( /obj/random/crate, /obj/item/chameleon, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "hPZ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "hQq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -62914,7 +63226,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "hQu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -62930,7 +63242,25 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) +"hQz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/directions/engineering{ + dir = 10; + layer = 3.5; + pixel_y = 9 + }, +/obj/structure/sign/directions/cargo{ + dir = 10; + layer = 3.5 + }, +/obj/structure/sign/directions/security{ + pixel_y = -9; + dir = 1; + layer = 3.5 + }, +/turf/simulated/wall, +/area/maintenance/Deck2_For_Corridor) "hQC" = ( /obj/structure/cable/green{ d1 = 1; @@ -62944,7 +63274,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "hQG" = ( /obj/structure/cable/green{ d1 = 4; @@ -62966,14 +63296,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "hQX" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "hQY" = ( /obj/machinery/light{ dir = 4 @@ -62982,13 +63312,13 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "hRr" = ( /obj/structure/casino_table/blackjack_m{ dir = 1 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "hRt" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -62996,7 +63326,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "hRL" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -63005,7 +63335,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "hRQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -63013,7 +63343,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "hSM" = ( /obj/structure/table/standard, /obj/item/form_printer{ @@ -63026,7 +63356,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "hSQ" = ( /obj/structure/window/basic{ dir = 1 @@ -63038,7 +63368,7 @@ name = "1W-station intercom (Medbay)" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "hSV" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -63058,7 +63388,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "hTx" = ( /obj/structure/cable/green{ d1 = 1; @@ -63075,14 +63405,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "hTF" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /obj/machinery/scale, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "hTY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -63094,7 +63424,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "hUh" = ( /obj/item/clothing/suit/space/void/atmos/alt{ pixel_x = -6 @@ -63135,7 +63465,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "hUk" = ( /obj/machinery/power/apc{ dir = 8; @@ -63147,7 +63477,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "hUM" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -63155,7 +63485,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "hUT" = ( /obj/machinery/alarm{ dir = 1; @@ -63163,7 +63493,7 @@ }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "hVh" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -63183,7 +63513,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "hVG" = ( /obj/structure/window/reinforced{ dir = 8 @@ -63198,7 +63528,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "hVH" = ( /obj/structure/cable/green{ d1 = 1; @@ -63210,7 +63540,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "hVN" = ( /obj/effect/floor_decal/techfloor, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -63220,7 +63550,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "hVT" = ( /obj/structure/table/woodentable, /obj/item/storage/fancy/crayons{ @@ -63253,14 +63583,16 @@ }, /obj/structure/table/reinforced, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "hWe" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "hWn" = ( /obj/structure/cable{ d1 = 1; @@ -63284,7 +63616,7 @@ pixel_x = 22 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "hWu" = ( /obj/structure/cable/green{ d1 = 4; @@ -63305,7 +63637,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "hWv" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -63328,7 +63660,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "hWw" = ( /obj/structure/table/rack/steel, /obj/random/maintenance/cargo, @@ -63337,17 +63669,17 @@ /obj/random/tech_supply/component, /obj/random/tech_supply/component, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "hWE" = ( /obj/structure/table/rack, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "hWI" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "hWK" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -63357,7 +63689,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "hWO" = ( /obj/structure/closet/firecloset/full/atmos, /obj/machinery/power/apc{ @@ -63383,14 +63715,24 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) +"hWU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "hWW" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "hWY" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -63399,7 +63741,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "hXl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -63411,7 +63753,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "hXu" = ( /obj/structure/cable/green{ d1 = 1; @@ -63435,7 +63777,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "hXA" = ( /obj/structure/table/rack/shelf, /obj/item/toy/figure/error{ @@ -63470,7 +63812,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "hXE" = ( /obj/structure/extinguisher_cabinet{ name = "1N-extinguisher cabinet"; @@ -63483,7 +63825,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "hXY" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -63496,7 +63838,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "hYq" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ @@ -63520,7 +63862,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "hYG" = ( /obj/machinery/alarm{ dir = 8; @@ -63533,7 +63875,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "hYT" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -63547,45 +63889,14 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) -"hYU" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance/engi{ - name = "Central substation"; - req_one_access = list(10, 28) - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/area/security/Armory) "hYY" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) -"hYZ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/security/Equipment_Storage) "hZe" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "hZp" = ( /obj/structure/cable/green{ d1 = 4; @@ -63603,8 +63914,12 @@ d2 = 8; icon_state = "1-8" }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "hZr" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor/corner{ @@ -63617,7 +63932,7 @@ dir = 5 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "hZz" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 6 @@ -63626,25 +63941,31 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "hZN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "hZV" = ( /obj/machinery/doorbell_chime{ id_tag = "sc-ChimeEng" }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "hZZ" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -63664,7 +63985,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "iah" = ( /obj/machinery/smartfridge/sheets{ desc = "An industrial sized storage unit for materials. B-Shift's agreement to retain materials doesn't extend to this storage device, so you should probably only stock this with sheets you need."; @@ -63681,7 +64002,7 @@ dir = 9 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "iav" = ( /obj/structure/cable/green{ d1 = 4; @@ -63705,18 +64026,18 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber1) +/area/maintenance/Deck2_Engineering_ForStarChamber1) "iaD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, -/obj/effect/floor_decal/corner/white/bordercorner{ +/obj/effect/floor_decal/corner/paleblue/bordercorner{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "iaE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorwhite/corner2{ @@ -63732,7 +64053,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "iaI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -63740,7 +64061,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "iaM" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -63749,18 +64070,27 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "iaU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) +"ibl" = ( +/obj/random/junk, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_StarChamber2) "ibq" = ( /obj/structure/smoletrack/roadS, /obj/random/trash, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "ibt" = ( /obj/machinery/autolathe, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -63771,14 +64101,14 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "ibv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/kafel_full/blue/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "ibC" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "ibK" = ( /obj/structure/cable{ d1 = 1; @@ -63795,7 +64125,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "ibQ" = ( /obj/effect/floor_decal/industrial/arrows{ dir = 4 @@ -63825,13 +64155,13 @@ req_one_access = list(1) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "ibY" = ( /obj/machinery/vr_sleeper{ dir = 4 }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "ich" = ( /obj/structure/table/standard, /obj/machinery/recharger{ @@ -63855,19 +64185,19 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "icn" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "icq" = ( /obj/machinery/light/spot{ dir = 1 }, /turf/simulated/floor/tiled/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "icB" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -63896,24 +64226,36 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "icG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 27; + pixel_y = -12; + name = "E-light switch"; + dir = 8 + }, +/obj/structure/cable/green, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "icP" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "icY" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "idp" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -63922,14 +64264,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "idI" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge{ scrub_id = "Toxins" }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "idS" = ( /obj/structure/cable/green{ d1 = 2; @@ -63947,14 +64289,14 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "idT" = ( /obj/structure/window/basic{ dir = 1 }, /obj/structure/closet/wardrobe/medic_gown, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "iej" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -63978,7 +64320,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "iew" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -63988,7 +64330,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "ieE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -63997,13 +64339,13 @@ dir = 1 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "ieG" = ( /obj/machinery/smartfridge/secure/medbay{ req_one_access = list(33,66) }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "ieU" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -64012,7 +64354,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "ifd" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor/corner{ @@ -64023,13 +64365,40 @@ dir = 9 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) +"ifj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 2 + }, +/obj/item/radio/intercom{ + name = "1S-Station Intercom (General)"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_2) "ifk" = ( /obj/structure/sign/directions/evac{ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "ifl" = ( /obj/item/modular_computer/console/preset/engineering{ dir = 8 @@ -64047,19 +64416,19 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "ifm" = ( /obj/effect/floor_decal/steeldecal/monofloor{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "ifw" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "ifD" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/ai_status_display{ @@ -64072,18 +64441,18 @@ }, /obj/machinery/vending/tool, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "ifO" = ( /obj/machinery/alarm{ pixel_y = 25 }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "ifP" = ( /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForPortChamber1) +/area/maintenance/Deck2_Security_ForPortChamber1) "igu" = ( /obj/structure/cable{ d1 = 4; @@ -64097,10 +64466,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "igH" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "igI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -64109,13 +64478,13 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "ihh" = ( /obj/machinery/iv_drip, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "ihl" = ( /obj/structure/table/woodentable, /obj/item/camera_film{ @@ -64131,7 +64500,7 @@ pixel_y = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "iho" = ( /obj/structure/closet/wardrobe/medic_white, /obj/machinery/alarm{ @@ -64141,7 +64510,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "ihv" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -64150,17 +64519,17 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "ihz" = ( /obj/machinery/light/small, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "ihC" = ( /obj/effect/floor_decal/spline/fancy{ dir = 10 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "ihG" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -64174,7 +64543,7 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "ihH" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 1 @@ -64187,38 +64556,53 @@ icon_state = "4-8" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "ihK" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "ihQ" = ( /obj/structure/curtain/bed{ name = "curtain" }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) +"ihS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Corridor_1) "ihX" = ( /obj/machinery/light/small{ dir = 1 }, /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "iic" = ( /mob/living/simple_mob/animal/passive/cockroach, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "iie" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "iih" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -64233,7 +64617,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "iio" = ( /obj/structure/table/glass, /obj/random/medical/pillbottle, @@ -64267,7 +64651,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "iip" = ( /obj/structure/bed/chair/bay{ dir = 4 @@ -64277,10 +64661,10 @@ pixel_x = -22 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "iis" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_1) "iiA" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -64303,7 +64687,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "iiG" = ( /obj/structure/cable/green{ d1 = 1; @@ -64322,7 +64706,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "iiR" = ( /obj/structure/cable/green{ d1 = 1; @@ -64338,7 +64722,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "ija" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -64347,7 +64731,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "ijc" = ( /obj/structure/table/bench/glass, /obj/structure/flora/pottedplant/mysterious{ @@ -64361,7 +64745,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "ijk" = ( /mob/living/simple_mob/vore/otie/security{ dir = 8; @@ -64370,7 +64754,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "ijF" = ( /obj/structure/cable{ d1 = 4; @@ -64385,7 +64769,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "ijI" = ( /obj/machinery/light{ dir = 4; @@ -64399,12 +64783,12 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "ijM" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "ijP" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -64412,7 +64796,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "ijR" = ( /obj/item/circuitboard/teleporter{ pixel_y = 6; @@ -64451,7 +64835,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "ijS" = ( /obj/machinery/light{ dir = 8; @@ -64466,7 +64850,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "ijU" = ( /obj/structure/window/reinforced{ dir = 8 @@ -64482,7 +64866,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "ijW" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -64497,13 +64881,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "ijY" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "ikg" = ( /obj/structure/cable/green{ d1 = 1; @@ -64530,7 +64914,15 @@ req_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) +"ikk" = ( +/obj/structure/bed/chair/sofa/beige, +/obj/machinery/light{ + dir = 1; + name = "1N-lighting fixture" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/ForStar_2_Deck_Observatory) "ikm" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -64547,7 +64939,7 @@ pixel_x = 3 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "ikD" = ( /obj/structure/cable{ d1 = 1; @@ -64557,60 +64949,27 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "ikF" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "ikG" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -19; + name = "1W-guest pass terminal" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "ikH" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/Chomp_Kitchen) "ikJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -64620,7 +64979,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "ikX" = ( /obj/machinery/status_display{ pixel_y = -32; @@ -64629,7 +64988,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "ikY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -64642,26 +65001,26 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "ilk" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "ill" = ( /obj/random/junk, /obj/random/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "ilr" = ( /obj/effect/landmark/event_spawn/morphspawn, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "ily" = ( /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "ilA" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -64672,7 +65031,11 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) +"ilE" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/hallway/Central_2_Deck_Hall) "ilQ" = ( /obj/machinery/door/window/westright{ name = "Test Chamber"; @@ -64682,12 +65045,12 @@ dir = 4 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "ilR" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/shield_gen/external, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "ilT" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -64699,11 +65062,11 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "ilY" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "iml" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -64712,11 +65075,11 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "imz" = ( /obj/machinery/vending/boozeomat, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "imD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -64727,7 +65090,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "imP" = ( /obj/structure/cable/green{ d1 = 2; @@ -64746,7 +65109,7 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "ing" = ( /obj/structure/cable/green{ d1 = 4; @@ -64763,13 +65126,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "ini" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "inB" = ( /obj/machinery/vending/desatti, /obj/effect/floor_decal/borderfloor, @@ -64782,7 +65145,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "inE" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -64793,7 +65156,7 @@ /obj/effect/floor_decal/industrial/loading/blue, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "inG" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -64808,7 +65171,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "inT" = ( /obj/structure/cable/green{ d1 = 2; @@ -64838,18 +65201,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) -"inV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/rnd/Deck2_Corridor) "iof" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -64864,7 +65216,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "ioh" = ( /obj/structure/cable/green{ d1 = 1; @@ -64888,7 +65240,7 @@ }, /obj/effect/floor_decal/corner/beige/diagonal, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "ior" = ( /obj/structure/cable/green{ d1 = 1; @@ -64897,7 +65249,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "ios" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -64906,7 +65258,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "iow" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -64919,22 +65271,22 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "ioL" = ( /obj/random/trash, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "ioN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "ioP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "ioQ" = ( /obj/structure/cable/green{ d1 = 4; @@ -64945,13 +65297,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "ipd" = ( /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "ipq" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "ipu" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -64960,11 +65312,11 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "ipx" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "ipA" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 6 @@ -64973,7 +65325,7 @@ dir = 6 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "ipN" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, @@ -64982,7 +65334,7 @@ dir = 1 }, /turf/space, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "ipX" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -64991,7 +65343,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "iqj" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -65018,7 +65370,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "iql" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -65038,31 +65390,25 @@ layer = 3.5 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Port_Corridor) "iqu" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "iqE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "iqJ" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "iqR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "iqT" = ( /obj/structure/railing/grey{ dir = 4 @@ -65083,12 +65429,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "irh" = ( /obj/structure/loot_pile/maint/trash, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "irj" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -65096,20 +65442,20 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "irx" = ( /obj/effect/landmark{ name = "maint_pred" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "irz" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "irK" = ( /obj/effect/floor_decal/chapel{ dir = 4 @@ -65118,33 +65464,16 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "irP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "isf" = ( /obj/item/stack/material/smolebricks, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) -"isp" = ( -/obj/structure/sign/directions/cargo{ - dir = 8; - layer = 3.5 - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - layer = 3.5; - pixel_y = 9 - }, -/obj/structure/sign/directions/security{ - pixel_y = -9; - dir = 1; - layer = 3.5 - }, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/area/maintenance/Deck2_Science_StarChamber1) "isq" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/milspec/box, @@ -65154,7 +65483,7 @@ }, /obj/mecha/medical/odysseus/old, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "isH" = ( /obj/structure/cable/green{ d1 = 1; @@ -65169,18 +65498,18 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "isR" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "itb" = ( /obj/item/clothing/shoes/dress/white, /turf/simulated/floor/wood/alt/panel/broken/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "itg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -65192,7 +65521,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "itl" = ( /obj/effect/floor_decal/borderfloor, /obj/structure/cable{ @@ -65202,13 +65531,13 @@ }, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_1) "itp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "itt" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -65225,7 +65554,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "itz" = ( /obj/structure/cable/green{ d1 = 1; @@ -65241,11 +65570,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "itA" = ( /obj/structure/cable/green{ d1 = 1; @@ -65256,7 +65585,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "itK" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -65274,7 +65603,7 @@ /obj/structure/table/steel, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "iuj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -65286,13 +65615,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "ius" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/random/trash, /obj/machinery/door/blast/regular/open{ layer = 3.5; id = "For Lockdown"; @@ -65301,8 +65625,20 @@ dir = 4 }, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/obj/effect/floor_decal/industrial/arrows/blue, +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techmaint, +/area/hallway/For_2_Deck_Central_Corridor_2) "iuD" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -65322,7 +65658,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/area/maintenance/Deck2_For_Corridor) "iuN" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 @@ -65332,36 +65668,28 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "iuO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) -"iuQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/industrial/hatch/blue, -/obj/structure/grille, -/obj/structure/window/basic/full, -/obj/structure/window/basic, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ +/obj/effect/floor_decal/corner/brown/diagonal{ dir = 4 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/corner/brown/diagonal, +/turf/simulated/floor/tiled, +/area/quartermaster/Warehouse) +"iuQ" = ( +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "iuS" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/disposalpipe/segment{ @@ -65376,12 +65704,12 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "iuT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "iuY" = ( /obj/structure/cable/green{ d1 = 1; @@ -65398,7 +65726,7 @@ dir = 1 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "ive" = ( /obj/structure/table/glass, /obj/item/sleevemate{ @@ -65416,7 +65744,7 @@ name = "1N-station intercom (Medbay)" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "ivx" = ( /obj/machinery/computer/rcon{ dir = 4 @@ -65434,7 +65762,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "ivB" = ( /obj/structure/cable{ d1 = 1; @@ -65450,7 +65778,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "ivF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -65461,7 +65789,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "ivG" = ( /obj/structure/cable/green{ d1 = 4; @@ -65482,7 +65810,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "ivH" = ( /obj/machinery/door/window/southleft{ layer = 2.9; @@ -65509,7 +65837,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "iwa" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloorblack{ @@ -65519,19 +65847,11 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) -"iwf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/security/Lobby) +"iwe" = ( +/obj/structure/flora/underwater/grass4, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_2) "iwp" = ( /obj/structure/table/sifwoodentable, /obj/item/material/kitchen/utensil/spork{ @@ -65555,11 +65875,11 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "iwR" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "ixj" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/suit/straight_jacket{ @@ -65596,7 +65916,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "ixr" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -65612,7 +65932,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "ixE" = ( /obj/structure/cable{ d1 = 1; @@ -65626,7 +65946,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "ixF" = ( /obj/machinery/vending/snix, /obj/effect/floor_decal/borderfloor{ @@ -65640,22 +65960,34 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "ixX" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/security, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "iyj" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) +"iyn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -3 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "iyv" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "iyA" = ( /obj/structure/railing, /obj/structure/sign/directions/teleporter{ @@ -65675,25 +66007,25 @@ pixel_x = -32 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "iyB" = ( /obj/effect/graffitispawner, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "iyF" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "iyG" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/red/border{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "iyJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -65702,13 +66034,18 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "izi" = ( /obj/random/junk, /obj/item/toy/colorballoon, /obj/item/toy/snappop, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "izv" = ( /obj/machinery/light/small{ dir = 1 @@ -65717,7 +66054,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "izw" = ( /obj/machinery/r_n_d/protolathe/security, /obj/effect/floor_decal/industrial/outline/yellow, @@ -65728,14 +66065,14 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "izz" = ( /obj/structure/smoletrack/roadturn{ dir = 1 }, /mob/living/simple_mob/animal/passive/mouse/rat, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "izG" = ( /obj/machinery/light{ dir = 8; @@ -65753,11 +66090,11 @@ /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ +/obj/effect/floor_decal/corner/lightorange/bordercorner{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "izJ" = ( /obj/structure/cable/green{ d1 = 1; @@ -65771,13 +66108,13 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "izM" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "izS" = ( /obj/item/clothing/suit/space/void/engineering{ pixel_x = -7 @@ -65806,7 +66143,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "iAa" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -65815,7 +66152,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "iAb" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 @@ -65824,12 +66161,12 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "iAf" = ( /obj/random/tool/powermaint, /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForStar_Chamber) +/area/maintenance/Deck2_Security_ForStar_Chamber) "iAw" = ( /obj/structure/table/reinforced, /obj/item/toy/figure/ce{ @@ -65842,7 +66179,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "iAB" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -65854,19 +66191,19 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "iAF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "iAP" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "iAR" = ( /obj/machinery/light{ dir = 4; @@ -65878,11 +66215,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "iAT" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -65891,7 +66228,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "iBj" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -65900,10 +66237,11 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "iBu" = ( /obj/structure/bed/chair/sofa/left/brown{ - dir = 4 + dir = 4; + pixel_y = 5 }, /obj/structure/cable{ d1 = 1; @@ -65917,7 +66255,7 @@ dir = 8 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "iBI" = ( /obj/structure/cable{ d1 = 1; @@ -65931,20 +66269,20 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "iBJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "iBV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "iCe" = ( /obj/structure/cable/green{ d1 = 1; @@ -65959,7 +66297,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "iCk" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -65968,11 +66306,11 @@ dir = 1 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "iCs" = ( /obj/structure/inflatable, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) +/area/maintenance/Deck2_Medical_AftCorridor1) "iCL" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -65988,7 +66326,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "iCO" = ( /obj/machinery/power/apc{ dir = 4; @@ -66000,14 +66338,14 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "iCX" = ( /obj/structure/bed/chair/sofa/sif_ora, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "iDi" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloorblack/corner{ @@ -66017,7 +66355,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "iDK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -66029,7 +66367,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "iDW" = ( /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, @@ -66039,7 +66377,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "iEa" = ( /obj/random/junk, /obj/structure/railing{ @@ -66053,13 +66391,13 @@ id = "SC-PackageSort" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "iEc" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/area/maintenance/Deck2_For_Corridor) "iEe" = ( /obj/item/radio/intercom{ dir = 8; @@ -66073,19 +66411,19 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "iEm" = ( /obj/structure/loot_pile/maint/junk, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber1) +/area/maintenance/Deck2_Engineering_PortChamber1) "iEn" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "iEt" = ( /obj/structure/cable/green{ d1 = 4; @@ -66104,7 +66442,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "iEu" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -66113,7 +66451,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "iEE" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -66122,27 +66460,27 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForStar_Chamber) +/area/maintenance/Deck2_Security_ForStar_Chamber) "iEH" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "iEX" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "iFc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/kafel_full/blue/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "iFg" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "iFi" = ( /obj/structure/cable/green{ d1 = 4; @@ -66162,11 +66500,11 @@ /obj/effect/floor_decal/corner/red/border, /obj/structure/sign/poster/nanotrasen, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "iFk" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "iFl" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -66175,12 +66513,12 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "iFv" = ( /obj/structure/table/standard, /obj/random/toolbox, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "iFy" = ( /obj/machinery/door/window/northright{ name = "Library Desk Door"; @@ -66198,32 +66536,11 @@ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Library) -"iFA" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance/int, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/area/crew_quarters/Library) "iFC" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "iGf" = ( /obj/structure/grille, /obj/structure/shuttle/window, @@ -66231,7 +66548,7 @@ /area/shuttle/escape_pod9/station) "iGk" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "iGp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -66240,7 +66557,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "iGr" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -66250,11 +66567,11 @@ /obj/machinery/door/airlock/maintenance/common, /obj/item/tape/engineering, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "iGs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "iGI" = ( /obj/structure/cable/green{ d1 = 1; @@ -66271,7 +66588,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "iGP" = ( /obj/structure/cable{ d1 = 1; @@ -66286,11 +66603,21 @@ /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_2) "iHh" = ( /obj/structure/cable{ d1 = 1; @@ -66309,7 +66636,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "iHk" = ( /obj/structure/cable/green{ d1 = 1; @@ -66324,18 +66651,23 @@ /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "iHu" = ( /obj/structure/lattice, /obj/random/trash, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "iHv" = ( /obj/random/junk, /obj/random/trash, /obj/random/tech_supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "iHz" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -66344,7 +66676,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "iHF" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -66361,10 +66693,10 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "iHG" = ( /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "iHZ" = ( /obj/structure/cable/green{ d1 = 1; @@ -66379,7 +66711,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "iIe" = ( /obj/structure/cable/green{ d1 = 4; @@ -66391,7 +66723,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "iIv" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -66411,7 +66743,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForStar_Chamber) +/area/maintenance/Deck2_Security_ForStar_Chamber) "iIB" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, @@ -66420,11 +66752,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -66434,8 +66761,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "iIC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -66455,7 +66787,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "iIG" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, @@ -66474,7 +66806,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "iIZ" = ( /obj/machinery/light{ dir = 4; @@ -66518,7 +66850,7 @@ pixel_y = -5 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "iJm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloorwhite{ @@ -66528,14 +66860,14 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "iJt" = ( /obj/machinery/camera/network/security{ c_tag = "D2-Dmc-Gym3"; network = list("Domicile") }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "iJv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -66547,7 +66879,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "iJx" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -66561,11 +66893,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "iJy" = ( /obj/structure/smolebuilding/houses, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "iJz" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -66577,7 +66909,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "iJG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -66600,11 +66932,11 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "iJI" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "iJL" = ( /obj/effect/floor_decal/shuttle/blue{ pixel_x = -1; @@ -66612,10 +66944,10 @@ }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "iJP" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "iJT" = ( /obj/machinery/recharge_station, /obj/machinery/light/small{ @@ -66633,10 +66965,10 @@ specialfunctions = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "iKa" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "iKg" = ( /obj/machinery/libraryscanner, /obj/machinery/status_display{ @@ -66647,7 +66979,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "iKh" = ( /obj/machinery/light/small{ dir = 8 @@ -66662,7 +66994,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "iKm" = ( /obj/structure/cable/green{ d1 = 4; @@ -66677,7 +67009,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "iKA" = ( /obj/structure/cable{ d1 = 1; @@ -66687,14 +67019,14 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/lightorange/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "iKC" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "iKD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -66707,12 +67039,12 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "iKJ" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "iKM" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 @@ -66721,7 +67053,18 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) +"iKN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "iKY" = ( /obj/machinery/light{ dir = 4; @@ -66737,7 +67080,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "iKZ" = ( /obj/structure/cable{ d1 = 4; @@ -66753,7 +67096,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "iLb" = ( /obj/machinery/disposal/wall{ dir = 8; @@ -66770,7 +67113,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "iLs" = ( /obj/structure/cable/green{ d1 = 1; @@ -66787,18 +67130,18 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "iLv" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "iLA" = ( /obj/effect/floor_decal/shuttle/loading{ color = "#00B8B2" }, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "iLD" = ( /obj/structure/cable{ d1 = 2; @@ -66806,7 +67149,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "iLI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -66814,7 +67157,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "iLQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -66833,22 +67176,19 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) -"iMs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/area/hallway/Port_2_Deck_Corridor_2) +"iMh" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techmaint, +/area/hallway/Star_2_Deck_Corridor_1) "iMU" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -66857,7 +67197,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "iNa" = ( /obj/structure/sink/kitchen{ dir = 4; @@ -66866,7 +67206,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "iNb" = ( /obj/machinery/atmospherics/binary/pump/on{ target_pressure = 200; @@ -66874,13 +67214,13 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "iNk" = ( /obj/item/universal_translator{ pixel_x = 3 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "iNr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -66893,7 +67233,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "iNs" = ( /obj/item/weldpack{ pixel_y = -3; @@ -66933,7 +67273,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "iOm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -66948,18 +67288,24 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "iOn" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "iOA" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) +"iOC" = ( +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_AftCorridor1) "iOI" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 10 @@ -66971,7 +67317,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "iOJ" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /obj/structure/cable/green{ @@ -66980,7 +67326,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "iOO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable/green{ @@ -66989,7 +67335,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "iOS" = ( /obj/machinery/disposal/wall{ dir = 1; @@ -67005,10 +67351,10 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "iOV" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "iOW" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -67016,11 +67362,16 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) +"iOZ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "iPo" = ( /obj/structure/inflatable, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "iPq" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -67028,7 +67379,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "iPs" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -67038,7 +67389,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "iPF" = ( /obj/machinery/light{ dir = 1; @@ -67057,11 +67408,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "iQe" = ( /obj/effect/floor_decal/industrial/loading{ dir = 4 @@ -67070,24 +67421,38 @@ location = "Aft_ToolStorage" }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "iQt" = ( /obj/structure/table/steel, /obj/machinery/light{ name = "1S-light fixture" }, +/obj/item/mail/junkmail, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "iQE" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_1) "iQF" = ( /obj/structure/cable/green{ d1 = 4; @@ -67104,7 +67469,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "iQL" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -67113,7 +67478,7 @@ pixel_y = -30 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "iRm" = ( /obj/item/storage/smolebrickcase{ pixel_y = -5 @@ -67124,7 +67489,7 @@ }, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "iRn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -67146,13 +67511,13 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "iRv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "iRy" = ( /obj/structure/cable/green{ d1 = 4; @@ -67175,21 +67540,21 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "iRG" = ( /obj/structure/loot_pile/maint/trash, /obj/random/trash, /obj/random/junk, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "iRM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "iRP" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -67197,7 +67562,7 @@ id = "sc-WTgallery" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "iRV" = ( /obj/machinery/camera/network/security{ c_tag = "D2-Com-Port Foyer1"; @@ -67205,17 +67570,17 @@ dir = 1 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "iSj" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "iSq" = ( /obj/structure/bed/chair/office/light, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "iSs" = ( /obj/structure/cable/green{ d1 = 4; @@ -67226,13 +67591,13 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "iSG" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "iSH" = ( /obj/structure/closet/l3closet/security, /obj/effect/floor_decal/borderfloor{ @@ -67243,7 +67608,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "iSP" = ( /obj/structure/cable/green{ d1 = 1; @@ -67264,17 +67629,37 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "iSS" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) +"iTv" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + name = "Kitchen Shutters"; + id = "sc-GCkitchen"; + layer = 3.3 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/Chomp_Dinner_1) +"iTM" = ( +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain, +/obj/structure/flora/lily3, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_2) "iTU" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "iUk" = ( /obj/machinery/power/apc{ dir = 8; @@ -67283,7 +67668,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "iUo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor{ @@ -67293,7 +67678,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "iUv" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -67302,7 +67687,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "iUE" = ( /obj/machinery/atmospherics/binary/pump/on{ target_pressure = 200; @@ -67310,13 +67695,13 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "iUH" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "iUU" = ( /obj/structure/cable/green{ d1 = 4; @@ -67335,7 +67720,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "iVi" = ( /obj/machinery/power/apc{ dir = 4; @@ -67347,13 +67732,13 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "iVk" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "iVx" = ( /obj/item/clothing/gloves/brown{ pixel_y = -1; @@ -67377,7 +67762,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "iVF" = ( /obj/item/grenade/chem_grenade{ pixel_y = -4; @@ -67444,7 +67829,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "iVJ" = ( /obj/structure/table/steel, /obj/item/folder/blue, @@ -67452,7 +67837,7 @@ /obj/item/starcaster_news, /obj/item/starcaster_news, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "iVP" = ( /obj/structure/table/reinforced, /obj/machinery/button/remote/blast_door{ @@ -67475,7 +67860,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "iVZ" = ( /obj/structure/cable{ d1 = 1; @@ -67486,7 +67871,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "iWj" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ frequency = 1381; @@ -67495,14 +67880,14 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "iWk" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "iWB" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -67521,23 +67906,23 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "iWL" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "iWN" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Port_Corridor) "iWX" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "iWZ" = ( /obj/effect/floor_decal/industrial/loading/blue, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, @@ -67549,7 +67934,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "iXc" = ( /obj/structure/cable/green{ d1 = 1; @@ -67569,7 +67954,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "iXe" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -67582,7 +67967,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "iXh" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -67603,7 +67988,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "iXl" = ( /obj/structure/cable/green{ d1 = 2; @@ -67611,7 +67996,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarCorridor1) +/area/maintenance/Deck2_Engineering_ForStarCorridor1) "iXo" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -67620,7 +68005,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "iXv" = ( /obj/structure/table/rack/shelf{ pixel_x = 16 @@ -67680,21 +68065,21 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "iXZ" = ( /obj/machinery/fitness/heavy/lifter, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "iYb" = ( /obj/structure/window/basic{ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "iYs" = ( /obj/structure/kitchenspike, /turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "iYD" = ( /obj/machinery/firealarm{ dir = 4; @@ -67706,7 +68091,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "iYZ" = ( /obj/machinery/light, /obj/structure/fireaxecabinet{ @@ -67720,7 +68105,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "iZh" = ( /obj/machinery/light{ dir = 1; @@ -67737,7 +68122,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "iZq" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -67746,7 +68131,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "iZr" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -67766,7 +68151,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "iZs" = ( /obj/structure/cable/green{ d1 = 1; @@ -67779,7 +68164,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "iZQ" = ( /obj/structure/cable{ d1 = 4; @@ -67793,7 +68178,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "iZV" = ( /obj/structure/reagent_dispensers/watertank/high, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -67806,11 +68191,8 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "jad" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -67822,8 +68204,12 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 8 }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "jai" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -67850,20 +68236,20 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "jaj" = ( /obj/effect/floor_decal/chapel, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "jal" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "jar" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "jaC" = ( /obj/structure/bookcase, /obj/item/book/manual/detective{ @@ -67884,7 +68270,7 @@ }, /obj/item/book/manual/wiki/security_space_law, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "jbg" = ( /obj/machinery/light/small, /obj/structure/cable{ @@ -67893,7 +68279,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "jbo" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor, @@ -67907,7 +68293,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "jbr" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -67916,12 +68302,12 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/sec, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "jbt" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "jbI" = ( /obj/structure/cable/green{ d1 = 1; @@ -67945,19 +68331,19 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "jbK" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/wood/alt/panel/broken/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "jbN" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/simulated/floor/tiled/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "jbO" = ( /obj/structure/bed/chair/oldsofa{ dir = 8 @@ -67969,7 +68355,7 @@ dir = 4 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "jbT" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -67981,7 +68367,18 @@ dir = 1 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) +"jbZ" = ( +/obj/random/trash_pile, +/obj/structure/cable/white{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_PortChamber2) "jcc" = ( /obj/machinery/power/apc{ dir = 4; @@ -67999,19 +68396,19 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "jcd" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarChamber1) +/area/maintenance/Deck2_Cargo_AftStarChamber1) "jcM" = ( /obj/structure/table/wooden_reinforced, /obj/item/book/manual/detective, /obj/item/clothing/glasses/sunglasses, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "jdc" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "jdC" = ( /obj/structure/cable/green{ d1 = 4; @@ -68023,34 +68420,16 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) -"jdU" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/engi{ - name = "Domicile Air Distribution" - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/security/Boardroom) "jdZ" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarCorridor1) +/area/maintenance/Deck2_Engineering_ForStarCorridor1) "jeg" = ( /obj/machinery/shield_diffuser, /obj/effect/catwalk_plated/white, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "jev" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -68069,10 +68448,10 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "jew" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "jeH" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/power/smes/buildable{ @@ -68090,19 +68469,10 @@ pixel_y = 32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "jeI" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Research_Substation) -"jeP" = ( -/obj/machinery/pipedispenser, -/obj/effect/floor_decal/industrial/hatch/blue, -/obj/item/holosign_creator/combifan{ - pixel_y = 9; - pixel_x = -4 - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/maintenance/Research_Substation) "jfo" = ( /obj/structure/cable/green{ d1 = 1; @@ -68116,7 +68486,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "jfp" = ( /obj/structure/bed/chair/comfy/brown{ dir = 8 @@ -68124,7 +68494,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "jfz" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/ladder/up, @@ -68133,7 +68503,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "jfH" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -68154,7 +68524,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "jfM" = ( /obj/structure/bed/chair/backed_red{ dir = 8 @@ -68166,7 +68536,7 @@ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "jfT" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -68175,22 +68545,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Viewing) -"jgi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 2 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/medical/Surgery_Viewing) "jgp" = ( /obj/structure/cable/green{ d1 = 1; @@ -68204,7 +68559,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "jgt" = ( /obj/structure/cable/white, /obj/effect/floor_decal/borderfloor{ @@ -68214,11 +68569,11 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "jgH" = ( /obj/structure/casino_table/roulette_chart, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "jgL" = ( /obj/structure/cable/green{ d1 = 1; @@ -68236,7 +68591,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "jgS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -68251,11 +68606,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "jgW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "jhk" = ( /obj/structure/cable/green{ d1 = 2; @@ -68271,11 +68626,11 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "jhC" = ( /obj/effect/decal/cleanable/greenglow, /turf/simulated/floor/wood/alt/panel/broken/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "jhE" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -68291,11 +68646,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/lightorange/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "jhK" = ( /obj/machinery/alarm{ dir = 1; @@ -68305,7 +68660,7 @@ /obj/random/maintenance/cargo, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "jhO" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -68316,7 +68671,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "jhR" = ( /obj/structure/cable/green{ d1 = 1; @@ -68327,7 +68682,16 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) +"jhT" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightorange/border, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_2) "jhU" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -68336,15 +68700,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) -"jib" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/area/hallway/Port_Transit_Foyer) "jil" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -68365,7 +68721,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "jim" = ( /obj/structure/table/reinforced, /obj/item/book/manual/supermatter_engine{ @@ -68389,7 +68745,7 @@ pixel_x = 18 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "jir" = ( /obj/structure/closet/coffin, /obj/structure/window/basic{ @@ -68401,7 +68757,7 @@ network = list("Domicile") }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "jiv" = ( /obj/structure/cable/green{ d1 = 1; @@ -68410,7 +68766,7 @@ }, /obj/machinery/atmospherics/valve/digital/open, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "jiD" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -68420,7 +68776,14 @@ /obj/machinery/door/airlock/maintenance/common, /obj/item/tape/police, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) +"jiK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "jiL" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -68449,13 +68812,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "jiQ" = ( /obj/structure/smoletrack/roadT{ dir = 8 }, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "jiS" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 6 @@ -68464,13 +68827,13 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "jjb" = ( /obj/machinery/doorbell_chime{ id_tag = "sc-ChimeCar" }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "jjA" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -68478,11 +68841,11 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "jjG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/Packaging_Room) "jjL" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -68492,7 +68855,7 @@ req_one_access = list(7,29) }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "jjV" = ( /obj/structure/table/reinforced, /obj/structure/cable/green{ @@ -68507,7 +68870,7 @@ dir = 8 }, /turf/simulated/floor/carpet/purple, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "jka" = ( /obj/structure/cable/green{ d1 = 4; @@ -68519,7 +68882,7 @@ pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "jkg" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -68528,26 +68891,22 @@ /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ +/obj/effect/floor_decal/corner/lightorange/bordercorner{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "jko" = ( /obj/structure/fans, /obj/machinery/holoposter{ pixel_y = -32 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/VR) -"jkp" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/area/crew_quarters/VR) "jkr" = ( /obj/effect/decal/cleanable/filth, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "jkJ" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 4 @@ -68556,7 +68915,20 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) +"jkR" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/dropper{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/reagent_containers/dropper{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "jkS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -68573,11 +68945,15 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "jkU" = ( /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "jlk" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -68589,13 +68965,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "jlu" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "jlA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -68611,10 +68987,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "jlD" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "jlG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -68635,7 +69011,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "jlK" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -68647,7 +69023,7 @@ req_access = list(25) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "jlP" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -68656,7 +69032,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "jlQ" = ( /obj/structure/bed/chair/backed_red{ dir = 1 @@ -68673,7 +69049,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "jlU" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -68686,7 +69062,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "jmh" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -68697,7 +69073,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "jmo" = ( /obj/effect/floor_decal/shuttle/loading/yellow{ dir = 1 @@ -68707,7 +69083,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "jmu" = ( /obj/machinery/camera/network/research{ c_tag = "D2-Sci-Testing2"; @@ -68715,13 +69091,13 @@ network = list("Science","Testing Chamber") }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "jmx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "jmC" = ( /obj/machinery/light{ dir = 1; @@ -68734,7 +69110,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "jmL" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -68743,7 +69119,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "jmP" = ( /obj/structure/cable/green{ d1 = 4; @@ -68766,10 +69142,10 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "jmU" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "jnc" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -68778,7 +69154,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "jng" = ( /obj/structure/cable/green{ d1 = 1; @@ -68791,7 +69167,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "jni" = ( /obj/structure/cable/green{ d1 = 4; @@ -68799,7 +69175,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "jnn" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -68807,7 +69183,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "jnp" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 1 @@ -68821,7 +69197,7 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "jnv" = ( /obj/machinery/alarm{ dir = 1; @@ -68833,7 +69209,7 @@ }, /obj/item/bone/skull/unknown, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "jnB" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -68847,7 +69223,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "jnK" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -68871,7 +69247,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "jnS" = ( /obj/structure/closet/secure_closet/xenoarchaeologist, /obj/machinery/camera/network/security{ @@ -68882,17 +69258,17 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Locker_Room) +/area/rnd/Locker_Room) "jnV" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "jnX" = ( /obj/machinery/power/grid_checker, /obj/structure/cable, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "jod" = ( /obj/machinery/power/apc{ dir = 8; @@ -68904,14 +69280,14 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "jpd" = ( /obj/effect/catwalk_plated/techfloor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "jpE" = ( /obj/machinery/shield_diffuser, /obj/effect/catwalk_plated/white, @@ -68920,7 +69296,7 @@ id = "sc-GCnorthshuttlebay" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "jpF" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -68945,7 +69321,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "jpI" = ( /obj/structure/sign/directions/security{ pixel_y = -9; @@ -68961,7 +69337,7 @@ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "jpO" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -68982,14 +69358,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "jpQ" = ( /obj/random/trash, /obj/structure/table/rack, /obj/random/maintenance/morestuff, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "jpX" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -69003,7 +69379,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "jqv" = ( /obj/structure/cable/green{ d1 = 1; @@ -69011,7 +69387,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "jqw" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -69039,7 +69415,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "jqz" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -69056,7 +69432,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "jqB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -69066,14 +69442,9 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_2) "jqF" = ( /obj/structure/cable/green{ d1 = 1; @@ -69086,28 +69457,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) -"jrc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Stairwell) "jrp" = ( /obj/structure/balloon/bat, /obj/structure/table/rack/shelf/steel, @@ -69127,25 +69477,13 @@ /obj/item/toy/snappop, /obj/machinery/firework_launcher, /obj/machinery/firework_launcher, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) -"jrC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; +/obj/structure/cable/white{ + d1 = 1; d2 = 8; - icon_state = "4-8" + icon_state = "1-8" }, -/obj/machinery/holoposter{ - dir = 8 - }, -/turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_PortChamber1) "jrE" = ( /obj/structure/bed/chair/sofa/right/blue, /obj/machinery/computer/security/telescreen/entertainment{ @@ -69157,7 +69495,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "jrF" = ( /obj/structure/window/reinforced{ dir = 4 @@ -69173,7 +69511,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "jrP" = ( /obj/structure/cable/green{ d1 = 1; @@ -69186,7 +69524,7 @@ network = list("Domicile") }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "jrS" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -69204,10 +69542,10 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "jsb" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "jse" = ( /obj/structure/table/rack/steel, /obj/random/maintenance/cargo, @@ -69215,13 +69553,13 @@ /obj/random/maintenance/engineering, /obj/random/tech_supply/component, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "jsm" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarChamber1) +/area/maintenance/Deck2_Cargo_AftStarChamber1) "jsn" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "jsG" = ( /obj/structure/window/basic, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -69246,11 +69584,15 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "jsO" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) +"jtj" = ( +/obj/machinery/smartfridge/produce/persistent_lossy, +/turf/simulated/wall, +/area/crew_quarters/Chomp_Kitchen) "jtr" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -69270,14 +69612,35 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "jtw" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) +"jty" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 4; + name = "1E-Station Intercom (General)"; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Corridor_2) "jtF" = ( /obj/structure/cable/green{ d1 = 4; @@ -69300,21 +69663,21 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "jtR" = ( /obj/structure/table/bench/padded, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "juu" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "juA" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarCorridor1) +/area/maintenance/Deck2_Engineering_ForStarCorridor1) "juI" = ( /obj/structure/cable/green{ d1 = 1; @@ -69334,21 +69697,21 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "juK" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_2) "juO" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "juW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -69362,7 +69725,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "juY" = ( /obj/structure/cable/green{ d1 = 2; @@ -69386,12 +69749,12 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "jvs" = ( /obj/structure/girder/reinforced, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "jvy" = ( /obj/structure/cable{ d1 = 4; @@ -69402,12 +69765,12 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "jvE" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "jwC" = ( /obj/structure/closet/walllocker/emerglocker/north, /turf/simulated/shuttle/floor/white, @@ -69417,7 +69780,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "jwJ" = ( /obj/item/stool/padded{ dir = 1 @@ -69430,7 +69793,7 @@ dir = 6 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "jwK" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/red, /obj/machinery/vending/wallmed1{ @@ -69440,7 +69803,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "jwO" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -69449,20 +69812,20 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "jwT" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "jxe" = ( /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "jxs" = ( /obj/item/stool/padded, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "jxA" = ( /obj/structure/cable{ d1 = 1; @@ -69472,11 +69835,11 @@ /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, -/obj/effect/floor_decal/corner/white/bordercorner{ +/obj/effect/floor_decal/corner/brown/bordercorner{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "jxD" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -69491,24 +69854,24 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "jxS" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "jxY" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ +/obj/effect/floor_decal/corner/lightorange/bordercorner{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "jxZ" = ( /obj/structure/cable/green{ d1 = 1; @@ -69519,13 +69882,13 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "jyb" = ( /obj/structure/closet/firecloset/full/atmos, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "jyC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -69544,14 +69907,28 @@ req_one_access = list(11,24,50) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) +"jyG" = ( +/obj/machinery/appliance/cooker/grill, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/orange/border, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "sc-GCkitchen"; + name = "Kitchen Shutters Control"; + req_access = list(28); + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "jyK" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/power/breakerbox/activated{ RCon_tag = "Cargo Substation Bypass" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "jzf" = ( /obj/structure/table/rack/steel, /obj/fiftyspawner/plastic{ @@ -69580,7 +69957,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "jzq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -69592,7 +69969,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "jzA" = ( /obj/structure/closet/secure_closet/medical2, /obj/machinery/firealarm{ @@ -69607,7 +69984,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "jzO" = ( /obj/structure/cable{ d1 = 4; @@ -69621,11 +69998,11 @@ /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, -/obj/effect/floor_decal/corner/white/bordercorner{ +/obj/effect/floor_decal/corner/lightorange/bordercorner{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "jzV" = ( /obj/structure/table/rack{ dir = 8; @@ -69636,16 +70013,16 @@ /obj/random/tech_supply/component, /obj/random/tech_supply/component, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "jAg" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "jAh" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/area/crew_quarters/Chomp_Kitchen) "jAj" = ( /obj/structure/cable/green{ d1 = 1; @@ -69653,11 +70030,16 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) +"jAk" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass, +/area/hallway/Central_2_Deck_Hall) "jAm" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "jAR" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -69682,19 +70064,30 @@ pixel_x = -32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "jAY" = ( -/obj/machinery/light{ - dir = 8; - layer = 3; - name = "1W-light fixture" +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/newscaster{ - name = "1W-newscaster"; - pixel_x = -28 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "jBc" = ( /obj/structure/cable/green{ d1 = 1; @@ -69703,14 +70096,14 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Corridor) +/area/maintenance/Deck2_Science_ForPort_Corridor) "jBe" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "jBv" = ( /obj/machinery/camera/network/security{ c_tag = "D2-Sec-Brig2"; @@ -69723,7 +70116,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "jBP" = ( /obj/structure/closet/secure_closet/hop, /obj/item/gunbox/stun, @@ -69734,7 +70127,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "jBV" = ( /obj/item/frame/painting{ pixel_y = -2 @@ -69762,29 +70155,20 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) -"jCa" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/crew_quarters/Gallery) "jCb" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "jCm" = ( /obj/structure/sign/directions/medical/morgue{ pixel_y = -9; pixel_x = 32 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "jCB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -69798,14 +70182,14 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "jCO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "jCR" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "jCT" = ( /obj/machinery/light/small/emergency, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ @@ -69814,14 +70198,12 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "jDg" = ( -/obj/machinery/atmospherics/pipe/tank/air/full{ - dir = 4 - }, /obj/effect/floor_decal/industrial/hatch/blue, +/obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "jDi" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -69829,7 +70211,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "jDs" = ( /obj/structure/cable{ d1 = 1; @@ -69840,7 +70222,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "jDt" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -69854,7 +70236,7 @@ }, /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "jDv" = ( /obj/structure/cable/green{ d1 = 1; @@ -69862,7 +70244,7 @@ icon_state = "1-4" }, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "jDw" = ( /obj/structure/table/standard, /obj/item/reagent_containers/glass/bottle/antitoxin{ @@ -69898,7 +70280,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "jDF" = ( /obj/machinery/alarm{ dir = 1; @@ -69906,7 +70288,7 @@ }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarChamber1) +/area/maintenance/Deck2_Cargo_AftStarChamber1) "jDQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -69925,7 +70307,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "jEj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -69937,7 +70319,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "jEn" = ( /obj/structure/table/hardwoodtable, /obj/item/radio/intercom{ @@ -69951,26 +70333,26 @@ pixel_y = 5 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) -"jEW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ +/area/crew_quarters/Chomp_Dinner_2) +"jED" = ( +/obj/random/junk, +/obj/structure/cable/white{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) -"jFj" = ( -/obj/machinery/light/small{ - dir = 4 - }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/area/maintenance/Deck2_Civilian_PortChamber2) +"jFi" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_2) "jFB" = ( /obj/machinery/alarm{ dir = 1; @@ -69982,7 +70364,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "jFF" = ( /obj/structure/cable/green{ d1 = 1; @@ -69997,7 +70379,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "jFG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -70012,10 +70394,10 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "jFL" = ( /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "jFN" = ( /obj/structure/cable/green{ d1 = 4; @@ -70033,14 +70415,14 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "jGl" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "jGr" = ( /obj/structure/window/reinforced{ dir = 4 @@ -70053,7 +70435,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "jGA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -70064,13 +70446,13 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "jGI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "jGK" = ( /obj/structure/cable{ d1 = 4; @@ -70088,7 +70470,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_2) "jHa" = ( /obj/structure/undies_wardrobe, /obj/item/towel/random{ @@ -70108,7 +70490,7 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/kafel_full/blue/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "jHd" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -70124,7 +70506,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "jHj" = ( /obj/machinery/computer/area_atmos/tag{ scrub_id = "SC-Brig"; @@ -70132,7 +70514,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "jHn" = ( /obj/machinery/button/remote/airlock{ id = "SC_prisonexit"; @@ -70157,7 +70539,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "jIb" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -70167,7 +70549,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "jIH" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -70181,16 +70563,16 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "jIM" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "jIY" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "jJd" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -70199,7 +70581,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "jJf" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -70215,13 +70597,13 @@ name = "ShuttleBay Dressing Hub" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "jJB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "jJH" = ( /obj/structure/table/woodentable, /obj/item/communicator, @@ -70231,7 +70613,7 @@ icon_state = "4-8" }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "jJM" = ( /obj/structure/cable/green{ d1 = 1; @@ -70250,7 +70632,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "jJS" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -70270,7 +70652,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "jKf" = ( /obj/machinery/button/remote/airlock{ dir = 4; @@ -70286,7 +70668,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "jKi" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -70308,7 +70690,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "jKu" = ( /obj/structure/toilet{ dir = 4 @@ -70325,7 +70707,7 @@ specialfunctions = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "jKL" = ( /obj/structure/cable/green{ d1 = 4; @@ -70347,14 +70729,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "jKO" = ( /obj/structure/bed/chair/comfy/brown{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "jLa" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -70377,14 +70759,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Research_Lab) -"jLC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 8 - }, -/obj/structure/sign/poster/custom, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/rnd/Research_Lab) "jLF" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -70395,11 +70770,15 @@ /obj/effect/floor_decal/corner/lightgrey/bordercorner{ dir = 4 }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "jLI" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "jLP" = ( /obj/structure/cable{ d1 = 1; @@ -70413,7 +70792,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "jMa" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -70422,7 +70801,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "jMb" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -70434,7 +70813,7 @@ req_one_access = list(37) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "jMe" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -70448,7 +70827,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "jMn" = ( /obj/structure/cable/green{ d1 = 2; @@ -70471,7 +70850,7 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "jMt" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -70501,7 +70880,19 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) +"jMv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_2) "jMx" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -70510,7 +70901,17 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) +"jMD" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_1) "jMR" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/grille, @@ -70531,7 +70932,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "jMS" = ( /obj/machinery/firealarm{ dir = 4; @@ -70539,7 +70940,7 @@ name = "E-fire alarm" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "jMX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -70551,17 +70952,17 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "jMY" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "jNp" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "jNs" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -70570,17 +70971,17 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "jNu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "jNC" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "jOh" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -70594,32 +70995,18 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) -"jOo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) -"jOF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/directions/kitchen, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/maintenance/Deck2_Civilian_PortChamber2) "jOJ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "jOR" = ( /obj/structure/lattice, /obj/machinery/light/small/neon/nif2, /turf/space, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "jPa" = ( /obj/structure/cable{ d1 = 4; @@ -70627,7 +71014,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "jPf" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/random{ @@ -70654,7 +71041,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "jPg" = ( /obj/effect/floor_decal/milspec/box, /obj/machinery/alarm{ @@ -70662,21 +71049,35 @@ pixel_x = 22 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "jPs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + layer = 3.5; + id = "Port Lockdown"; + name = "Lockdown Gate"; + desc = "A heavily reinforced gate, sector lockdown!" }, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/obj/machinery/door/airlock/angled_bay/double/glass/atmos{ + dir = 8; + name = "Port Sector Engineering-Cargo"; + req_access = null + }, +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/hallway/Port_2_Deck_Central_Corridor_2) "jPx" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "jPR" = ( /obj/structure/cable{ d1 = 1; @@ -70684,20 +71085,20 @@ icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "jQa" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "jQq" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/red/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "jQu" = ( /obj/machinery/photocopier, /obj/effect/floor_decal/borderfloorblack{ @@ -70707,7 +71108,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "jQT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -70719,7 +71120,28 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) +"jRa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "jRb" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -70731,7 +71153,7 @@ "jRi" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForPortChamber1) +/area/maintenance/Deck2_Security_ForPortChamber1) "jRr" = ( /obj/machinery/button/remote/blast_door{ dir = 8; @@ -70750,7 +71172,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "jRN" = ( /obj/effect/floor_decal/industrial/warning{ layer = 3 @@ -70763,7 +71185,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "jRP" = ( /obj/structure/cable/green{ d1 = 2; @@ -70777,7 +71199,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "jRQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -70790,7 +71212,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "jRW" = ( /obj/structure/window/reinforced{ dir = 4 @@ -70821,10 +71243,10 @@ name = "1N-station intercom (Security)" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "jSi" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "jSo" = ( /obj/structure/table/rack, /obj/item/gun/projectile/shotgun/pump/combat{ @@ -70845,7 +71267,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "jSy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -70854,14 +71276,14 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "jSQ" = ( /obj/structure/sign/directions/evac{ dir = 4; layer = 3.5 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "jSU" = ( /obj/machinery/light{ dir = 8; @@ -70872,40 +71294,20 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "jTq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "jTu" = ( /obj/machinery/recharge_station, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) -"jTH" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/rnd/Mech_Bay) "jUv" = ( /obj/structure/window/basic, /obj/structure/table/steel, @@ -70925,7 +71327,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "jUw" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -70940,7 +71342,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "jUx" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -70961,7 +71363,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "jUA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -70969,7 +71371,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "jUJ" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, @@ -70977,7 +71379,7 @@ icon = 'icons/turf/shuttle_alien_blue.dmi' }, /turf/space, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "jUU" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -70987,11 +71389,11 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "jVi" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "jVC" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/borderfloorblack/corner{ @@ -71001,19 +71403,19 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "jVL" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "jVN" = ( /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "jWr" = ( /obj/structure/cable/green{ d1 = 1; @@ -71034,17 +71436,23 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "jWA" = ( /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) +"jWK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "jWR" = ( /obj/structure/disposalpipe/sortjunction/wildcard{ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "jXa" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -71089,7 +71497,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "jXg" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/southleft{ @@ -71117,12 +71525,12 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "jXw" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "jXU" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ @@ -71151,7 +71559,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "jYb" = ( /obj/structure/cable{ d1 = 1; @@ -71162,7 +71570,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "jYe" = ( /obj/structure/table/woodentable, /obj/item/radio/intercom{ @@ -71175,38 +71583,38 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "jYf" = ( /obj/structure/ladder/updown{ pixel_y = 3 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "jYg" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, /obj/effect/catwalk_plated/techmaint, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/area/maintenance/Deck2_Star_Corridor) "jYj" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/northright{ @@ -71234,7 +71642,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "jYp" = ( /obj/structure/table/steel, /obj/item/tape_roll{ @@ -71252,7 +71660,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "jYr" = ( /obj/structure/closet/secure_closet/medical1, /obj/item/radio/intercom/department/medbay{ @@ -71263,7 +71671,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "jYt" = ( /obj/machinery/alarm{ dir = 1; @@ -71271,7 +71679,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "jYC" = ( /mob/living/bot/mulebot{ faction = "nanotrasen" @@ -71284,7 +71692,7 @@ }, /obj/effect/floor_decal/milspec/box, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "jYX" = ( /obj/machinery/alarm{ dir = 8; @@ -71294,14 +71702,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "jYZ" = ( /obj/structure/fitness/weightlifter, /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "jZo" = ( /obj/machinery/light{ dir = 8; @@ -71332,12 +71740,19 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "jZp" = ( /obj/structure/target_stake, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) +"jZt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_1) "jZy" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ @@ -71363,7 +71778,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "jZH" = ( /obj/structure/cable/green{ d1 = 1; @@ -71378,15 +71793,16 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "jZL" = ( /obj/structure/bed/chair/sofa/right/brown{ - dir = 1 + dir = 1; + pixel_y = 5 }, /obj/structure/window/basic, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "jZO" = ( /obj/structure/table/woodentable, /obj/item/radio/intercom{ @@ -71405,7 +71821,7 @@ icon_state = "4-8" }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "kam" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -71418,15 +71834,19 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "kap" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/SouthernCrossV2/Medical/EMT_Bay) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "kax" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "kay" = ( /obj/structure/table/reinforced, /obj/machinery/computer/skills{ @@ -71434,7 +71854,7 @@ pixel_x = -6 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "kaC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -71446,14 +71866,14 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "kaM" = ( /obj/item/radio/beacon, /obj/machinery/light/spot{ dir = 4 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "kaU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -71469,11 +71889,11 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "kaX" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "kaY" = ( /obj/structure/cable{ d1 = 1; @@ -71487,18 +71907,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) -"kbs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/AftStar_2_Deck_Observatory) "kbN" = ( /obj/structure/cable/green{ d1 = 1; @@ -71510,7 +71919,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "kbR" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -71522,7 +71931,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "kcc" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -71531,7 +71940,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "kch" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -71540,13 +71949,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "kcj" = ( /obj/machinery/vending/coffee, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "kcp" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -71567,13 +71976,13 @@ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "kcw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/green/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "kcF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -71600,7 +72009,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber1) +/area/maintenance/Deck2_Engineering_ForStarChamber1) "kcV" = ( /obj/structure/cable/green{ d1 = 4; @@ -71614,13 +72023,13 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "kdg" = ( /obj/effect/floor_decal/chapel{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "kdq" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -71639,7 +72048,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "kdH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -71649,7 +72058,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "kdL" = ( /obj/structure/table/rack, /obj/machinery/alarm{ @@ -71671,7 +72080,7 @@ pixel_x = 18 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "kec" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -71685,14 +72094,31 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) +"ken" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/arrows/yellow, +/obj/effect/floor_decal/industrial/arrows/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/int, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/Deck2_Star_Corridor) "ker" = ( /obj/effect/floor_decal/spline/fancy/wood/corner, /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "kes" = ( /obj/structure/cable/green{ d1 = 1; @@ -71714,13 +72140,21 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) +"key" = ( +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) "keD" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "keJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -71732,7 +72166,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "kfd" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -71740,7 +72174,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "kff" = ( /obj/structure/bed/chair/sofa/right/brown{ layer = 2.9 @@ -71753,7 +72187,15 @@ pixel_y = 28 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) +"kfm" = ( +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_StarChamber2) "kft" = ( /obj/structure/sign/directions/medical/virology{ dir = 8 @@ -71767,11 +72209,11 @@ dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "kfw" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "kfy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -71780,7 +72222,7 @@ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "kfA" = ( /obj/structure/table/standard, /obj/effect/floor_decal/borderfloorblack/corner{ @@ -71790,7 +72232,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "kfD" = ( /obj/structure/cable/green{ d1 = 1; @@ -71804,7 +72246,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "kfI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -71814,25 +72256,25 @@ /obj/machinery/door/airlock/maintenance/sec, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "kfK" = ( /obj/machinery/atmospherics/binary/pump/on{ target_pressure = 200 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "kfN" = ( /obj/structure/bed/chair/sofa/left/purp{ dir = 4 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "kfT" = ( /obj/structure/table/steel, /obj/item/makeover, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "kge" = ( /obj/structure/cable/green{ d1 = 1; @@ -71849,7 +72291,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "kgh" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -71858,7 +72300,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "kgi" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -71874,7 +72316,7 @@ color = "#6b75ff" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "kgo" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -71890,14 +72332,14 @@ }, /obj/structure/sign/directions/security{ pixel_y = -9; - dir = 5; + dir = 4; layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "kgw" = ( /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "kgM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -71905,21 +72347,22 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_2) "kgX" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "kha" = ( /obj/structure/bed/chair/sofa/right/purp{ dir = 4 @@ -71930,14 +72373,14 @@ name = "1W-light fixture" }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "khr" = ( /obj/structure/stairs/spawner/north, /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "khs" = ( /obj/structure/cable/green{ d1 = 2; @@ -71951,14 +72394,14 @@ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "khw" = ( /obj/structure/table/woodentable, /obj/item/deck/cards/casino{ pixel_y = 6 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "khA" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -71970,7 +72413,7 @@ network = list("Domicile") }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "khB" = ( /obj/structure/cable/green{ d1 = 4; @@ -71986,7 +72429,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber1) +/area/maintenance/Deck2_Engineering_ForStarChamber1) "khJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -72000,36 +72443,23 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "khR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/catwalk_plated/techmaint, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "khS" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/purple/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "khU" = ( /obj/structure/cable/green{ d1 = 1; @@ -72043,7 +72473,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "khZ" = ( /obj/structure/cable/green{ d1 = 1; @@ -72056,11 +72486,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/purple/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "kij" = ( /obj/structure/cable/green{ d1 = 4; @@ -72078,7 +72508,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "kip" = ( /obj/structure/window/reinforced/tinted/frosted{ dir = 1 @@ -72093,7 +72523,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "kis" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -72102,13 +72532,13 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "kiG" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "kiK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -72124,14 +72554,14 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "kiP" = ( /obj/machinery/light{ name = "1S-light fixture" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "kiZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -72143,12 +72573,12 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "kjc" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "kjf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -72163,13 +72593,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "kjK" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "kjU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -72177,11 +72607,11 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "kkc" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "kke" = ( /obj/structure/cable{ d1 = 1; @@ -72201,10 +72631,10 @@ }, /obj/effect/floor_decal/industrial/arrows/blue, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "kkp" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "kkC" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -72218,7 +72648,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "kkK" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -72232,7 +72662,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "klh" = ( /obj/structure/bed/chair/sofa/corner/brown{ dir = 1; @@ -72243,11 +72673,11 @@ dir = 10 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "klj" = ( /obj/effect/catwalk_plated, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "klF" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light/small{ @@ -72269,21 +72699,21 @@ name = "Lockdown Gate" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "klM" = ( /obj/random/tech_supply, /obj/structure/table/rack/steel, /obj/random/tech_supply, /obj/random/tech_supply/component, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "klO" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "klR" = ( /obj/machinery/newscaster{ name = "1W-newscaster"; @@ -72291,7 +72721,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "kmj" = ( /obj/structure/railing{ dir = 1 @@ -72299,7 +72729,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "kml" = ( /obj/structure/closet/bombclosetsecurity, /obj/effect/floor_decal/borderfloor{ @@ -72310,7 +72740,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "kmn" = ( /obj/structure/cable/green{ d1 = 2; @@ -72333,13 +72763,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "kms" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "kmx" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 @@ -72350,7 +72780,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "kmz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -72359,7 +72789,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "kmD" = ( /obj/structure/sign/directions/teleporter{ pixel_y = 9; @@ -72375,7 +72805,7 @@ layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "kmJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -72390,11 +72820,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "kmK" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "kmL" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -72412,7 +72842,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "kmP" = ( /obj/item/stack/material/glass{ amount = 15 @@ -72420,8 +72850,13 @@ /obj/item/stack/rods{ amount = 50 }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "kmZ" = ( /obj/structure/cable/green{ d1 = 2; @@ -72447,7 +72882,21 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) +"kna" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/Chomp_Dinner_1) "kng" = ( /obj/structure/cable/green{ d1 = 1; @@ -72460,7 +72909,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "kny" = ( /obj/structure/cable/green{ d1 = 4; @@ -72480,13 +72929,13 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "knz" = ( /obj/machinery/photocopier, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "knE" = ( /obj/item/radio/intercom{ dir = 8; @@ -72500,7 +72949,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "kod" = ( /obj/structure/table/rack, /obj/item/shield/energy{ @@ -72535,7 +72984,7 @@ pixel_y = -6 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "kog" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -72544,7 +72993,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "koh" = ( /obj/structure/cable{ d1 = 2; @@ -72554,23 +73003,25 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "koi" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/arrows/yellow, +/obj/effect/floor_decal/industrial/arrows/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance/int, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/maintenance/Deck2_Port_Corridor) "kor" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "kow" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 5 @@ -72583,7 +73034,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "koC" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -72612,7 +73063,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Port_Corridor) "koD" = ( /obj/structure/railing{ dir = 8 @@ -72621,7 +73072,7 @@ name = "1S-light fixture" }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "koF" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 @@ -72632,21 +73083,21 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "koZ" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "kpw" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "kpx" = ( /obj/structure/window/reinforced{ dir = 8 }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "kqn" = ( /obj/structure/cable/green{ d1 = 2; @@ -72663,7 +73114,7 @@ dir = 8 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "kqp" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/firealarm{ @@ -72680,19 +73131,43 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) -"krc" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ +/area/rnd/Testing_Lab) +"kqt" = ( +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/structure/cable/green{ + d1 = 4; d2 = 8; - icon_state = "0-8" + icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) +"kqM" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/blue, +/obj/effect/wingrille_spawn/reinforced/polarized{ + id = "sc-WTkitchen" + }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/area/crew_quarters/Chomp_Kitchen) "krj" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -72708,7 +73183,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "krs" = ( /obj/structure/cable/green{ d1 = 4; @@ -72728,10 +73203,15 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "kru" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortCorridor1) +/area/maintenance/Deck2_Medical_AftPortCorridor1) +"krL" = ( +/obj/structure/lattice, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless, +/area/space) "krQ" = ( /obj/structure/table/steel, /obj/item/form_printer{ @@ -72744,10 +73224,10 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "krZ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "ksa" = ( /obj/structure/cable/green{ d1 = 1; @@ -72762,25 +73242,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "ksd" = ( /obj/structure/table/glass, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "ksl" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "kst" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/effect/catwalk_plated, @@ -72791,7 +73268,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "ksL" = ( /obj/structure/cable{ d1 = 1; @@ -72801,7 +73278,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "ksU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -72820,35 +73297,60 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) +/area/maintenance/Deck2_Medical_AftCorridor1) +"ktk" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "ktt" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "ktG" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "ktK" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "ktR" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) +"kul" = ( +/obj/structure/table/marble, +/obj/machinery/reagentgrinder{ + pixel_y = 20 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/beaker/measuring_cup{ + pixel_y = 4; + pixel_x = -9 + }, +/obj/item/reagent_containers/glass/beaker/measuring_cup{ + pixel_x = -5 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "kuE" = ( /obj/structure/table/rack/steel, /obj/random/maintenance/engineering, /obj/random/maintenance/misc, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "kuL" = ( /obj/structure/cable{ d1 = 1; @@ -72860,23 +73362,20 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "kuR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/catwalk_plated/techmaint, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/machinery/holoposter{ + dir = 4; + pixel_x = -32 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_2) "kvz" = ( /obj/structure/cable/green{ d1 = 1; @@ -72890,7 +73389,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "kvC" = ( /obj/structure/cable{ d1 = 1; @@ -72904,7 +73403,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "kvM" = ( /obj/structure/cable/green{ d1 = 4; @@ -72925,7 +73424,7 @@ network = list("engineering") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "kvZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -72934,13 +73433,26 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) +"kwf" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 25 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_2) "kwm" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "kwy" = ( /obj/machinery/light{ dir = 8; @@ -72952,7 +73464,7 @@ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "kwz" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -72961,7 +73473,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "kwB" = ( /obj/machinery/light{ dir = 8; @@ -72982,7 +73494,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "kwC" = ( /obj/structure/cable/green{ d1 = 4; @@ -72992,11 +73504,25 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "kwJ" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) +"kwP" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_2) "kwY" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/structure/window/basic{ @@ -73004,13 +73530,13 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "kxa" = ( /obj/structure/sign/directions/shuttle_bay{ dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "kxe" = ( /obj/machinery/light{ dir = 1; @@ -73025,22 +73551,25 @@ /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "kxn" = ( /obj/structure/table/marble, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "kxM" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) +"kxU" = ( +/turf/simulated/floor/grass, +/area/hallway/For_2_Deck_Central_Corridor_1) "kxZ" = ( /obj/structure/smoletrack/roadturn, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "kyu" = ( /obj/structure/cable/green{ d1 = 1; @@ -73052,7 +73581,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) +/area/maintenance/Deck2_Science_ForCorridor1) "kyK" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -73067,14 +73596,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "kyY" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "kze" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -73087,18 +73616,18 @@ dir = 2; icon_state = "pipe-c" }, -/obj/effect/floor_decal/borderfloor{ +/obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/brown/bordercorner{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "kzp" = ( /obj/machinery/atmospherics/unary/heater, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "kzs" = ( /obj/structure/table/standard, /obj/item/reagent_containers/glass/beaker/cryoxadone{ @@ -73111,17 +73640,15 @@ /turf/simulated/shuttle/floor/white, /area/shuttle/large_escape_pod4/station) "kzJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/security{ - dir = 8; - c_tag = "D2-Com-For Corridor2"; - network = list("Commons") +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_For_Corridor) "kzO" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 @@ -73136,7 +73663,7 @@ }, /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "kzU" = ( /obj/structure/cable{ d1 = 1; @@ -73151,7 +73678,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "kzV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -73166,7 +73693,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "kzZ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -73182,11 +73709,11 @@ }, /obj/effect/floor_decal/corner/beige/diagonal, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "kAe" = ( /obj/random/junk, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "kAw" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -73219,7 +73746,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "kBw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloorblack/corner{ @@ -73229,13 +73756,13 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "kBX" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "kCb" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 @@ -73244,7 +73771,7 @@ dir = 10 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "kCe" = ( /obj/machinery/alarm{ dir = 4; @@ -73269,7 +73796,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "kCg" = ( /obj/structure/cable/green{ d1 = 4; @@ -73295,7 +73822,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "kCh" = ( /obj/structure/cable/green{ d1 = 1; @@ -73312,7 +73839,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "kCp" = ( /obj/structure/table/standard, /obj/item/threadneedle{ @@ -73329,10 +73856,10 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "kCx" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "kCJ" = ( /obj/machinery/power/terminal{ dir = 4 @@ -73345,15 +73872,15 @@ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "kCO" = ( /obj/structure/sign/directions/ladderwell, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "kCQ" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber1) +/area/maintenance/Deck2_Engineering_ForStarChamber1) "kCW" = ( /obj/structure/cable/green{ d1 = 1; @@ -73361,7 +73888,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "kCX" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -73370,7 +73897,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "kDd" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/cable{ @@ -73379,7 +73906,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_2) "kDg" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -73388,7 +73915,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "kDj" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ @@ -73397,7 +73924,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "kDo" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -73408,7 +73935,7 @@ icon_state = "0-8" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "kDp" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 @@ -73421,12 +73948,12 @@ /area/shuttle/escape_pod9/station) "kDy" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "kDF" = ( /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "kEp" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -73460,7 +73987,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "kEz" = ( /obj/structure/cable/white{ d1 = 2; @@ -73468,7 +73995,7 @@ icon_state = "2-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "kEW" = ( /obj/machinery/light{ dir = 1; @@ -73482,12 +74009,16 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "kFa" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) +"kFb" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "kFk" = ( /obj/structure/cable/green{ d1 = 4; @@ -73507,7 +74038,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "kFu" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -73516,7 +74047,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "kFC" = ( /obj/machinery/power/apc{ dir = 4; @@ -73536,7 +74067,19 @@ /obj/structure/cable/white, /obj/effect/catwalk_plated, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) +"kFF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "kFH" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -73561,7 +74104,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "kFL" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -73571,14 +74114,14 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "kFY" = ( /obj/effect/floor_decal/shuttle/loading/yellow{ dir = 1 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "kFZ" = ( /obj/structure/cable/green{ d1 = 4; @@ -73589,7 +74132,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "kGf" = ( /obj/machinery/button/remote/airlock{ name = "1N-Bolt control"; @@ -73599,7 +74142,7 @@ specialfunctions = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "kGz" = ( /obj/structure/cable/green{ d1 = 1; @@ -73608,7 +74151,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "kGE" = ( /obj/structure/sign/directions/command{ dir = 1; @@ -73624,18 +74167,14 @@ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "kGU" = ( /obj/machinery/papershredder, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "kGV" = ( /obj/structure/cable/white{ d1 = 1; @@ -73643,7 +74182,7 @@ icon_state = "1-2" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "kHj" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -73654,15 +74193,50 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "kHr" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber2) +/area/maintenance/Deck2_Engineering_ForStarChamber2) "kHs" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Chamber) +/area/maintenance/Deck2_Science_ForPort_Chamber) +"kHv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) +"kHD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + name = "W-fire alarm"; + pixel_x = -25 + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "kHE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -73688,7 +74262,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "kHG" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 @@ -73696,13 +74270,13 @@ /turf/simulated/floor/boxing{ name = "yoga mat" }, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "kHJ" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_1) "kHL" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -73728,7 +74302,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "kHT" = ( /obj/structure/cable/green{ d1 = 2; @@ -73740,7 +74314,7 @@ }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "kHW" = ( /obj/structure/cable{ d1 = 1; @@ -73753,11 +74327,20 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) +"kIa" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "kIt" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/machinery/power/apc{ @@ -73769,7 +74352,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "kIS" = ( /obj/structure/cable/green{ d1 = 1; @@ -73787,7 +74370,7 @@ pixel_x = 22 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "kIT" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -73821,7 +74404,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "kIU" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -73848,7 +74431,7 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "kIX" = ( /obj/structure/cable/green{ d1 = 4; @@ -73857,14 +74440,14 @@ }, /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "kJh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "kJl" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -73873,7 +74456,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "kJq" = ( /obj/machinery/light/floortube{ pixel_y = -2 @@ -73892,23 +74475,18 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "kJM" = ( -/obj/effect/catwalk_plated/techmaint, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, +/area/maintenance/Deck2_For_Corridor) "kJY" = ( /obj/effect/floor_decal/milspec/cargo_arrow{ dir = 4 }, /obj/effect/floor_decal/milspec/box, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "kKp" = ( /obj/machinery/alarm{ dir = 4; @@ -73931,7 +74509,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "kKv" = ( /obj/structure/cable{ d1 = 1; @@ -73945,11 +74523,11 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "kKF" = ( /obj/structure/table/hardwoodtable, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "kKZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -73961,12 +74539,12 @@ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "kLg" = ( /obj/structure/dispenser, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "kLi" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 1 @@ -73975,13 +74553,13 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "kLj" = ( /obj/machinery/doorbell_chime{ id_tag = "sc-ChimeCar" }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "kLo" = ( /obj/structure/table/hardwoodtable, /obj/machinery/computer/security/telescreen/entertainment{ @@ -73994,7 +74572,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "kLA" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -74026,12 +74604,12 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "kLD" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/fueltank/high, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "kLG" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -74039,22 +74617,10 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) -"kLR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/security/Boardroom) "kLW" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "kLY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/white{ @@ -74069,12 +74635,12 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "kMi" = ( /obj/machinery/power/port_gen/pacman/mrs, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "kMj" = ( /obj/machinery/computer/secure_data{ dir = 8 @@ -74086,7 +74652,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "kMp" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -74104,7 +74670,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "kMu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -74113,14 +74679,14 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "kMw" = ( /obj/structure/table/wooden_reinforced, /obj/item/modular_computer/laptop/preset/custom_loadout/standard{ pixel_y = 14 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "kMz" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -74139,30 +74705,21 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "kMF" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_1) "kMN" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Security_PortCorridor1) -"kMO" = ( -/obj/machinery/meter, -/obj/machinery/camera/network/security{ - dir = 8; - c_tag = "D2-Eng-Distro Domicile1"; - network = list("engineering") - }, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/maintenance/Deck2_Security_PortCorridor1) "kMX" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -74179,7 +74736,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "kNJ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -74189,16 +74746,16 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "kNL" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "kNS" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, /turf/space, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "kOd" = ( /obj/structure/cable{ d1 = 1; @@ -74209,7 +74766,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "kOh" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -74221,7 +74778,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "kOm" = ( /obj/structure/cable/green{ d1 = 1; @@ -74236,84 +74793,44 @@ dir = 9 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "kOA" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "kOM" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "kOS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "kPr" = ( -/obj/structure/table/steel, -/obj/item/storage/briefcase/inflatable{ - pixel_x = 8; - pixel_y = -4 +/obj/machinery/door/blast/regular/open{ + layer = 3.5; + id = "Star Lockdown"; + name = "Lockdown Gate"; + desc = "A heavily reinforced gate, sector lockdown!" }, -/obj/item/storage/briefcase/inflatable{ - pixel_x = 8 +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 8 }, -/obj/item/storage/briefcase/inflatable{ - pixel_x = 8; - pixel_y = 4 +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 4 }, -/obj/item/storage/briefcase/inflatable{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/radio{ - pixel_x = -11; - pixel_y = -1 - }, -/obj/item/radio{ - pixel_x = -8; - pixel_y = -1 - }, -/obj/item/radio{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/radio{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/radio{ - pixel_x = -2; - pixel_y = 7 - }, -/obj/item/radio{ - pixel_y = 7; - pixel_x = -5 - }, -/obj/item/radio{ - pixel_y = 7; - pixel_x = -8 - }, -/obj/item/radio{ - pixel_y = 7; - pixel_x = -11 - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/turf/simulated/floor/tiled/techmaint, +/area/hallway/Star_2_Deck_Central_Corridor_2) "kPs" = ( /obj/structure/bed/chair/oldsofa, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "kPA" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -74322,31 +74839,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "kPH" = ( /obj/structure/window/basic{ dir = 1 }, /obj/machinery/vending/loadout/uniform, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) -"kPJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/holoposter{ - dir = 8 - }, -/turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/medical/Patient_Ward) "kPK" = ( /obj/structure/table/rack, /obj/item/gun/energy/sniperrifle{ @@ -74365,7 +74865,7 @@ pixel_x = 7 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "kQh" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -74374,17 +74874,13 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "kQw" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + dir = 4 }, -/obj/structure/sign/directions/eva{ - dir = 9 - }, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/turf/simulated/wall, +/area/maintenance/Deck2_For_Corridor) "kQE" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloorblack/corner{ @@ -74394,7 +74890,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "kQH" = ( /obj/structure/cable/green{ d1 = 1; @@ -74411,7 +74907,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "kQN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -74424,7 +74920,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "kQT" = ( /obj/structure/cable/white{ d1 = 1; @@ -74434,7 +74930,7 @@ /obj/effect/catwalk_plated/white, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "kRo" = ( /obj/structure/cable/green{ d1 = 4; @@ -74453,7 +74949,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/green/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "kRq" = ( /obj/structure/bed/chair/wood/wings{ color = "#004b9a"; @@ -74471,7 +74967,7 @@ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "kRv" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -74491,7 +74987,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "kRC" = ( /obj/structure/cable/green{ d1 = 4; @@ -74509,13 +75005,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "kRR" = ( /obj/structure/bed/chair/sofa/left/brown{ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "kRX" = ( /obj/structure/cable/green{ d1 = 4; @@ -74530,14 +75026,14 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "kSe" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortChamber1) +/area/maintenance/Deck2_Medical_AftPortChamber1) "kSg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -74556,7 +75052,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "kSp" = ( /obj/structure/cable/green{ d1 = 1; @@ -74576,7 +75072,7 @@ dir = 1 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "kSs" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ @@ -74618,7 +75114,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "kSL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -74630,7 +75126,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "kSM" = ( /obj/structure/reagent_dispensers/water_cooler/full{ dir = 1 @@ -74643,7 +75139,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "kSV" = ( /obj/structure/cable/green{ d1 = 1; @@ -74657,15 +75153,15 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "kTh" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "kTi" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "kTt" = ( /obj/machinery/light/small{ dir = 4 @@ -74675,7 +75171,7 @@ /obj/random/trash, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "kTR" = ( /obj/structure/table/glass, /obj/machinery/power/apc{ @@ -74694,7 +75190,7 @@ icon_state = "0-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "kTT" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -74703,7 +75199,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "kUm" = ( /obj/structure/table/rack/shelf/steel, /obj/random/tool, @@ -74714,7 +75210,7 @@ /obj/random/tech_supply, /obj/random/technology_scanner, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "kUC" = ( /obj/structure/cable/green{ d1 = 1; @@ -74725,7 +75221,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "kUD" = ( /obj/item/storage/briefcase/inflatable{ pixel_x = 8; @@ -74760,7 +75256,21 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) +"kUJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + name = "W-fire alarm"; + pixel_x = -25 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Corridor_1) "kUU" = ( /obj/structure/bed/chair/backed_red{ dir = 8 @@ -74774,7 +75284,7 @@ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "kUY" = ( /obj/machinery/power/apc{ dir = 8; @@ -74786,7 +75296,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "kVa" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner{ @@ -74796,14 +75306,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "kVd" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "kVv" = ( /obj/machinery/computer/guestpass{ pixel_y = 19; @@ -74816,7 +75326,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "kVy" = ( /obj/structure/table/marble, /obj/item/reagent_containers/food/drinks/flask/barflask{ @@ -74834,7 +75344,7 @@ pixel_x = 3 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "kVB" = ( /obj/structure/table/glass, /obj/machinery/light{ @@ -74842,7 +75352,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "kVC" = ( /obj/machinery/atmospherics/valve{ name = "Security emergency air supply" @@ -74850,7 +75360,7 @@ /obj/effect/floor_decal/industrial/danger/full, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "kVL" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -74859,7 +75369,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "kVZ" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -74878,7 +75388,23 @@ pixel_y = -25 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) +"kWa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "kWi" = ( /obj/structure/cable{ d1 = 1; @@ -74897,7 +75423,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "kWo" = ( /obj/structure/cable/green{ d1 = 4; @@ -74906,13 +75432,13 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarCorridor1) +/area/maintenance/Deck2_Engineering_ForStarCorridor1) "kWt" = ( /obj/structure/loot_pile/maint/trash, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "kWB" = ( /obj/item/radio/intercom{ dir = 1; @@ -74920,7 +75446,7 @@ pixel_y = 22 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "kWE" = ( /obj/structure/sign/directions/engineering{ dir = 8; @@ -74933,15 +75459,15 @@ }, /obj/structure/sign/directions/security{ pixel_y = -9; - dir = 1; + dir = 5; layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "kWG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "kWR" = ( /obj/machinery/power/apc{ dir = 1; @@ -74953,20 +75479,20 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "kWU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ +/obj/effect/floor_decal/corner/red/bordercorner{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "kXd" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "kXk" = ( /obj/machinery/firealarm{ dir = 1; @@ -74980,7 +75506,7 @@ dir = 1 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "kXm" = ( /obj/machinery/light{ dir = 1; @@ -74992,7 +75518,7 @@ }, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "kXw" = ( /obj/effect/catwalk_plated/white, /obj/structure/lattice, @@ -75013,40 +75539,40 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) -"kXE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/maintenance/Deck2_Medical_AftCorridor1) +"kXI" = ( +/obj/structure/table/marble, +/obj/item/book/codex/chef_recipes, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "kXR" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) +"kXS" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "kYr" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "kYA" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "kYN" = ( -/obj/structure/closet/emcloset, -/obj/machinery/ai_status_display{ - name = "1W-AI display"; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_2) "kZg" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -75066,7 +75592,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "kZv" = ( /obj/machinery/light{ dir = 8; @@ -75080,7 +75606,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "kZw" = ( /obj/structure/cable/green{ d1 = 2; @@ -75095,7 +75621,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "kZB" = ( /obj/structure/sign/nanotrasen, /turf/simulated/shuttle/wall/no_join{ @@ -75122,14 +75648,14 @@ name = "Wizard Hat of Respiration" }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "laF" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "laQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -75141,7 +75667,7 @@ req_access = list(25) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "lbd" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -75167,7 +75693,7 @@ name = "Lockdown Gate" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "lbm" = ( /obj/structure/closet/emcloset, /obj/machinery/camera/network/security{ @@ -75176,7 +75702,7 @@ network = list("Commons") }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "lbo" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -75207,7 +75733,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "lbB" = ( /obj/structure/cable{ d1 = 1; @@ -75217,11 +75743,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/lightorange/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "lbC" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -75237,7 +75763,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "lbH" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -75260,7 +75786,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "lbI" = ( /obj/structure/ladder/updown{ pixel_y = 3 @@ -75283,68 +75809,51 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "lbP" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "lbU" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "lbV" = ( /obj/structure/frame, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "lbW" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "lbX" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "lcc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 +/obj/structure/railing{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 +/obj/structure/railing{ + dir = 8 }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/effect/floor_decal/spline/plain{ + dir = 9 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_1) "lcd" = ( -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -3 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ +/obj/structure/closet/emcloset, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 +/obj/machinery/light{ + name = "1S-light fixture" }, -/obj/machinery/holoposter{ - dir = 4; - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/turf/simulated/floor/tiled/steel_ridged, +/area/hallway/Star_2_Deck_Central_Corridor_1) "lce" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -75352,12 +75861,12 @@ name = "1S-light fixture" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "lci" = ( /obj/structure/closet/bombcloset, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "lcu" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -75365,7 +75874,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "lcV" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -75379,7 +75888,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "lcY" = ( /obj/structure/cable/green{ d1 = 4; @@ -75404,7 +75913,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "ldd" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -75424,19 +75933,13 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_StarCorridor1) +/area/maintenance/Deck2_Security_StarCorridor1) "ldf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain, +/obj/structure/flora/underwater/grass4, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_2) "ldg" = ( /obj/effect/floor_decal/industrial/loading/blue, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, @@ -75454,13 +75957,13 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "ldq" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "ldw" = ( /obj/structure/cable/green{ d1 = 4; @@ -75474,14 +75977,14 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "ldy" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "ldz" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -75493,7 +75996,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "leq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -75511,7 +76014,26 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) +"leC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) +"leL" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "leW" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -75519,14 +76041,15 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -3 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_1) "lfc" = ( /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "lfq" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -75535,7 +76058,19 @@ name = "1S-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) +"lft" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "lfy" = ( /obj/structure/cable/green{ d1 = 1; @@ -75548,15 +76083,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 8 }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "lfC" = ( /obj/structure/cable/green{ d1 = 1; @@ -75564,7 +76099,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "lfI" = ( /obj/structure/cable/green{ d1 = 1; @@ -75573,7 +76108,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "lfN" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -75585,7 +76120,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "lfW" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -75594,17 +76129,17 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "lfX" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "lgj" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "lgm" = ( /obj/structure/table/standard, /obj/machinery/sparker{ @@ -75614,7 +76149,7 @@ }, /obj/item/assembly/igniter, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "lgn" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -75622,7 +76157,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "lgs" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -75631,11 +76166,11 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "lgv" = ( /obj/structure/sign/level/two/large, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "lgC" = ( /obj/structure/cable/green{ d1 = 4; @@ -75644,7 +76179,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "lgI" = ( /obj/structure/cable/green{ d1 = 4; @@ -75655,7 +76190,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "lhc" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = -4; @@ -75670,12 +76205,12 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "lhe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "lhg" = ( /obj/structure/sign/directions/cargo/mining{ dir = 8 @@ -75685,7 +76220,7 @@ dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "lhr" = ( /obj/structure/cable/green{ d1 = 1; @@ -75694,12 +76229,12 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "lhA" = ( /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "lhB" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -75708,26 +76243,31 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "lhG" = ( /obj/machinery/portable_atmospherics/canister, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "lhH" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "lhM" = ( /obj/random/trash, /obj/random/junk, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "lhV" = ( /obj/effect/floor_decal/chapel{ dir = 8 }, /obj/structure/table/bench/padded, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "liq" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/cable/green{ @@ -75739,7 +76279,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "liM" = ( /obj/structure/cable/green{ d1 = 1; @@ -75758,10 +76298,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "ljC" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "ljE" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 8 @@ -75769,7 +76309,7 @@ /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "ljU" = ( /obj/effect/floor_decal/corner_techfloor_gray{ dir = 10 @@ -75785,11 +76325,11 @@ }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "lkb" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "lkc" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -75797,7 +76337,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) +/area/maintenance/Deck2_Science_ForCorridor1) "lks" = ( /obj/effect/floor_decal/industrial/loading/blue, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, @@ -75815,7 +76355,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "lkw" = ( /obj/machinery/power/apc{ dir = 4; @@ -75844,7 +76384,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "lkA" = ( /obj/structure/cable{ d1 = 1; @@ -75863,7 +76403,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "lkB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -75874,7 +76414,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "lkC" = ( /obj/structure/table/standard, /obj/machinery/photocopier/faxmachine{ @@ -75882,7 +76422,7 @@ pixel_y = 12 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "lkD" = ( /obj/structure/filingcabinet, /obj/machinery/requests_console{ @@ -75898,7 +76438,7 @@ dir = 8 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "lkQ" = ( /obj/structure/closet/firecloset/full/atmos{ req_one_access = list(10) @@ -75912,7 +76452,7 @@ pixel_y = -6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "llb" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -75931,14 +76471,14 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Port_Corridor) "lld" = ( /obj/structure/sign/department/cargo{ layer = 3.5; desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "llj" = ( /obj/structure/cable/green{ d1 = 1; @@ -75946,7 +76486,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "lll" = ( /obj/machinery/light/small{ dir = 8 @@ -75954,18 +76494,18 @@ /obj/structure/table/rack, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "llv" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "llS" = ( /obj/machinery/alarm{ pixel_y = 25 }, /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "llY" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -75986,7 +76526,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "lme" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -75995,19 +76535,19 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "lmh" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "lmo" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "lmz" = ( /obj/structure/cable/green{ d1 = 4; @@ -76030,7 +76570,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "lmD" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -76047,7 +76587,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "lmG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -76068,7 +76608,17 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) +"lmO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "lnb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -76080,7 +76630,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "lnd" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -76092,7 +76642,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "lnf" = ( /obj/machinery/recharge_station, /obj/machinery/light/small{ @@ -76110,14 +76660,14 @@ specialfunctions = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "lni" = ( /obj/item/flashlight/lamp/green{ pixel_y = 4 }, /obj/structure/table/bench/wooden, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "lns" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -76126,7 +76676,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "lnJ" = ( /obj/structure/table/steel_reinforced, /obj/structure/window/reinforced{ @@ -76152,7 +76702,7 @@ pixel_x = 7 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "lnP" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -76162,8 +76712,12 @@ d2 = 8; icon_state = "1-8" }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "lnR" = ( /obj/structure/cable/green{ d1 = 1; @@ -76171,7 +76725,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "lnS" = ( /obj/structure/cable{ d1 = 4; @@ -76188,7 +76742,21 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) +"log" = ( +/obj/structure/sign/directions/cryo{ + pixel_y = 9; + dir = 1 + }, +/obj/structure/sign/directions/kitchen{ + dir = 1 + }, +/obj/structure/sign/directions/ladderwell{ + dir = 1; + pixel_y = -9 + }, +/turf/simulated/wall, +/area/crew_quarters/Rec_Lounge) "lox" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 1 @@ -76196,7 +76764,7 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "loS" = ( /obj/machinery/power/apc{ dir = 4; @@ -76208,22 +76776,22 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Corridor) +/area/maintenance/Deck2_Science_ForPort_Corridor) "lpe" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "lpg" = ( /obj/effect/catwalk_plated/techfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "lpj" = ( /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "lpo" = ( /obj/item/sleevemate{ pixel_y = 4; @@ -76238,7 +76806,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "lpw" = ( /obj/effect/floor_decal/shuttle/loading/yellow{ dir = 1 @@ -76246,20 +76814,42 @@ /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "lpx" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "lqi" = ( /obj/machinery/light/small{ dir = 1 }, /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_StarChamber1) +/area/maintenance/Deck2_Cargo_StarChamber1) +"lqm" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/hatch, +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium, +/obj/structure/window/titanium{ + dir = 4 + }, +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium{ + dir = 8 + }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_PortChamber1) "lqx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloorblack{ @@ -76269,13 +76859,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "lqz" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/engineering, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "lqS" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment{ @@ -76283,17 +76873,17 @@ }, /obj/effect/floor_decal/corner/beige/diagonal, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "lqU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "lrb" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "lri" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -76302,7 +76892,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "lrp" = ( /obj/structure/closet/coffin, /obj/structure/window/basic{ @@ -76313,17 +76903,17 @@ req_access = list(27) }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "lrE" = ( /obj/structure/table/woodentable, /obj/effect/floor_decal/carpet{ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "lrX" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Security_ForPortChamber1) +/area/maintenance/Deck2_Security_ForPortChamber1) "lsb" = ( /obj/structure/cable/green{ d1 = 4; @@ -76334,17 +76924,17 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "lsf" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "lsm" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "lsx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -76359,12 +76949,12 @@ dir = 8 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "lsz" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "lsH" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -76384,7 +76974,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "lsZ" = ( /obj/structure/cable/green{ d1 = 4; @@ -76399,7 +76989,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_PortCorridor1) +/area/maintenance/Deck2_Security_PortCorridor1) "ltc" = ( /obj/structure/cable/green{ d1 = 4; @@ -76419,7 +77009,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "lte" = ( /obj/structure/cable{ d2 = 8; @@ -76432,10 +77022,10 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/power/smes/batteryrack, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "ltH" = ( /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "ltL" = ( /obj/effect/catwalk_plated, /obj/structure/cable/white{ @@ -76444,7 +77034,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "ltP" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -76453,7 +77043,7 @@ }, /obj/machinery/bluespace_beacon, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "ltX" = ( /obj/structure/table/standard, /obj/item/pen/fountain{ @@ -76470,12 +77060,16 @@ id = "sc-GCmailroom" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) +"ltY" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/hallway/For_2_Deck_Central_Corridor_1) "luv" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, /turf/space, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "lux" = ( /obj/structure/table/woodentable, /obj/structure/flora/pottedplant/subterranean{ @@ -76483,11 +77077,11 @@ pixel_y = 11 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "luC" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "luQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -76504,7 +77098,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "luT" = ( /obj/structure/cable/green{ d1 = 1; @@ -76521,8 +77115,12 @@ /obj/effect/floor_decal/corner/lightgrey/bordercorner{ dir = 1 }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 2 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "luY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -76538,7 +77136,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "lvx" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -76559,26 +77157,30 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "lvy" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/door/blast/regular/open{ - layer = 3.5; - id = "Star Lockdown"; - name = "Lockdown Gate"; - desc = "A heavily reinforced gate, sector lockdown!" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/arrows/blue{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/item/radio/intercom{ + name = "1S-Station Intercom (General)"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "lvO" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -76587,7 +77189,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "lvX" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -76596,7 +77198,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "lwa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -76606,13 +77208,13 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "lwg" = ( /obj/item/stool/padded{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "lwA" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -76622,7 +77224,7 @@ "lwJ" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "lxe" = ( /obj/machinery/shower{ pixel_y = 16 @@ -76639,7 +77241,7 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "lxK" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -76647,8 +77249,9 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 10 }, +/obj/structure/table/standard, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "lxM" = ( /obj/machinery/light{ dir = 8; @@ -76669,7 +77272,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "lxX" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -76677,7 +77280,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "lyd" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -76689,7 +77292,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "lyh" = ( /obj/machinery/power/apc{ dir = 8; @@ -76698,7 +77301,22 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) +"lyA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "lyB" = ( /obj/machinery/washing_machine, /obj/effect/floor_decal/borderfloorblack{ @@ -76708,7 +77326,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "lyG" = ( /obj/structure/table/rack, /obj/item/ammo_magazine/ammo_box/b545/large/practice{ @@ -76760,7 +77378,7 @@ pixel_x = -21 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "lzd" = ( /obj/structure/bed/chair/oldsofa/corner{ dir = 1 @@ -76772,7 +77390,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "lzm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -76791,7 +77409,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "lzt" = ( /obj/structure/disposalpipe/junction{ dir = 1; @@ -76803,11 +77421,11 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "lzT" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "lzU" = ( /obj/effect/floor_decal/chapel{ dir = 1 @@ -76823,12 +77441,12 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "lAc" = ( /obj/structure/bed/chair/bay/chair/padded/red/bignest, /obj/item/toy/plushie/teshari/strix, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "lAg" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/pipedispenser, @@ -76837,21 +77455,14 @@ pixel_x = -4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "lAh" = ( /obj/structure/bed/chair/oldsofa{ dir = 1 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) -"lAk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/area/crew_quarters/Chomp_Dinner_1) "lAt" = ( /obj/structure/cable/green{ d1 = 1; @@ -76866,7 +77477,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "lAv" = ( /obj/structure/bed/chair/sofa/right/sif_ora{ dir = 1 @@ -76875,13 +77486,7 @@ dir = 10 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) -"lAE" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/area/crew_quarters/Chomp_Dinner_2) "lAI" = ( /obj/machinery/light/floortube{ pixel_y = -2 @@ -76892,7 +77497,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "lAL" = ( /obj/structure/cable/white{ d1 = 1; @@ -76902,7 +77507,7 @@ /obj/structure/disposalpipe/segment, /obj/structure/sign/department/eva, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "lAR" = ( /obj/structure/cable/green{ d1 = 4; @@ -76921,7 +77526,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "lAX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -76933,7 +77538,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "lBn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -76948,13 +77553,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "lBF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "lBG" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -76983,7 +77588,21 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) +"lBJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + name = "W-fire alarm"; + pixel_x = -25 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "lCa" = ( /obj/structure/cable/green{ d1 = 1; @@ -76997,19 +77616,19 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "lCA" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "lCS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "lCU" = ( /obj/structure/cable/green{ d1 = 1; @@ -77020,7 +77639,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "lCW" = ( /obj/fiftyspawner/wood, /obj/fiftyspawner/wood, @@ -77041,53 +77660,18 @@ /obj/structure/closet/crate/secure/large/reinforced, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) -"lDa" = ( -/obj/structure/table/standard, -/obj/item/stack/cable_coil/random{ - pixel_y = 8; - pixel_x = 3 - }, -/obj/item/pen/crayon/marker/black{ - pixel_y = 5 - }, -/obj/item/flashlight/flare{ - pixel_y = -2; - pixel_x = 1 - }, -/obj/item/flashlight/flare{ - pixel_y = 1; - pixel_x = 2 - }, -/obj/item/flashlight/flare{ - pixel_y = 4; - pixel_x = 3 - }, -/obj/item/extinguisher/mini{ - pixel_y = 8; - pixel_x = -7 - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/area/engineering/Storage) "lDe" = ( /obj/structure/sign/directions/science/toxins{ pixel_y = 9; dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "lDn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) -"lDC" = ( -/obj/machinery/atmospherics/binary/passive_gate{ - regulate_mode = 0; - unlocked = 1 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/crew_quarters/Rec_Lounge) "lDK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -77098,8 +77682,17 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) +"lDV" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "lEe" = ( /obj/machinery/papershredder, /obj/machinery/light{ @@ -77118,14 +77711,14 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "lEj" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "lEm" = ( /obj/structure/ladder{ pixel_y = 3 @@ -77136,7 +77729,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "lEI" = ( /obj/structure/cable/green{ d1 = 1; @@ -77156,7 +77749,7 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "lEW" = ( /obj/structure/cable/green{ d1 = 1; @@ -77171,7 +77764,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "lFc" = ( /obj/machinery/light{ dir = 4; @@ -77190,15 +77783,15 @@ /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/purple/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "lFm" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "lFp" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -77210,7 +77803,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "lFr" = ( /obj/structure/cable/green{ d1 = 1; @@ -77220,11 +77813,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/lightorange/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "lFN" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -77269,7 +77862,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "lFS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -77278,7 +77871,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "lGa" = ( /obj/structure/cable{ d1 = 4; @@ -77289,7 +77882,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "lGf" = ( /obj/structure/bed/chair/sofa/right/blue, /obj/structure/window/basic{ @@ -77299,7 +77892,7 @@ dir = 1 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "lGg" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -77313,32 +77906,30 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "lGm" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "lGq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/structure/sign/poster/custom, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) -"lGR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/floor_decal/borderfloor, -/obj/machinery/light/floortube{ - dir = 1; - pixel_y = 2 - }, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_1) "lGX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorwhite{ @@ -77348,7 +77939,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "lHc" = ( /obj/structure/sign/directions/engineering{ layer = 3.5; @@ -77362,11 +77953,11 @@ pixel_y = -9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "lHe" = ( /obj/item/packageWrap, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "lHm" = ( /obj/structure/table/woodentable, /obj/item/storage/box/donkpockets/gondola{ @@ -77402,7 +77993,7 @@ icon_state = "0-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "lHu" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 @@ -77413,7 +78004,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "lHO" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -77431,13 +78022,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "lHY" = ( /obj/random/trash, /obj/structure/table/steel, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "lIc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -77452,7 +78043,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "lIk" = ( /obj/structure/table/woodentable, /obj/item/storage/box/glasses/coffeecup{ @@ -77476,11 +78067,11 @@ pixel_x = -14 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "lIl" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "lIm" = ( /obj/structure/cable{ d1 = 1; @@ -77494,7 +78085,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "lIp" = ( /obj/structure/cable/green{ d1 = 1; @@ -77506,21 +78097,21 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "lIw" = ( /obj/structure/sign/directions/cryo{ pixel_y = 9; dir = 1 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "lIC" = ( /obj/structure/bed/chair/sofa/sif_ora{ dir = 1 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "lIP" = ( /obj/structure/girder/reinforced, /obj/structure/cable/green{ @@ -77529,7 +78120,25 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) +"lIT" = ( +/obj/structure/lattice, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_PortChamber2) "lIY" = ( /obj/vehicle/train/trolley{ dir = 8 @@ -77546,7 +78155,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "lJh" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -77560,13 +78169,13 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "lJn" = ( /obj/effect/wingrille_spawn/reinforced_phoron, /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "lJs" = ( /obj/structure/bed/chair/sofa/left/sif_ora{ dir = 1 @@ -77578,21 +78187,18 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "lJw" = ( /obj/random/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) -"lJU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, +/area/hallway/Star_2_Deck_Stairwell) +"lJO" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 + dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Star_2_Deck_Central_Corridor_1) "lKa" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -77600,7 +78206,18 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) +"lKg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/holoposter{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_2) "lKh" = ( /obj/machinery/power/apc{ dir = 1; @@ -77618,7 +78235,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "lKi" = ( /obj/structure/cable{ d1 = 1; @@ -77629,11 +78246,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "lKx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -77642,36 +78259,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) -"lKy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -3 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) -"lKC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/maintenance/Deck2_Cargo_AftCorridor2) "lLj" = ( /obj/machinery/light{ dir = 4; @@ -77684,7 +78272,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "lLk" = ( /obj/effect/catwalk_plated/techfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -77694,24 +78282,30 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "lLI" = ( /obj/effect/catwalk_plated/techmaint, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "lLR" = ( /obj/random/trash, /obj/structure/table/standard, /obj/random/medical/lite, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "lMc" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/cargo, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "lMn" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -77728,13 +78322,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "lMv" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/borderfloorwhite/corner2, /obj/effect/floor_decal/corner/white/bordercorner2, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "lMw" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -77746,7 +78340,7 @@ id_tag = "sc-DBEstall1" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "lMA" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 @@ -77754,7 +78348,7 @@ /turf/simulated/floor/boxing{ name = "yoga mat" }, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "lNg" = ( /obj/structure/cable{ d1 = 2; @@ -77762,7 +78356,7 @@ icon_state = "2-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "lNq" = ( /obj/structure/cable{ d1 = 4; @@ -77782,7 +78376,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "lNx" = ( /obj/item/gps{ pixel_x = 3; @@ -77816,7 +78410,15 @@ }, /obj/structure/sign/department/eva, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) +"lND" = ( +/obj/structure/flora/underwater/grass1, +/obj/machinery/light{ + dir = 8; + name = "1E-light fixture" + }, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_1) "lNO" = ( /obj/structure/cable/green{ d1 = 4; @@ -77837,7 +78439,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "lNS" = ( /obj/structure/cable{ d1 = 1; @@ -77848,7 +78450,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "lNY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -77872,7 +78474,24 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) +"lOe" = ( +/obj/machinery/vending/wallmed1{ + pixel_y = 26; + name = "1N-NanoMed" + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "lOw" = ( /obj/machinery/r_n_d/circuit_imprinter, /obj/item/radio/intercom{ @@ -77887,31 +78506,24 @@ network = list("Science") }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "lOx" = ( /obj/structure/disposalpipe/sortjunction/wildcard{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "lOz" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 +/obj/machinery/appliance/cooker/fryer, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/orange/border, +/obj/item/radio/intercom{ + name = "1S-Station Intercom (General)"; + pixel_y = -22 }, -/obj/effect/floor_decal/industrial/loading{ - dir = 1 - }, -/obj/machinery/navbeacon/delivery/north{ - location = "Chomp_Bar" - }, -/obj/machinery/door/window/survival_pod{ - dir = 1 - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "lOE" = ( /obj/structure/cable/green{ d1 = 4; @@ -77928,19 +78540,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/FirstAid_Storage) -"lOJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/area/medical/FirstAid_Storage) "lOX" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 9 @@ -77950,7 +78550,16 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) +"lPb" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_1) "lPn" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -77973,7 +78582,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "lPt" = ( /obj/structure/cable/green{ d1 = 1; @@ -77993,11 +78602,11 @@ /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ +/obj/effect/floor_decal/corner/purple/bordercorner{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "lPI" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -78012,34 +78621,34 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "lPZ" = ( /obj/structure/table/fancyblack, /obj/item/handcuffs/legcuffs/fuzzy, /obj/item/handcuffs/fuzzy, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/ab_Pdance) -"lQm" = ( -/obj/item/radio/intercom{ - dir = 4; - name = "1E-Station Intercom (General)"; - pixel_x = 22 +/area/maintenance/ab_Pdance) +"lQz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "lQB" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "lQC" = ( /obj/structure/closet/secure_closet/personal/patient, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "lQJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -78051,7 +78660,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "lRa" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment{ @@ -78064,14 +78673,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "lRi" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ color = "#989898"; dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "lRj" = ( /obj/structure/table/marble, /obj/machinery/computer/security/telescreen/entertainment{ @@ -78089,7 +78698,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "lRD" = ( /obj/structure/window/basic{ dir = 1 @@ -78101,12 +78710,12 @@ pixel_x = 25 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "lRF" = ( /obj/effect/floor_decal/chapel, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "lRG" = ( /obj/machinery/computer/med_data/laptop{ dir = 4 @@ -78118,7 +78727,7 @@ name = "W-fire alarm" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "lRJ" = ( /obj/structure/cable{ d1 = 1; @@ -78135,18 +78744,18 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "lRO" = ( /obj/machinery/vending/cola/soft{ dir = 1 }, /obj/structure/window/reinforced/tinted/frosted, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "lSj" = ( /obj/effect/catwalk_plated, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "lSp" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -78163,30 +78772,31 @@ }, /obj/machinery/status_display, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "lSq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 }, -/turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "lSI" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "lSQ" = ( /obj/structure/table, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "lSS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -78198,7 +78808,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "lSZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -78210,12 +78820,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "lTp" = ( /obj/random/junk, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "lTu" = ( /obj/structure/window/reinforced{ dir = 8 @@ -78232,7 +78842,7 @@ }, /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "lTy" = ( /obj/structure/table/rack/shelf, /obj/item/storage/bag/trash{ @@ -78274,19 +78884,19 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "lTF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "lTP" = ( /obj/random/trash, /obj/structure/table/standard, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "lTW" = ( /obj/structure/cable/green{ d1 = 4; @@ -78300,7 +78910,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "lUc" = ( /obj/structure/cable/green{ d1 = 1; @@ -78315,28 +78925,28 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "lUn" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "lUr" = ( /obj/structure/window/basic{ dir = 1 }, /obj/structure/table/glass, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "lUy" = ( /obj/structure/table/standard, /obj/item/flashlight/lamp{ on = 0 }, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "lUC" = ( /obj/structure/closet/secure_closet/paramedic, /obj/machinery/light{ @@ -78346,7 +78956,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "lUL" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -78358,7 +78968,7 @@ /obj/effect/floor_decal/corner/lightgrey/border, /obj/structure/sign/poster/nanotrasen, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "lUR" = ( /obj/structure/cable/green{ d1 = 4; @@ -78375,7 +78985,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "lUV" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -78405,7 +79015,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "lUX" = ( /obj/machinery/vr_sleeper{ dir = 8 @@ -78414,7 +79024,7 @@ pixel_x = 31 }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "lUZ" = ( /obj/machinery/newscaster{ pixel_x = 28; @@ -78426,32 +79036,34 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "lVd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/purple{ dir = 6 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "lVe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/railing{ + dir = 1 }, -/obj/machinery/light/floortube{ - dir = 1; - pixel_y = 2 +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/obj/machinery/camera/network/security{ + dir = 4; + c_tag = "D2-Com-Port Corridor2"; + network = list("Commons") + }, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_1) "lVo" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8; color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "lVv" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -78460,7 +79072,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "lVA" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -78477,17 +79089,43 @@ req_one_access = list(50) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "lVM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/table/marble, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = 10; + pixel_y = 14 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/item/reagent_containers/food/condiment/ketchup{ + pixel_x = 4; + pixel_y = 15 + }, +/obj/item/reagent_containers/food/condiment/mustard{ + pixel_y = 14 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = 10; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/condiment/cornoil{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/condiment/cookingoil{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/hotsauce{ + pixel_x = -11; + pixel_y = 19 + }, +/obj/item/reagent_containers/food/condiment/soysauce{ + pixel_x = -8; + pixel_y = 14 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "lVS" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/grille, @@ -78518,7 +79156,70 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) +"lVT" = ( +/obj/structure/table/steel, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 8 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/radio{ + pixel_x = -11; + pixel_y = -1 + }, +/obj/item/radio{ + pixel_x = -8; + pixel_y = -1 + }, +/obj/item/radio{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/radio{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/radio{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/radio{ + pixel_y = 7; + pixel_x = -5 + }, +/obj/item/radio{ + pixel_y = 7; + pixel_x = -8 + }, +/obj/item/radio{ + pixel_y = 7; + pixel_x = -11 + }, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) +"lVU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/structure/sign/painting/public{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "lVX" = ( /obj/machinery/disposal/wall/cleaner{ name = "1E-Resleeving lost & found bin"; @@ -78531,7 +79232,7 @@ pixel_x = -1 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "lVZ" = ( /obj/structure/cable/green{ d1 = 1; @@ -78539,12 +79240,12 @@ icon_state = "1-2" }, /turf/simulated/floor/carpet/purple, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "lWn" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "lWo" = ( /obj/structure/cable{ d1 = 1; @@ -78563,12 +79264,12 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "lWB" = ( /obj/structure/table/standard, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "lWC" = ( /obj/machinery/ai_status_display{ name = "1E-AI display"; @@ -78580,25 +79281,31 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light/spot{ + dir = 4; + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "lWP" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "lWU" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Medical Substation Bypass" }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "lWX" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "lXc" = ( /obj/structure/cable/green{ d1 = 4; @@ -78620,14 +79327,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "lXn" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/area/maintenance/Deck2_Star_Corridor) "lXr" = ( /obj/structure/cable{ d1 = 4; @@ -78636,11 +79343,11 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "lXu" = ( /obj/structure/table/steel, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "lXK" = ( /obj/effect/floor_decal/industrial/stand_clear/blue, /obj/machinery/door/blast/regular/open{ @@ -78653,14 +79360,14 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "lXT" = ( /obj/structure/sign/directions/evac{ pixel_y = 9; layer = 3.5 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "lYe" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -78671,7 +79378,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "lYf" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -78680,11 +79387,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "lYj" = ( /obj/effect/catwalk_plated/dark, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "lYo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -78696,34 +79403,25 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "lYw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/blue, +/obj/effect/wingrille_spawn/reinforced/polarized{ + id = "sc-WTkitchen" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/turf/simulated/floor/plating, +/area/crew_quarters/Chomp_Kitchen) "lYG" = ( /obj/structure/table/wooden_reinforced, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "lYO" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -78741,7 +79439,7 @@ req_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "lYV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -78750,7 +79448,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "lZd" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -78780,7 +79478,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "lZh" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -78790,7 +79488,37 @@ }, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) +"lZi" = ( +/obj/structure/cable/white{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_PortChamber1) +"lZk" = ( +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 25; + name = "E-fire alarm" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "lZs" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -78816,22 +79544,22 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "lZD" = ( /obj/structure/bed/pillowpile/red, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "lZV" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) +/area/maintenance/Deck2_Medical_AftCorridor1) "maq" = ( /obj/machinery/light/small, /obj/random/junk, /obj/structure/table/rack, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "maC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -78879,10 +79607,10 @@ pixel_x = 24 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "maU" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber1) +/area/maintenance/Deck2_Engineering_PortChamber1) "mba" = ( /obj/machinery/status_display{ layer = 4; @@ -78890,26 +79618,26 @@ pixel_y = 32 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "mbf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "mbj" = ( /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "mbl" = ( /obj/structure/easel, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "mby" = ( /obj/structure/table/bench/padded, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "mbA" = ( /obj/machinery/alarm{ pixel_y = 25 @@ -78918,7 +79646,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "mbG" = ( /obj/structure/sign/directions/chapel, /obj/structure/sign/directions/dorms{ @@ -78932,7 +79660,7 @@ dir = 8 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "mbH" = ( /obj/structure/table/marble, /obj/machinery/light{ @@ -78940,13 +79668,13 @@ }, /obj/machinery/reagentgrinder, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "mbV" = ( /obj/effect/floor_decal/spline/fancy{ dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "mbY" = ( /obj/structure/cable/green{ d1 = 4; @@ -78966,7 +79694,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "mco" = ( /obj/machinery/flasher{ id = "testthis"; @@ -78977,28 +79705,28 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "mcs" = ( /obj/structure/lattice, /obj/machinery/shield_diffuser, /obj/effect/catwalk_plated/white, /turf/space, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "mcw" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "mcI" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "mcX" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "mde" = ( /obj/structure/bed/chair/sofa/sif_ora{ dir = 4 @@ -79009,7 +79737,7 @@ name = "1W-entertainment monitor" }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "mdj" = ( /obj/machinery/alarm{ pixel_y = 25 @@ -79018,11 +79746,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "mdu" = ( /obj/structure/inflatable, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "mdY" = ( /obj/structure/cable/green{ d1 = 1; @@ -79039,7 +79767,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) +/area/maintenance/Deck2_Science_ForCorridor1) "mdZ" = ( /obj/structure/lattice, /obj/structure/cable{ @@ -79064,46 +79792,38 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "mea" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "men" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, /obj/effect/floor_decal/industrial/arrows/yellow{ dir = 1 }, -/obj/machinery/door/airlock/maintenance/int, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/engi{ + name = "Domicile Air Distribution"; + req_one_access = null + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) -"mep" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/security{ - dir = 8; - c_tag = "D2-Com-Aft Corridor4"; - network = list("Commons") - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/maintenance/Deck2_AftStar_Corridor) "mev" = ( /obj/structure/disposalpipe/sortjunction/wildcard, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "meH" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -79112,7 +79832,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "mfe" = ( /obj/machinery/light{ dir = 8; @@ -79125,22 +79845,12 @@ name = "1W-NanoMed" }, /turf/simulated/floor/tiled/kafel_full/red, -/area/SouthernCrossV2/Security/Restroom) -"mfi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/light/floortube{ - pixel_y = -2 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/security/Restroom) +"mfA" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_For_Corridor) "mfB" = ( /obj/structure/cable/green{ d1 = 1; @@ -79157,16 +79867,16 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "mfM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "mga" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "mgb" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -79177,7 +79887,7 @@ name = "Experimental research" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "mgk" = ( /obj/machinery/firealarm{ dir = 1; @@ -79193,27 +79903,23 @@ dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "mgx" = ( -/obj/effect/floor_decal/borderfloor, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/light/floortube{ - dir = 1; - pixel_y = 2 - }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_1) "mgH" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "mgI" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -79225,7 +79931,7 @@ network = list("Science") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "mgO" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -79233,14 +79939,14 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "mhd" = ( /obj/effect/floor_decal/milspec/cargo_arrow{ dir = 1 }, /obj/effect/floor_decal/milspec/box, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "mhf" = ( /obj/machinery/light/small{ dir = 4 @@ -79249,7 +79955,7 @@ /obj/random/maintenance/cargo, /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortCorridor1) +/area/maintenance/Deck2_Medical_AftPortCorridor1) "mhy" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -79271,7 +79977,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "mhB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -79291,7 +79997,7 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Cargo_StarChamber1) +/area/maintenance/Deck2_Cargo_StarChamber1) "mhL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -79303,31 +80009,19 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "mhU" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/industrial/hatch/blue, -/obj/structure/grille, -/obj/structure/window/basic/full, -/obj/structure/window/basic, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, +/obj/structure/kitchenspike, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/Chomp_Kitchen) "mic" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "mif" = ( /obj/machinery/disposal, /obj/machinery/light{ @@ -79338,7 +80032,7 @@ dir = 2 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "min" = ( /obj/structure/cable/green{ d1 = 4; @@ -79357,7 +80051,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "mjm" = ( /obj/structure/sign/directions/shuttle_bay{ dir = 8 @@ -79368,7 +80062,7 @@ dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "mjw" = ( /obj/structure/bed/chair/sofa/left/brown{ dir = 8; @@ -79380,7 +80074,20 @@ pixel_x = 22 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) +"mjM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, +/turf/simulated/floor/tiled, +/area/quartermaster/Packaging_Room) "mjS" = ( /obj/machinery/firealarm{ dir = 8; @@ -79410,11 +80117,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "mkd" = ( /obj/machinery/door/window/brigdoor/westright, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "mkf" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -79423,7 +80130,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "mkW" = ( /obj/machinery/power/apc{ dir = 1; @@ -79445,7 +80152,29 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) +"mli" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/hatch, +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium, +/obj/structure/window/titanium{ + dir = 4 + }, +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium{ + dir = 8 + }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_StarChamber1) "mlw" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -79457,11 +80186,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "mlA" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "mlJ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -79473,7 +80202,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "mlR" = ( /obj/machinery/suit_cycler/engineering{ req_one_access = list(11,24); @@ -79481,7 +80210,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "mma" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -79501,7 +80230,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "mmn" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -79512,7 +80241,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "mmq" = ( /obj/structure/cable/white{ d1 = 1; @@ -79521,10 +80250,10 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "mmv" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "mmD" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -79541,7 +80270,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "mmH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -79549,7 +80278,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "mmM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -79557,11 +80286,11 @@ /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, -/obj/effect/floor_decal/corner/green/border{ +/obj/effect/floor_decal/corner/orange/border{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "mmQ" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/spline/fancy/wood{ @@ -79569,7 +80298,7 @@ }, /obj/item/bikehorn/rubberducky, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "mnd" = ( /obj/structure/cable/green{ d1 = 1; @@ -79579,7 +80308,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortCorridor1) +/area/maintenance/Deck2_Medical_AftPortCorridor1) "mnn" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /obj/structure/cable/green{ @@ -79588,22 +80317,15 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "mno" = ( /obj/effect/decal/remains/tajaran, /obj/effect/decal/cleanable/greenglow, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "mns" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/directions/dock{ - layer = 3.5; - dir = 10 - }, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/turf/simulated/wall, +/area/hallway/Star_2_Deck_Central_Corridor_2) "mnu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -79616,20 +80338,20 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "mnz" = ( /obj/random/junk, /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "mnK" = ( /obj/structure/bed/chair/wood/wings{ color = "#004b9a"; dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "mnR" = ( /obj/structure/table/bench/sifwooden, /obj/machinery/alarm{ @@ -79637,7 +80359,7 @@ pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "mnU" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -79646,23 +80368,27 @@ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "mnY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "moa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "mor" = ( /obj/structure/table/hardwoodtable, /obj/item/clothing/glasses/hud/security, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "mos" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -79674,7 +80400,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "mot" = ( /obj/structure/cable/green{ d1 = 1; @@ -79693,7 +80419,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) +/area/maintenance/Deck2_Medical_AftCorridor1) "mox" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -79712,14 +80438,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "moy" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ color = "#989898"; dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "moG" = ( /obj/item/clothing/suit/storage/apron/white{ pixel_x = -6; @@ -79731,16 +80457,19 @@ }, /obj/structure/table/reinforced, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "moX" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 +/obj/structure/sign/directions/bar{ + pixel_y = 9; + layer = 3.5 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 +/obj/structure/sign/directions/recreation, +/obj/structure/sign/directions/dock{ + pixel_y = -9; + layer = 3.5 }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/turf/simulated/wall, +/area/crew_quarters/Office_Lounge) "mpe" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/effect/floor_decal/borderfloorblack{ @@ -79750,7 +80479,7 @@ dir = 1 }, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "mpf" = ( /obj/structure/cable{ d2 = 4; @@ -79763,7 +80492,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "mpo" = ( /obj/structure/cable/green{ d1 = 4; @@ -79777,30 +80506,18 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "mpx" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/CMO_Office) -"mpI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/medical/CMO_Office) "mpT" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "mqf" = ( /obj/structure/cable/green{ d1 = 1; @@ -79809,7 +80526,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortCorridor1) +/area/maintenance/Deck2_Medical_AftPortCorridor1) "mqr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -79820,7 +80537,13 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) +"mqy" = ( +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_1) "mqK" = ( /obj/structure/cable{ d1 = 4; @@ -79835,7 +80558,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "mqR" = ( /obj/structure/loot_pile/surface/medicine_cabinet/fresh{ pixel_y = 25 @@ -79843,7 +80566,7 @@ /obj/random/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "mre" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -79852,7 +80575,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "mrj" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -79861,7 +80584,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "mro" = ( /obj/structure/cable/green{ d1 = 1; @@ -79877,11 +80600,11 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "mrF" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "mrK" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -79903,7 +80626,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "mrM" = ( /obj/effect/floor_decal/chapel{ dir = 1 @@ -79912,11 +80635,11 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "mrU" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "msv" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -79929,7 +80652,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "msC" = ( /obj/effect/landmark{ name = "blobstart" @@ -79943,11 +80666,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) +"msM" = ( +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "msQ" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "msX" = ( /obj/structure/railing{ dir = 8 @@ -79956,7 +80686,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "mte" = ( /obj/machinery/button/doorbell{ id = "sc-ChimeSec"; @@ -79969,7 +80699,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "mth" = ( /obj/machinery/camera/network/research{ c_tag = "D2-Med-Patient Ward2"; @@ -79983,14 +80713,14 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "mti" = ( /obj/structure/morgue/crematorium{ dir = 2; id = "Chapelburn" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "mtC" = ( /obj/structure/table/steel, /obj/fiftyspawner/glass{ @@ -80006,7 +80736,7 @@ pixel_y = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "mtZ" = ( /obj/structure/cable/green{ d1 = 1; @@ -80016,22 +80746,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "muk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/floortube{ - pixel_y = -2 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_1) "muv" = ( /obj/structure/cable/green{ d1 = 1; @@ -80051,7 +80771,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "muM" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/door/window/brigdoor/eastright{ @@ -80065,7 +80785,7 @@ layer = 3.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "muT" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -80074,14 +80794,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "mvb" = ( /obj/structure/bed/chair, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "mvr" = ( /obj/structure/cable{ d1 = 4; @@ -80106,7 +80826,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "mvs" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 6 @@ -80115,14 +80835,13 @@ dir = 5 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "mvC" = ( -/obj/structure/sign/directions/dock, /obj/structure/sign/levels/dock{ pixel_y = -9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "mvK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -80134,19 +80853,19 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "mwn" = ( /obj/structure/table/steel, /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "mwR" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "mxw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -80157,12 +80876,12 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "mxG" = ( /obj/random/junk, /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "mxN" = ( /obj/structure/cable{ d1 = 4; @@ -80175,9 +80894,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -80185,7 +80902,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "mxO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -80194,13 +80911,13 @@ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "myd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "myq" = ( /obj/structure/railing/grey{ color = "yellow" @@ -80210,13 +80927,13 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "myt" = ( /obj/structure/table/standard, /obj/random/maintenance/research, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "myw" = ( /obj/structure/table/steel_reinforced, /obj/item/multitool{ @@ -80232,7 +80949,7 @@ pixel_x = -6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "myK" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -80249,7 +80966,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "myX" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -80274,7 +80991,7 @@ }, /obj/structure/table/reinforced, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "myY" = ( /obj/structure/lattice, /obj/machinery/shield_diffuser, @@ -80286,13 +81003,13 @@ id = "sc-GCwestshuttlebay" }, /turf/space, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "mza" = ( /obj/machinery/vr_sleeper{ dir = 8 }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "mzd" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -80315,7 +81032,7 @@ }, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "mzl" = ( /obj/structure/cable/green{ d1 = 4; @@ -80332,7 +81049,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "mzA" = ( /obj/structure/cable/green{ d1 = 4; @@ -80342,7 +81059,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "mzG" = ( /obj/structure/table/steel, /obj/machinery/button/remote/blast_door{ @@ -80353,7 +81070,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "mzI" = ( /obj/structure/cable/green{ d1 = 1; @@ -80367,11 +81084,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/lightorange/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "mzY" = ( /obj/structure/cable/green{ d1 = 2; @@ -80391,28 +81108,37 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "mzZ" = ( /obj/effect/floor_decal/industrial/loading, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "mAe" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "mAf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 2 }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/Port_2_Deck_Central_Corridor_1) "mAg" = ( /obj/effect/landmark{ name = "carpspawn" @@ -80427,14 +81153,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "mAn" = ( /obj/random/trash, /obj/structure/table/standard, /obj/random/maintenance/engineering, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "mAJ" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -80442,13 +81168,13 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "mAM" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "mAT" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -80465,7 +81191,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "mAU" = ( /obj/structure/closet/secure_closet/CMO, /obj/item/defib_kit/compact/combat/loaded, @@ -80478,12 +81204,12 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "mAZ" = ( /obj/structure/table/reinforced, /obj/item/communicator, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "mBe" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -80493,7 +81219,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "mBm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -80501,14 +81227,36 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "mBr" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_2) +"mBN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "mBX" = ( /turf/simulated/shuttle/wall/no_join{ base_state = "orange"; @@ -80522,30 +81270,23 @@ icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "mCd" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/industrial/hatch/blue, +/obj/machinery/gibber, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/obj/machinery/camera/network/security{ - dir = 1; - c_tag = "D2-Eng-Substation Central1"; - network = list("engineering") - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/Chomp_Kitchen) "mCf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/tank/air/full{ - dir = 8 +/obj/structure/closet/emcloset, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/industrial/hatch/blue, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/turf/simulated/floor/tiled/steel_ridged, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "mCl" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -80556,7 +81297,7 @@ id = "sc-HSsurgeryone" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "mCq" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -80565,7 +81306,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "mCv" = ( /obj/machinery/light{ dir = 8; @@ -80584,7 +81325,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "mCH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -80592,7 +81333,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "mCN" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -80606,7 +81347,7 @@ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "mDc" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -80615,7 +81356,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "mDd" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloorblack/corner{ @@ -80625,20 +81366,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) -"mDt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/security/Lobby) "mDJ" = ( /obj/structure/table/rack/shelf, /obj/item/storage/box/monkeycubes/sparracubes{ @@ -80671,24 +81399,20 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "mDM" = ( -/obj/machinery/firealarm{ - dir = 8; - name = "W-fire alarm"; - pixel_x = -25 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, /obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "mDS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor/corner{ @@ -80698,7 +81422,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "mDV" = ( /obj/structure/cable/green{ d1 = 1; @@ -80710,13 +81434,11 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "mEe" = ( -/obj/machinery/door/window/brigdoor/northleft{ - req_access = list(63) - }, +/obj/machinery/door/window/brigdoor/northleft, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "mEB" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/suit/space/void/engineering/construction{ @@ -80745,7 +81467,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "mEJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/directions/engineering{ @@ -80759,11 +81481,11 @@ }, /obj/structure/sign/directions/security{ pixel_y = -9; - dir = 9; + dir = 8; layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "mES" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -80779,16 +81501,21 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "mFk" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "mFn" = ( /obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/green/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "mFr" = ( /obj/structure/cable{ d1 = 1; @@ -80803,13 +81530,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "mFs" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "mFv" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -80817,7 +81544,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "mFN" = ( /obj/structure/table/steel_reinforced, /obj/item/toy/figure/dsquad{ @@ -80837,22 +81564,22 @@ pixel_x = -15 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "mGd" = ( /obj/structure/sign/warning/moving_parts, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "mGr" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "mGs" = ( /obj/machinery/alarm{ pixel_y = 25 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "mGI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -80880,7 +81607,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Security_PortCorridor1) +/area/maintenance/Deck2_Security_PortCorridor1) "mGL" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -80889,7 +81616,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "mGV" = ( /obj/structure/table/woodentable, /obj/item/dice{ @@ -80898,7 +81625,7 @@ }, /obj/item/coin/iron, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "mHc" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /obj/effect/floor_decal/industrial/hatch/blue, @@ -80907,7 +81634,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "mHG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorblack{ @@ -80917,7 +81644,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "mHP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -80941,16 +81668,16 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "mHY" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_1) "mId" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "mIi" = ( /obj/structure/cable/green{ d1 = 1; @@ -80965,7 +81692,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "mIl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -80974,12 +81701,18 @@ /obj/effect/floor_decal/borderfloorwhite/corner2, /obj/effect/floor_decal/corner/white/bordercorner2, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "mIv" = ( /obj/structure/table/marble, /obj/item/tape/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) +"mIA" = ( +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_StarCorridor1) "mIS" = ( /obj/structure/cable/green{ d1 = 4; @@ -81005,7 +81738,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "mIT" = ( /obj/structure/cable{ d1 = 1; @@ -81019,18 +81752,18 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "mIZ" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "mJa" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /obj/effect/catwalk_plated/techmaint, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "mJi" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -81044,10 +81777,10 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "mJu" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "mJB" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -81055,12 +81788,21 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) +"mJI" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_2) "mJJ" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "mJK" = ( /obj/structure/cable/green{ d1 = 1; @@ -81071,7 +81813,7 @@ dir = 6 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "mKm" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -81088,7 +81830,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_1) "mKo" = ( /obj/item/flashlight{ pixel_x = 7; @@ -81145,13 +81887,17 @@ pixel_y = -4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "mKs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "mKx" = ( /obj/structure/closet/crate/bin, /obj/machinery/light{ @@ -81166,11 +81912,15 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) +"mKF" = ( +/obj/structure/flora/underwater/grass1, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_1) "mLg" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "mLv" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 4 @@ -81179,34 +81929,22 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "mLK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/purple{ dir = 9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "mLM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/turf/simulated/wall, +/area/maintenance/Distro_Civilian) "mLP" = ( /obj/structure/lattice, /obj/machinery/light/small/neon/generic_blue, /obj/machinery/shield_diffuser, /turf/space, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "mMc" = ( /obj/structure/cable/green{ d1 = 1; @@ -81219,7 +81957,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "mMo" = ( /obj/structure/cable/green{ d1 = 1; @@ -81236,7 +81974,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "mMp" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/random{ @@ -81263,7 +82001,24 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) +"mMv" = ( +/obj/structure/sign/directions/science{ + dir = 6; + layer = 3.5; + pixel_y = 9 + }, +/obj/structure/sign/directions/medical{ + dir = 6; + layer = 3.5 + }, +/obj/structure/sign/directions/command{ + pixel_y = -9; + dir = 1; + layer = 3.5 + }, +/turf/simulated/wall/r_wall, +/area/quartermaster/For_Tool_Storage) "mMD" = ( /obj/structure/table/rack/shelf, /obj/item/storage/box/bodybags{ @@ -81288,7 +82043,7 @@ pixel_y = 25 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "mMG" = ( /obj/structure/cable/green{ d1 = 1; @@ -81305,38 +82060,136 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) +"mMP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Aft_Corridor) "mMU" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) -"mNt" = ( -/obj/structure/table/standard, -/obj/item/stack/material/steel{ - amount = 50 +/area/maintenance/Deck2_Security_ForCorridor1) +"mNa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 }, -/obj/item/stack/material/glass{ - amount = 50; - pixel_x = 3; +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_1) +"mNt" = ( +/obj/item/stock_parts/micro_laser{ + pixel_y = 9; + pixel_x = 7 + }, +/obj/item/stock_parts/micro_laser{ + pixel_y = 9; + pixel_x = 4 + }, +/obj/item/stock_parts/micro_laser{ + pixel_y = 9; + pixel_x = 1 + }, +/obj/item/stock_parts/matter_bin{ + pixel_y = -7; + pixel_x = 5 + }, +/obj/item/stock_parts/matter_bin{ + pixel_y = -5; + pixel_x = 5 + }, +/obj/item/stock_parts/matter_bin{ + pixel_y = -3; + pixel_x = 5 + }, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen{ + pixel_y = -2 + }, +/obj/item/stock_parts/console_screen{ + pixel_y = -4 + }, +/obj/item/stock_parts/scanning_module{ + pixel_y = 9; + pixel_x = -8 + }, +/obj/item/stock_parts/scanning_module{ + pixel_y = 7; + pixel_x = -7 + }, +/obj/item/stock_parts/scanning_module{ + pixel_y = 5; + pixel_x = -6 + }, +/obj/item/stock_parts/capacitor{ + pixel_y = -3; + pixel_x = -6 + }, +/obj/item/stock_parts/capacitor{ + pixel_y = -5; + pixel_x = -6 + }, +/obj/item/stock_parts/capacitor{ + pixel_y = -7; + pixel_x = -6 + }, +/obj/item/stock_parts/manipulator{ + pixel_y = -1; + pixel_x = 1 + }, +/obj/item/stock_parts/manipulator{ + pixel_y = -1; + pixel_x = 5 + }, +/obj/item/toy/figure/scientist{ + pixel_x = 1; pixel_y = 3 }, -/obj/item/stack/material/copper{ - amount = 25 +/obj/item/stock_parts/manipulator{ + pixel_y = -1; + pixel_x = 3 + }, +/obj/structure/closet/crate/nanotrasen, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_y = 3; + pixel_x = 2 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "mNC" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "mNJ" = ( /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "mNR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -81349,7 +82202,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "mNU" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -81365,7 +82218,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "mNZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -81374,7 +82227,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "mOh" = ( /obj/structure/cable/green{ d1 = 1; @@ -81397,7 +82250,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "mOj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -81405,7 +82258,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "mOp" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -81428,7 +82281,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "mOr" = ( /obj/effect/floor_decal/industrial/arrows/yellow{ dir = 1 @@ -81442,7 +82295,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) +"mOt" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "mOu" = ( /obj/structure/disposaloutlet{ dir = 8 @@ -81452,7 +82314,7 @@ }, /obj/structure/plasticflaps/mining, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "mOG" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -81460,25 +82322,29 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "mPe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "mPk" = ( /obj/structure/table/woodentable, /obj/item/clothing/under/dress/blacktango/alt, /obj/item/clothing/under/dress/blacktango, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "mPl" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "mPo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -81493,7 +82359,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "mPt" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 @@ -81503,7 +82369,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals9, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "mPF" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -81525,17 +82391,26 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "mPM" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "mQc" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) +"mQf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Star_Corridor) "mQg" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/westleft{ @@ -81558,17 +82433,23 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) +"mQh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "mQi" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "mQx" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "mQD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -81579,13 +82460,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "mQN" = ( /obj/structure/windoor_assembly{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "mQX" = ( /obj/structure/sign/nanotrasen, /turf/simulated/shuttle/wall/no_join{ @@ -81652,21 +82533,17 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "mRi" = ( -/obj/effect/floor_decal/borderfloor{ +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/structure/sign/poster/nanotrasen{ - dir = 8 +/obj/machinery/firealarm{ + pixel_y = 25; + name = "N-fire alarm" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/Port_2_Deck_Central_Corridor_1) "mRj" = ( /obj/structure/bed/chair/sofa/brown{ dir = 1; @@ -81676,24 +82553,20 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Lobby) -"mRD" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central2, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/security/Lobby) "mRM" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/spline/fancy{ dir = 9 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "mSd" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "mSi" = ( /obj/machinery/light{ dir = 8; @@ -81707,7 +82580,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "mSs" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -81716,7 +82589,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "mSu" = ( /mob/living/bot/mulebot{ faction = "nanotrasen" @@ -81732,7 +82605,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "mSB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -81744,10 +82617,10 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "mSD" = ( /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "mSG" = ( /obj/structure/cable/green{ d1 = 1; @@ -81766,18 +82639,18 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "mSI" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ color = "#989898"; dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "mSU" = ( /obj/effect/decal/cleanable/greenglow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "mTb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -81794,7 +82667,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "mTg" = ( /obj/item/instrument/violin/golden, /obj/structure/table/marble, @@ -81806,7 +82679,7 @@ health = 1e+006 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "mTn" = ( /obj/machinery/light{ dir = 8; @@ -81826,7 +82699,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "mTs" = ( /obj/machinery/camera/network/security{ c_tag = "D2-Car-Warehouse1"; @@ -81839,7 +82712,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "mTv" = ( /obj/structure/table/gamblingtable, /obj/machinery/alarm{ @@ -81847,12 +82720,12 @@ pixel_x = 22 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "mTy" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "mTC" = ( /obj/structure/cable/green{ d1 = 4; @@ -81861,13 +82734,13 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "mTK" = ( /obj/structure/loot_pile/maint/junk, /obj/random/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber1) +/area/maintenance/Deck2_Engineering_PortChamber1) "mTN" = ( /obj/structure/bed/chair/backed_red{ dir = 4 @@ -81879,10 +82752,10 @@ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "mTP" = ( /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "mTV" = ( /obj/structure/cable/green{ d1 = 2; @@ -81903,14 +82776,14 @@ pixel_y = 3 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "mUW" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "mUY" = ( /obj/machinery/power/apc{ dir = 8; @@ -81922,11 +82795,11 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "mVe" = ( /obj/structure/bed/chair/sofa/beige, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "mVr" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloorwhite{ @@ -81936,13 +82809,13 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "mVG" = ( /obj/structure/sign/warning/caution{ name = "\improper CAUTION: FIRING RANGE" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "mVL" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -81962,7 +82835,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "mVR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -81973,11 +82846,11 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "mVV" = ( /obj/structure/girder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "mWd" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -81990,7 +82863,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "mWi" = ( /obj/machinery/light{ dir = 1; @@ -82003,7 +82876,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "mWv" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -82012,7 +82885,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "mWD" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -82034,7 +82907,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "mWH" = ( /obj/effect/floor_decal/industrial/arrows{ dir = 4 @@ -82052,16 +82925,16 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "mWI" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "mXe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -82073,7 +82946,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "mXn" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -82082,10 +82955,10 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "mXo" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "mXs" = ( /obj/structure/closet/crate/secure/large/reinforced, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -82093,7 +82966,7 @@ /obj/fiftyspawner/glass, /obj/fiftyspawner/plastic, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "mXA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -82101,7 +82974,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "mXD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -82116,7 +82989,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "mXE" = ( /obj/structure/cable/green{ d1 = 1; @@ -82124,11 +82997,11 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "mXH" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "mXK" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor/corner{ @@ -82141,7 +83014,7 @@ dir = 10 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "mYD" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -82150,7 +83023,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "mYF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -82162,13 +83035,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "mYK" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "mYL" = ( /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "mYU" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -82177,26 +83050,26 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "mYV" = ( /obj/machinery/camera/network/security{ c_tag = "D2-Com-Star Foyer2"; network = list("Commons") }, -/turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/turf/simulated/floor/carpet/sblucarpet, +/area/hallway/Star_Transit_Foyer) "mZm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/catwalk_plated/techmaint, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/obj/structure/sign/poster/nanotrasen{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_1) "mZp" = ( /obj/machinery/light/small/emergency, /obj/structure/cable/white{ @@ -82207,7 +83080,7 @@ /obj/effect/catwalk_plated/white, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "mZG" = ( /obj/structure/table/rack, /obj/item/material/knife/machete/deluxe{ @@ -82234,7 +83107,7 @@ pixel_x = 2 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "mZJ" = ( /obj/effect/floor_decal/milspec/box, /obj/machinery/camera/network/security{ @@ -82243,7 +83116,7 @@ network = list("engineering") }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "mZR" = ( /obj/structure/urinal{ pixel_y = 28 @@ -82256,7 +83129,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "mZV" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -82273,7 +83146,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "naa" = ( /obj/structure/cable/green{ d1 = 2; @@ -82291,7 +83164,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "nah" = ( /obj/structure/cable/green{ d1 = 1; @@ -82299,29 +83172,29 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "nai" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "naj" = ( /obj/machinery/portable_atmospherics/canister, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "nak" = ( /obj/structure/bookcase/bookcart, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "naz" = ( /obj/structure/closet/wardrobe/medic_white, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "naC" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -82334,7 +83207,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "naD" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/disposalpipe/segment{ @@ -82347,7 +83220,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "naZ" = ( /obj/structure/cable/green{ d1 = 1; @@ -82368,14 +83241,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "nbj" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "nbk" = ( /obj/structure/bed/chair{ dir = 1 @@ -82387,7 +83260,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "nbw" = ( /obj/machinery/light{ dir = 8; @@ -82400,33 +83273,16 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "nbA" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "nbK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) -"nbT" = ( -/obj/structure/sign/directions/medical{ - dir = 4; - layer = 3.5 - }, -/obj/structure/sign/directions/science{ - dir = 4; - layer = 3.5; - pixel_y = 9 - }, -/obj/structure/sign/directions/command{ - pixel_y = -9; - dir = 1; - layer = 3.5 - }, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/area/maintenance/Security_Substation) "nca" = ( /obj/structure/cable/green{ d1 = 4; @@ -82455,7 +83311,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "nce" = ( /obj/structure/cable{ d1 = 4; @@ -82465,13 +83321,13 @@ /obj/random/trash, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "ncm" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "ncB" = ( /obj/structure/cable/green{ d1 = 4; @@ -82479,7 +83335,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "ncC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -82488,7 +83344,7 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "ncQ" = ( /obj/machinery/light{ dir = 4; @@ -82505,7 +83361,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "ncU" = ( /obj/structure/dispenser/oxygen, /obj/machinery/firealarm{ @@ -82520,47 +83376,20 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "nds" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8; color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) -"ndC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/crew_quarters/Holodeck) "ndY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/carpet/purple, -/area/SouthernCrossV2/Science/RD_Office) -"ndZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/catwalk_plated/techmaint, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/area/rnd/RD_Office) "nev" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -82574,7 +83403,25 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) +"nex" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/Reception) "nfc" = ( /obj/structure/cable/green{ d1 = 1; @@ -82589,7 +83436,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) +"nfq" = ( +/obj/machinery/light{ + dir = 4; + name = "1E-light fixture" + }, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_1) "ngb" = ( /obj/machinery/papershredder, /obj/machinery/disposal/wall{ @@ -82604,7 +83458,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "ngh" = ( /obj/structure/cable/green{ d1 = 1; @@ -82616,7 +83470,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "ngl" = ( /obj/structure/cable{ d1 = 1; @@ -82630,18 +83484,18 @@ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "ngC" = ( /obj/random/medical/pillbottle, /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "ngD" = ( /obj/machinery/doorbell_chime{ id_tag = "sc-ChimeEng" }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "ngE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -82656,7 +83510,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "ngT" = ( /obj/machinery/alarm{ dir = 8; @@ -82665,13 +83519,13 @@ /obj/structure/table/standard, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "ngV" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber2) +/area/maintenance/Deck2_Engineering_ForStarChamber2) "nhc" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -82694,7 +83548,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "nhq" = ( /obj/structure/cable/green{ d1 = 1; @@ -82713,7 +83567,7 @@ dir = 5 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "nhs" = ( /obj/machinery/light{ dir = 8; @@ -82735,7 +83589,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "nhx" = ( /obj/structure/cable/green{ d1 = 2; @@ -82746,7 +83600,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "nhI" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -82761,14 +83615,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) -"nhM" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/security/Prison_Wing) "nhO" = ( /obj/item/stool/padded{ dir = 1 @@ -82784,7 +83631,7 @@ dir = 1 }, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "nia" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/door/blast/angled/open{ @@ -82794,7 +83641,7 @@ name = "Lockdown Gate" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "niD" = ( /obj/item/storage/box/lights/mixed{ pixel_x = 8; @@ -82822,16 +83669,15 @@ pixel_x = 7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "niK" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/machinery/light{ + name = "1S-light fixture" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "niZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -82851,7 +83697,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "njh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -82859,7 +83705,7 @@ dir = 6 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "njj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -82880,10 +83726,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "njG" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "nku" = ( /obj/structure/cable{ d1 = 1; @@ -82896,7 +83742,7 @@ dir = 6 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "nkv" = ( /obj/effect/catwalk_plated/white, /obj/structure/cable/white{ @@ -82906,7 +83752,7 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "nkE" = ( /obj/structure/cable/green{ d1 = 2; @@ -82918,13 +83764,13 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "nkY" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "nlp" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -82935,11 +83781,11 @@ pixel_y = -9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "nlH" = ( /obj/effect/floor_decal/spline/fancy, -/turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/turf/simulated/floor/carpet/sblucarpet, +/area/hallway/Star_Transit_Foyer) "nmp" = ( /obj/structure/cable{ d1 = 1; @@ -82954,7 +83800,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "nmN" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -82962,16 +83808,16 @@ id = "sc-WTvroom" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "nmR" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/red/border{ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "nns" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -83002,7 +83848,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "nnD" = ( /obj/machinery/light/small{ dir = 4 @@ -83011,10 +83857,10 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "nnG" = ( /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "nnN" = ( /obj/machinery/light{ dir = 8; @@ -83026,12 +83872,12 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "noj" = ( /obj/structure/table/woodentable, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "noo" = ( /obj/structure/sign/directions/security{ pixel_y = 9; @@ -83048,12 +83894,12 @@ layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "nor" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/suit_cycler/refit_only, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "nou" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -83074,7 +83920,7 @@ pixel_x = -30 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "noK" = ( /obj/effect/floor_decal/corner_techfloor_gray{ dir = 10 @@ -83085,19 +83931,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/VR) -"noZ" = ( -/obj/machinery/light/floortube{ - pixel_y = -2 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/crew_quarters/VR) "npa" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 4 @@ -83115,7 +83949,7 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "npg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -83126,13 +83960,13 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "npz" = ( /obj/item/gun/launcher/confetti_cannon, /obj/random/trash, /obj/item/toy/colorballoon, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "npI" = ( /obj/machinery/alarm{ pixel_y = 25 @@ -83142,31 +83976,38 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) +"npV" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/Star_2_Deck_Central_Corridor_1) "npW" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "nqk" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "nql" = ( /obj/machinery/organ_printer/flesh/full, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "nqn" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "nqt" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -83179,7 +84020,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "nqu" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -83188,7 +84029,15 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) +"nqB" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/machinery/light{ + dir = 1; + name = "1N-lighting fixture" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/Chomp_Kitchen) "nqD" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -83200,60 +84049,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) -"nqK" = ( -/obj/item/storage/box/lights/mixed{ - pixel_x = 8; - pixel_y = 11 - }, -/obj/item/storage/box/lights/mixed{ - pixel_x = 8; - pixel_y = 22 - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = -7; - pixel_y = 11 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/radio{ - pixel_x = -11; - pixel_y = -1 - }, -/obj/item/radio{ - pixel_x = -8; - pixel_y = -1 - }, -/obj/item/radio{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/radio{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/storage/briefcase/inflatable{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/storage/briefcase/inflatable{ - pixel_x = 8; - pixel_y = -5 - }, -/obj/structure/table/steel, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/area/rnd/Toxins_Storage) "nqW" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "nqY" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -83270,7 +84072,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "nrd" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -83279,7 +84081,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "nrg" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/effect/floor_decal/borderfloorwhite{ @@ -83289,7 +84091,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "nrm" = ( /obj/structure/toilet{ dir = 4 @@ -83309,13 +84111,13 @@ specialfunctions = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "nrr" = ( /obj/machinery/vending/sol, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "nrK" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -83323,10 +84125,10 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "nsm" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "nsw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -83341,7 +84143,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "nsN" = ( /obj/machinery/firealarm{ dir = 8; @@ -83357,7 +84159,7 @@ dir = 6 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "nsR" = ( /obj/structure/cable{ d1 = 1; @@ -83379,26 +84181,22 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "nsS" = ( -/obj/machinery/shield_capacitor{ - dir = 8 - }, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/camera/network/security{ dir = 8; c_tag = "D2-Eng-Substation Domicile1"; network = list("engineering") }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" +/obj/machinery/shield_capacitor{ + dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "nsT" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "nti" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -83416,7 +84214,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "ntq" = ( /obj/structure/cable{ d1 = 4; @@ -83433,7 +84231,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "ntu" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -83442,20 +84240,21 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "nty" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/kafel_full/red, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "ntH" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "ntX" = ( /obj/structure/bed/chair/sofa/corner/brown{ - dir = 8 + dir = 8; + pixel_y = 5 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -83466,7 +84265,7 @@ dir = 6 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "ntZ" = ( /obj/structure/cable/green{ d1 = 1; @@ -83480,7 +84279,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "nub" = ( /obj/structure/cable/green{ d1 = 2; @@ -83498,8 +84297,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/floor_decal/steeldecal/monofloor{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "nul" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -83510,7 +84312,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "nus" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -83519,7 +84321,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "nuu" = ( /obj/structure/cable{ d1 = 4; @@ -83527,7 +84329,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "nuw" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -83542,14 +84344,14 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber1) +/area/maintenance/Deck2_Engineering_PortChamber1) "nuB" = ( /obj/machinery/atmospherics/pipe/tank/air/full{ dir = 4 }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "nuH" = ( /obj/machinery/bodyscanner{ dir = 8 @@ -83557,7 +84359,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "nuJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -83566,13 +84368,13 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "nve" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "nvh" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, @@ -83591,7 +84393,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "nvu" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -83600,7 +84402,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "nvS" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -83624,14 +84426,14 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "nvX" = ( /obj/structure/table/wooden_reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "nwc" = ( /obj/structure/table/glass, /obj/machinery/computer/security/telescreen/entertainment{ @@ -83643,7 +84445,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "nwn" = ( /obj/structure/undies_wardrobe, /obj/item/towel/random{ @@ -83664,7 +84466,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "nws" = ( /obj/effect/floor_decal/carpet{ dir = 8 @@ -83673,12 +84475,8 @@ /obj/effect/floor_decal/carpet{ dir = 10 }, -/obj/machinery/status_display{ - name = "W-status display"; - pixel_x = -32 - }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "nwW" = ( /obj/structure/cable/green{ d1 = 4; @@ -83689,7 +84487,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "nxa" = ( /obj/structure/cable/green{ d1 = 4; @@ -83699,7 +84497,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "nxp" = ( /obj/structure/cable/green{ d1 = 1; @@ -83709,14 +84507,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "nxz" = ( /obj/structure/inflatable, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "nxC" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "nxR" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -83726,7 +84524,7 @@ network = list("Science") }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "nxW" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -83746,21 +84544,21 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "nyb" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarCorridor1) +/area/maintenance/Deck2_Cargo_AftStarCorridor1) "nye" = ( /obj/random/trash, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "nyH" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "nyO" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -83782,7 +84580,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "nzl" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -83791,7 +84589,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "nzm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/effect/catwalk_plated/techmaint, @@ -83799,7 +84597,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "nzJ" = ( /obj/machinery/light/small, /obj/structure/cable/green{ @@ -83812,7 +84610,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "nzL" = ( /obj/structure/closet/crate, /obj/random/maintenance/cargo, @@ -83820,44 +84618,19 @@ /obj/random/maintenance/engineering, /obj/random/maintenance/medical, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) -"nzQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/industrial/hatch/blue, -/obj/structure/grille, -/obj/structure/window/basic/full, -/obj/structure/window/basic, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic{ +/area/maintenance/ab_TeshDen) +"nzV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/arrows/yellow, +/obj/effect/floor_decal/industrial/arrows/yellow{ dir = 1 }, -/obj/structure/window/basic{ - dir = 4 +/obj/machinery/door/airlock/maintenance/engi{ + name = "Domicile Air Distribution"; + req_one_access = null }, -/obj/structure/sign/department/biblio{ - layer = 3.5; - desc = "Sign of some important station compartment." - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) -"nzV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/security{ - dir = 5; - c_tag = "D2-Com-Aft Corridor3"; - network = list("Commons") - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/Distro_Civilian) "nAe" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -83866,16 +84639,16 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "nAI" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, -/obj/effect/floor_decal/corner/green/border{ +/obj/effect/floor_decal/corner/orange/border{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "nAM" = ( /obj/structure/railing/grey{ color = "yellow" @@ -83885,40 +84658,32 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "nAW" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/boxing{ name = "yoga mat" }, -/area/SouthernCrossV2/Domicile/Gym) -"nBh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/crew_quarters/Gym) "nBk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "nBx" = ( /obj/machinery/portable_atmospherics/powered/pump, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "nBB" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "nBE" = ( /obj/machinery/firealarm{ dir = 4; @@ -83937,20 +84702,20 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "nBK" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForStar_Chamber) +/area/maintenance/Deck2_Security_ForStar_Chamber) "nCf" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "nCr" = ( /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "nCC" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 1"; @@ -83958,11 +84723,11 @@ }, /obj/item/radio/headset, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "nCE" = ( /obj/structure/smolebuilding/museum, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "nCH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -83971,7 +84736,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "nCU" = ( /obj/structure/table/bench/glass, /obj/structure/flora/pottedplant/dead{ @@ -83980,7 +84745,7 @@ desc = "This is the dried up remains of a dead plant. It has various bite marks." }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "nCV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor{ @@ -83990,13 +84755,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "nDk" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "nDn" = ( /obj/effect/floor_decal/chapel{ dir = 1 @@ -84011,7 +84776,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "nDs" = ( /obj/structure/cable/green{ d1 = 4; @@ -84028,7 +84793,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "nDx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -84038,36 +84803,18 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) -"nDA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, +/area/maintenance/Deck2_AftPort_Corridor) +"nDH" = ( /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) -"nDH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_1) "nDN" = ( /obj/structure/closet/secure_closet/medical2, /obj/machinery/alarm{ @@ -84077,24 +84824,29 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "nDR" = ( /obj/structure/disposalpipe/sortjunction/wildcard/flipped{ dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "nDS" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) -"nEh" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/area/hallway/Star_2_Deck_Central_Corridor_1) +"nDU" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/floor_decal/borderfloor{ @@ -84103,8 +84855,11 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, +/obj/machinery/light/floortube{ + pixel_y = -2 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_1) "nEy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloor{ @@ -84114,7 +84869,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "nEQ" = ( /obj/effect/catwalk_plated, /obj/structure/cable/green{ @@ -84124,7 +84879,7 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "nES" = ( /obj/machinery/vending/tool, /obj/machinery/requests_console{ @@ -84138,37 +84893,19 @@ /obj/effect/floor_decal/corner/lightorange/border{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) -"nFa" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 8 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/turf/simulated/floor/tiled/dark, +/area/engineering/Engineering_Workshop) "nFc" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) -"nFE" = ( -/obj/item/radio/intercom{ - dir = 1; - name = "1N-Station Intercom (General)"; - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner{ - dir = 1 - }, -/obj/machinery/light/floortube{ - pixel_y = -2 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Stairwell_Port) "nFF" = ( /obj/structure/cable/white{ d1 = 2; @@ -84176,10 +84913,23 @@ icon_state = "2-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "nFH" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) +"nFJ" = ( +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) +"nFV" = ( +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "nGa" = ( /obj/structure/cable/green{ d1 = 1; @@ -84196,7 +84946,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "nGq" = ( /obj/structure/bed/chair/backed_red, /obj/machinery/light{ @@ -84210,7 +84960,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "nGr" = ( /obj/structure/closet/crate/medical, /obj/item/storage/firstaid/regular{ @@ -84270,7 +85020,7 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "nGQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -84288,7 +85038,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "nGT" = ( /obj/structure/cable/green{ d1 = 1; @@ -84316,7 +85066,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "nHe" = ( /obj/structure/bed/chair/bay/shuttle, /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ @@ -84327,21 +85077,41 @@ }, /turf/simulated/shuttle/floor/white, /area/shuttle/large_escape_pod4/station) -"nHH" = ( +"nHf" = ( /obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/holoposter{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) +"nHH" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_1) "nHJ" = ( /obj/machinery/atmospherics/binary/pump, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "nHY" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -84361,7 +85131,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "nIs" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -84373,7 +85143,15 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) +"nID" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "nIJ" = ( /obj/structure/cable{ d1 = 4; @@ -84386,41 +85164,40 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "nIW" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4; color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "nJa" = ( /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "nJh" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "nJA" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "nJD" = ( -/obj/machinery/atmospherics/valve/shutoff{ - name = "Domicile automatic shutoff valve" - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, +/area/maintenance/Distro_Civilian) "nJS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -84431,7 +85208,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood/corner, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "nJW" = ( /obj/machinery/mass_driver{ dir = 4; @@ -84442,26 +85219,7 @@ pixel_y = 22 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) -"nJX" = ( -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -3 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/crew_quarters/Chapel_Morgue) "nKk" = ( /obj/machinery/alarm{ dir = 4; @@ -84474,21 +85232,28 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "nKp" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "nKE" = ( /obj/structure/sign/painting/public, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "nKK" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) +"nKM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "nKR" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -84514,12 +85279,12 @@ dir = 9 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "nKW" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "nMi" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloorblack{ @@ -84537,31 +85302,21 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "nMj" = ( /obj/structure/table/marble, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, +/obj/machinery/cash_register/civilian, /obj/machinery/door/blast/gate/thin{ id = "sc-GCcoffeeshop"; layer = 3.3; - name = "Coffee-Shop Shutters" + name = "Coffee-Shop Shutters"; + dir = 2 }, -/obj/machinery/cash_register/civilian, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Library_Cafe) -"nMm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/crew_quarters/Library_Cafe) "nMn" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/northleft{ @@ -84592,11 +85347,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "nMv" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "nMJ" = ( /obj/structure/cable/green{ d1 = 1; @@ -84608,7 +85363,11 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) +"nMO" = ( +/obj/effect/floor_decal/spline/plain/corner, +/turf/simulated/floor/tiled/hydro, +/area/hallway/Central_2_Deck_Hall) "nMP" = ( /obj/structure/cable/green{ d1 = 1; @@ -84625,7 +85384,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "nNe" = ( /obj/structure/cable/green{ d1 = 1; @@ -84636,14 +85395,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) +/area/maintenance/Deck2_Science_ForCorridor1) "nNj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 8 }, @@ -84654,14 +85407,14 @@ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "nNA" = ( /obj/structure/bed/chair/wood/wings{ color = "#004b9a"; dir = 8 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "nNC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -84670,7 +85423,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "nNE" = ( /obj/structure/bed/chair/office/light, /obj/structure/cable/green{ @@ -84679,7 +85432,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "nNK" = ( /obj/structure/cable/green{ d1 = 1; @@ -84691,7 +85444,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "nNL" = ( /obj/structure/table/glass, /obj/item/reagent_containers/food/drinks/textmug{ @@ -84703,17 +85456,20 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) +"nOk" = ( +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/Warehouse) "nOp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "nOv" = ( /obj/structure/bed/chair/sofa/right, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "nOA" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -84722,17 +85478,22 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "nOM" = ( /obj/random/trash, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/wood/broken, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "nOO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "nOT" = ( /obj/machinery/light{ dir = 1; @@ -84746,7 +85507,7 @@ dir = 1 }, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "nPc" = ( /obj/machinery/power/apc{ dir = 4; @@ -84777,7 +85538,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "nPL" = ( /obj/structure/table/bench/sifwooden, /obj/machinery/light{ @@ -84791,7 +85552,7 @@ }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "nPX" = ( /obj/item/radio/intercom{ dir = 8; @@ -84805,7 +85566,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "nQc" = ( /obj/structure/cable/green{ d1 = 4; @@ -84813,7 +85574,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "nQk" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -84845,27 +85606,29 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "nQl" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ +/obj/effect/floor_decal/corner/paleblue/bordercorner{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "nQn" = ( /obj/structure/table/glass, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/black/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "nQK" = ( -/obj/structure/sign/clock, -/turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain, +/obj/structure/flora/lily1, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_2) "nRt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -84877,7 +85640,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "nRx" = ( /obj/machinery/button/doorbell{ id = "sc-ChimeEng"; @@ -84890,21 +85653,30 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "nRA" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/green/border, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light_switch{ + pixel_x = 11; + pixel_y = -27; + name = "S-light switch"; + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "nRN" = ( /obj/structure/cable/green{ d1 = 4; @@ -84925,13 +85697,13 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "nRU" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "nSa" = ( /obj/effect/floor_decal/stairs{ dir = 1 @@ -84945,7 +85717,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "nSd" = ( /obj/structure/bed/chair/sofa/left/brown{ dir = 4; @@ -84955,11 +85727,11 @@ dir = 8 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "nSe" = ( /obj/structure/table/woodentable, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "nSh" = ( /obj/effect/floor_decal/stairs{ dir = 4 @@ -84968,10 +85740,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "nSu" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "nSw" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -84992,7 +85764,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "nSy" = ( /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, @@ -85001,7 +85773,7 @@ network = list("Domicile") }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "nSC" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -85027,7 +85799,7 @@ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "nSF" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ @@ -85045,7 +85817,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "nSJ" = ( /obj/structure/bed/chair/wood/wings{ color = "#004b9a"; @@ -85068,7 +85840,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "nSM" = ( /obj/structure/cable/green{ d1 = 1; @@ -85089,14 +85861,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "nST" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "nSV" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -85105,10 +85877,18 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "nSZ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) +"nTE" = ( +/obj/structure/table/marble, +/obj/structure/sink/countertop{ + pixel_y = 9 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "nUb" = ( /obj/structure/table/reinforced, /obj/machinery/photocopier/faxmachine{ @@ -85122,7 +85902,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "nUh" = ( /obj/structure/railing/grey{ color = "yellow" @@ -85138,26 +85918,30 @@ name = "Lockdown Gate" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber1) +/area/maintenance/Deck2_Engineering_ForStarChamber1) "nUk" = ( /obj/machinery/light/small, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "nUC" = ( /obj/structure/bed/chair/bay/chair/padded/red/smallnest, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) +"nUR" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/hallway/Central_2_Deck_Hall) "nUY" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Corridor) +/area/maintenance/Deck2_Science_ForPort_Corridor) "nVp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "nVx" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/structure/cable{ @@ -85174,14 +85958,14 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "nVF" = ( /obj/structure/sign/department/eng{ layer = 3.5; desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "nVR" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 @@ -85190,7 +85974,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "nVW" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -85202,14 +85986,14 @@ id_tag = "sc-DBSstall1" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "nVY" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ color = "#989898"; dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "nWi" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -85222,7 +86006,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "nWC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -85236,7 +86020,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "nWF" = ( /obj/structure/ladder{ pixel_y = 3 @@ -85253,7 +86037,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Chamber) +/area/maintenance/Deck2_Science_ForPort_Chamber) "nWH" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -85280,14 +86064,14 @@ pixel_x = -22 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "nWI" = ( /obj/machinery/light/small{ dir = 4 }, /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "nWL" = ( /obj/effect/floor_decal/borderfloor, /obj/structure/cable{ @@ -85303,7 +86087,7 @@ }, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "nWN" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atm{ @@ -85323,7 +86107,7 @@ }, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "nWR" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, @@ -85343,7 +86127,7 @@ }, /obj/structure/sign/poster/nanotrasen, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "nXa" = ( /obj/structure/cable/green{ d1 = 1; @@ -85357,7 +86141,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "nXl" = ( /obj/machinery/station_map{ dir = 1; @@ -85382,12 +86166,36 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "nXv" = ( /obj/random/junk, +/obj/random/trash_pile, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "nXE" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_1) +"nXM" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Security Substation Bypass" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/maintenance/Security_Substation) +"nXR" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/dark, +/area/rnd/Testing_Lab) +"nXS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -85397,20 +86205,11 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) -"nXM" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Security Substation Bypass" +/obj/machinery/alarm{ + pixel_y = 25 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) -"nXR" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "nYf" = ( /obj/structure/cable/green{ d1 = 4; @@ -85427,14 +86226,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "nYh" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ color = "#989898"; dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "nYj" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -85451,7 +86250,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "nYo" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -85460,7 +86259,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "nYu" = ( /obj/structure/cable{ d1 = 4; @@ -85477,7 +86276,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "nYw" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/red{ @@ -85492,13 +86291,13 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "nYy" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "nYE" = ( /obj/structure/cable{ d1 = 1; @@ -85512,7 +86311,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "nYH" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -85520,7 +86319,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "nYU" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -85536,7 +86335,7 @@ name = "EngiCargo Foyer" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "nZf" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -85550,7 +86349,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "nZg" = ( /obj/structure/cable/green{ d1 = 1; @@ -85562,7 +86361,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "nZi" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -85574,7 +86373,7 @@ }, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "nZj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -85591,7 +86390,7 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "nZm" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, @@ -85603,7 +86402,17 @@ }, /obj/machinery/shield_diffuser, /turf/space, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) +"nZo" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/flora/lily2, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_1) "nZr" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 8 @@ -85612,7 +86421,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "nZs" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -85621,18 +86430,18 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "nZx" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "nZy" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "nZA" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -85643,7 +86452,7 @@ name = "Medbay" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "nZD" = ( /obj/structure/table/rack{ dir = 8; @@ -85660,7 +86469,7 @@ pixel_y = -22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "nZM" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -85671,13 +86480,13 @@ }, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "nZY" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/purple{ dir = 8 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "oaz" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -85694,7 +86503,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "oaL" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -85706,7 +86515,7 @@ id_tag = "sc-DBSstall3" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "oaS" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -85715,7 +86524,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "oaV" = ( /obj/fiftyspawner/wood, /obj/fiftyspawner/wood, @@ -85740,7 +86549,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "obf" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/alarm{ @@ -85749,15 +86558,10 @@ }, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "obg" = ( /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Gym) -"obp" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/crew_quarters/Gym) "obG" = ( /obj/item/uav/loaded, /obj/structure/table/rack/shelf, @@ -85769,7 +86573,7 @@ pixel_x = -32 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "obP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -85786,7 +86590,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "oce" = ( /obj/structure/shuttle/engine/propulsion{ dir = 8; @@ -85816,16 +86620,16 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "ocn" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "oct" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "ocx" = ( /obj/structure/cable{ d1 = 2; @@ -85845,7 +86649,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "ocF" = ( /obj/structure/cable{ d1 = 4; @@ -85857,9 +86661,9 @@ icon_state = "pipe-c" }, /obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "ocG" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -85875,7 +86679,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "ocK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -85890,7 +86694,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "ocQ" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/bathrobe, @@ -85913,26 +86717,34 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) +"ocV" = ( +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_PortChamber2) "ode" = ( /obj/structure/sign/securearea{ icon_state = "restroom"; desc = "A warning sign which reads 'Restroom'." }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "odi" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "odm" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "odq" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 @@ -85941,33 +86753,34 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "odO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "odS" = ( /obj/structure/bed/chair/sofa/left/brown{ - dir = 1 + dir = 1; + pixel_y = 5 }, /obj/structure/window/basic, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "oef" = ( /obj/effect/spider/stickyweb/dark, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "oel" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ color = "#989898"; dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "oev" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -85976,7 +86789,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "oew" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -85984,7 +86797,7 @@ id = "sc-WTmedbay" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "oez" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -85996,7 +86809,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "oeC" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 6 @@ -86005,7 +86818,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "oeI" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -86017,7 +86830,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "ofa" = ( /obj/structure/cable/green{ d1 = 4; @@ -86037,7 +86850,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "ofv" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -86046,7 +86859,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "ofw" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -86055,14 +86868,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "ofF" = ( /obj/structure/sign/directions/cryo{ pixel_y = 9; dir = 1 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "ofH" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -86071,7 +86884,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "ofW" = ( /obj/structure/cable/green{ d1 = 1; @@ -86084,11 +86897,14 @@ /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, -/obj/effect/floor_decal/corner/white/bordercorner{ +/obj/effect/floor_decal/corner/purple/bordercorner{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) +"ogh" = ( +/turf/simulated/floor/grass, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "ogv" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -86110,7 +86926,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "ogA" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -86137,12 +86953,12 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "ogF" = ( /obj/structure/closet/emcloset, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_PortCorridor1) +/area/maintenance/Deck2_Security_PortCorridor1) "ogH" = ( /obj/structure/window/basic{ dir = 4 @@ -86151,18 +86967,18 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "ogJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ +/obj/effect/floor_decal/corner/brown/bordercorner{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "ogM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -86174,12 +86990,12 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "ogN" = ( /turf/simulated/floor/boxing{ name = "yoga mat" }, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "ogQ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -86191,17 +87007,17 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "ogR" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Chamber) +/area/maintenance/Deck2_Science_ForPort_Chamber) "ogV" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "ogX" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -86210,33 +87026,39 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "ohe" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) +"ohh" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_2) "ohk" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "oht" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "ohC" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "ohD" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "ohF" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -86265,7 +87087,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) +"ohK" = ( +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/hallway/Central_2_Deck_Hall) "ohP" = ( /obj/structure/closet{ name = "Evidence Closet"; @@ -86282,14 +87110,14 @@ }, /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "ohT" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "ohV" = ( /obj/structure/table/steel_reinforced, /obj/machinery/light{ @@ -86297,11 +87125,11 @@ }, /obj/item/mecha_parts/mecha_equipment/hardpoint_actuator, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "oie" = ( /obj/random/firstaid, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "oip" = ( /obj/structure/table/woodentable, /obj/item/starcaster_news, @@ -86313,12 +87141,12 @@ name = "1S-light fixture" }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "oiA" = ( /obj/structure/reagent_dispensers/foam, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "oiB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -86326,8 +87154,19 @@ dir = 1 }, /obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) +"oiG" = ( +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain, +/obj/structure/flora/lily3, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_2) "oiQ" = ( /obj/structure/shuttle/engine/heater{ dir = 4 @@ -86340,10 +87179,10 @@ "oiX" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "ojk" = ( /turf/simulated/floor/carpet/purple, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "ojy" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -86356,7 +87195,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "ojP" = ( /obj/item/module/power_control{ pixel_y = -6; @@ -86419,7 +87258,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "ojZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -86431,7 +87270,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "okh" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -86440,7 +87279,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "okj" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Security Subgrid"; @@ -86460,7 +87299,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "okt" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -86488,7 +87327,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "oku" = ( /obj/structure/bed/chair/sofa/corner/brown{ dir = 1 @@ -86502,7 +87341,7 @@ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "okw" = ( /obj/structure/ladder{ pixel_y = 3 @@ -86513,7 +87352,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortCorridor1) +/area/maintenance/Deck2_Medical_AftPortCorridor1) "okO" = ( /obj/structure/urinal{ dir = 8; @@ -86523,14 +87362,14 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "okR" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "okT" = ( /obj/structure/cable/green{ d1 = 4; @@ -86545,7 +87384,7 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "okZ" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 10 @@ -86554,11 +87393,11 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "olH" = ( /obj/effect/mist, /turf/simulated/floor/water/pool, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "oma" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -86567,27 +87406,27 @@ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/area/crew_quarters/Chomp_Kitchen) "omn" = ( /obj/structure/table/woodentable, /obj/machinery/light_construct{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "omq" = ( /obj/structure/table/standard, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "oms" = ( /obj/effect/floor_decal/spline/plain, /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "omx" = ( /obj/structure/cable/green{ d1 = 1; @@ -86595,8 +87434,14 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "omU" = ( /obj/structure/cable/green{ d1 = 1; @@ -86606,7 +87451,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "onb" = ( /obj/structure/closet/wardrobe/chaplain_black, /obj/machinery/firealarm{ @@ -86615,7 +87460,7 @@ dir = 1 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "onO" = ( /obj/structure/lattice, /obj/machinery/shield_diffuser, @@ -86624,23 +87469,29 @@ "oos" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "ooM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/structure/sign/directions/engineering{ + dir = 8; + layer = 3.5; + pixel_y = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 +/obj/structure/sign/directions/cargo{ + dir = 8; + layer = 3.5 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/structure/sign/directions/security{ + pixel_y = -9; + dir = 1; + layer = 3.5 }, -/obj/structure/sign/poster/nanotrasen{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/turf/simulated/wall, +/area/crew_quarters/Office_Lounge) +"ooV" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_AftPort_Corridor) "ooY" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -86665,10 +87516,10 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "opg" = ( /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "opk" = ( /obj/structure/cable/white{ d1 = 4; @@ -86678,7 +87529,7 @@ /obj/effect/catwalk_plated/white, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "opo" = ( /obj/structure/ladder{ pixel_y = 3 @@ -86689,27 +87540,21 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "ops" = ( -/obj/structure/cable{ +/obj/structure/foodcart, +/turf/simulated/floor/plating, +/area/crew_quarters/Chomp_Kitchen) +"opw" = ( +/obj/structure/lattice, +/obj/effect/catwalk_plated/techmaint, +/obj/structure/cable/white{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_PortChamber1) "opB" = ( /obj/structure/cable{ d2 = 4; @@ -86722,7 +87567,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/power/smes/batteryrack, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "opU" = ( /obj/structure/bed/padded, /obj/item/bedsheet/medical, @@ -86736,7 +87581,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "oqz" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -86747,20 +87592,30 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "oqA" = ( -/obj/structure/railing/grey{ - color = "yellow"; +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/turf/simulated/open, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 1; + name = "1N-Station Intercom (General)"; + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "oqB" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "oqZ" = ( /obj/structure/closet/toolcloset, /obj/random/flashlight, @@ -86779,7 +87634,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "orf" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ @@ -86796,7 +87651,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "org" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -86805,14 +87660,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "orB" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "orM" = ( /obj/machinery/iv_drip, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -86822,10 +87677,10 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "orP" = ( /turf/simulated/open, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "osg" = ( /obj/structure/bed/chair/sofa/brown{ dir = 1; @@ -86834,7 +87689,7 @@ /obj/structure/window/titanium, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "osh" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -86855,14 +87710,14 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "osp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "osw" = ( /obj/machinery/newscaster{ pixel_y = -30; @@ -86871,30 +87726,35 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/black/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "osN" = ( /obj/structure/sign/directions/command{ pixel_y = -9; - dir = 1; + dir = 5; layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "osT" = ( /obj/item/pack/cardemon, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "otd" = ( /obj/random/trash, /obj/effect/landmark{ name = "blobstart" }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "oth" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "otj" = ( /obj/structure/cable{ d1 = 2; @@ -86905,7 +87765,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "otk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -86914,13 +87774,13 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "otn" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "ots" = ( /obj/machinery/light{ dir = 8; @@ -86930,13 +87790,8 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "otv" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -86946,12 +87801,12 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor2) +/area/maintenance/Deck2_Science_StarCorridor2) "otO" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "oum" = ( /obj/structure/lattice, /obj/structure/railing/grey{ @@ -86962,11 +87817,13 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "oun" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_1) "ouo" = ( /obj/structure/closet/toolcloset, /obj/item/storage/box/lights/mixed, @@ -86982,7 +87839,7 @@ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "ouR" = ( /obj/structure/cable/green{ d1 = 1; @@ -86998,7 +87855,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "ouT" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1; @@ -87011,12 +87868,12 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "ouV" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "ovb" = ( /obj/structure/cable/green{ d1 = 1; @@ -87032,7 +87889,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "ovq" = ( /obj/structure/cable/green{ d1 = 1; @@ -87048,27 +87905,17 @@ }, /obj/effect/floor_decal/corner/beige/diagonal, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "ovw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/camera/network/security{ dir = 1; c_tag = "D2-Dmc-Chomp Dinner4"; network = list("Domicile") }, /obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/corner/green/border, -/obj/machinery/firealarm{ - dir = 1; - name = "S-fire alarm"; - pixel_y = -25 - }, +/obj/effect/floor_decal/corner/orange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "ovB" = ( /obj/structure/cable/green{ d1 = 1; @@ -87077,7 +87924,11 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) +"owj" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/Chomp_Kitchen) "owk" = ( /obj/effect/catwalk_plated/techfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -87091,13 +87942,13 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "owr" = ( /obj/effect/floor_decal/spline/fancy{ dir = 8 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "owt" = ( /obj/structure/cable/green{ d1 = 4; @@ -87114,13 +87965,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "owy" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "owB" = ( /obj/structure/cable/green{ d1 = 4; @@ -87142,7 +87993,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "owE" = ( /obj/structure/sign/directions/security/armory{ dir = 1 @@ -87152,7 +88003,7 @@ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "owO" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/sign/small/warning/emerg_only{ @@ -87160,7 +88011,7 @@ pixel_y = -32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "owZ" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -87170,7 +88021,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "oxg" = ( /obj/machinery/light{ dir = 8; @@ -87178,7 +88029,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "oxp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -87194,13 +88045,13 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "oxq" = ( /obj/structure/sign/directions/stairwell{ dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Cargo_StarChamber1) +/area/maintenance/Deck2_Cargo_StarChamber1) "oxz" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -87209,7 +88060,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "oxE" = ( /obj/machinery/disposal/wall/cleaner{ name = "1W-Resleeving lost & found bin"; @@ -87230,7 +88081,7 @@ pixel_x = -1 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "oxH" = ( /obj/structure/cable/green{ d1 = 2; @@ -87244,7 +88095,7 @@ dir = 6 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "oxN" = ( /obj/structure/cable/green{ d1 = 1; @@ -87265,11 +88116,11 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "oxO" = ( /obj/effect/landmark/event_spawn/morphspawn, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "oya" = ( /obj/structure/cable{ d1 = 1; @@ -87279,7 +88130,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "oyc" = ( /obj/machinery/power/apc{ dir = 1; @@ -87291,18 +88142,18 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortChamber1) +/area/maintenance/Deck2_Medical_AftPortChamber1) "oyi" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "oyk" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "oyA" = ( /obj/effect/floor_decal/industrial/danger{ dir = 4 @@ -87311,56 +88162,26 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "oyC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "oyM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) -"oyS" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/machinery/door/blast/regular/open{ - layer = 3.5; - id = "Star Lockdown"; - name = "Lockdown Gate"; - desc = "A heavily reinforced gate, sector lockdown!" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/angled_bay/double/glass/research{ - dir = 8; - req_access = null; - name = "Star Sector Science-Medical" - }, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) -"ozc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/machinery/appliance/mixer/candy, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) +"oza" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + regulate_mode = 0; + unlocked = 1 }, +/obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/area/maintenance/Distro_Civilian) "ozj" = ( /obj/effect/floor_decal/chapel{ dir = 4 @@ -87382,7 +88203,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/black/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "ozG" = ( /obj/structure/cable/green{ d1 = 1; @@ -87400,11 +88221,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "ozL" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "ozS" = ( /obj/structure/cable{ d1 = 1; @@ -87418,7 +88239,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "oAF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -87430,7 +88251,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "oBh" = ( /obj/machinery/light{ dir = 1; @@ -87444,7 +88265,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "oBo" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small, @@ -87455,7 +88276,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "oBs" = ( /obj/structure/cable/green{ d1 = 4; @@ -87472,7 +88293,19 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) +"oBS" = ( +/obj/machinery/pointdefense{ + id_tag = "PD Primary" + }, +/obj/structure/cable/white{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/catwalk_plated/white, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/plating/turfpack/airless, +/area/space) "oBT" = ( /obj/structure/cable/green{ d1 = 1; @@ -87481,7 +88314,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "oCj" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -87490,17 +88323,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) -"oCL" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "oCR" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -87514,20 +88337,27 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "oCS" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) -"oCX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 +/area/maintenance/Deck2_Security_ForCorridor1) +"oCW" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/turf/simulated/floor/tiled/hydro, +/area/hallway/Central_2_Deck_Hall) +"oCX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/techmaint, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_For_Corridor) "oDf" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -87536,7 +88366,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "oDg" = ( /obj/structure/table/steel_reinforced, /obj/item/gps/security{ @@ -87554,9 +88384,8 @@ /obj/item/gps/security{ pixel_x = 9 }, -/obj/item/tape{ - pixel_y = -4; - pixel_x = -4 +/obj/item/rectape{ + pixel_y = -3 }, /obj/item/taperecorder{ pixel_x = -10 @@ -87576,13 +88405,13 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "oDr" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "oDt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -87590,7 +88419,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "oDu" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/disposalpipe/segment{ @@ -87598,7 +88427,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber2) +/area/maintenance/Deck2_Engineering_ForStarChamber2) "oDw" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -87614,22 +88443,38 @@ dir = 9 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "oDy" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "oDD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, -/obj/machinery/holoposter{ - pixel_y = -32 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "oDE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -87646,14 +88491,14 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "oDZ" = ( /obj/machinery/iv_drip, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "oEb" = ( /obj/structure/bed/chair/comfy/black, /obj/machinery/light{ @@ -87665,7 +88510,7 @@ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "oEk" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -87673,11 +88518,11 @@ id = "sc-WTcargoreception" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "oEw" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortChamber1) +/area/maintenance/Deck2_Medical_AftPortChamber1) "oEG" = ( /obj/structure/cable/green{ d1 = 4; @@ -87688,14 +88533,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "oEN" = ( /obj/structure/table/rack, /obj/random/maintenance/research, /obj/random/maintenance/research, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "oEU" = ( /obj/item/reagent_containers/food/drinks/cup{ pixel_x = 8; @@ -87737,11 +88582,11 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "oEV" = ( /obj/effect/rune, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "oEW" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -87758,7 +88603,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "oEZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -87767,7 +88612,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "oFd" = ( /obj/structure/cable/green{ d1 = 1; @@ -87786,7 +88631,7 @@ dir = 5 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "oFM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -87802,14 +88647,14 @@ icon_state = "0-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "oGb" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "oGd" = ( /obj/structure/cable/green{ d1 = 1; @@ -87826,7 +88671,16 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) +"oGn" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "oGt" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -87836,7 +88690,7 @@ }, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "oGx" = ( /obj/structure/table/rack/shelf/steel, /obj/item/radio/off{ @@ -87880,29 +88734,29 @@ pixel_x = -4 }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "oGz" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "oGO" = ( /obj/machinery/light{ name = "1S-light fixture" }, +/obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/shuttle/loading{ - dir = 8; + dir = 4; color = "#00B8B2" }, -/obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "oHb" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "oHr" = ( /obj/structure/cable{ d1 = 4; @@ -87929,12 +88783,12 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "oHy" = ( /obj/random/instrument, /obj/structure/closet/cabinet, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "oHB" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/random{ @@ -87961,7 +88815,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForStar_Chamber) +/area/maintenance/Deck2_Security_ForStar_Chamber) "oHE" = ( /obj/structure/table/standard, /obj/item/storage/toolbox/electrical{ @@ -87975,7 +88829,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "oHM" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -87983,8 +88837,11 @@ /obj/effect/floor_decal/corner/lightgrey/bordercorner{ dir = 4 }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "oHP" = ( /obj/structure/table/standard, /obj/item/clothing/gloves/sterile/latex{ @@ -88007,12 +88864,12 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "oHZ" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "oIq" = ( /obj/structure/cable{ d1 = 1; @@ -88026,7 +88883,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "oIs" = ( /obj/structure/table/standard, /obj/item/sticky_pad/random{ @@ -88036,7 +88893,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "oIG" = ( /obj/structure/sign/directions/engineering/solars{ dir = 4; @@ -88050,7 +88907,7 @@ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "oIR" = ( /obj/structure/cable/green{ d1 = 1; @@ -88060,11 +88917,11 @@ /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, -/obj/effect/floor_decal/corner/green/border{ +/obj/effect/floor_decal/corner/orange/border{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "oIX" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -88101,12 +88958,12 @@ dir = 6 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "oJc" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_1) "oJi" = ( /obj/item/camera_film{ pixel_x = -7; @@ -88129,18 +88986,18 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "oJo" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "oJy" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "oJW" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -88153,7 +89010,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "oKd" = ( /obj/structure/bed/chair/sofa/corner/brown{ dir = 1; @@ -88164,7 +89021,7 @@ dir = 10 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "oKH" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -88173,19 +89030,19 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "oKS" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "oLw" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "oLx" = ( /obj/structure/cable/green{ d1 = 1; @@ -88202,7 +89059,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "oLK" = ( /obj/structure/cable/green{ d1 = 1; @@ -88210,7 +89067,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "oMf" = ( /obj/effect/floor_decal/chapel, /obj/effect/floor_decal/borderfloorblack{ @@ -88220,7 +89077,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "oMi" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -88230,7 +89087,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "oMm" = ( /obj/structure/cable/green{ d1 = 1; @@ -88245,7 +89102,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "oMv" = ( /obj/structure/cable/green{ d1 = 4; @@ -88257,13 +89114,13 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "oMw" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "oMz" = ( /obj/structure/cable/green{ d1 = 4; @@ -88274,7 +89131,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "oMG" = ( /obj/structure/cable/green{ d1 = 1; @@ -88283,19 +89140,19 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "oMI" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "oMQ" = ( /obj/structure/closet/secure_closet/engineering_electrical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "oMV" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "oMZ" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/techmaint, @@ -88305,7 +89162,7 @@ icon_state = "4-8" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "oNB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -88313,13 +89170,13 @@ /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "oNE" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "oNJ" = ( /obj/structure/bed/chair/bay/chair/padded/red/smallnest{ name = "Fluffy's bed" @@ -88339,12 +89196,12 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "oNL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "oNN" = ( /obj/structure/cable/green{ d1 = 1; @@ -88356,13 +89213,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) -"oNV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/rnd/Toxins_Mixing_Room) "oOp" = ( /obj/structure/cable/green{ d1 = 2; @@ -88376,7 +89227,7 @@ dir = 5 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "oOv" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -88385,7 +89236,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "oOB" = ( /obj/structure/bed/chair/sofa/left/brown{ dir = 1; @@ -88398,21 +89249,7 @@ /obj/structure/window/titanium, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) -"oOJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Star_Transit_Foyer) "oOS" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -88421,18 +89258,18 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "oOZ" = ( /obj/machinery/camera/network/security{ c_tag = "D2-Com-Star Corridor5"; network = list("Commons") }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "oPj" = ( /obj/effect/spider/stickyweb, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "oPy" = ( /obj/machinery/power/apc{ dir = 1; @@ -88450,7 +89287,7 @@ icon_state = "0-2" }, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "oPz" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -88481,7 +89318,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "oPJ" = ( /obj/structure/closet/secure_closet/cargotech, /obj/item/stamp/cargo, @@ -88492,10 +89329,19 @@ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) +"oPZ" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_1) "oQa" = ( /turf/simulated/floor/lino, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "oQd" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -88514,29 +89360,28 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "oQj" = ( /obj/structure/sign/painting/public, /turf/simulated/wall/wood, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "oQm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/structure/closet/emcloset, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/obj/machinery/light{ + dir = 1; + name = "1N-lighting fixture" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/hallway/Port_2_Deck_Central_Corridor_1) "oQz" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = -4 }, /turf/simulated/wall/wood, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "oQH" = ( /obj/structure/cable/green{ d1 = 1; @@ -88547,23 +89392,37 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) +"oRn" = ( +/obj/structure/lattice, +/obj/effect/catwalk_plated/techmaint, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_PortChamber1) "oRq" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "oRI" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "oRL" = ( /obj/machinery/floodlight, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "oRM" = ( /obj/structure/bed/chair/sofa/right/brown{ dir = 1; @@ -88576,11 +89435,11 @@ }, /obj/structure/window/titanium, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "oSe" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "oSr" = ( /obj/structure/bed/chair/sofa/brown{ dir = 1; @@ -88588,7 +89447,7 @@ }, /obj/structure/window/titanium, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "oSs" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -88609,7 +89468,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "oSt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -88617,13 +89476,13 @@ dir = 8 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "oSv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/area/crew_quarters/Chomp_Kitchen) "oSA" = ( /obj/item/radio/intercom{ name = "1S-Station Intercom (General)"; @@ -88633,20 +89492,30 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) +"oSF" = ( +/obj/machinery/holoposter{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/hallway/Star_2_Deck_Central_Corridor_2) "oSK" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/directions/evac, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "oTc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/junction/yjunction{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "oTe" = ( /obj/structure/shuttle/engine/propulsion{ dir = 8; @@ -88657,7 +89526,7 @@ "oTp" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "oTt" = ( /obj/machinery/power/apc{ dir = 1; @@ -88680,7 +89549,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "oTP" = ( /obj/structure/bed/chair/sofa/corner/brown{ dir = 8; @@ -88691,10 +89560,10 @@ dir = 6 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "oTZ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "oUw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -88708,7 +89577,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "oUx" = ( /obj/machinery/vending/wardrobe/bardrobe, /obj/machinery/light{ @@ -88716,7 +89585,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "oUC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -88734,7 +89603,7 @@ dir = 4 }, /turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "oUO" = ( /obj/structure/cable/green{ d1 = 2; @@ -88754,7 +89623,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) +/area/maintenance/Deck2_Science_ForCorridor1) "oVc" = ( /obj/structure/table/woodentable, /obj/machinery/light{ @@ -88762,11 +89631,11 @@ name = "1E-light fixture" }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "oVj" = ( /obj/effect/decal/remains/tajaran, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "oVk" = ( /obj/machinery/ai_status_display{ pixel_x = 32; @@ -88782,7 +89651,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "oVn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -88798,10 +89667,10 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "oVE" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "oVI" = ( /obj/machinery/power/apc{ dir = 8; @@ -88813,7 +89682,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "oVP" = ( /obj/machinery/button/remote/blast_door{ id = "sc-GCmechbay2"; @@ -88823,19 +89692,11 @@ req_one_access = list(47) }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "oVV" = ( -/obj/structure/sign/directions/bar{ - pixel_y = 9; - layer = 3.5 - }, -/obj/structure/sign/directions/dock{ - pixel_y = -9; - layer = 3.5 - }, -/obj/structure/sign/directions/recreation, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/hallway/Central_2_Deck_Hall) "oVW" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -88849,11 +89710,10 @@ /obj/machinery/door/airlock/angled_bay/double/color{ door_color = "#8c1d11"; name = "Stairwell"; - dir = 8; - req_one_access = list(5,1,11,24,19) + dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "oWb" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -88865,7 +89725,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "oWc" = ( /obj/machinery/light{ dir = 4; @@ -88881,28 +89741,13 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "oWk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/machinery/light/small{ + dir = 1 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "oWn" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -88911,7 +89756,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "oWC" = ( /obj/effect/floor_decal/chapel{ dir = 1 @@ -88921,7 +89766,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "oWJ" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -88930,7 +89775,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "oWS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -88939,14 +89784,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "oWW" = ( /obj/structure/table/woodentable, /obj/effect/floor_decal/carpet{ dir = 8 }, /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "oXc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -88958,7 +89803,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "oXt" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -88975,7 +89820,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "oXN" = ( /obj/structure/flora/pottedplant/decorative{ pixel_y = 10; @@ -88987,7 +89832,7 @@ name = "1N-NanoMed" }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "oXP" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -88996,7 +89841,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "oXV" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -89019,7 +89864,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "oYl" = ( /obj/machinery/alarm{ pixel_y = 25 @@ -89027,7 +89872,7 @@ /obj/machinery/portable_atmospherics/powered/scrubber, /obj/machinery/atmospherics/portables_connector, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "oYn" = ( /obj/structure/cable/green{ d1 = 1; @@ -89041,53 +89886,22 @@ icon_state = "pipe-j2" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "oYo" = ( -/obj/structure/table/steel, -/obj/item/clamp{ - pixel_y = -3; - pixel_x = -7 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/item/clamp{ - pixel_x = -7 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/item/clamp{ - pixel_y = 3; - pixel_x = -7 - }, -/obj/item/clamp{ - pixel_y = 6; - pixel_x = -7 - }, -/obj/item/clamp{ - pixel_y = 9; - pixel_x = -7 - }, -/obj/item/clothing/mask/gas{ - pixel_y = -5; - pixel_x = 6 - }, -/obj/item/clothing/mask/gas{ - pixel_y = -2; - pixel_x = 7 - }, -/obj/item/clothing/mask/gas{ - pixel_y = 1; - pixel_x = 8 - }, -/obj/item/taperoll/atmos{ - pixel_y = 12; - pixel_x = 8 - }, -/obj/item/taperoll/atmos{ - pixel_y = 14; - pixel_x = 6 - }, -/obj/item/t_scanner{ - pixel_y = 6 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/maintenance/Deck2_Aft_Corridor) "oYz" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -89116,13 +89930,13 @@ id = "sc-GCsecmedpost" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "oYQ" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "oZk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -89135,7 +89949,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "oZp" = ( /obj/structure/cable/green{ d1 = 2; @@ -89157,7 +89971,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "oZx" = ( /obj/structure/cable/green{ d1 = 4; @@ -89179,11 +89993,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "oZz" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "oZG" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -89192,7 +90006,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "oZI" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -89200,11 +90014,17 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "oZL" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "oZN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -89216,7 +90036,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "oZU" = ( /obj/structure/table/glass, /obj/item/reagent_containers/glass/beaker/cryoxadone{ @@ -89241,7 +90061,7 @@ pixel_y = 22 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "oZW" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -89255,7 +90075,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarChamber1) +/area/maintenance/Deck2_Cargo_AftStarChamber1) "pab" = ( /obj/structure/cable/green{ d1 = 4; @@ -89272,7 +90092,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "pac" = ( /obj/structure/closet/coffin, /obj/machinery/door/window/northleft{ @@ -89280,7 +90100,7 @@ req_access = list(27) }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "paB" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -89289,12 +90109,18 @@ dir = 4 }, /obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "paJ" = ( /obj/machinery/ai_status_display, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "paU" = ( /obj/structure/cable/green{ d1 = 1; @@ -89321,7 +90147,7 @@ req_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "paW" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 6 @@ -89330,12 +90156,12 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "pba" = ( /obj/structure/table/standard, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "pbb" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -89367,13 +90193,13 @@ dir = 8 }, /turf/simulated/floor/carpet/purple, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "pbh" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "pbi" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -89390,7 +90216,7 @@ }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "pby" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 @@ -89399,13 +90225,13 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "pbD" = ( /obj/random/trash, /obj/random/junk, /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber1) +/area/maintenance/Deck2_Engineering_PortChamber1) "pbP" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -89430,7 +90256,7 @@ name = "lightsout" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "pbX" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -89440,8 +90266,26 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) +"pcs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Corridor_1) "pcG" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -89449,7 +90293,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "pcH" = ( /obj/structure/window/reinforced/tinted/frosted{ dir = 4 @@ -89459,7 +90303,7 @@ dir = 1 }, /turf/simulated/floor/carpet/brown/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "pcO" = ( /obj/structure/cable/green{ d1 = 1; @@ -89472,7 +90316,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "pcW" = ( /obj/structure/cable{ d1 = 1; @@ -89483,7 +90327,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "pdc" = ( /obj/structure/cable/green{ d1 = 4; @@ -89502,7 +90346,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "pdk" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -89513,31 +90357,23 @@ icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; + d1 = 2; d2 = 4; - icon_state = "1-4" + icon_state = "2-4" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "pdw" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ name = "Security Officer" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "pdP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/security{ - dir = 4; - c_tag = "D2-Com-For Corridor3"; - network = list("Commons") - }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_1) "pdU" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -89549,7 +90385,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "pdX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -89565,7 +90401,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "pes" = ( /obj/structure/table/rack/shelf, /obj/item/storage/firstaid/o2{ @@ -89595,7 +90431,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "pex" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -89619,7 +90455,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "peA" = ( /obj/item/flashlight/lamp{ on = 0 @@ -89627,7 +90463,7 @@ /obj/random/drinkbottle, /obj/structure/table, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "peJ" = ( /obj/machinery/light{ dir = 4; @@ -89648,12 +90484,22 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) -"peQ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, +/area/hallway/Aft_2_Deck_Stairwell) +"peL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "peT" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -89668,7 +90514,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "pfb" = ( /obj/structure/cable{ d1 = 1; @@ -89676,7 +90522,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "pft" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 1 @@ -89693,19 +90539,19 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "pfw" = ( /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "pfK" = ( /obj/structure/table/steel, /obj/random/mainttoyloot, /obj/random/unidentified_medicine, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "pfR" = ( /obj/structure/cable/green{ d1 = 1; @@ -89728,12 +90574,8 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "pfU" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, /obj/structure/sign/directions/engineering{ dir = 8; layer = 3.5; @@ -89748,8 +90590,11 @@ dir = 1; layer = 3.5 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Port_Corridor) "pfZ" = ( /obj/effect/floor_decal/industrial/warning{ layer = 3 @@ -89762,18 +90607,24 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "pgb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, +/obj/effect/catwalk_plated/techmaint, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "pgq" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "pgu" = ( /obj/structure/cable{ d1 = 1; @@ -89783,11 +90634,12 @@ /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_2) "phg" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -89796,7 +90648,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "phk" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -89807,16 +90659,16 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "pho" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "php" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "phy" = ( /obj/structure/cable/green{ d1 = 2; @@ -89829,7 +90681,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "phS" = ( /obj/structure/cable{ d1 = 1; @@ -89842,7 +90694,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "pig" = ( /obj/effect/floor_decal/shuttle/blue{ pixel_x = -1; @@ -89851,16 +90703,24 @@ /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "pii" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 }, -/obj/effect/floor_decal/corner/green/bordercorner{ +/obj/effect/floor_decal/corner/orange/bordercorner{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) +"pin" = ( +/obj/structure/cable/white{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_StarChamber2) "piq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -89878,19 +90738,19 @@ dir = 9 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "piv" = ( /obj/structure/bed/chair/bay/chair/padded/red/bignest, /obj/random/plushie, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "piE" = ( /obj/random/trash, /obj/random/trash, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "piF" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -89904,23 +90764,22 @@ pixel_y = 32 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "piO" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "piW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Central_Corridor_1) "pjn" = ( /obj/structure/cable{ d1 = 4; @@ -89934,24 +90793,24 @@ /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "pjA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "pjD" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_StarChamber1) +/area/maintenance/Deck2_Cargo_StarChamber1) "pjG" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "pjK" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ @@ -89959,7 +90818,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "pjM" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -89967,7 +90826,7 @@ }, /obj/structure/cable, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Port_Corridor) "pjT" = ( /obj/machinery/light/small{ dir = 8 @@ -89986,7 +90845,7 @@ id = "sc-DBBstall3" }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "pkk" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -90008,7 +90867,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "pko" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -90023,7 +90882,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "pkC" = ( /obj/machinery/bodyscanner{ dir = 8 @@ -90037,21 +90896,19 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) -"pkU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/medical/Treatment_Hall) +"pkG" = ( +/obj/random/trash, +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "pli" = ( /obj/effect/floor_decal/chapel{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "plu" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 4 @@ -90065,7 +90922,7 @@ }, /obj/structure/window/reinforced/tinted/frosted, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "plz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -90073,14 +90930,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "plB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -90092,15 +90946,11 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "plF" = ( /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "plL" = ( -/obj/machinery/ai_status_display{ - name = "1E-AI display"; - pixel_x = 32 - }, /obj/machinery/light{ dir = 4; name = "1E-light fixture" @@ -90110,7 +90960,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "pmh" = ( /obj/machinery/papershredder, /obj/machinery/light{ @@ -90119,7 +90969,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "pmo" = ( /obj/structure/closet/secure_closet/medical3, /obj/machinery/status_display{ @@ -90129,30 +90979,12 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Dressing_Room) -"pmv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/camera/network/security{ - dir = 8; - c_tag = "D2-Com-Aft Corridor2"; - network = list("Commons") - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/medical/Dressing_Room) "pmL" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/green/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "pmM" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -90161,19 +90993,19 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "pnl" = ( /obj/structure/smoletrack/roadT{ dir = 1 }, /mob/living/simple_mob/animal/passive/mouse/rat, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "pnx" = ( /obj/structure/table/standard, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "pnz" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -90182,7 +91014,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "pnB" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/machinery/light{ @@ -90191,7 +91023,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "pnJ" = ( /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, @@ -90200,7 +91032,7 @@ c_tag = "D2-Sec-Shuttlebay2" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "pog" = ( /obj/machinery/disposal/deliveryChute, /obj/structure/disposalpipe/trunk{ @@ -90208,7 +91040,7 @@ }, /obj/structure/plasticflaps/mining, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "pol" = ( /obj/structure/cable/green{ d1 = 1; @@ -90229,7 +91061,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "pon" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -90238,7 +91070,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "poq" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -90256,7 +91088,7 @@ dir = 5 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "pov" = ( /obj/structure/table/rack, /obj/item/clothing/gloves/arm_guard/riot{ @@ -90291,7 +91123,7 @@ pixel_y = -5 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "poy" = ( /obj/structure/cable/green{ d1 = 1; @@ -90299,7 +91131,11 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) +"poA" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/r_wall, +/area/maintenance/Deck2_Aft_Corridor) "poC" = ( /obj/machinery/optable, /obj/machinery/oxygen_pump/anesthetic{ @@ -90309,7 +91145,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "poL" = ( /obj/machinery/door/blast/regular{ id = "SC-MSchapel_one"; @@ -90317,12 +91153,12 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "poO" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "poR" = ( /obj/structure/cable/green{ d1 = 4; @@ -90336,12 +91172,25 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) +"poT" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/arrows/yellow, +/obj/effect/floor_decal/industrial/arrows/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance/engi{ + name = "Domicile Air Distribution"; + req_one_access = null + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/Distro_Civilian) "ppl" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/canister/phoron, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "ppw" = ( /obj/structure/cable{ d1 = 1; @@ -90358,7 +91207,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "ppy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -90370,7 +91219,7 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "ppD" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -90379,17 +91228,17 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "ppK" = ( /obj/machinery/atmospherics/valve{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "pqb" = ( /obj/item/clothing/head/dress/army/command, /turf/simulated/floor/wood/alt/panel/broken/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "pqd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -90399,7 +91248,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "pqs" = ( /obj/machinery/power/apc{ dir = 4; @@ -90412,7 +91261,7 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortCorridor1) +/area/maintenance/Deck2_Medical_AftPortCorridor1) "pqw" = ( /obj/structure/table/rack, /obj/item/clothing/gloves/arm_guard/flexitac{ @@ -90447,13 +91296,13 @@ pixel_y = -5 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "pqB" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "pqG" = ( /obj/structure/table/rack{ dir = 8; @@ -90484,7 +91333,7 @@ pixel_x = -5 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "pqN" = ( /obj/structure/cable{ d1 = 4; @@ -90494,11 +91343,11 @@ /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, -/obj/effect/floor_decal/corner/white/bordercorner{ +/obj/effect/floor_decal/corner/paleblue/bordercorner{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "pqO" = ( /obj/structure/cable/green{ d1 = 1; @@ -90519,13 +91368,13 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "pre" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 +/obj/machinery/holoposter{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/turf/simulated/wall/r_wall, +/area/hallway/Port_2_Deck_Central_Corridor_2) "prq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -90534,7 +91383,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "pru" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -90549,7 +91398,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "prW" = ( /obj/structure/cable/green{ d1 = 1; @@ -90564,23 +91413,11 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/VR) -"psd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/light/floortube{ - dir = 1; - pixel_y = 2 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/crew_quarters/VR) "psg" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) +/area/maintenance/Deck2_Science_ForCorridor1) "psn" = ( /obj/machinery/light{ dir = 1; @@ -90594,7 +91431,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "pss" = ( /obj/machinery/status_display{ pixel_y = -32; @@ -90614,7 +91451,33 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) +"psv" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/blue, +/obj/structure/grille, +/obj/structure/window/basic/full, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + layer = 3.5; + id = "Port Lockdown"; + name = "Lockdown Gate"; + desc = "A heavily reinforced gate, sector lockdown!" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/Port_2_Deck_Central_Corridor_2) "psw" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/power/apc{ @@ -90626,7 +91489,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_StarChamber1) +/area/maintenance/Deck2_Cargo_StarChamber1) "psz" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -90638,11 +91501,11 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "psB" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "psF" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -90662,16 +91525,16 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "psQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "pta" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "ptg" = ( /obj/structure/cable{ d1 = 1; @@ -90686,12 +91549,12 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "ptm" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "ptE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -90708,7 +91571,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "ptH" = ( /obj/machinery/light{ dir = 1; @@ -90721,7 +91584,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "ptJ" = ( /obj/structure/cable/green{ d1 = 1; @@ -90729,7 +91592,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "ptQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -90740,16 +91603,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "ptW" = ( /obj/item/stool/padded{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "pua" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -90758,7 +91621,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "pui" = ( /obj/structure/cable/green{ d1 = 4; @@ -90766,7 +91629,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "pul" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -90776,7 +91639,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "pum" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -90793,7 +91656,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "pux" = ( /obj/structure/bookcase{ name = "bookcase (Adult)" @@ -90802,14 +91665,14 @@ name = "privacy curtain" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "puy" = ( /obj/effect/floor_decal/industrial/warning/full, /obj/machinery/atmospherics/binary/pump{ name = "Waste to Scrubbers" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "puB" = ( /obj/structure/cable{ d1 = 4; @@ -90822,51 +91685,73 @@ /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "puO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/machinery/appliance/cooker/oven, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "puR" = ( /obj/structure/table/rack/steel, /obj/random/maintenance/security, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "puV" = ( /obj/machinery/portable_atmospherics/powered/pump, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) +"pve" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/structure/sign/painting/public{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "pvj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) +"pvq" = ( +/obj/machinery/light{ + dir = 4; + layer = 3 + }, +/obj/machinery/vending/desatti, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Dinner_1) "pvv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/obj/machinery/light/small{ + dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Engineering_PortCorridor1) "pvD" = ( /obj/structure/table/glass, /obj/machinery/power/apc{ @@ -90900,7 +91785,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "pvH" = ( /obj/structure/table/rack/holorack, /obj/item/circuitboard/machine/power_turbine{ @@ -90946,30 +91831,40 @@ pixel_y = -5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "pvN" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortChamber1) +/area/maintenance/Deck2_Medical_AftPortChamber1) +"pwn" = ( +/obj/structure/cable/white{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_StarChamber2) "pww" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "pwT" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortChamber1) +/area/maintenance/Deck2_Medical_AftPortChamber1) "pwV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -90992,10 +91887,10 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "pwW" = ( /turf/simulated/floor/wood/alt/panel/broken/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "pxb" = ( /obj/structure/table/bench/wooden, /obj/item/flashlight/lamp/clown{ @@ -91004,7 +91899,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "pxc" = ( /obj/machinery/light{ dir = 4; @@ -91027,28 +91922,18 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) -"pxg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/engineering/Deck2_1_Corridor) "pxj" = ( /obj/structure/table/standard, /obj/random/maintenance/research, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Corridor) +/area/maintenance/Deck2_Science_ForPort_Corridor) "pxs" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, /turf/space, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "pxu" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -91057,7 +91942,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "pxJ" = ( /obj/structure/closet/firecloset/full/atmos{ req_one_access = list(10) @@ -91072,7 +91957,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "pxL" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -91080,15 +91965,20 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "pyb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/structure/sign/poster/nanotrasen{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "pym" = ( /obj/structure/cable/green{ d1 = 2; @@ -91114,7 +92004,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "pyI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -91127,7 +92017,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "pyN" = ( /obj/machinery/light{ dir = 8; @@ -91141,7 +92031,7 @@ }, /obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "pyW" = ( /obj/structure/cable{ d1 = 1; @@ -91153,7 +92043,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "pze" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -91174,7 +92064,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "pzi" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -91186,7 +92076,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "pzm" = ( /obj/structure/girder/reinforced, /obj/structure/cable/green{ @@ -91195,7 +92085,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "pzF" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -91218,21 +92108,21 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "pzG" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "pzJ" = ( /obj/effect/catwalk_plated/techfloor, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "pzN" = ( /obj/structure/cable{ d1 = 2; @@ -91250,7 +92140,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "pzW" = ( /obj/structure/cable/green{ d1 = 1; @@ -91270,11 +92160,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "pzX" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "pAj" = ( /obj/structure/closet/crate, /obj/item/radio/intercom{ @@ -91283,14 +92173,14 @@ pixel_x = -22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "pAn" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "pAz" = ( /obj/machinery/alarm{ dir = 8; @@ -91298,13 +92188,13 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "pAG" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "pAR" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -91316,7 +92206,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "pAW" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/techmaint, @@ -91326,7 +92216,7 @@ icon_state = "4-8" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "pBm" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -91335,7 +92225,7 @@ dir = 1 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "pBw" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -91344,7 +92234,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor2) +/area/maintenance/Deck2_Science_StarCorridor2) "pBz" = ( /obj/machinery/alarm{ pixel_y = 25 @@ -91362,7 +92252,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "pBB" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -91371,14 +92261,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "pBE" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "pBG" = ( /obj/machinery/shower{ dir = 1 @@ -91399,7 +92289,7 @@ }, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "pBK" = ( /obj/structure/cable/green{ d1 = 4; @@ -91412,13 +92302,13 @@ sortType = "Gym" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "pBP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "pBQ" = ( /obj/structure/cable/green{ d1 = 4; @@ -91432,7 +92322,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "pCj" = ( /obj/structure/cable{ d1 = 1; @@ -91445,7 +92335,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "pCJ" = ( /obj/structure/cable/green{ d1 = 4; @@ -91458,7 +92348,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "pCP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloorblack{ @@ -91468,7 +92358,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "pCR" = ( /obj/machinery/light{ dir = 4; @@ -91487,53 +92377,37 @@ /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/purple/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "pCY" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "pDg" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "pDh" = ( /obj/structure/sign/level/two/large, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "pDj" = ( /obj/structure/table/standard, /obj/random/drinkbottle, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Maints/ab_TeshDen) -"pDo" = ( -/obj/structure/table/standard, -/obj/item/tool/wirecutters/clippers{ - pixel_y = 2; - pixel_x = -5 - }, -/obj/item/material/minihoe{ - pixel_y = 6; - pixel_x = 4 - }, -/obj/item/clothing/gloves/botanic_leather{ - pixel_y = -1; - pixel_x = -1 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/area/maintenance/ab_TeshDen) "pDq" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "pDs" = ( /obj/structure/table/reinforced, /obj/machinery/camera/network/security{ @@ -91545,13 +92419,15 @@ pixel_y = 3; pixel_x = 8 }, -/obj/item/tape, +/obj/item/rectape{ + pixel_y = -3 + }, /obj/item/taperecorder{ pixel_x = -4; pixel_y = 2 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "pDT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloor{ @@ -91561,11 +92437,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "pEa" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "pEj" = ( /obj/item/paicard{ pixel_x = 4 @@ -91574,7 +92450,9 @@ /obj/item/taperecorder{ pixel_x = -3 }, -/obj/item/tape, +/obj/item/rectape{ + pixel_y = -3 + }, /obj/effect/floor_decal/borderfloorwhite{ dir = 10 }, @@ -91582,7 +92460,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "pEF" = ( /obj/machinery/newscaster{ name = "1S-newscaster"; @@ -91595,7 +92473,7 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "pEG" = ( /obj/structure/cable/green{ d1 = 4; @@ -91603,15 +92481,15 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "pEH" = ( /obj/item/stool/baystool/padded, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "pFk" = ( /obj/structure/inflatable, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "pFy" = ( /obj/structure/table/woodentable, /obj/machinery/computer/security/telescreen/entertainment{ @@ -91621,7 +92499,7 @@ /obj/item/paper, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "pFE" = ( /obj/structure/cable/green{ d1 = 2; @@ -91648,10 +92526,10 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "pFH" = ( /turf/simulated/open, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "pFV" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -91680,7 +92558,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "pGf" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 @@ -91688,7 +92566,7 @@ /turf/simulated/floor/boxing{ name = "yoga mat" }, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "pGs" = ( /obj/structure/cable/white{ d1 = 2; @@ -91696,7 +92574,7 @@ icon_state = "2-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "pGB" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -91716,16 +92594,19 @@ }, /obj/structure/cable/green, /turf/simulated/floor/carpet/purple, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "pGC" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/arrows/yellow, +/obj/effect/floor_decal/industrial/arrows/yellow{ + dir = 1 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/maintenance/Deck2_For_Corridor) "pGQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ dir = 1 @@ -91736,7 +92617,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) +/area/maintenance/Deck2_Medical_AftCorridor1) "pGR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -91746,11 +92627,11 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "pGX" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "pHa" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -91759,19 +92640,19 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "pHf" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "pHn" = ( /obj/structure/table/steel, /obj/item/glass_jar, /obj/item/pizzavoucher, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "pHx" = ( /obj/item/radio/intercom{ name = "1S-Station Intercom (General)"; @@ -91781,7 +92662,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/carpet/purple, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "pHZ" = ( /obj/machinery/light{ dir = 8; @@ -91802,7 +92683,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "pIm" = ( /obj/item/trash/bowl{ name = "Kendrick's bed" @@ -91816,7 +92697,7 @@ network = list("Science") }, /turf/simulated/floor/carpet/purple, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "pIo" = ( /obj/structure/cable/green{ d1 = 4; @@ -91836,27 +92717,27 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "pIs" = ( /obj/item/stool/padded{ dir = 1 }, /obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "pIz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "pIG" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ name = "Quartermaster" }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "pIH" = ( /obj/structure/cable/green{ d1 = 2; @@ -91885,7 +92766,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "pIK" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -91913,7 +92794,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "pIS" = ( /obj/machinery/photocopier, /obj/machinery/alarm{ @@ -91924,7 +92805,7 @@ dir = 4 }, /turf/simulated/floor/carpet/purple, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "pIT" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -91933,7 +92814,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "pJb" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -91942,13 +92823,13 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "pJh" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "pJl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -91956,7 +92837,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "pJt" = ( /obj/machinery/light{ dir = 1; @@ -91970,14 +92851,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "pJu" = ( /obj/machinery/alarm{ pixel_y = 25 }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "pJD" = ( /obj/structure/reagent_dispensers/watertank/high, /obj/item/reagent_containers/glass/bucket{ @@ -91991,17 +92872,17 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "pKf" = ( /obj/structure/closet/wardrobe/medic_gown, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "pKB" = ( /obj/structure/table/sifwoodentable, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "pKD" = ( /obj/structure/cable{ d1 = 1; @@ -92025,7 +92906,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "pKQ" = ( /obj/structure/table/rack/holorack, /obj/random/maintenance/cargo, @@ -92033,7 +92914,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "pLe" = ( /obj/structure/cable{ d1 = 4; @@ -92053,22 +92934,25 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "pLD" = ( /obj/structure/disposalpipe/segment, -/obj/structure/sign/directions/kitchen{ - dir = 1 +/obj/structure/sign/directions/science{ + dir = 4; + layer = 3.5; + pixel_y = 9 }, -/obj/structure/sign/directions/cryo{ - pixel_y = 9; - dir = 1 +/obj/structure/sign/directions/medical{ + dir = 4; + layer = 3.5 }, -/obj/structure/sign/directions/ladderwell{ +/obj/structure/sign/directions/command{ + pixel_y = -9; dir = 1; - pixel_y = -9 + layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "pLN" = ( /obj/structure/cable/green{ d1 = 4; @@ -92083,13 +92967,31 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "pMa" = ( /obj/machinery/light_construct{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) +"pMh" = ( +/obj/structure/lattice, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_StarChamber2) "pMs" = ( /obj/structure/cable/green{ d1 = 4; @@ -92100,7 +93002,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "pMt" = ( /obj/structure/bed/chair/sofa/left/blue, /obj/structure/window/basic{ @@ -92110,10 +93012,10 @@ dir = 1 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "pMu" = ( /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "pMA" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -92124,15 +93026,19 @@ /obj/effect/floor_decal/corner/lightgrey/bordercorner{ dir = 1 }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "pMF" = ( /obj/structure/girder, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "pMI" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -92146,7 +93052,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "pMR" = ( /obj/structure/cable/white{ d1 = 2; @@ -92159,7 +93065,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "pMS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -92172,21 +93078,30 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "pMZ" = ( /obj/effect/floor_decal/techfloor, /obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) +"pNa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "pNb" = ( /obj/random/trash, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "pNf" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/bcarpet/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "pNz" = ( /obj/structure/cable/green{ d1 = 1; @@ -92197,7 +93112,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "pOe" = ( /obj/structure/table/steel_reinforced, /obj/structure/window/reinforced{ @@ -92210,14 +93125,14 @@ name = "1S-light fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "pOh" = ( /obj/vehicle/train/engine{ dir = 2 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "pOl" = ( /obj/structure/cable/green{ d1 = 4; @@ -92236,7 +93151,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "pOp" = ( /obj/machinery/newscaster{ name = "1S-newscaster"; @@ -92246,7 +93161,7 @@ dir = 6 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "pOQ" = ( /obj/structure/shuttle/engine/heater{ dir = 8 @@ -92264,7 +93179,7 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarChamber1) +/area/maintenance/Deck2_Cargo_AftStarChamber1) "pOX" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -92278,7 +93193,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "pPd" = ( /obj/structure/bed/chair/sofa/right/blue, /obj/machinery/light{ @@ -92293,27 +93208,30 @@ dir = 1 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "pPi" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/obj/effect/floor_decal/borderfloor/corner{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "pPn" = ( /obj/structure/closet/secure_closet/medical3, /obj/machinery/power/apc{ @@ -92338,7 +93256,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "pPq" = ( /obj/machinery/chemical_analyzer, /obj/machinery/power/apc{ @@ -92360,10 +93278,17 @@ d2 = 4; icon_state = "0-4" }, +/obj/machinery/button/windowtint{ + id = "sc-WTformedpost"; + name = "W-window tint control"; + pixel_x = -27; + pixel_y = -11; + range = 20 + }, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "pPG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -92374,7 +93299,7 @@ name = "Holodeck Access" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "pPR" = ( /obj/structure/cable/green{ d1 = 4; @@ -92388,7 +93313,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "pPU" = ( /obj/structure/table/rack/shelf, /obj/item/storage/toolbox/emergency{ @@ -92431,7 +93356,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "pQe" = ( /obj/structure/table/reinforced, /obj/item/stack/material/cardboard{ @@ -92463,14 +93388,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "pQm" = ( /obj/structure/loot_pile/maint/junk, /obj/random/trash, /obj/random/junk, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "pQo" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/steeldecal/steel_decals9, @@ -92484,7 +93409,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "pQr" = ( /obj/structure/cable/green{ d1 = 1; @@ -92501,7 +93426,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "pQx" = ( /obj/structure/railing{ dir = 4 @@ -92512,7 +93437,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "pQH" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -92524,14 +93449,14 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "pQK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "pQW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -92541,16 +93466,16 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "pRa" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "pRj" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "pRp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -92575,8 +93500,12 @@ d2 = 4; icon_state = "1-4" }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "pRq" = ( /obj/structure/cable/green{ d1 = 4; @@ -92586,7 +93515,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/green/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "pRu" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloorblack{ @@ -92596,11 +93525,11 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "pRz" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "pRA" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 9 @@ -92612,24 +93541,23 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "pRJ" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "pRV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/table/marble, +/obj/machinery/cash_register/civilian{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/door/blast/shutters{ + dir = 4; + name = "Kitchen Shutters"; + id = "sc-GCkitchen"; + layer = 3.3 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/Chomp_Kitchen) "pSe" = ( /obj/structure/table/bench/wooden, /obj/item/flashlight/lamp/clown{ @@ -92637,14 +93565,26 @@ on = 0 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "pSh" = ( /obj/structure/sign/department/cargo{ layer = 3.5; desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) +"pSn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/item/radio/intercom{ + name = "1S-Station Intercom (General)"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "pSq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -92658,17 +93598,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "pSB" = ( /obj/structure/table/steel, /obj/item/paper_bin, /obj/item/pen, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) -"pSC" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "pSO" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -92677,41 +93613,51 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) -"pSX" = ( -/obj/structure/sign/directions/bridge{ - dir = 4; - pixel_y = -9 - }, -/obj/structure/sign/directions/ai_core{ - pixel_y = 9; - dir = 4 - }, -/obj/structure/sign/levels/bridge{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/crew_quarters/Gallery) "pSZ" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/engineering, /obj/random/maintenance/engineering, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "pTu" = ( -/obj/structure/disposalpipe/segment{ +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/blue, +/obj/structure/grille, +/obj/structure/window/basic/full, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/firealarm{ - dir = 8; - name = "W-fire alarm"; - pixel_x = -25 +/obj/machinery/door/blast/regular/open{ + layer = 3.5; + id = "Port Lockdown"; + name = "Lockdown Gate"; + desc = "A heavily reinforced gate, sector lockdown!" }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/obj/structure/sign/directions/science{ + dir = 4; + layer = 3.5; + pixel_y = 9 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + layer = 3.5 + }, +/obj/structure/sign/directions/command{ + pixel_y = -9; + dir = 5; + layer = 3.5 + }, +/turf/simulated/floor/plating, +/area/hallway/Port_2_Deck_Central_Corridor_2) "pTE" = ( /obj/structure/cable{ d1 = 1; @@ -92725,7 +93671,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "pTL" = ( /obj/structure/cable{ d1 = 4; @@ -92739,6 +93685,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -92746,7 +93695,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "pUi" = ( /obj/machinery/alarm{ pixel_y = 25 @@ -92758,7 +93707,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "pUk" = ( /obj/structure/cable{ d1 = 1; @@ -92772,7 +93721,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "pUo" = ( /obj/item/stool/padded{ dir = 4 @@ -92782,11 +93731,11 @@ pixel_y = -22 }, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "pUr" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "pUs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloor{ @@ -92796,12 +93745,12 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "pUA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "pUM" = ( /obj/structure/cable{ d2 = 4; @@ -92817,7 +93766,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "pUX" = ( /obj/structure/table/rack, /obj/structure/window/reinforced, @@ -92831,7 +93780,15 @@ pixel_y = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) +"pUY" = ( +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall, +/area/maintenance/Deck2_Civilian_StarChamber2) "pVe" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -92845,7 +93802,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "pVS" = ( /obj/structure/cable{ d1 = 1; @@ -92859,7 +93816,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "pVZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -92880,7 +93837,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "pWn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -92899,11 +93856,8 @@ }, /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "pWz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, /obj/machinery/door/blast/regular/open{ layer = 3.5; id = "For Lockdown"; @@ -92912,17 +93866,17 @@ dir = 4 }, /obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/angled_bay/double/glass/security{ - name = "Fore Sector Security-Command"; - req_access = null - }, /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, +/obj/machinery/door/airlock/angled_bay/double/glass/security{ + name = "Fore Sector Security-Command"; + req_access = null + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "pWA" = ( /obj/machinery/alarm{ pixel_y = 25 @@ -92940,17 +93894,17 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "pWG" = ( /obj/structure/bed/chair/bay{ dir = 4 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "pWI" = ( /obj/structure/table/bench/sifwooden/padded, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "pWU" = ( /obj/machinery/conveyor_switch{ id = "SC-RecyclingSort"; @@ -92970,7 +93924,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central4, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "pWZ" = ( /obj/structure/cable/green{ d1 = 1; @@ -92978,11 +93932,11 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "pXi" = ( /obj/structure/closet/wardrobe/detective, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "pXr" = ( /obj/structure/cable/green{ d1 = 1; @@ -92999,7 +93953,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "pXv" = ( /obj/machinery/atmospherics/portables_connector{ layer = 10.1; @@ -93009,7 +93963,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "pXH" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -93018,7 +93972,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "pXN" = ( /obj/structure/cable/green{ d1 = 4; @@ -93035,7 +93989,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "pXU" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/steeldecal/steel_decals10{ @@ -93045,7 +93999,7 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "pXX" = ( /obj/machinery/shower{ pixel_y = 16 @@ -93058,7 +94012,7 @@ dir = 9 }, /turf/simulated/floor/tiled/kafel_full/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "pYn" = ( /obj/structure/cable/green{ d1 = 1; @@ -93069,11 +94023,11 @@ dir = 5 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "pYv" = ( /obj/random/humanoidremains, /turf/simulated/floor/wood/alt/panel/broken/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "pYA" = ( /obj/structure/cable{ d1 = 1; @@ -93089,7 +94043,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "pYK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -93100,7 +94054,7 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "pYM" = ( /obj/structure/cable/green{ d1 = 4; @@ -93111,7 +94065,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "pYU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -93119,7 +94073,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "pZz" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -93128,7 +94082,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "pZI" = ( /obj/structure/cable{ d1 = 1; @@ -93142,11 +94096,11 @@ icon_state = "pipe-j2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "pZR" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "qae" = ( /obj/structure/cable/green{ d1 = 2; @@ -93157,10 +94111,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "qak" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "qau" = ( /obj/structure/cable/green{ d1 = 4; @@ -93181,7 +94135,7 @@ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "qav" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -93192,35 +94146,11 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "qbq" = ( /obj/structure/closet/crate, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Warehouse) -"qbr" = ( -/obj/machinery/door/blast/regular/open{ - layer = 3.5; - id = "Star Lockdown"; - name = "Lockdown Gate"; - desc = "A heavily reinforced gate, sector lockdown!" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/angled_bay/double/glass/medical{ - dir = 8; - req_access = null; - name = "Star Sector Science-Medical" - }, -/obj/machinery/door/firedoor/multi_tile/glass{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/quartermaster/Warehouse) "qbu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 6 @@ -93233,7 +94163,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) +/area/maintenance/Deck2_Medical_AftCorridor1) "qbv" = ( /obj/machinery/light{ dir = 1; @@ -93247,10 +94177,10 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "qbw" = ( /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "qbx" = ( /obj/machinery/alarm{ dir = 8; @@ -93258,11 +94188,11 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "qbD" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "qbT" = ( /obj/structure/cable/green{ d1 = 4; @@ -93285,7 +94215,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "qbX" = ( /obj/structure/cable{ d1 = 1; @@ -93300,14 +94230,14 @@ /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, -/obj/effect/floor_decal/corner/green/border{ +/obj/effect/floor_decal/corner/orange/border{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "qbZ" = ( /turf/simulated/floor/carpet/bcarpet/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "qcd" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -93317,7 +94247,7 @@ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "qcm" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -93350,7 +94280,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "qcn" = ( /obj/structure/cable/green{ d1 = 4; @@ -93361,26 +94291,50 @@ dir = 5 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "qco" = ( /obj/structure/fitness/punchingbag, /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "qcZ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "qdI" = ( -/obj/effect/catwalk_plated/techmaint, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/structure/disposalpipe/down{ + dir = 2 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/obj/structure/railing/grey{ + color = "yellow"; + dir = 8 + }, +/obj/structure/railing/grey{ + color = "yellow" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d1 = 32; + d2 = 2; + icon_state = "32-2" + }, +/turf/simulated/open, +/area/maintenance/Deck2_Star_Corridor) "qdU" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -93393,7 +94347,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "qdW" = ( /obj/structure/cable/green{ d1 = 1; @@ -93412,28 +94366,18 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "qea" = ( /obj/random/plushielarge, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "qeb" = ( /obj/structure/table/steel, /obj/random/maintenance/cargo, /obj/random/drinkbottle, /obj/random/cargopod, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) -"qef" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "qes" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -93445,7 +94389,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "qev" = ( /obj/structure/table/rack/shelf/steel, /obj/item/radio/off{ @@ -93489,7 +94433,7 @@ pixel_x = -4 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "qeA" = ( /obj/structure/cable{ d1 = 4; @@ -93500,11 +94444,11 @@ /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, -/obj/effect/floor_decal/corner/white/bordercorner{ +/obj/effect/floor_decal/corner/brown/bordercorner{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "qeE" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -93513,16 +94457,25 @@ dir = 4 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "qeI" = ( /obj/structure/grille, /obj/structure/shuttle/window, /turf/simulated/shuttle/plating, /area/shuttle/escape_pod12/station) +"qeJ" = ( +/obj/random/trash, +/obj/structure/cable/white{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/maintenance/ab_TeshDen) "qeO" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "qfd" = ( /obj/machinery/power/apc{ dir = 8; @@ -93531,19 +94484,19 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "qfe" = ( /obj/machinery/alarm{ pixel_y = 25 }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "qfl" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "qfw" = ( /obj/structure/sign/warning/evac, /turf/simulated/shuttle/wall/no_join{ @@ -93586,7 +94539,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "qfC" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -93605,13 +94558,33 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) +"qfE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/arrows/yellow, +/obj/effect/floor_decal/industrial/arrows/yellow{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/int, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/Deck2_Aft_Corridor) "qfL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "qfM" = ( /obj/effect/floor_decal/corner_techfloor_gray{ dir = 10 @@ -93621,13 +94594,19 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) +"qfS" = ( +/obj/effect/catwalk_plated/techmaint, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_AftStar_Corridor) "qfY" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "qfZ" = ( /obj/machinery/power/apc{ dir = 1; @@ -93650,10 +94629,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "qgb" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "qgm" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -93670,11 +94649,11 @@ pixel_y = -27 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "qgB" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "qgT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -93689,18 +94668,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) -"qhd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "qhq" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -93719,7 +94687,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "qhC" = ( /obj/structure/window/reinforced{ dir = 8 @@ -93735,7 +94703,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "qhE" = ( /obj/structure/cable/green{ d1 = 2; @@ -93749,7 +94717,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "qhP" = ( /obj/structure/cable/green{ d1 = 1; @@ -93759,17 +94727,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "qip" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "qiF" = ( /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "qiQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -93780,7 +94748,11 @@ /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarCorridor1) +/area/maintenance/Deck2_Engineering_ForStarCorridor1) +"qiX" = ( +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/grass, +/area/hallway/Central_2_Deck_Hall) "qiY" = ( /obj/structure/cable/green{ d1 = 1; @@ -93794,7 +94766,7 @@ network = list("engineering") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "qjA" = ( /obj/structure/cable{ d1 = 1; @@ -93809,17 +94781,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "qjH" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "qjM" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "qjY" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -93829,7 +94801,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "qjZ" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -93846,7 +94818,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "qkk" = ( /obj/machinery/alarm{ dir = 1; @@ -93858,7 +94830,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "qkl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -93874,11 +94846,11 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "qky" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "qkE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -93900,13 +94872,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "qkK" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "qkP" = ( /obj/structure/table/woodentable, /obj/item/taperecorder, @@ -93914,11 +94886,22 @@ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) +"qkQ" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "qkR" = ( /obj/structure/table/woodentable, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "qkX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -93934,13 +94917,19 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "qkY" = ( /obj/effect/landmark{ name = "lightsout" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "qlc" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -93965,7 +94954,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "qle" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -93974,14 +94963,14 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/wingrille_spawn/reinforced/polarized{ - id = "sc-WTsecprocessing" - }, /obj/machinery/holosign/chemistry{ id = "SC-HSsecmedpost" }, +/obj/effect/wingrille_spawn/reinforced/polarized{ + id = "sc-WTformedpost" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "qlh" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -93991,7 +94980,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "qli" = ( /turf/simulated/shuttle/wall/no_join{ base_state = "orange"; @@ -94014,18 +95003,18 @@ pixel_y = 3 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "qlt" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "qlA" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "qlL" = ( /obj/structure/window/reinforced{ dir = 8 @@ -94042,7 +95031,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "qlQ" = ( /obj/machinery/light/small{ dir = 1 @@ -94052,7 +95041,7 @@ /obj/random/maintenance/cargo, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "qmc" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -94062,13 +95051,8 @@ /obj/machinery/door/airlock/angled_bay/double/glass/common{ name = "Chompers Dinner" }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "qme" = ( /obj/random/trash, /obj/structure/closet/crate, @@ -94080,13 +95064,23 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "qmn" = ( /obj/machinery/recycling/crusher{ color = "#BDBCA9" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) +"qmo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "qmp" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ @@ -94097,7 +95091,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "qms" = ( /obj/structure/table/bench/padded, /obj/effect/floor_decal/borderfloorblack{ @@ -94107,14 +95101,31 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "qmt" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/black, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) +"qmy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 2 + }, +/obj/machinery/holoposter{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "qmD" = ( /obj/structure/table/rack, /obj/item/clothing/accessory/storage/pouches/large{ @@ -94151,16 +95162,16 @@ layer = 2.9 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "qmX" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "qnl" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "qnq" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -94169,7 +95180,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "qnr" = ( /obj/structure/cable/green{ d1 = 4; @@ -94183,10 +95194,12 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "qnA" = ( -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_2) "qnK" = ( /obj/structure/cable/green{ d1 = 1; @@ -94210,7 +95223,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "qnP" = ( /obj/structure/grille, /obj/structure/window/reinforced/tinted{ @@ -94227,7 +95240,7 @@ name = "privacy curtain" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "qom" = ( /obj/structure/table/wooden_reinforced, /obj/item/flashlight/lamp{ @@ -94236,14 +95249,14 @@ }, /obj/item/storage/bible/booze, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "qoq" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "qos" = ( /obj/structure/cable{ d1 = 2; @@ -94251,11 +95264,11 @@ icon_state = "2-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "qot" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "qou" = ( /obj/structure/cable/green{ d1 = 1; @@ -94278,7 +95291,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "qoA" = ( /obj/structure/cable/green{ d1 = 1; @@ -94290,43 +95303,36 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "qoG" = ( /obj/structure/table/standard, /obj/random/maintenance/research, /obj/random/maintenance/research, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Corridor) +/area/maintenance/Deck2_Science_ForPort_Corridor) "qoP" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "qoX" = ( /obj/vehicle/train/trolley{ dir = 1 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "qoZ" = ( /obj/structure/closet/secure_closet/medical1, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) -"qpl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/medical/Treatment_Hall) "qps" = ( /obj/structure/table/bench/sifwooden, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "qpA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -94346,7 +95352,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_StarChamber1) +/area/maintenance/Deck2_Cargo_StarChamber1) "qpE" = ( /obj/structure/ladder{ pixel_y = 3 @@ -94363,14 +95369,14 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "qpO" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "qqd" = ( /obj/structure/cable{ d2 = 4; @@ -94379,7 +95385,7 @@ /obj/machinery/power/terminal, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "qqq" = ( /obj/structure/cable/green{ d1 = 1; @@ -94399,7 +95405,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "qqt" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -94409,7 +95415,7 @@ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "qqJ" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/red{ @@ -94426,11 +95432,25 @@ name = "Restroom" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) +"qqM" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "qrm" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "qrv" = ( /obj/item/clothing/ears/circuitry, /obj/item/clothing/glasses/circuitry, @@ -94446,11 +95466,11 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "qrO" = ( /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "qrR" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -94467,7 +95487,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "qrS" = ( /obj/structure/cable/green{ d1 = 1; @@ -94484,17 +95504,17 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "qrT" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "qrZ" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "qsf" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -94516,7 +95536,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "qsk" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -94534,7 +95554,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "qsr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -94548,13 +95568,8 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "qsv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ color = "#989898"; dir = 8 @@ -94564,7 +95579,38 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) +"qsz" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/camera/network/security{ + dir = 8; + c_tag = "D2-Com-Star Corridor2"; + network = list("Commons") + }, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_1) +"qsA" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/food/snacks/concha{ + color = "orange"; + desc = "A sweet bread roll baked with a tamarind topping thats crunchy and delicious, it kinda looks like a shell."; + name = "gummy concha"; + nutriment_desc = list("sweet bread" = 3, "tamarind" = 2, "gummy" = 1); + pixel_y = 10 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + name = "Kitchen Shutters"; + id = "sc-GCkitchen"; + layer = 3.3 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/Chomp_Kitchen) "qsK" = ( /obj/item/radio/intercom{ dir = 8; @@ -94574,10 +95620,10 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "qtf" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "qtn" = ( /obj/item/reagent_containers/dropper{ pixel_y = -5 @@ -94601,7 +95647,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "qtJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -94617,7 +95663,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "qtO" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -94647,7 +95693,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "qtT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -94656,7 +95702,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "qtY" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -94668,17 +95714,17 @@ name = "MedSci Foyer" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "qua" = ( /obj/structure/closet/cabinet, /obj/random/instrument, /obj/random/instrument, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "quj" = ( /obj/item/taperecorder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "qut" = ( /obj/machinery/vending/radren, /obj/effect/floor_decal/borderfloor{ @@ -94692,7 +95738,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "quH" = ( /obj/structure/lattice, /obj/machinery/shield_diffuser, @@ -94704,7 +95750,7 @@ id = "sc-GCsouthshuttlebay" }, /turf/space, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "quL" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 28; @@ -94717,13 +95763,13 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "quT" = ( /obj/effect/landmark{ name = "maint_pred" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "qvr" = ( /obj/structure/table/standard, /obj/structure/sink{ @@ -94737,28 +95783,28 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "qvt" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "qvG" = ( /turf/simulated/floor/tiled/eris/steel/techfloor, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "qvN" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "qwb" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 4 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "qwK" = ( /obj/structure/cable{ d1 = 1; @@ -94775,14 +95821,14 @@ /obj/effect/floor_decal/corner/purple/bordercorner, /obj/structure/sign/poster/custom, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "qwO" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "qxa" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -94791,7 +95837,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "qxf" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -94817,7 +95863,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "qxh" = ( /obj/structure/cable{ d1 = 1; @@ -94828,7 +95874,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "qxk" = ( /obj/machinery/light_switch{ dir = 4; @@ -94851,11 +95897,11 @@ icon_state = "0-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "qxm" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "qxx" = ( /obj/machinery/alarm{ dir = 8; @@ -94863,24 +95909,24 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) +/area/maintenance/Deck2_Medical_AftCorridor1) "qxH" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "qxU" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "qxX" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "qya" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -94900,7 +95946,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortChamber1) +/area/maintenance/Deck2_Medical_AftPortChamber1) "qyc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -94918,7 +95964,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "qyg" = ( /obj/item/storage/box/trackimp{ pixel_y = -3; @@ -94958,7 +96004,7 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "qyj" = ( /obj/machinery/conveyor{ dir = 8; @@ -94968,7 +96014,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "qyu" = ( /obj/structure/cable/green{ d1 = 4; @@ -94976,7 +96022,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "qyH" = ( /obj/machinery/flasher/portable, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -94985,21 +96031,21 @@ c_tag = "D2-Sec-Equipment Storage1" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "qyM" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "qzu" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "qzD" = ( /obj/structure/bed/chair/sofa, /obj/machinery/light_construct{ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "qzG" = ( /obj/structure/cable/green{ d1 = 1; @@ -95018,7 +96064,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "qzL" = ( /obj/machinery/light/small{ dir = 4 @@ -95027,7 +96073,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "qzU" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/borderfloor/corner2, @@ -95035,11 +96081,11 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/blue/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "qAa" = ( /obj/structure/easel, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "qAy" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -95051,7 +96097,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "qAA" = ( /obj/machinery/portable_atmospherics/canister/oxygen/prechilled, /obj/machinery/atmospherics/portables_connector{ @@ -95059,16 +96105,16 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "qAH" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "qAJ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "qAW" = ( /obj/structure/closet/wardrobe/red, /obj/item/clothing/accessory/badge/holo/cord{ @@ -95100,10 +96146,10 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "qBg" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "qBn" = ( /obj/structure/cable/green{ d1 = 4; @@ -95116,7 +96162,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "qBp" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -95125,7 +96171,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) +"qBs" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/grass, +/area/hallway/For_2_Deck_Central_Corridor_2) "qBw" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -95134,7 +96184,7 @@ pixel_y = 22 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "qBK" = ( /obj/machinery/atmospherics/binary/passive_gate{ dir = 1; @@ -95142,7 +96192,7 @@ unlocked = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "qBO" = ( /obj/machinery/power/apc{ dir = 4; @@ -95154,39 +96204,30 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForStar_Chamber) +/area/maintenance/Deck2_Security_ForStar_Chamber) "qBX" = ( -/obj/structure/cable{ +/obj/machinery/pointdefense{ + id_tag = "PD Primary" + }, +/obj/structure/cable/white, +/obj/effect/catwalk_plated/white, +/turf/simulated/floor/airless, +/area/space) +"qBY" = ( +/obj/structure/cable/white{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/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/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_StarChamber1) "qCz" = ( /obj/machinery/light/small{ dir = 8 }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "qCG" = ( /obj/structure/cable/green{ d1 = 2; @@ -95209,21 +96250,25 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "qCK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) +"qCN" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/firealarm{ + dir = 1; + name = "S-fire alarm"; + pixel_y = -25 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "qCP" = ( /obj/effect/catwalk_plated, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "qDj" = ( /obj/structure/table/rack, /obj/item/clothing/accessory/storage/pouches{ @@ -95266,12 +96311,26 @@ layer = 2.9 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) -"qDw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/area/security/Equipment_Storage) +"qDz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "qDK" = ( /obj/structure/cable{ d1 = 1; @@ -95281,7 +96340,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "qDM" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -95295,20 +96354,27 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_StarChamber1) +/area/maintenance/Deck2_Cargo_StarChamber1) "qDS" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 8 + }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Security/Lobby) +/area/hallway/Star_2_Deck_Central_Corridor_1) "qEt" = ( /obj/structure/stairs/spawner/west, /obj/structure/railing, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "qEx" = ( /obj/item/pack/cardemon, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "qEG" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -95330,7 +96396,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "qEP" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -95352,14 +96418,14 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "qFz" = ( /obj/structure/closet/cabinet, /obj/item/clothing/suit/cultrobes/alt{ armor = list("melee"=5,"bullet"=5,"laser"=5,"energy"=10,"bomb"=25,"bio"=10,"rad"=0) }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "qFA" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -95368,11 +96434,11 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "qFB" = ( /obj/structure/railing, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "qFF" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -95380,10 +96446,10 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortChamber1) +/area/maintenance/Deck2_Medical_AftPortChamber1) "qFK" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "qFW" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -95392,7 +96458,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "qFZ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -95404,22 +96470,22 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "qGk" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "qGz" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "qGK" = ( /obj/random/tank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "qGP" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -95428,7 +96494,7 @@ }, /obj/structure/simple_door/wood, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "qGS" = ( /obj/machinery/camera/network/research{ c_tag = "D2-Med-Patient Ward1"; @@ -95442,7 +96508,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "qGX" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -95472,15 +96538,15 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "qHk" = ( /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "qHU" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForPortChamber1) +/area/maintenance/Deck2_Security_ForPortChamber1) "qHV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -95488,11 +96554,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "qHW" = ( /obj/structure/sign/examroom, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "qIl" = ( /obj/structure/cable/green{ d1 = 1; @@ -95508,7 +96574,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "qIm" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -95528,7 +96594,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "qIz" = ( /obj/structure/cable/green{ d1 = 1; @@ -95546,7 +96612,7 @@ dir = 9 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "qIV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -95570,7 +96636,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "qJa" = ( /obj/structure/cable/green{ d1 = 1; @@ -95578,7 +96644,17 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) +"qJf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "qJo" = ( /obj/structure/table/rack/shelf/steel, /obj/random/tool, @@ -95589,11 +96665,11 @@ /obj/random/technology_scanner, /obj/random/technology_scanner, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "qJr" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "qJL" = ( /obj/structure/cable/green{ d1 = 4; @@ -95607,7 +96683,7 @@ dir = 4 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "qJZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -95616,7 +96692,7 @@ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "qKm" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -95636,7 +96712,7 @@ id = "sc-NScafe" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/crew_quarters/Library) "qKp" = ( /obj/structure/closet/hydrant{ pixel_x = -32 @@ -95646,13 +96722,13 @@ amount = 24 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "qKC" = ( /obj/machinery/conveyor{ id = "SC-RecyclingSort" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "qKE" = ( /obj/structure/cable/green{ d1 = 1; @@ -95673,11 +96749,18 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "qKG" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor2) +/area/maintenance/Deck2_Science_StarCorridor2) +"qKI" = ( +/obj/machinery/atmospherics/valve/shutoff{ + name = "Domicile automatic shutoff valve" + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "qKQ" = ( /obj/machinery/power/port_gen/pacman, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -95686,21 +96769,20 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "qKV" = ( /obj/item/pack/cardemon, /obj/structure/table, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "qKX" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light, /obj/machinery/shield_capacitor{ dir = 1 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light, -/obj/structure/cable, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "qLg" = ( /obj/structure/cable{ d1 = 1; @@ -95715,7 +96797,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "qLp" = ( /obj/structure/cable/green{ d1 = 2; @@ -95723,7 +96805,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "qLq" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/structure/window/basic{ @@ -95732,7 +96814,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "qLt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -95741,16 +96823,16 @@ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarCorridor1) +/area/maintenance/Deck2_Engineering_ForStarCorridor1) "qLx" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) +/area/maintenance/Deck2_Medical_AftCorridor1) "qLy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "qLz" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 @@ -95765,22 +96847,18 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "qLC" = ( /obj/machinery/camera/network/research{ c_tag = "SCI - Toxins Test Chamber North"; network = list("Research","Toxins Test Area") }, /turf/simulated/floor/tiled/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "qLD" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "qLU" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -95789,18 +96867,25 @@ dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "qLX" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "qLY" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/obj/structure/ladder/updown{ + pixel_y = 3 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/sign/small/warning/emerg_only{ + desc = "Ladder for emergency use only"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/Deck2_Star_Corridor) "qMd" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -95818,7 +96903,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "qMj" = ( /obj/effect/floor_decal/industrial/danger{ dir = 8 @@ -95830,7 +96915,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "qMm" = ( /obj/structure/cable/green{ d1 = 4; @@ -95847,16 +96932,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "qMp" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, -/obj/effect/floor_decal/corner/green/border{ +/obj/effect/floor_decal/corner/orange/border{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "qMz" = ( /obj/structure/cable/green{ d1 = 4; @@ -95870,7 +96955,7 @@ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "qMD" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -95879,10 +96964,10 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarChamber1) +/area/maintenance/Deck2_Cargo_AftStarChamber1) "qMI" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor2) +/area/maintenance/Deck2_Science_StarCorridor2) "qMM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -95891,8 +96976,12 @@ dir = 2; icon_state = "pipe-c" }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "qMQ" = ( /obj/structure/cable{ d1 = 1; @@ -95906,14 +96995,27 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) +"qMW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/obj/effect/floor_decal/spline/plain/corner, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_1) "qNb" = ( /obj/structure/sign/directions/medical/resleeving{ pixel_y = -9; dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "qNd" = ( /obj/structure/cable/green{ d1 = 4; @@ -95927,7 +97029,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "qNz" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -95956,7 +97058,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "qND" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloorblack{ @@ -95966,12 +97068,12 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "qNE" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "qNF" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, @@ -95992,7 +97094,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "qNO" = ( /obj/structure/bed/chair/sofa/orange{ dir = 4 @@ -96002,12 +97104,12 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "qNT" = ( /obj/structure/loot_pile/maint/technical, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "qOl" = ( /obj/structure/table/woodentable, /obj/item/paper_bin{ @@ -96032,7 +97134,7 @@ pixel_y = -3 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "qOB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -96044,7 +97146,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "qOQ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -96059,7 +97161,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "qPi" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -96067,13 +97169,13 @@ network = list("Commons") }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "qPl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "qPp" = ( /obj/machinery/power/terminal{ dir = 1 @@ -96089,10 +97191,10 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "qPt" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "qPw" = ( /obj/machinery/power/apc{ dir = 8; @@ -96122,11 +97224,19 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) +"qPE" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/structure/sign/poster/nanotrasen{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "qPJ" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "qPL" = ( /obj/structure/cable/green{ d1 = 4; @@ -96146,35 +97256,38 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "qQc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/industrial/arrows/blue, +/obj/machinery/door/airlock/freezer{ + name = "Kitchen cold room"; + req_access = list(28) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) -"qQk" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/Chomp_Kitchen) "qQm" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) +"qQq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/alarm{ + pixel_y = -25; + name = "S-alarm"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "qQv" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -96182,7 +97295,7 @@ /turf/simulated/floor/boxing{ name = "yoga mat" }, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "qQF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -96197,7 +97310,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "qQI" = ( /obj/structure/cable/green{ d1 = 4; @@ -96214,7 +97327,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "qQL" = ( /obj/machinery/light{ dir = 1; @@ -96233,7 +97346,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "qQN" = ( /obj/structure/cable/green{ d1 = 1; @@ -96248,11 +97361,11 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "qQR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "qRk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -96267,14 +97380,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "qRs" = ( /obj/structure/sign/directions/dock, /obj/structure/sign/directions/evac{ pixel_y = -9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "qRM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -96289,7 +97402,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "qSk" = ( /obj/structure/cable/green{ d1 = 4; @@ -96308,12 +97421,17 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "qSt" = ( /obj/random/trash, /obj/random/junk, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "qSC" = ( /obj/structure/cable/green{ d1 = 4; @@ -96334,12 +97452,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) -"qSG" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/security/Deck2_1_Corridor) "qSL" = ( /obj/structure/cable/green{ d1 = 4; @@ -96351,21 +97464,22 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "qSS" = ( /obj/structure/sign/directions/evac{ dir = 8 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "qTb" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/obj/effect/floor_decal/industrial/hatch/blue, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "qTx" = ( /obj/machinery/ai_status_display, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "qTy" = ( /obj/structure/cable{ d1 = 1; @@ -96379,13 +97493,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "qTB" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "qTK" = ( /obj/machinery/shower{ pixel_y = 16 @@ -96399,7 +97513,24 @@ /obj/machinery/door/window/southleft, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) +"qTR" = ( +/obj/structure/sign/directions/engineering{ + dir = 8; + layer = 3.5; + pixel_y = 9 + }, +/obj/structure/sign/directions/cargo{ + dir = 8; + layer = 3.5 + }, +/obj/structure/sign/directions/security{ + pixel_y = -9; + dir = 1; + layer = 3.5 + }, +/turf/simulated/wall/r_wall, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "qUl" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -96407,18 +97538,18 @@ dir = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "qUo" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "qUu" = ( /obj/structure/loot_pile/maint/technical, /obj/random/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "qUH" = ( /obj/machinery/power/apc{ dir = 8; @@ -96430,11 +97561,11 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarCorridor1) +/area/maintenance/Deck2_Cargo_AftStarCorridor1) "qUI" = ( /obj/structure/sign/warning/evac, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "qVc" = ( /obj/structure/cable/green{ d1 = 1; @@ -96444,17 +97575,17 @@ /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ +/obj/effect/floor_decal/corner/lightorange/bordercorner{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "qVo" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "qVu" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -96471,18 +97602,18 @@ dir = 5 }, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "qWb" = ( /obj/machinery/iv_drip, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "qWg" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "qWm" = ( /obj/structure/cable/green{ d1 = 1; @@ -96493,7 +97624,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "qWv" = ( /obj/machinery/camera/network/security{ c_tag = "D2-Dmc-Chapel3"; @@ -96506,7 +97637,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "qWA" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -96515,40 +97646,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) -"qWM" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance/int, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular/open{ - layer = 3.5; - id = "Star Lockdown"; - name = "Lockdown Gate"; - desc = "A heavily reinforced gate, sector lockdown!" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/area/quartermaster/Warehouse) "qWS" = ( /obj/structure/sign/directions/evac{ dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "qWW" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -96568,27 +97672,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "qWX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/railing{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/holoposter{ - dir = 4 - }, -/turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/obj/structure/flora/lily1, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_1) "qXc" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "qXm" = ( /obj/structure/cable{ d1 = 1; @@ -96599,7 +97696,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "qXt" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -96613,17 +97710,17 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "qXB" = ( /obj/structure/sign/warning/nosmoking_2, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "qXU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "qYh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor/corner{ @@ -96633,7 +97730,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "qYj" = ( /obj/structure/cable/green{ d1 = 4; @@ -96641,7 +97738,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "qYm" = ( /obj/structure/sink{ dir = 1; @@ -96657,7 +97754,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "qYs" = ( /obj/structure/cable/green{ d1 = 1; @@ -96680,7 +97777,7 @@ }, /obj/effect/floor_decal/industrial/arrows/blue, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "qYL" = ( /obj/structure/cable/green{ d1 = 4; @@ -96688,41 +97785,41 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "qYN" = ( /obj/machinery/alarm{ pixel_y = 25 }, /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "qYO" = ( /obj/structure/sign/directions/evac{ dir = 4; layer = 3.5 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "qYX" = ( /obj/machinery/light/small{ dir = 4 }, /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForStar_Chamber) +/area/maintenance/Deck2_Security_ForStar_Chamber) "qYY" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "qZf" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "qZq" = ( /obj/structure/cable/green{ d1 = 1; @@ -96741,16 +97838,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) -"qZr" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/medical/For_Medical_Post) "qZB" = ( /obj/structure/cable/green{ d1 = 1; @@ -96767,7 +97855,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "qZE" = ( /obj/machinery/light/small{ dir = 1 @@ -96776,14 +97864,14 @@ /obj/random/maintenance/clean, /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "qZK" = ( /obj/machinery/door/window/brigdoor/northright{ layer = 2.9 }, /obj/effect/floor_decal/industrial/outline/cut_corners/red, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "rae" = ( /obj/structure/cable{ d1 = 4; @@ -96791,13 +97879,13 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "raf" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "ral" = ( /obj/structure/table/steel, /obj/item/storage/bag/circuits/basic, @@ -96805,7 +97893,7 @@ dir = 4 }, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "raq" = ( /obj/structure/cable/green{ d1 = 1; @@ -96822,7 +97910,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "rau" = ( /obj/structure/cable{ d1 = 1; @@ -96836,7 +97924,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "raB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -96848,13 +97936,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "raE" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "raH" = ( /obj/structure/cable/green{ d1 = 1; @@ -96866,14 +97954,14 @@ pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "raN" = ( /obj/effect/floor_decal/milspec/cargo_arrow{ dir = 4 }, /obj/effect/floor_decal/milspec/box, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "rby" = ( /obj/machinery/disposal/deliveryChute{ dir = 4 @@ -96883,7 +97971,7 @@ }, /obj/structure/plasticflaps/mining, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "rbK" = ( /obj/structure/cable/green{ d1 = 1; @@ -96896,7 +97984,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/black/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "rbU" = ( /obj/structure/table/marble, /obj/item/storage/box/glasses/coffeecup{ @@ -96921,7 +98009,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "rbZ" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 1 @@ -96933,7 +98021,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "rcb" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -96942,7 +98030,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "rcg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -96959,11 +98047,11 @@ req_one_access = list(1) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "rck" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber1) +/area/maintenance/Deck2_Engineering_ForStarChamber1) "rcp" = ( /obj/structure/table/standard, /obj/item/storage/fancy/whitecandle_box{ @@ -96993,7 +98081,8 @@ id = "sc-WTgallery"; name = "W-window tint control"; pixel_x = -27; - pixel_y = -11 + pixel_y = -11; + range = 20 }, /obj/machinery/light_switch{ pixel_x = -27; @@ -97012,13 +98101,13 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "rcx" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "rcy" = ( /obj/structure/bed/chair/sofa/sif_ora{ dir = 1 @@ -97026,7 +98115,7 @@ /obj/effect/landmark/start/visitor, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "rcB" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -97037,11 +98126,11 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "rcC" = ( /obj/structure/stairs/spawner/east, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "rcF" = ( /obj/structure/cable/green{ d1 = 1; @@ -97055,7 +98144,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "rcG" = ( /obj/structure/cable/green{ d1 = 2; @@ -97076,7 +98165,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "rcV" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 @@ -97089,7 +98178,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "rdl" = ( /obj/structure/cable{ d1 = 1; @@ -97099,11 +98188,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "rdA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "rdG" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -97115,7 +98204,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "rea" = ( /obj/structure/cable/green{ d1 = 2; @@ -97123,7 +98212,7 @@ icon_state = "2-8" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "reb" = ( /obj/machinery/power/apc{ dir = 8; @@ -97131,8 +98220,12 @@ pixel_x = -24 }, /obj/structure/cable/green, +/obj/structure/cable/white{ + d2 = 4; + icon_state = "0-4" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "ref" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -97155,13 +98248,23 @@ }, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "rek" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + layer = 3.5; + id = "Port Lockdown"; + name = "Lockdown Gate"; + desc = "A heavily reinforced gate, sector lockdown!" + }, +/obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/hallway/Port_2_Deck_Central_Corridor_2) "req" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -97176,7 +98279,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "rew" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/borderfloorblack{ @@ -97186,7 +98289,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "rez" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -97199,7 +98302,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "reH" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -97207,12 +98310,12 @@ id = "sc-WTsauna" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "reJ" = ( /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "rfd" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -97223,7 +98326,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "rfe" = ( /obj/structure/cable/green{ d1 = 4; @@ -97242,33 +98345,18 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "rfi" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "rft" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ +/obj/machinery/icecream_vat, +/obj/machinery/light/small{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/catwalk_plated/techmaint, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/area/crew_quarters/Chomp_Kitchen) "rfQ" = ( /obj/structure/table/glass, /obj/item/reagent_containers/blood/OPlus{ @@ -97323,14 +98411,14 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "rfR" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "rfX" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "rgn" = ( /obj/structure/table/rack, /obj/item/rig/pmc/engineer/green/equipped{ @@ -97345,8 +98433,13 @@ pixel_y = -5; req_access = list() }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -25; + name = "W-fire alarm" + }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "rgJ" = ( /obj/structure/cable/green{ d1 = 4; @@ -97363,7 +98456,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "rgP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -97383,7 +98476,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "rgS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -97394,11 +98487,11 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "rgZ" = ( /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "rhe" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -97410,10 +98503,17 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "rhm" = ( /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) +"rhp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "rhX" = ( /obj/structure/table/rack/holorack, /obj/item/circuitboard/recycler_crusher{ @@ -97467,7 +98567,7 @@ pixel_y = -9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "rii" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -97476,10 +98576,10 @@ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "rir" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "riG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -97496,7 +98596,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "riM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -97509,12 +98609,12 @@ icon_state = "pipe-c" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "riQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "riU" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ @@ -97531,7 +98631,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "riV" = ( /obj/structure/toilet{ dir = 4 @@ -97551,19 +98651,22 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "rjy" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "rjF" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/corner/purple/diagonal, @@ -97571,7 +98674,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "rjI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -97584,31 +98687,20 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "rjX" = ( /obj/machinery/sleeper, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "rkb" = ( /obj/machinery/power/port_gen/pacman, /obj/structure/cable/green, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) -"rkd" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/maintenance/Cargo_Substation) "rkf" = ( /obj/effect/floor_decal/industrial/arrows{ dir = 4 @@ -97649,14 +98741,14 @@ locked = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "rkm" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Science Substation Bypass" }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "rkt" = ( /obj/structure/cable/green{ d1 = 1; @@ -97670,7 +98762,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "rkJ" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -97687,22 +98779,18 @@ /obj/effect/floor_decal/corner/lightgrey/bordercorner{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "rkX" = ( /obj/structure/cable{ d1 = 2; d2 = 4; icon_state = "2-4" }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "rla" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloorwhite{ @@ -97712,7 +98800,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "rlb" = ( /obj/structure/loot_pile/maint/trash, /obj/random/junk, @@ -97720,14 +98808,7 @@ /obj/random/trash, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) -"rlk" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/area/maintenance/Deck2_Engineering_PortChamber2) "rlr" = ( /obj/item/clothing/suit/space/void/medical/alt{ pixel_x = -6 @@ -97755,13 +98836,13 @@ pixel_y = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "rlI" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/wood/alt/panel/broken/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "rma" = ( /obj/structure/cable/green{ d1 = 4; @@ -97781,7 +98862,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "rmc" = ( /obj/structure/cable/green{ d1 = 4; @@ -97799,7 +98880,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "rmd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -97819,13 +98900,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "rml" = ( /obj/structure/sign/directions/engineering/engeqp{ dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "rmw" = ( /obj/random/trash, /obj/random/maintenance/research, @@ -97834,17 +98915,44 @@ /obj/random/maintenance/clean, /obj/structure/table/rack/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) +/area/maintenance/Deck2_Science_ForCorridor1) +"rmN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "rmY" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "rnd" = ( /obj/structure/smoletrack/roadS, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "rnt" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -97852,16 +98960,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "rnx" = ( -/obj/effect/catwalk_plated/techmaint, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_2) "rnH" = ( /obj/structure/sign/directions/dock{ layer = 3.5; @@ -97872,15 +98983,7 @@ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Office_Lounge) -"rnQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/crew_quarters/Office_Lounge) "rnR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -97898,7 +99001,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "roa" = ( /obj/structure/cable/green{ d1 = 2; @@ -97928,7 +99031,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "rob" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -97956,7 +99059,7 @@ pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "roc" = ( /obj/structure/cable/green{ d1 = 1; @@ -97965,12 +99068,16 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) +"rol" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, +/area/crew_quarters/Chomp_Kitchen) "rov" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForStar_Chamber) +/area/maintenance/Deck2_Security_ForStar_Chamber) "roJ" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/cable{ @@ -97989,19 +99096,16 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) -"roM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/area/hallway/Star_Transit_Foyer) +"roS" = ( +/obj/machinery/feeder, +/obj/machinery/alarm{ + pixel_y = -25; + name = "S-alarm"; + dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/turf/simulated/floor/plating, +/area/crew_quarters/Chomp_Kitchen) "rpl" = ( /obj/structure/cable/green{ d1 = 1; @@ -98018,7 +99122,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "rpV" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloorblack{ @@ -98028,7 +99132,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "rpY" = ( /obj/machinery/shower{ dir = 1 @@ -98041,12 +99145,12 @@ dir = 6 }, /turf/simulated/floor/tiled/kafel_full/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "rqe" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "rqM" = ( /obj/structure/bed/chair/sofa/left/brown{ dir = 8; @@ -98058,7 +99162,7 @@ pixel_x = 32 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "rqR" = ( /obj/structure/cable/green{ d1 = 1; @@ -98074,12 +99178,12 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "rrh" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "rrl" = ( /obj/structure/cable/green{ d1 = 1; @@ -98088,7 +99192,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortCorridor1) +/area/maintenance/Deck2_Medical_AftPortCorridor1) "rrB" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1 @@ -98097,7 +99201,7 @@ dir = 4 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "rrE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -98107,13 +99211,13 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "rrO" = ( /obj/structure/bed/chair/sofa/right/sif_ora{ dir = 4 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "rrY" = ( /obj/machinery/alarm{ dir = 8; @@ -98126,7 +99230,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "rsf" = ( /obj/machinery/shieldwallgen{ anchored = 1; @@ -98146,7 +99250,7 @@ layer = 3.5 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "rsq" = ( /obj/structure/reagent_dispensers/water_cooler/full, /obj/machinery/camera/network/security{ @@ -98160,7 +99264,7 @@ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "rsu" = ( /obj/structure/cable/green{ d1 = 1; @@ -98168,11 +99272,15 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "rsF" = ( /obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "rsM" = ( /obj/machinery/light{ dir = 4; @@ -98193,7 +99301,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "rsR" = ( /obj/structure/table/rack/shelf/steel, /obj/item/storage/box/lights/mixed, @@ -98202,7 +99310,7 @@ /obj/item/clothing/mask/gas, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "rsS" = ( /obj/structure/cable/green{ d1 = 4; @@ -98225,13 +99333,13 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "rtf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 1 +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 4 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/Star_2_Deck_Central_Corridor_2) "rtk" = ( /obj/machinery/power/port_gen/pacman, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -98240,7 +99348,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "rtr" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -98271,11 +99379,11 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "rts" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "rtw" = ( /obj/machinery/power/apc{ dir = 4; @@ -98296,7 +99404,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "rty" = ( /obj/item/storage/box/syringes{ pixel_y = -4; @@ -98326,7 +99434,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "rtA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -98334,7 +99442,29 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) +"rtD" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/hatch, +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium, +/obj/structure/window/titanium{ + dir = 4 + }, +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium{ + dir = 8 + }, +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_PortChamber2) "rtL" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -98346,7 +99476,7 @@ name = "Gallery" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "ruc" = ( /obj/machinery/alarm{ dir = 4; @@ -98359,7 +99489,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "rue" = ( /obj/item/stool/padded{ dir = 1 @@ -98369,7 +99499,7 @@ name = "Bartender" }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "ruq" = ( /obj/structure/cable/green{ d1 = 1; @@ -98378,7 +99508,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "ruN" = ( /obj/machinery/medical_kiosk, /obj/structure/cable{ @@ -98396,7 +99526,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "ruP" = ( /obj/structure/cable/green{ d1 = 4; @@ -98418,7 +99548,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "rvc" = ( /obj/random/trash, /obj/structure/table/rack, @@ -98426,7 +99556,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "rvu" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -98465,7 +99595,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "rvA" = ( /obj/structure/cable/green{ d1 = 4; @@ -98482,11 +99612,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "rvV" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "rwb" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -98498,7 +99628,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "rwk" = ( /obj/machinery/light/small{ dir = 1 @@ -98506,7 +99636,7 @@ /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "rwn" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -98532,13 +99662,13 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "rww" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "rwy" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 6 @@ -98547,7 +99677,7 @@ dir = 5 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "rwP" = ( /obj/machinery/vending/wallmed1{ dir = 1; @@ -98565,13 +99695,13 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "rxm" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "rxr" = ( /obj/machinery/camera/network/security{ c_tag = "D2-Com-Star Foyer1"; @@ -98579,12 +99709,12 @@ dir = 1 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "rxw" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "rxD" = ( /obj/machinery/light{ dir = 4; @@ -98597,7 +99727,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "rxH" = ( /obj/random/junk, /obj/structure/cable/green{ @@ -98611,7 +99741,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "rxI" = ( /obj/structure/table/reinforced, /obj/item/storage/box/cups{ @@ -98643,7 +99773,13 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) +"rxJ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/hallway/Central_2_Deck_Hall) "rxL" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -98680,7 +99816,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "rxO" = ( /obj/effect/floor_decal/shuttle/blue{ pixel_x = -1; @@ -98688,14 +99824,13 @@ }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "rxW" = ( -/obj/structure/disposalpipe/segment, /obj/structure/sign/directions/evac{ layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "ryb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -98711,7 +99846,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "ryn" = ( /obj/structure/table/hardwoodtable, /obj/structure/prop/dominator/green{ @@ -98724,24 +99859,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/VR) -"ryq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/crew_quarters/VR) "ryG" = ( /obj/structure/cable{ d1 = 2; @@ -98759,7 +99877,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "ryI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -98783,7 +99901,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "ryK" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -98792,13 +99910,21 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) +"ryV" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/hallway/For_2_Deck_Central_Corridor_2) "rzc" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, +/obj/machinery/firealarm{ + pixel_y = 25; + name = "N-fire alarm" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "rzk" = ( /obj/structure/reagent_dispensers/water_cooler/full, /obj/structure/cable{ @@ -98816,24 +99942,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) -"rzn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/holoposter{ - dir = 4 - }, -/turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_Transit_Foyer) "rzo" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -98847,7 +99956,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "rzr" = ( /obj/structure/cable/white{ d1 = 1; @@ -98857,13 +99966,13 @@ /obj/effect/catwalk_plated/white, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "rzs" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "rzu" = ( /obj/machinery/disposal, /obj/structure/cable{ @@ -98884,7 +99993,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "rzH" = ( /obj/structure/cable/green{ d1 = 4; @@ -98901,7 +100010,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "rzK" = ( /obj/machinery/vending/snack, /obj/structure/cable{ @@ -98919,7 +100028,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "rzM" = ( /obj/machinery/light/floortube{ pixel_y = -2 @@ -98931,7 +100040,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "rzN" = ( /obj/structure/table/reinforced, /obj/machinery/computer/skills{ @@ -98939,7 +100048,7 @@ pixel_y = -12 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "rzV" = ( /obj/structure/cable/green{ d1 = 4; @@ -98953,7 +100062,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "rAj" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, @@ -98964,7 +100073,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "rAk" = ( /obj/structure/cable/green{ d1 = 1; @@ -98977,7 +100086,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "rAm" = ( /obj/machinery/vending/coffee, /obj/structure/cable{ @@ -98995,7 +100104,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "rAq" = ( /obj/effect/wingrille_spawn/reinforced_phoron, /obj/machinery/door/firedoor/glass, @@ -99005,11 +100114,11 @@ }, /obj/structure/sign/warning/vacuum, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "rAI" = ( /obj/structure/bed/pillowpilefront/black, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "rAK" = ( /obj/structure/cable{ d1 = 4; @@ -99026,11 +100135,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "rAP" = ( /obj/structure/loot_pile/maint/boxfort, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "rBe" = ( /obj/structure/cable/green{ d1 = 1; @@ -99039,7 +100148,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "rBh" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -99048,7 +100157,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "rBn" = ( /obj/structure/cable/green{ d1 = 4; @@ -99064,7 +100173,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "rBp" = ( /obj/structure/cable/green{ d1 = 2; @@ -99083,19 +100192,21 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "rBr" = ( -/obj/machinery/seed_extractor, -/obj/machinery/camera/network/security{ - c_tag = "D2-Dmc-Chomp Hydroponics1"; - network = list("Domicile") +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + name = "Kitchen Shutters"; + id = "sc-GCkitchen"; + layer = 3.3 }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/Chomp_Dinner_1) "rBs" = ( /obj/random/action_figure, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "rBv" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -99108,7 +100219,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "rBy" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -99117,13 +100228,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "rBJ" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForPortChamber1) +/area/maintenance/Deck2_Security_ForPortChamber1) "rBR" = ( /obj/machinery/camera/network/security{ - c_tag = "D2-Com-Aft Corridor6"; + c_tag = "D2-Com-Aft Corridor5"; network = list("Commons") }, /obj/effect/floor_decal/borderfloor{ @@ -99132,14 +100243,33 @@ /obj/effect/floor_decal/corner/white/border{ dir = 1 }, +/obj/machinery/firealarm{ + pixel_y = 25; + name = "N-fire alarm" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) +"rCc" = ( +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/Chomp_Kitchen) "rCj" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "rCn" = ( /obj/structure/cable/green{ d1 = 1; @@ -99151,7 +100281,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "rCx" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/accessory/stethoscope{ @@ -99198,28 +100328,13 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Dressing_Room) -"rCC" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance/int, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/area/medical/Dressing_Room) "rCN" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/milspec/box, /obj/mecha/working/ripley/mining/old, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "rCR" = ( /obj/structure/cable{ d1 = 1; @@ -99233,7 +100348,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "rCU" = ( /obj/structure/cable/green{ d1 = 1; @@ -99241,11 +100356,16 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) +"rDa" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Cargo_AftStarCorridor1) "rDe" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "rDi" = ( /obj/fiftyspawner/wood, /obj/fiftyspawner/wood, @@ -99276,11 +100396,11 @@ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "rDj" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber2) +/area/maintenance/Deck2_Engineering_ForStarChamber2) "rDu" = ( /obj/structure/table/rack{ dir = 8; @@ -99323,40 +100443,21 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "rDB" = ( /obj/structure/table/woodentable, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "rDT" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) -"rDY" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/machinery/light/floortube{ - dir = 1; - pixel_y = 3 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/maintenance/Deck2_Security_AftPortCorridor1) "rEl" = ( /obj/structure/closet/secure_closet/medical2, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "rEq" = ( /obj/structure/sink{ dir = 4; @@ -99368,7 +100469,7 @@ pixel_y = 6 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "rEA" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 8 @@ -99377,15 +100478,15 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "rEC" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "rEG" = ( /obj/structure/railing, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "rEJ" = ( /obj/item/clothing/suit/space/void/engineering{ pixel_x = -7 @@ -99417,7 +100518,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "rEL" = ( /obj/machinery/firealarm{ dir = 8; @@ -99425,7 +100526,7 @@ name = "W-fire alarm" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "rEM" = ( /obj/structure/cable/green{ d1 = 1; @@ -99436,7 +100537,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "rFc" = ( /obj/structure/loot_pile/surface/medicine_cabinet/fresh{ pixel_y = 25 @@ -99444,7 +100545,7 @@ /obj/random/junk, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "rFf" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -99464,7 +100565,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "rFg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -99488,7 +100589,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "rFk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -99500,7 +100601,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "rFo" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -99508,7 +100609,7 @@ /turf/simulated/floor/boxing{ name = "yoga mat" }, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "rFp" = ( /obj/structure/cable/green{ d1 = 1; @@ -99529,11 +100630,17 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "rGf" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) +"rGm" = ( +/obj/item/stool/baystool/padded{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Dinner_1) "rGo" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -99565,12 +100672,12 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "rGT" = ( /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "rGV" = ( /obj/structure/cable/green{ d1 = 4; @@ -99586,7 +100693,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_PortCorridor1) +/area/maintenance/Deck2_Security_PortCorridor1) "rGX" = ( /obj/machinery/status_display{ name = "S-status display"; @@ -99607,7 +100714,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "rHb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -99616,7 +100723,7 @@ /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "rHm" = ( /obj/item/stool/padded, /obj/effect/landmark/start{ @@ -99629,7 +100736,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "rHr" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -99641,7 +100748,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "rHy" = ( /obj/machinery/air_sensor{ frequency = 1430; @@ -99655,7 +100762,7 @@ dir = 1 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "rHB" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -99686,7 +100793,16 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) +"rHG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "rHN" = ( /obj/structure/sign/warning/evac, /turf/simulated/shuttle/wall/no_join{ @@ -99704,7 +100820,7 @@ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "rId" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -99728,7 +100844,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "rIe" = ( /obj/structure/cable/green{ d1 = 1; @@ -99741,11 +100857,11 @@ /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ +/obj/effect/floor_decal/corner/brown/bordercorner{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "rIi" = ( /obj/structure/cable/green{ d1 = 4; @@ -99760,7 +100876,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "rIm" = ( /obj/structure/table/woodentable, /obj/item/paint_palette{ @@ -99791,22 +100907,16 @@ pixel_y = -36 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "rIv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/closet/secure_closet/freezer/meat, +/obj/machinery/firealarm{ + dir = 4; + name = "E-fire alarm"; + pixel_x = 25 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/Chomp_Kitchen) "rIA" = ( /obj/effect/floor_decal/carpet{ dir = 8 @@ -99817,7 +100927,7 @@ network = list("Domicile") }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "rID" = ( /obj/structure/sink{ dir = 8; @@ -99830,7 +100940,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "rIM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -99848,7 +100958,7 @@ }, /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "rIN" = ( /obj/machinery/ai_status_display{ pixel_y = -32; @@ -99858,7 +100968,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "rIT" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/sign/small/warning/emerg_only{ @@ -99866,7 +100976,7 @@ pixel_y = -32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "rJh" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/brown/bordercorner, @@ -99881,11 +100991,11 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "rJB" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor2) +/area/maintenance/Deck2_Science_StarCorridor2) "rKl" = ( /obj/structure/cable/green{ d1 = 4; @@ -99899,34 +101009,34 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "rKm" = ( /obj/structure/closet/crate/freezer/nanotrasen{ dir = 8 }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "rKx" = ( /obj/effect/floor_decal/chapel, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "rKE" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "rKQ" = ( /obj/machinery/light{ dir = 1; name = "1N-lighting fixture" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "rKU" = ( /obj/structure/sign/directions/eva, /obj/structure/sign/directions/engineering/gravgen{ @@ -99936,7 +101046,7 @@ pixel_y = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "rLh" = ( /obj/structure/cable{ d1 = 4; @@ -99944,7 +101054,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "rLy" = ( /obj/structure/table/rack{ dir = 8; @@ -99953,7 +101063,7 @@ /obj/random/tech_supply, /obj/random/tech_supply/component, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "rLU" = ( /obj/structure/cable{ d1 = 1; @@ -99967,19 +101077,32 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) +"rLW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/machinery/status_display{ + name = "W-status display"; + pixel_x = -32 + }, +/turf/simulated/floor/carpet/brown, +/area/crew_quarters/Library) "rMh" = ( /obj/structure/sign/department/armory{ desc = "Sign of some important station compartment." }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "rMs" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "rMw" = ( /obj/structure/cable/green{ d1 = 4; @@ -99995,7 +101118,23 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) +"rMF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 2 + }, +/obj/structure/sign/poster/nanotrasen{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "rMJ" = ( /obj/structure/cable{ d1 = 4; @@ -100003,7 +101142,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "rMM" = ( /obj/item/clothing/suit/space/void/atmos{ pixel_x = -6 @@ -100040,7 +101179,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "rMW" = ( /obj/structure/cable/green{ d1 = 2; @@ -100056,7 +101195,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "rMX" = ( /obj/structure/cable/green{ d1 = 4; @@ -100081,7 +101220,7 @@ pixel_y = -25 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "rMY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -100119,41 +101258,22 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "rNa" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) -"rNn" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/crew_quarters/Rec_Lounge) "rNz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/obj/structure/reagent_dispensers/foam, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_AftPort_Corridor) "rNB" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4; color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "rNC" = ( /obj/structure/filingcabinet, /obj/item/storage/secure/safe{ @@ -100167,15 +101287,15 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "rNP" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "rNS" = ( /obj/structure/table, /turf/simulated/floor/wood/alt/panel/broken/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "rOD" = ( /obj/effect/decal/cleanable/blood/splatter{ name = "Liquid" @@ -100188,32 +101308,17 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "rOO" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) -"rOP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/holoposter{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_1) "rOX" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/shuttle/loading/yellow{ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "rPx" = ( /obj/structure/cable{ d1 = 1; @@ -100226,7 +101331,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "rPz" = ( /obj/structure/cable/green{ d1 = 1; @@ -100245,22 +101350,25 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "rPG" = ( /obj/machinery/light/small, +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "rPP" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "rPT" = ( /obj/item/grenade/confetti/party_ball, /obj/random/tool, /obj/item/toy/nanotrasenballoon, /obj/item/toy/snappop, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "rQi" = ( /obj/structure/cable/green{ d1 = 1; @@ -100275,10 +101383,10 @@ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "rQu" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "rQx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -100300,7 +101408,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "rQB" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -100323,7 +101431,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "rRc" = ( /obj/structure/cable/white{ d1 = 1; @@ -100332,34 +101440,19 @@ }, /obj/machinery/ai_status_display, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "rRf" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) -"rRg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/light/floortube{ - pixel_y = -2 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/security/HoS_Office) "rRn" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "rRo" = ( /obj/structure/cable/green{ d1 = 4; @@ -100368,7 +101461,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Corridor) +/area/maintenance/Deck2_Science_ForPort_Corridor) "rRs" = ( /obj/structure/cable/green{ d1 = 1; @@ -100378,7 +101471,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "rRH" = ( /obj/structure/railing/grey{ color = "yellow" @@ -100388,7 +101481,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "rRK" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 6 @@ -100397,11 +101490,11 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "rSd" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Port_Corridor) "rSm" = ( /obj/structure/cable/green{ d1 = 1; @@ -100410,7 +101503,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "rSH" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -100419,16 +101512,16 @@ dir = 8 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "rSV" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "rTn" = ( -/obj/random/trash, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_2) "rTs" = ( /obj/structure/cable/green{ d1 = 4; @@ -100445,10 +101538,10 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "rTw" = ( /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "rTy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -100458,20 +101551,22 @@ d2 = 4; icon_state = "2-4" }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) -"rTE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/catwalk_plated/techmaint, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/turf/simulated/floor/tiled, +/area/engineering/Engineering_Workshop) +"rTE" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 25; + name = "N-fire alarm" + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "rTH" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -100491,7 +101586,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "rUk" = ( /obj/machinery/atmospherics/binary/passive_gate{ dir = 4; @@ -100500,7 +101595,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "rUI" = ( /obj/structure/toilet{ dir = 4 @@ -100520,7 +101615,17 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) +"rUP" = ( +/obj/machinery/meter, +/obj/machinery/camera/network/security{ + dir = 8; + c_tag = "D2-Eng-Distro Domicile1"; + network = list("engineering") + }, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "rUQ" = ( /obj/machinery/ai_status_display{ name = "1N-AI display"; @@ -100533,11 +101638,11 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "rVe" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "rVk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -100549,7 +101654,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "rVs" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -100558,7 +101663,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "rVx" = ( /obj/structure/cable/green{ d1 = 1; @@ -100573,11 +101678,11 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "rVE" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "rVF" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -100589,7 +101694,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "rVJ" = ( /obj/structure/cable/green{ d1 = 4; @@ -100606,23 +101711,23 @@ dir = 4 }, /obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "rVK" = ( /obj/item/clothing/shoes/cult, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "rWc" = ( /obj/machinery/light/small{ dir = 1 }, /obj/effect/catwalk_plated, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "rWd" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "rWh" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -100631,19 +101736,19 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "rWs" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "rWt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "rWu" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ @@ -100662,7 +101767,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "rWH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -100675,7 +101780,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "rXg" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 @@ -100688,29 +101793,21 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "rXw" = ( /obj/structure/disposalpipe/sortjunction/wildcard/flipped{ dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "rXE" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 +/obj/effect/floor_decal/spline/plain, +/obj/machinery/light{ + dir = 1; + name = "1N-lighting fixture" }, -/obj/machinery/door/airlock/maintenance/int, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "rXL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -100719,7 +101816,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "rXR" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -100734,7 +101831,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "rXS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -100745,14 +101842,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) -"rXV" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/medical/Treatment_Hall) "rXZ" = ( /obj/structure/cable/green{ d1 = 4; @@ -100778,13 +101868,13 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "rYd" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "rYe" = ( /obj/structure/cable/green{ d1 = 4; @@ -100811,7 +101901,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "rYl" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -100829,31 +101919,14 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "rYm" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) -"rYA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/security/Prison_Wing) "rYB" = ( /obj/structure/sign/securearea{ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; @@ -100866,7 +101939,7 @@ dir = 1 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "rYF" = ( /obj/machinery/alarm{ dir = 8; @@ -100874,14 +101947,14 @@ }, /obj/effect/spider/stickyweb/dark, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "rYG" = ( /obj/structure/railing, /obj/structure/curtain/bed{ name = "curtain" }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "rYQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -100890,7 +101963,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "rZn" = ( /obj/structure/cable/green{ d1 = 2; @@ -100915,15 +101988,16 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "rZy" = ( -/obj/random/maintenance/engineering, -/obj/structure/table/rack/steel, -/obj/random/maintenance/engineering, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_2) "rZG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -100937,13 +102011,25 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "rZW" = ( /obj/structure/bed/chair/sofa/corner/black{ dir = 8 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) +"sac" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/arrows/yellow, +/obj/effect/floor_decal/industrial/arrows/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance/int{ + name = "Kitchen Maintenance"; + req_one_access = list(28) + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/Chomp_Kitchen) "saC" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -100964,7 +102050,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "saJ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -100976,7 +102062,7 @@ name = "EngiCargo Foyer" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "saL" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -100986,7 +102072,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "sbk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -101003,40 +102089,25 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "sbq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "sbr" = ( /obj/structure/table/woodentable, /obj/item/camera/selfie, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "sbw" = ( /obj/structure/bed/chair/sofa/orange{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "sbE" = ( /obj/structure/cable/green{ d1 = 1; @@ -101049,7 +102120,7 @@ dir = 8 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "sbG" = ( /obj/structure/cable/green{ d1 = 1; @@ -101076,12 +102147,12 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "sbH" = ( /obj/random/trash, /obj/structure/table/rack/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "sbK" = ( /obj/item/stool/baystool/padded, /obj/machinery/firealarm{ @@ -101090,19 +102161,16 @@ pixel_x = -25 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "sbL" = ( -/obj/machinery/shield_capacitor, /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, +/obj/machinery/shield_capacitor, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "sbZ" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -101118,7 +102186,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "scc" = ( /obj/structure/cable{ d1 = 1; @@ -101132,30 +102200,28 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "scm" = ( /obj/effect/floor_decal/spline/fancy{ dir = 5 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "scp" = ( -/obj/structure/cable/green{ +/obj/effect/catwalk_plated/techmaint, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "scv" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -101169,7 +102235,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "scC" = ( /obj/structure/cable/green{ d1 = 1; @@ -101181,7 +102247,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "scI" = ( /obj/machinery/power/apc{ dir = 4; @@ -101193,14 +102259,14 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "scJ" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "scT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -101217,15 +102283,15 @@ /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "scW" = ( /obj/random/trash_pile, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "sdb" = ( /obj/machinery/firealarm{ dir = 8; @@ -101241,10 +102307,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "sdq" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Port_Corridor) "sdv" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -101253,11 +102319,11 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "sdH" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "sdJ" = ( /obj/structure/cable/green{ d1 = 1; @@ -101270,15 +102336,15 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "sdR" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "sec" = ( /obj/effect/decal/cleanable/filth, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "sed" = ( /obj/structure/cable{ d2 = 4; @@ -101292,16 +102358,19 @@ }, /obj/machinery/power/smes/batteryrack, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "sex" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "seI" = ( +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Port_Corridor) "seJ" = ( /obj/machinery/light/small{ dir = 1 @@ -101310,14 +102379,14 @@ /obj/random/medical/pillbottle, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortChamber1) +/area/maintenance/Deck2_Medical_AftPortChamber1) "seX" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/yellow, /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "sfb" = ( /obj/structure/bed/chair/backed_red{ dir = 8 @@ -101326,7 +102395,7 @@ dir = 6 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "sfd" = ( /obj/structure/cable{ d1 = 1; @@ -101338,11 +102407,16 @@ /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 }, -/obj/effect/floor_decal/corner/green/bordercorner{ +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/orange/bordercorner{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "sfq" = ( /obj/machinery/alarm{ dir = 1; @@ -101350,7 +102424,7 @@ }, /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "sfs" = ( /obj/structure/cable/green{ d1 = 1; @@ -101367,7 +102441,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "sfv" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -101384,11 +102458,11 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "sfw" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "sfI" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals10{ @@ -101398,20 +102472,30 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) +"sfR" = ( +/obj/effect/catwalk_plated/techmaint, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_AftStar_Corridor) "sfS" = ( /obj/structure/disposalpipe/sortjunction/wildcard{ dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "sga" = ( /obj/structure/window/basic, /obj/structure/reagent_dispensers/water_cooler/full{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "sgp" = ( /obj/structure/sign/directions/medical/medeqp{ pixel_y = 9 @@ -101421,13 +102505,13 @@ layer = 3.5 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "sgw" = ( /obj/structure/smoletrack/roadturn{ dir = 4 }, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "sgx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -101446,11 +102530,12 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/paleblue/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_2) "sgK" = ( /obj/structure/cable/green{ d1 = 1; @@ -101465,7 +102550,7 @@ dir = 10 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "sgR" = ( /obj/structure/cable/green{ d1 = 4; @@ -101487,13 +102572,13 @@ }, /obj/structure/table/woodentable, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "sgY" = ( /obj/structure/window/reinforced/tinted/frosted{ dir = 4 }, /turf/simulated/floor/carpet/bcarpet/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "sgZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -101510,10 +102595,10 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "shc" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "shk" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -101535,11 +102620,21 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) +"sho" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "shx" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "shB" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -101549,24 +102644,35 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "shD" = ( /obj/machinery/appliance/cooker/oven, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) +"shH" = ( +/turf/simulated/floor/grass, +/area/hallway/For_2_Deck_Central_Corridor_2) "shL" = ( -/obj/effect/floor_decal/borderfloor{ +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + layer = 3.5; + id = "Port Lockdown"; + name = "Lockdown Gate"; + desc = "A heavily reinforced gate, sector lockdown!" + }, +/obj/machinery/door/airlock/angled_bay/double/glass/engineering{ + dir = 8; + req_access = null; + name = "Port Sector Engineering-Cargo" + }, +/obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/turf/simulated/floor/tiled/techmaint, +/area/hallway/Port_2_Deck_Central_Corridor_2) "shT" = ( /obj/structure/ladder{ pixel_y = 3 @@ -101577,7 +102683,7 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarCorridor1) +/area/maintenance/Deck2_Cargo_AftStarCorridor1) "shU" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -101594,7 +102700,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "sib" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -101616,7 +102722,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "sig" = ( /obj/structure/cable/green{ d1 = 1; @@ -101627,7 +102733,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "sii" = ( /obj/structure/cable/green{ d1 = 1; @@ -101637,7 +102743,7 @@ /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "sik" = ( /obj/machinery/flasher{ id = "testthis"; @@ -101654,13 +102760,13 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "sin" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "sip" = ( /obj/structure/cable/green{ d1 = 1; @@ -101669,7 +102775,25 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) +"siv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_2) +"siE" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/light{ + name = "1S-light fixture" + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "siY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -101683,7 +102807,7 @@ }, /obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "sjb" = ( /obj/structure/table/rack/shelf/steel, /obj/item/grenade/confetti/party_ball, @@ -101697,17 +102821,25 @@ /obj/item/toy/snappop, /obj/item/toy/snappop, /obj/machinery/firework_launcher, +/obj/structure/cable/white{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) -"sjK" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 +/area/maintenance/Deck2_Civilian_PortChamber1) +"sjZ" = ( +/obj/structure/sign/directions/bar{ + pixel_y = 9; + layer = 3.5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/directions/recreation, +/obj/structure/sign/directions/dock{ + pixel_y = -9; + layer = 3.5 }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/turf/simulated/wall/r_wall, +/area/maintenance/Deck2_AftPort_Corridor) "skl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -101716,7 +102848,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "skp" = ( /obj/structure/window/titanium{ dir = 8 @@ -101729,7 +102861,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "skI" = ( /obj/structure/cable/green{ d1 = 4; @@ -101746,27 +102878,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) -"skZ" = ( -/obj/structure/table/standard, -/obj/item/storage/box/lights/bulbs{ - pixel_y = 5; - pixel_x = 6 - }, -/obj/item/storage/box/lights/tubes{ - pixel_y = 15; - pixel_x = 6 - }, -/obj/random/flashlight{ - pixel_y = -5; - pixel_x = -5 - }, -/obj/item/clamp{ - pixel_y = 9; - pixel_x = -7 - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/area/crew_quarters/Gym) "slk" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -101787,11 +102899,11 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "slm" = ( /obj/effect/catwalk_plated/white, /turf/space, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "slB" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/portable_atmospherics/canister/air, @@ -101799,7 +102911,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "slC" = ( /obj/structure/cable{ d1 = 1; @@ -101813,22 +102925,27 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "slJ" = ( /obj/structure/lattice, /obj/random/trash, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "slP" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "smb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "smd" = ( /obj/structure/cable/green{ d1 = 1; @@ -101843,13 +102960,13 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "smg" = ( /obj/random/trash, /obj/structure/table/standard, /obj/random/maintenance/security, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "smo" = ( /obj/machinery/shower{ dir = 1 @@ -101862,35 +102979,36 @@ }, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Gym) -"smt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/holoposter{ - dir = 4; - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/crew_quarters/Gym) "smB" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/green/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/area/hallway/For_2_Deck_Central_Corridor_1) "smF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) +"smI" = ( +/obj/structure/lattice, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_PortChamber2) "smP" = ( /obj/structure/closet{ name = "Evidence Closet"; @@ -101901,7 +103019,7 @@ }, /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "smR" = ( /obj/structure/cable/green{ d1 = 1; @@ -101917,8 +103035,12 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "smU" = ( /obj/structure/cable{ d1 = 4; @@ -101927,7 +103049,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "sna" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -101941,7 +103063,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "snp" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -101959,12 +103081,12 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "snr" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "snv" = ( /obj/structure/cable/green{ d1 = 2; @@ -101976,32 +103098,31 @@ }, /obj/effect/floor_decal/corner/beige/diagonal, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "snO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "snR" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "soe" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_2) "sof" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "som" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloorwhite/corner2, @@ -102013,13 +103134,13 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "sov" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "soA" = ( /obj/structure/closet/crate/secure/large/reinforced, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -102032,7 +103153,7 @@ /obj/fiftyspawner/steel, /obj/fiftyspawner/plastic, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "soH" = ( /obj/structure/cable/green{ d1 = 1; @@ -102046,16 +103167,32 @@ color = "#989898" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) +"soM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "soW" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "spa" = ( /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "spo" = ( /obj/structure/cable/green{ d1 = 1; @@ -102077,7 +103214,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "spx" = ( /obj/machinery/photocopier, /obj/effect/floor_decal/borderfloorblack{ @@ -102087,7 +103224,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "spR" = ( /obj/structure/sign/directions/science{ dir = 4; @@ -102100,32 +103237,32 @@ }, /obj/structure/sign/directions/command{ pixel_y = -9; - dir = 9; + dir = 8; layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "sqb" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "sqd" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "sqi" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "sql" = ( /obj/machinery/light/small, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "sqn" = ( /obj/structure/table/steel, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "sqp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -102139,7 +103276,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "sqB" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -102149,12 +103286,12 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "sqI" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/purple/border{ dir = 6 }, /obj/effect/floor_decal/steeldecal/steel_decals10, @@ -102162,7 +103299,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "sqJ" = ( /obj/machinery/autolathe, /obj/machinery/light{ @@ -102170,7 +103307,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "sqP" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -102181,7 +103318,7 @@ /obj/random/trash, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "sqT" = ( /obj/structure/cable/green{ d1 = 1; @@ -102189,11 +103326,11 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "srd" = ( /obj/structure/smolebuilding/business, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "srf" = ( /obj/machinery/light{ dir = 8; @@ -102207,20 +103344,20 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/lightorange/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "srq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "srF" = ( /obj/structure/table/steel, /obj/item/storage/backpack/dufflebag/emt{ @@ -102230,7 +103367,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "srH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -102238,7 +103375,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "srJ" = ( /obj/structure/cable/green{ d1 = 1; @@ -102256,19 +103393,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "srO" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "srP" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/security, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "ssf" = ( /obj/structure/cable/green{ d1 = 1; @@ -102296,7 +103433,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "ssi" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -102308,7 +103445,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "ssp" = ( /obj/structure/sign/directions/science/xenoflora{ pixel_y = -9; @@ -102322,12 +103459,12 @@ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "ssv" = ( /obj/structure/table, /obj/item/toy/snappop, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "ssC" = ( /obj/structure/table/marble, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -102336,10 +103473,11 @@ /obj/machinery/door/blast/gate/thin{ id = "sc-GCcoffeeshop"; layer = 3.3; - name = "Coffee-Shop Shutters" + name = "Coffee-Shop Shutters"; + dir = 2 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "ssD" = ( /obj/structure/cable{ d1 = 4; @@ -102349,17 +103487,17 @@ /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "ssH" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "ssI" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -102379,25 +103517,25 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "ssP" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "stu" = ( /obj/structure/closet/wardrobe/chemistry_white, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "stv" = ( /obj/effect/floor_decal/spline/fancy{ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "stG" = ( /obj/item/radio/intercom/department/medbay{ dir = 4; @@ -102408,7 +103546,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "stW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor/corner{ @@ -102418,7 +103556,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "sua" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -102438,7 +103576,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "sub" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -102447,7 +103585,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "sud" = ( /obj/machinery/power/apc{ dir = 1; @@ -102458,8 +103596,12 @@ d2 = 8; icon_state = "0-8" }, +/obj/structure/cable/white{ + d2 = 2; + icon_state = "0-2" + }, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "sum" = ( /obj/structure/cable/green{ d1 = 4; @@ -102485,12 +103627,12 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "sup" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "suv" = ( /obj/structure/cable{ d1 = 1; @@ -102502,7 +103644,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "suJ" = ( /obj/structure/cable/green{ d1 = 4; @@ -102519,7 +103661,16 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) +"suW" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_1) "svj" = ( /obj/structure/cable/green{ d1 = 4; @@ -102537,10 +103688,10 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "svD" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "svF" = ( /obj/structure/cable/green{ d1 = 4; @@ -102548,22 +103699,42 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "svX" = ( -/obj/machinery/status_display{ - name = "S-status display"; - pixel_y = -32 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/vending/hydronutrients, -/turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) +"svY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "swc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "swg" = ( /obj/structure/cable/green{ d1 = 4; @@ -102577,7 +103748,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "swk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -102594,10 +103765,10 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "swo" = ( /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "swx" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -102609,30 +103780,12 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) -"swY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/catwalk_plated/techmaint, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/hallway/Central_2_Deck_Hall) "sxa" = ( /obj/machinery/power/port_gen/pacman, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "sxc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -102641,13 +103794,30 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) +"sxn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_2) "sxu" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "sxv" = ( /obj/structure/cable/green{ d1 = 1; @@ -102670,7 +103840,7 @@ }, /obj/effect/floor_decal/industrial/arrows/blue, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "sxF" = ( /obj/structure/cable/green{ d1 = 4; @@ -102685,7 +103855,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "sxH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -102693,36 +103863,37 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "sxI" = ( /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "sxJ" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "sxL" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "sxQ" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "sxR" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "sxW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/arrows/yellow, +/obj/effect/floor_decal/industrial/arrows/yellow{ + dir = 1 }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/obj/machinery/door/airlock/maintenance/int, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "syd" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -102739,7 +103910,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "syt" = ( /obj/machinery/light{ dir = 1; @@ -102761,7 +103932,7 @@ dir = 6 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "syU" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -102773,7 +103944,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "syX" = ( /obj/structure/table/hardwoodtable, /obj/machinery/light{ @@ -102781,7 +103952,11 @@ }, /obj/item/storage/box/gum, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) +"syY" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass, +/area/hallway/Central_2_Deck_Hall) "syZ" = ( /obj/machinery/alarm{ dir = 4; @@ -102789,12 +103964,12 @@ }, /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "szj" = ( /obj/effect/floor_decal/milspec/box, /obj/machinery/light, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "szk" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -102825,7 +104000,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "sAd" = ( /obj/structure/cable/green{ d1 = 2; @@ -102848,14 +104023,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "sAf" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForStar_Chamber) +/area/maintenance/Deck2_Security_ForStar_Chamber) "sAg" = ( /obj/machinery/vr_sleeper{ dir = 4 @@ -102866,33 +104041,14 @@ pixel_y = -25 }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Domicile/VR) -"sAh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/crew_quarters/VR) "sAt" = ( /obj/structure/table/hardwoodtable, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "sAF" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -102901,7 +104057,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "sAH" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -102909,11 +104065,11 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "sAL" = ( /mob/living/simple_mob/animal/passive/mouse/rat, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "sAN" = ( /obj/structure/cable{ d1 = 1; @@ -102932,7 +104088,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "sAO" = ( /obj/structure/cable/green{ d1 = 1; @@ -102955,13 +104111,13 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "sBb" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "sBl" = ( /obj/structure/cable/green{ d1 = 2; @@ -102990,7 +104146,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "sBv" = ( /obj/structure/table/rack/shelf/steel, /obj/item/suit_cooling_unit{ @@ -103033,16 +104189,30 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) +/area/maintenance/Deck2_Science_ForCorridor1) +"sBz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 25; + name = "E-fire alarm" + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "sBD" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "sBI" = ( /obj/structure/stairs/spawner/east, /obj/structure/railing, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "sBS" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -103051,7 +104221,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "sBX" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -103071,7 +104241,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "sCb" = ( /obj/structure/cable/green{ d1 = 4; @@ -103099,19 +104269,34 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) +"sCj" = ( +/obj/machinery/light{ + name = "1S-light fixture" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "sCq" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "sCt" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "sCB" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/red, /obj/machinery/recharger/wallcharger{ @@ -103127,7 +104312,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "sCC" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -103142,14 +104327,14 @@ color = "#9185ff" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "sCE" = ( /obj/machinery/newscaster{ pixel_x = 28; name = "1E-newscaster" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "sCG" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -103161,7 +104346,11 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) +"sCP" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "sCR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -103179,7 +104368,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "sCT" = ( /obj/structure/railing/grey{ color = "yellow" @@ -103189,7 +104378,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "sCV" = ( /obj/machinery/flasher/portable, /obj/machinery/alarm{ @@ -103206,7 +104395,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "sDc" = ( /obj/structure/closet/secure_closet/medical3, /obj/item/radio/intercom{ @@ -103217,7 +104406,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "sDr" = ( /obj/structure/cable{ d1 = 1; @@ -103235,7 +104424,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "sDt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -103246,24 +104435,26 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "sDy" = ( /obj/machinery/light/small, +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) -"sDz" = ( -/obj/effect/floor_decal/industrial/hatch/blue, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/maintenance/Deck2_ForStar_Corridor) "sDJ" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "sEr" = ( /obj/structure/cable/green{ d1 = 4; @@ -103280,10 +104471,10 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "sEx" = ( /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "sEG" = ( /obj/machinery/camera/network/security{ dir = 4; @@ -103297,7 +104488,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "sEL" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -103316,7 +104507,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "sFr" = ( /obj/structure/cable/green{ d1 = 4; @@ -103324,14 +104515,7 @@ icon_state = "4-8" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) -"sFt" = ( -/obj/structure/ladder/updown{ - pixel_y = 3 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/crew_quarters/Rec_Lounge) "sFu" = ( /obj/structure/table/fancyblack, /obj/item/clothing/mask/muzzle/ballgag{ @@ -103339,14 +104523,22 @@ }, /obj/item/clothing/mask/muzzle/ballgag/ringgag, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "sFA" = ( -/obj/machinery/atmospherics/pipe/tank/air/full{ - dir = 4 +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 }, -/obj/effect/floor_decal/industrial/hatch/blue, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/Chomp_Kitchen) "sFE" = ( /obj/item/clothing/suit/storage/apron{ pixel_x = -5 @@ -103390,18 +104582,24 @@ dir = 10 }, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "sFM" = ( -/obj/structure/table/marble, -/obj/machinery/cash_register/civilian{ - dir = 4 +/obj/item/stool/padded{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Chef" + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 }, /obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "sFN" = ( /obj/structure/bed/chair/bay/shuttle{ dir = 4 @@ -103416,7 +104614,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "sFR" = ( /obj/structure/cable/green{ d1 = 1; @@ -103429,7 +104627,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "sFT" = ( /obj/structure/cable/green{ d1 = 4; @@ -103446,7 +104644,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "sGc" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -103458,33 +104656,18 @@ id_tag = "sc-DBSstall4" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "sGm" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) -"sGp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/security/Processing_Room) "sGr" = ( /obj/structure/table/standard, /obj/random/tech_supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "sGy" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -103493,17 +104676,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) -"sGN" = ( -/obj/machinery/atmospherics/pipe/tank/air/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/blue, -/obj/structure/sign/atmos_air{ - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/maintenance/Deck2_Engineering_PortChamber2) "sHa" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/zpipe/up/supply{ @@ -103513,25 +104686,39 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_StarChamber1) +/area/maintenance/Deck2_Cargo_StarChamber1) "sHr" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "sHA" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/structure/disposalpipe/up{ + dir = 2 + }, +/obj/structure/railing/grey{ + color = "yellow" + }, /obj/structure/cable{ + d1 = 32; d2 = 2; - icon_state = "0-2" + icon_state = "32-2" }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 +/turf/simulated/open, +/area/maintenance/Deck2_Star_Corridor) +"sHV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "sIk" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -103557,7 +104744,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "sIm" = ( /obj/structure/table/steel, /obj/item/storage/briefcase/inflatable{ @@ -103585,7 +104772,7 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "sIp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -103609,7 +104796,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "sIr" = ( /obj/structure/cable/green{ d1 = 4; @@ -103628,7 +104815,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "sIx" = ( /obj/structure/cable/green{ d1 = 4; @@ -103636,23 +104823,23 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "sIE" = ( /obj/item/clothing/suit/cultrobes/alt{ armor = list("melee"=5,"bullet"=5,"laser"=5,"energy"=10,"bomb"=25,"bio"=10,"rad"=0) }, /turf/simulated/floor/wood/sif/broken, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "sIQ" = ( /obj/structure/table/hardwoodtable, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "sIV" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "sJf" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -103670,11 +104857,11 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "sJh" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "sJp" = ( /obj/machinery/button/remote/driver{ id = "SC-MSchapel_two"; @@ -103697,12 +104884,12 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "sJF" = ( /obj/structure/table/hardwoodtable, /obj/item/daredevice, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "sJH" = ( /obj/machinery/light{ dir = 4; @@ -103723,7 +104910,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "sJI" = ( /obj/structure/table/steel_reinforced, /obj/effect/floor_decal/borderfloor{ @@ -103738,7 +104925,7 @@ }, /obj/item/mail/blank, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "sJR" = ( /obj/structure/cable/green{ d1 = 2; @@ -103747,7 +104934,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "sJU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -103759,18 +104946,18 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "sKi" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "sKp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "sKq" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -103778,28 +104965,43 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) +"sKv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/plain/corner, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "sKG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "sKU" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "sLn" = ( /obj/structure/table/standard, /obj/random/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber1) +/area/maintenance/Deck2_Engineering_PortChamber1) "sLw" = ( /obj/machinery/light/small, /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "sMa" = ( /obj/machinery/alarm{ dir = 1; @@ -103807,7 +105009,7 @@ }, /obj/effect/decal/remains/ribcage, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "sMc" = ( /obj/machinery/light{ dir = 8; @@ -103826,10 +105028,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "sMt" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "sMu" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -103838,7 +105040,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "sMy" = ( /obj/structure/cable/green{ d1 = 4; @@ -103849,7 +105051,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "sMJ" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -103861,7 +105063,7 @@ pixel_y = -25 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "sMK" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 10 @@ -103870,7 +105072,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "sMS" = ( /obj/structure/table/glass, /obj/item/radio/intercom/department/medbay{ @@ -103878,7 +105080,7 @@ name = "1S-station intercom (Medbay)" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "sNa" = ( /obj/structure/cable/green{ d1 = 1; @@ -103892,7 +105094,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "sNd" = ( /obj/structure/cable{ d1 = 1; @@ -103906,13 +105108,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "sNh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "sNo" = ( /obj/structure/cable/green{ d1 = 4; @@ -103930,7 +105132,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "sNt" = ( /obj/structure/cable/green{ d1 = 4; @@ -103950,7 +105152,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_PortCorridor1) +/area/maintenance/Deck2_Security_PortCorridor1) "sNz" = ( /obj/machinery/computer/arcade, /obj/machinery/light{ @@ -103964,7 +105166,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "sNC" = ( /obj/structure/cable/green{ d1 = 1; @@ -103978,7 +105180,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "sNL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -103990,13 +105192,29 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) +"sNN" = ( +/obj/machinery/firealarm{ + name = "N-fire alarm"; + pixel_y = 25 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/Star_2_Deck_Corridor_1) "sNR" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) +"sOr" = ( +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/white, +/turf/simulated/floor/plating/turfpack/airless, +/area/space) "sOs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -104010,10 +105228,10 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "sOC" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/area/maintenance/Deck2_Star_Corridor) "sOI" = ( /obj/machinery/atmospherics/pipe/manifold/visible/purple{ dir = 1 @@ -104029,19 +105247,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) -"sOZ" = ( -/obj/structure/closet/emcloset, -/obj/machinery/status_display{ - pixel_x = -32; - name = "W-status display" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_2) +/area/rnd/Toxins_Mixing_Room) "sPi" = ( /obj/structure/cable/white{ d1 = 2; @@ -104049,7 +105255,7 @@ icon_state = "2-4" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "sPm" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor/corner{ @@ -104059,23 +105265,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) -"sPr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/structure/sign/poster/nanotrasen{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Stairwell) "sPA" = ( /obj/structure/cable/green{ d1 = 2; @@ -104102,7 +105292,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "sPZ" = ( /obj/structure/table/rack/shelf, /obj/item/stock_parts/capacitor{ @@ -104198,7 +105388,7 @@ pixel_x = -4 }, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "sQm" = ( /obj/structure/railing{ dir = 8 @@ -104207,10 +105397,10 @@ id = "SC-RecyclingSort" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "sQq" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "sQv" = ( /obj/structure/cable/green{ d1 = 4; @@ -104219,13 +105409,13 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "sQG" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "sQN" = ( /obj/structure/cable/white{ d1 = 1; @@ -104234,7 +105424,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "sQX" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment{ @@ -104247,7 +105437,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "sRf" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -104263,7 +105453,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "sRk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -104272,13 +105462,13 @@ dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "sRr" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "sRt" = ( /obj/machinery/shield_diffuser, /obj/structure/cable/white{ @@ -104287,14 +105477,18 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "sRB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) +"sRJ" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_2) "sRL" = ( /obj/structure/window/basic{ dir = 1 @@ -104302,25 +105496,25 @@ /obj/structure/table/glass, /obj/structure/bedsheetbin, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "sRN" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Security_StarCorridor1) +/area/maintenance/Deck2_Security_StarCorridor1) "sRT" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "sSa" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "sSi" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -104345,7 +105539,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Security_PortCorridor1) +/area/maintenance/Deck2_Security_PortCorridor1) "sSl" = ( /obj/machinery/button/remote/blast_door{ dir = 8; @@ -104358,14 +105552,14 @@ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "sSp" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "sSs" = ( /obj/machinery/light_construct, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "sTb" = ( /obj/machinery/alarm{ dir = 8; @@ -104379,17 +105573,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) -"sTi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/floortube{ - dir = 1; - pixel_y = 2 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/engineering/Deck2_1_Corridor) "sTC" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/alarm{ @@ -104398,15 +105582,19 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Chamber) +/area/maintenance/Deck2_Science_ForPort_Chamber) "sTS" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/floor_decal/corner/brown/diagonal, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "sTX" = ( /obj/structure/cable/green{ d1 = 4; @@ -104423,11 +105611,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "sTZ" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "sUb" = ( /obj/structure/bed/chair/sofa/left/brown{ dir = 8; @@ -104437,7 +105625,7 @@ dir = 6 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "sUh" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -104452,17 +105640,17 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "sUk" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "sUt" = ( /obj/structure/sign/nosmoking_2, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "sUz" = ( /turf/simulated/wall/rthull, /area/shuttle/large_escape_pod4/station) @@ -104474,7 +105662,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "sUX" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -104483,7 +105671,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "sVv" = ( /obj/structure/cable/green{ d1 = 2; @@ -104492,14 +105680,14 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "sVL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "sVW" = ( /obj/machinery/atmospherics/valve{ name = "Science emergency air supply" @@ -104507,7 +105695,14 @@ /obj/effect/floor_decal/industrial/danger/full, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) +"sWa" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "sWi" = ( /obj/machinery/pointdefense{ id_tag = "PD Primary" @@ -104519,7 +105714,7 @@ icon_state = "0-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "sWr" = ( /obj/item/radio/intercom{ dir = 1; @@ -104536,7 +105731,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "sWH" = ( /obj/structure/cable/green{ d1 = 1; @@ -104556,14 +105751,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "sWJ" = ( /obj/structure/sign/securearea{ icon_state = "restroom"; desc = "A warning sign which reads 'Restroom'." }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "sWM" = ( /obj/structure/cable/green{ d1 = 1; @@ -104574,13 +105769,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "sWY" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) +"sWZ" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/grass, +/area/hallway/For_2_Deck_Central_Corridor_1) "sXf" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -104603,10 +105803,10 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "sXo" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "sXr" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -104615,7 +105815,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "sXE" = ( /obj/structure/cable/green{ d1 = 1; @@ -104638,7 +105838,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "sXF" = ( /obj/structure/cable/green{ d1 = 1; @@ -104649,12 +105849,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "sXG" = ( /obj/machinery/atmospherics/unary/cryo_cell, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "sYa" = ( /obj/structure/cable/green{ d1 = 4; @@ -104671,11 +105871,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "sYg" = ( /obj/structure/sign/warning/bomb_range, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "sYk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -104683,7 +105883,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "sYB" = ( /obj/structure/cable{ d1 = 1; @@ -104703,32 +105903,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "sYU" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) -"sYW" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light/floortube{ - pixel_y = -2 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "sYY" = ( /mob/living/simple_mob/animal/passive/cat/runtime{ faction = "nanotrasen" @@ -104739,7 +105918,7 @@ /obj/item/toy/cat_toy, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "sZb" = ( /obj/structure/cable/green{ d1 = 4; @@ -104748,13 +105927,13 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "sZh" = ( /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "sZj" = ( /obj/item/radio/intercom{ dir = 4; @@ -104764,43 +105943,36 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "sZx" = ( /obj/effect/decal/remains/deer, /obj/effect/decal/cleanable/filth, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "sZC" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) -"sZG" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/area/maintenance/Deck2_Security_ForCorridor3) "sZM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "sZS" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "taC" = ( /obj/structure/sign/department/medbay{ layer = 3.5; desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "taM" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor/corner{ @@ -104813,7 +105985,7 @@ dir = 10 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "taW" = ( /obj/structure/cable{ d1 = 1; @@ -104833,11 +106005,11 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "taY" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "tbc" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -104845,7 +106017,7 @@ /turf/simulated/floor/boxing{ name = "yoga mat" }, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "tbf" = ( /obj/structure/cable/green{ d1 = 1; @@ -104864,7 +106036,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "tbG" = ( /obj/structure/cable/green{ d1 = 1; @@ -104885,7 +106057,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "tbV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -104903,7 +106075,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "tce" = ( /obj/structure/table/standard, /obj/item/storage/box/gloves{ @@ -104925,7 +106097,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "tch" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -104937,7 +106109,23 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/red/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) +"tck" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "tcs" = ( /obj/structure/cable/green{ d1 = 4; @@ -104966,7 +106154,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "tcw" = ( /obj/structure/cable{ d1 = 1; @@ -104982,14 +106170,21 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) +"tcC" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/Port_2_Deck_Central_Corridor_1) "tcW" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/disposalpipe/up{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "tde" = ( /obj/structure/cable{ d1 = 1; @@ -104999,11 +106194,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 10 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/lightorange/border{ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "tdl" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -105023,7 +106218,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "tdm" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -105042,28 +106237,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) -"tdn" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/Star_2_Deck_Stairwell) "tdP" = ( /obj/machinery/computer/security/mining{ dir = 4 @@ -105074,7 +106248,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "tdW" = ( /obj/structure/cable{ d1 = 1; @@ -105084,11 +106258,11 @@ /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ +/obj/effect/floor_decal/corner/paleblue/bordercorner{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "tdY" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 5 @@ -105100,7 +106274,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "teP" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -105112,7 +106286,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "tfb" = ( /obj/machinery/camera/network/security{ c_tag = "D2-Com-Port Stairwell2"; @@ -105125,7 +106299,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "tfd" = ( /obj/machinery/iv_drip, /obj/item/reagent_containers/blood/prelabeled/OMinus{ @@ -105152,14 +106326,14 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "tfi" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/tiled/kafel_full/blue/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "tfj" = ( /obj/structure/cable/green{ d1 = 1; @@ -105173,23 +106347,23 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "tfo" = ( /obj/structure/railing, /turf/simulated/open, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "tfx" = ( /obj/structure/smoletrack/roadS{ dir = 4 }, /obj/random/trash, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "tfz" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "tfB" = ( /obj/structure/bed/double/padded, /obj/structure/bed/double/padded{ @@ -105208,11 +106382,11 @@ name = "Bartender" }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "tfD" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "tfG" = ( /obj/item/radio/intercom{ dir = 8; @@ -105220,7 +106394,7 @@ pixel_x = -22 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "tfH" = ( /obj/structure/cable/green{ d1 = 4; @@ -105235,14 +106409,26 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "tfO" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1; color = "#989898" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) +"tfT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/paleblue/bordercorner, +/obj/item/radio/intercom{ + name = "1S-Station Intercom (General)"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_2) "tga" = ( /obj/structure/closet/emcloset, /obj/machinery/camera/network/security{ @@ -105251,14 +106437,14 @@ network = list("Commons") }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "tgb" = ( /obj/vehicle/train/trolley{ dir = 2 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "tgd" = ( /obj/machinery/light{ dir = 4; @@ -105277,10 +106463,16 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "tgv" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) +"tgx" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/hallway/Central_2_Deck_Hall) "tgW" = ( /obj/structure/cable{ d1 = 1; @@ -105294,24 +106486,20 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "thd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_2) "thh" = ( /obj/structure/table/rack, /obj/item/wheelchair/motor/small{ @@ -105345,7 +106533,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "thu" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -105358,14 +106546,14 @@ pixel_y = -22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "thE" = ( /obj/effect/floor_decal/chapel, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "thH" = ( /obj/effect/floor_decal/carpet{ dir = 1 @@ -105375,14 +106563,14 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "thK" = ( /obj/effect/decal/remains/robot, /obj/effect/landmark{ name = "maint_pred" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "thL" = ( /obj/structure/cable/green{ d1 = 1; @@ -105405,7 +106593,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "tif" = ( /obj/structure/cable{ d1 = 4; @@ -105428,7 +106616,36 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) +"tii" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/food/snacks/mint{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/condiment/spacespice{ + pixel_x = 9; + pixel_y = 1 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "tis" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -105438,17 +106655,7 @@ dir = 4 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) -"tiC" = ( -/obj/structure/disposalpipe/tagger{ - dir = 4; - sort_tag = "transit_crew" - }, -/obj/structure/sign/department/shield{ - desc = "Sign of some important station compartment." - }, -/turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/area/crew_quarters/Chapel_Office) "tiT" = ( /obj/structure/closet/toolcloset, /obj/item/storage/box/lights/mixed, @@ -105460,23 +106667,23 @@ /obj/item/cell/high, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "tjb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "tjD" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "tjE" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "tka" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloor/corner{ @@ -105486,10 +106693,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "tkz" = ( /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "tkC" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, @@ -105499,10 +106706,10 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "tkH" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "tkQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -105512,7 +106719,7 @@ /obj/machinery/door/airlock/maintenance/common, /obj/item/tape/police, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "tkT" = ( /obj/structure/cable/green{ d1 = 1; @@ -105520,7 +106727,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "tld" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 8 @@ -105529,7 +106736,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "tln" = ( /obj/structure/cable{ d1 = 1; @@ -105543,7 +106750,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "tls" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -105553,12 +106760,12 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "tlx" = ( /obj/machinery/atmospherics/unary/cryo_cell, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "tlJ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloorwhite{ @@ -105568,27 +106775,17 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "tlM" = ( /obj/random/junk, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "tlY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/floortube{ - pixel_y = -2 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_1) "tmh" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -105610,11 +106807,11 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "tmp" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "tmq" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -105623,7 +106820,26 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) +"tmv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) +"tmF" = ( +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_StarChamber1) "tna" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -105654,7 +106870,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "tni" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -105665,7 +106881,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "tnm" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -105674,7 +106890,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "tnt" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Substation - Science" @@ -105695,7 +106911,7 @@ pixel_y = -32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "tnv" = ( /obj/effect/floor_decal/industrial/stand_clear/blue{ dir = 1 @@ -105703,7 +106919,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "tnJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -105718,20 +106934,25 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "tnO" = ( -/obj/machinery/light{ - dir = 1; - name = "1N-lighting fixture" - }, /obj/effect/floor_decal/borderfloor{ dir = 1 }, /obj/effect/floor_decal/corner/brown/border{ dir = 1 }, +/obj/machinery/light/spot{ + dir = 1; + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) +"tof" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Star_Corridor) "toC" = ( /obj/structure/cable/green{ d1 = 1; @@ -105761,7 +106982,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "toH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -105769,10 +106990,18 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "toM" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) +"toP" = ( +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_PortChamber1) "toY" = ( /obj/structure/closet/coffin, /obj/machinery/light{ @@ -105781,7 +107010,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "tpb" = ( /obj/structure/cable{ d1 = 2; @@ -105795,7 +107024,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "tpi" = ( /obj/structure/bed/chair/sofa/sif_ora, /obj/effect/landmark/start{ @@ -105805,19 +107034,12 @@ dir = 1 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "tpq" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/green/bordercorner, -/turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/machinery/appliance/mixer/cereal, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "tpu" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -105838,7 +107060,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "tpv" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -105846,21 +107068,26 @@ /obj/effect/floor_decal/corner/lightorange/bordercorner{ dir = 4 }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 27; + name = "N-light switch" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "tpw" = ( /obj/effect/floor_decal/borderfloor/corner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/HoS_Office) -"tpx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/security/HoS_Office) "tpy" = ( /obj/structure/cable/green{ d1 = 1; @@ -105875,7 +107102,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "tpB" = ( /obj/structure/cable{ d1 = 2; @@ -105889,11 +107116,11 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "tpN" = ( /obj/effect/catwalk_plated, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "tqn" = ( /obj/structure/cable/green{ d1 = 1; @@ -105911,7 +107138,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "tqH" = ( /obj/structure/bed/chair/sofa/brown{ dir = 8 @@ -105922,7 +107149,7 @@ pixel_x = 22 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "tqI" = ( /obj/effect/floor_decal/chapel{ dir = 8 @@ -105934,25 +107161,25 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "tqM" = ( /obj/structure/table/hardwoodtable, /obj/structure/stripper_pole{ color = "grey" }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "trc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "tri" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "trt" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -105961,7 +107188,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "trw" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -105970,11 +107197,11 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "trL" = ( /obj/structure/closet/crate/freezer, /turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "trT" = ( /obj/machinery/newscaster{ name = "1E-newscaster"; @@ -105984,7 +107211,7 @@ dir = 8 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "trW" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -105998,13 +107225,13 @@ dir = 4 }, /obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "tsa" = ( /obj/structure/table/bench/sifwooden, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "tsu" = ( /obj/structure/cable/green{ d1 = 1; @@ -106021,7 +107248,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "tsG" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -106040,7 +107267,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "tsZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -106049,13 +107276,25 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) +"tto" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 2 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "ttJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "tuj" = ( /obj/machinery/power/apc{ dir = 4; @@ -106067,13 +107306,18 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "tuk" = ( /obj/machinery/light/small, /obj/structure/table/steel, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) +"tuo" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_ForPortChamber1) "tur" = ( /obj/structure/sign/directions/dorms{ pixel_y = -9; @@ -106088,7 +107332,7 @@ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "tut" = ( /obj/structure/cable{ d1 = 4; @@ -106103,7 +107347,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "tuw" = ( /obj/structure/cable/green{ d1 = 1; @@ -106118,7 +107362,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "tuX" = ( /obj/machinery/firealarm{ dir = 8; @@ -106129,18 +107373,18 @@ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "tvf" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "tvi" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "tvD" = ( /obj/machinery/light{ dir = 1; @@ -106158,7 +107402,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "tvL" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -106170,7 +107414,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "twa" = ( /obj/structure/bed/double/padded{ pixel_y = 25 @@ -106190,7 +107434,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "twc" = ( /obj/structure/table/rack/shelf, /obj/item/bodybag/cryobag/robobag{ @@ -106228,7 +107472,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "twl" = ( /obj/structure/cable/green{ d1 = 4; @@ -106237,11 +107481,11 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "two" = ( /obj/structure/bed/chair/sofa/corner/blue, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "tws" = ( /obj/structure/cable/green{ d1 = 4; @@ -106267,7 +107511,7 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "twz" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -106291,7 +107535,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "twU" = ( /obj/machinery/pointdefense{ id_tag = "PD Primary" @@ -106303,7 +107547,7 @@ /obj/machinery/shield_diffuser, /obj/effect/catwalk_plated/white, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "txi" = ( /obj/structure/closet/emcloset, /obj/structure/cable{ @@ -106312,11 +107556,11 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "txr" = ( /obj/effect/catwalk_plated, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "txt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -106324,7 +107568,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "txC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -106335,7 +107579,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "txI" = ( /obj/vehicle/train/engine, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -106346,7 +107590,7 @@ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "txX" = ( /obj/structure/bed/double/padded{ pixel_x = 10; @@ -106357,7 +107601,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/bcarpet/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "tye" = ( /obj/structure/table/standard, /obj/item/surgical/scalpel, @@ -106367,7 +107611,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "tyl" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -106385,7 +107629,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "tym" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -106396,11 +107640,11 @@ }, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "tyC" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "tyD" = ( /obj/structure/cable/green{ d1 = 2; @@ -106422,9 +107666,9 @@ dir = 4 }, /obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "tyL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -106433,7 +107677,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "tyQ" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -106443,7 +107687,7 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "tyZ" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 1 @@ -106458,7 +107702,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "tzb" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -106467,7 +107711,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) +"tze" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/obj/effect/floor_decal/spline/plain/corner, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "tzj" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable{ @@ -106476,7 +107725,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "tzm" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -106487,8 +107736,12 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "tzZ" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/holoposter{ @@ -106496,23 +107749,14 @@ }, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) -"tAa" = ( -/obj/machinery/power/port_gen/pacman, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/area/hallway/Star_2_Deck_Stairwell) "tAg" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "tAj" = ( /obj/item/radio/intercom{ name = "1S-Station Intercom (General)"; @@ -106521,7 +107765,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "tAn" = ( /obj/machinery/power/apc{ dir = 4; @@ -106533,16 +107777,16 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) +/area/maintenance/Deck2_Medical_AftCorridor1) "tAq" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "tAt" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "tAA" = ( /obj/machinery/light{ dir = 8; @@ -106556,7 +107800,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "tBa" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 2; @@ -106566,39 +107810,39 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "tBg" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "tBk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "tBz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "tBA" = ( /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "tBD" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "tBE" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -106615,7 +107859,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "tBL" = ( /obj/structure/cable/green{ d1 = 1; @@ -106624,7 +107868,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarCorridor1) +/area/maintenance/Deck2_Engineering_ForStarCorridor1) "tBM" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 28; @@ -106637,7 +107881,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "tBN" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -106660,7 +107904,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "tBR" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/red{ @@ -106676,7 +107920,7 @@ layer = 2.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "tBS" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -106696,7 +107940,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor2) +/area/maintenance/Deck2_Science_StarCorridor2) "tCC" = ( /obj/structure/cable{ d1 = 1; @@ -106711,11 +107955,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "tCI" = ( /obj/structure/table/bench/padded, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "tCR" = ( /obj/structure/grille, /obj/structure/shuttle/window, @@ -106737,7 +107981,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "tDd" = ( /obj/structure/cable/green{ d1 = 4; @@ -106760,7 +108004,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "tDn" = ( /obj/structure/table/rack/shelf/steel, /obj/item/stack/cable_coil/random{ @@ -106784,11 +108028,23 @@ pixel_y = -5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "tDC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) +"tDE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "tDH" = ( /obj/structure/cable/green{ d1 = 1; @@ -106796,7 +108052,7 @@ icon_state = "1-2" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "tDN" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 10 @@ -106814,7 +108070,7 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "tDO" = ( /obj/effect/floor_decal/techfloor/orange, /obj/effect/floor_decal/techfloor/hole/right, @@ -106822,10 +108078,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "tDP" = ( /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "tDS" = ( /obj/machinery/alarm{ dir = 1; @@ -106833,7 +108089,7 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "tDT" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -106868,21 +108124,21 @@ pixel_x = -6 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "tEg" = ( /obj/effect/catwalk_plated/techfloor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "tEx" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "tEK" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "tEP" = ( /obj/machinery/ai_status_display{ name = "1W-AI display"; @@ -106900,7 +108156,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "tEY" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -106909,19 +108165,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) -"tEZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2, -/obj/structure/sign/poster/nanotrasen{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/Aft_2_Deck_Lobby) "tFJ" = ( /obj/structure/bed/chair/sofa/corner/blue{ dir = 4 @@ -106933,7 +108177,7 @@ dir = 9 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "tFU" = ( /obj/structure/table/woodentable, /obj/machinery/microwave{ @@ -106946,7 +108190,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "tGx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -106955,7 +108199,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "tGD" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -106967,7 +108211,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "tGL" = ( /obj/structure/cable{ d1 = 1; @@ -106993,7 +108237,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "tHe" = ( /obj/fiftyspawner/wood, /obj/fiftyspawner/wood, @@ -107018,7 +108262,7 @@ network = list("Cargo") }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "tHk" = ( /obj/structure/table/marble{ color = "grey" @@ -107030,7 +108274,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "tHl" = ( /obj/structure/cable/green{ d1 = 4; @@ -107053,7 +108297,7 @@ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "tHp" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -107067,11 +108311,11 @@ }, /obj/item/clothing/gloves/boxing/blue, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "tHq" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "tHw" = ( /obj/structure/cable/green{ d1 = 1; @@ -107084,12 +108328,12 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "tHA" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "tHE" = ( /obj/structure/cable/white{ d1 = 2; @@ -107102,11 +108346,11 @@ icon_state = "2-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "tHG" = ( /obj/structure/bed/pillowpile/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "tHJ" = ( /obj/structure/cable{ d1 = 1; @@ -107135,14 +108379,26 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) +"tHK" = ( +/obj/machinery/pipedispenser, +/obj/effect/floor_decal/industrial/hatch/blue, +/obj/item/holosign_creator/combifan{ + pixel_y = 9; + pixel_x = -4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "tIv" = ( /obj/structure/bed/chair/sofa/right/sif_ora, /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "tIw" = ( /obj/structure/cable{ d1 = 4; @@ -107165,13 +108421,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "tIG" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "tIH" = ( /obj/structure/cable/green{ d1 = 4; @@ -107200,7 +108456,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "tIN" = ( /obj/item/radio/intercom{ dir = 8; @@ -107217,11 +108473,11 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "tIV" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "tJv" = ( /obj/effect/decal/cleanable/blood/splatter{ name = "Liquid"; @@ -107234,12 +108490,12 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "tKa" = ( /obj/machinery/cell_charger, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "tKd" = ( /obj/machinery/cryopod{ dir = 4 @@ -107248,7 +108504,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "tKh" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -107257,11 +108513,11 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "tKk" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "tKo" = ( /obj/structure/cable/green{ d1 = 4; @@ -107278,24 +108534,27 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "tKH" = ( -/obj/structure/sign/poster/nanotrasen, -/obj/machinery/camera/network/security{ - dir = 1; - c_tag = "D2-Com-For Corridor4"; - network = list("Commons") +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "tKO" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "tLm" = ( /obj/machinery/status_display{ pixel_y = -32; @@ -107309,10 +108568,10 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "tLw" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "tLP" = ( /obj/structure/cable/green{ d1 = 1; @@ -107320,7 +108579,14 @@ icon_state = "1-2" }, /turf/simulated/floor, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) +"tMm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "tMo" = ( /obj/machinery/atmospherics/unary/cryo_cell{ layer = 3.3 @@ -107347,14 +108613,14 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "tMs" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "tNh" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -107371,7 +108637,7 @@ }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "tNw" = ( /obj/effect/catwalk_plated/techfloor, /obj/structure/cable/green{ @@ -107380,27 +108646,28 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "tNy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/catwalk_plated/techmaint, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/machinery/holoposter{ + dir = 4; + pixel_x = -32 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 2 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_1) "tNJ" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Locker_Room) +/area/engineering/Locker_Room) "tNX" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /obj/machinery/camera/network/security{ @@ -107409,13 +108676,13 @@ network = list("engineering") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "tNZ" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor2) +/area/maintenance/Deck2_Civilian_ForPortCorridor2) "tOg" = ( /obj/structure/cable/green{ d1 = 2; @@ -107432,7 +108699,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "tOk" = ( /obj/structure/table/steel, /obj/item/storage/briefcase/inflatable{ @@ -107467,17 +108734,24 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) +"tOs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/wall, +/area/crew_quarters/Chomp_Dinner_1) "tOv" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "tOE" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "tOF" = ( /obj/structure/cable/green{ d1 = 1; @@ -107500,7 +108774,20 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) +"tOJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_2) "tPA" = ( /obj/structure/bed/chair/sofa/left/blue, /obj/machinery/light{ @@ -107514,10 +108801,10 @@ dir = 1 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "tPR" = ( /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "tPU" = ( /obj/machinery/power/apc{ dir = 1; @@ -107529,11 +108816,11 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "tPV" = ( /obj/machinery/vending/loadout/accessory, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "tPY" = ( /obj/item/stack/material/phoron{ amount = 25; @@ -107578,11 +108865,11 @@ pixel_x = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "tQg" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "tQh" = ( /obj/structure/bed/chair/sofa/blue, /obj/structure/window/titanium{ @@ -107592,7 +108879,7 @@ dir = 1 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "tQj" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -107610,7 +108897,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "tQn" = ( /obj/effect/catwalk_plated/techfloor, /obj/structure/cable/green{ @@ -107621,7 +108908,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "tQs" = ( /obj/structure/cable/green{ d1 = 4; @@ -107633,13 +108920,13 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "tQv" = ( /obj/item/stool/padded, /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "tQB" = ( /obj/structure/cable/green{ d1 = 1; @@ -107656,13 +108943,13 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "tQG" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "tQW" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -107672,7 +108959,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "tRm" = ( /obj/machinery/firealarm{ dir = 8; @@ -107691,17 +108978,17 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "tRq" = ( /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "tRr" = ( /obj/structure/cable/green{ d1 = 1; @@ -107710,7 +108997,7 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/universal, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "tRL" = ( /obj/structure/cable/green{ d1 = 4; @@ -107724,7 +109011,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "tRY" = ( /obj/structure/cable/green{ d1 = 1; @@ -107736,8 +109023,13 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/machinery/firealarm{ + dir = 4; + name = "E-fire alarm"; + pixel_x = 25 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "tRZ" = ( /obj/machinery/power/apc{ dir = 1; @@ -107759,7 +109051,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "tSe" = ( /obj/machinery/light{ dir = 1; @@ -107777,7 +109069,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "tSf" = ( /obj/structure/closet/firecloset/full/atmos{ req_one_access = list(10) @@ -107792,7 +109084,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "tSo" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -107804,14 +109096,14 @@ id_tag = "sc-DBSstall2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "tSD" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; dir = 4 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "tSG" = ( /obj/structure/window/reinforced{ dir = 4 @@ -107830,7 +109122,7 @@ layer = 3.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "tSK" = ( /obj/structure/cable/green{ d1 = 4; @@ -107841,7 +109133,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "tSP" = ( /obj/structure/cable/green{ d1 = 4; @@ -107866,7 +109158,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "tST" = ( /obj/structure/cable{ d1 = 2; @@ -107890,17 +109182,25 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "tSV" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Corridor) +/area/maintenance/Deck2_Science_ForPort_Corridor) +"tTn" = ( +/obj/structure/table/steel, +/obj/machinery/light{ + dir = 4; + name = "1E-light fixture" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/ForStar_2_Deck_Observatory) "tTo" = ( /obj/structure/railing{ dir = 4 }, /obj/structure/railing, /turf/simulated/open, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "tTp" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -107910,18 +109210,18 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "tTq" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "tTr" = ( /obj/structure/sign/department/prison{ layer = 3.5; desc = "Sign of some important station compartment." }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "tTx" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -107932,29 +109232,22 @@ name = "1S-newscaster" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "tTE" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/turf/simulated/floor/glass, +/area/hallway/Port_2_Deck_Central_Corridor_2) "tTO" = ( /obj/structure/table/rack/shelf, /obj/item/bikehorn/tinytether, /obj/random/maintenance/cargo, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "tUa" = ( /obj/machinery/atmospherics/valve/digital/open, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "tUc" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -107963,11 +109256,11 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "tUl" = ( /obj/structure/closet/secure_closet/injection, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "tUA" = ( /obj/structure/railing/grey{ color = "yellow" @@ -108001,7 +109294,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) +/area/maintenance/Deck2_Medical_AftCorridor1) "tUQ" = ( /obj/structure/sign/directions/science{ layer = 3.5; @@ -108011,7 +109304,7 @@ layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "tUT" = ( /obj/structure/cable/green{ d1 = 2; @@ -108035,20 +109328,24 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "tVe" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/machinery/atmospherics/valve{ + name = "Domicile emergency air supply" }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 +/obj/effect/floor_decal/industrial/danger/full, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "tVt" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "tVu" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -108065,7 +109362,16 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) +"tVI" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "tVZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -108087,20 +109393,12 @@ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "tWd" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) -"tWn" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/area/hallway/Star_2_Deck_Corridor_1) "tWA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -108108,46 +109406,26 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "tWG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "tWO" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) -"tWZ" = ( -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/holoposter{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/maintenance/Cargo_Substation) "tXg" = ( /obj/structure/table/standard, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "tXj" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "tXq" = ( /obj/machinery/computer/security/telescreen{ desc = "Used to monitor the engine room."; @@ -108159,13 +109437,13 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "tXv" = ( /obj/machinery/light_construct{ dir = 1 }, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "tXL" = ( /obj/structure/cable{ d1 = 1; @@ -108179,7 +109457,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "tYh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -108193,10 +109471,10 @@ }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "tYk" = ( /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "tYl" = ( /obj/structure/table/steel, /obj/item/defib_kit/compact/loaded{ @@ -108205,19 +109483,28 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) +"tYu" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "tYF" = ( /obj/structure/sign/directions/medical/medeqp{ pixel_y = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "tYN" = ( /obj/structure/disposalpipe/sortjunction/wildcard/flipped{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "tYY" = ( /obj/structure/table/rack{ dir = 8; @@ -108314,7 +109601,7 @@ network = list("engineering") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "tYZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -108331,7 +109618,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "tZc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -108339,9 +109626,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "tZi" = ( /obj/machinery/disposal, /obj/item/radio/intercom{ @@ -108357,7 +109646,30 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) +"tZo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) +"tZu" = ( +/obj/machinery/light{ + dir = 4; + name = "1E-light fixture" + }, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_2) "tZC" = ( /obj/machinery/status_display{ name = "W-status display"; @@ -108374,8 +109686,14 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/spot{ + dir = 8; + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "tZE" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -108385,7 +109703,7 @@ }, /obj/structure/sign/poster/custom, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "tZF" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -108399,7 +109717,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "tZJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -108417,7 +109735,7 @@ /obj/effect/floor_decal/industrial/hatch, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "tZL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -108429,19 +109747,22 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "tZQ" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "uaf" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/arrows/blue{ + dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_1) "uai" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -108465,7 +109786,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "uak" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor{ @@ -108475,7 +109796,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "uan" = ( /obj/structure/cable{ d1 = 4; @@ -108489,7 +109810,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "uap" = ( /obj/machinery/camera/network/security{ dir = 4; @@ -108503,7 +109824,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "uay" = ( /obj/structure/table/marble{ color = "grey" @@ -108526,7 +109847,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "uaB" = ( /obj/structure/bed/chair/wood/wings{ color = "#004b9a"; @@ -108534,7 +109855,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "uaD" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/newscaster{ @@ -108543,20 +109864,20 @@ }, /obj/machinery/vending/assist, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "uaE" = ( /obj/structure/sign/directions/ladderwell{ dir = 4; pixel_y = -9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "uaM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/crew_quarters/Library) "uaU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -108575,7 +109896,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "uaZ" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 6 @@ -108587,17 +109908,17 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "ubp" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "ubI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "ubP" = ( /obj/structure/cable/green{ d1 = 4; @@ -108611,7 +109932,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "ubU" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -108627,17 +109948,17 @@ color = "#6b75ff" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "uca" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "uck" = ( /obj/structure/bed/chair/bay/chair/padded/red/bignest, /obj/random/plushie, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "ucm" = ( /obj/machinery/light{ dir = 1; @@ -108649,7 +109970,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "ucz" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -108679,7 +110000,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "ucS" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -108688,13 +110009,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "ucV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "ucW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -108704,17 +110025,17 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "uda" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortChamber1) +/area/maintenance/Deck2_Medical_AftPortChamber1) "udb" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "ued" = ( /obj/structure/cable/green{ d1 = 1; @@ -108745,7 +110066,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "uet" = ( /obj/item/toy/bosunwhistle/fluff/strix, /obj/structure/table/rack/shelf/steel, @@ -108759,7 +110080,7 @@ /obj/machinery/firework_launcher, /obj/machinery/firework_launcher, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "ueI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows, @@ -108789,7 +110110,7 @@ id_tag = "sc-dom_shuttlebay3" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "ueZ" = ( /obj/structure/bookcase/manuals/medical, /obj/item/book/manual/stasis{ @@ -108815,7 +110136,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "ufe" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -108830,7 +110151,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor2) +/area/maintenance/Deck2_Science_StarCorridor2) "ufg" = ( /obj/structure/filingcabinet/medical{ desc = "A large cabinet with hard copy medical records."; @@ -108844,7 +110165,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "ufk" = ( /obj/structure/filingcabinet/chestdrawer{ name = "Medical Forms" @@ -108856,7 +110177,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "ufA" = ( /obj/machinery/power/apc{ dir = 4; @@ -108874,7 +110195,7 @@ icon_state = "0-2" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "ufE" = ( /obj/structure/railing, /obj/structure/curtain/bed{ @@ -108882,11 +110203,11 @@ }, /obj/machinery/light/floortube, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "ufJ" = ( /obj/machinery/atmospherics/unary/freezer, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "ufS" = ( /obj/structure/bed/chair{ dir = 4 @@ -108894,14 +110215,14 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "ufT" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "ugu" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -108910,7 +110231,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "ugC" = ( /obj/structure/bed/chair/sofa/right/brown{ dir = 8; @@ -108921,7 +110242,7 @@ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "ugD" = ( /obj/structure/bed/chair/sofa/corner/blue, /obj/structure/window/titanium{ @@ -108931,12 +110252,19 @@ /obj/effect/floor_decal/spline/fancy{ dir = 5 }, -/turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/turf/simulated/floor/carpet/sblucarpet, +/area/hallway/Star_Transit_Foyer) "ugE" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) +"ugQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "ugY" = ( /obj/structure/sign/warning/evac, /turf/simulated/shuttle/wall/no_join{ @@ -108954,7 +110282,7 @@ name = "W-fire alarm" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "uht" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -108963,7 +110291,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "uhA" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -108972,18 +110300,18 @@ dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "uhC" = ( /obj/structure/closet/coffin, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "uhD" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "uhE" = ( /obj/structure/sign/warning/secure_area/armory, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "uhF" = ( /obj/structure/table/marble, /obj/machinery/chemical_dispenser/bar_alc/full{ @@ -108999,7 +110327,7 @@ pixel_y = 11 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "uhK" = ( /obj/structure/closet{ name = "Evidence Closet" @@ -109012,7 +110340,7 @@ }, /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "uhO" = ( /obj/machinery/vending/cola/soft, /obj/structure/cable{ @@ -109030,15 +110358,19 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "uhR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "uhV" = ( /obj/structure/window/reinforced{ dir = 1 @@ -109064,7 +110396,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "uhW" = ( /obj/machinery/light{ dir = 8; @@ -109073,7 +110405,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "uiA" = ( /obj/structure/cable/green{ d1 = 1; @@ -109088,7 +110420,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "uiD" = ( /obj/machinery/photocopier, /obj/machinery/light{ @@ -109099,7 +110431,14 @@ pixel_y = -22 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) +"uiH" = ( +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "uiI" = ( /obj/structure/railing/grey{ dir = 8 @@ -109113,13 +110452,30 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "uiK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) +"uiQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "uiW" = ( /obj/machinery/power/terminal{ dir = 1 @@ -109129,7 +110485,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "ujx" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -109139,14 +110495,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "ujz" = ( /obj/machinery/light/small, /obj/structure/table/standard, /obj/random/maintenance/medical, /obj/random/medical/pillbottle, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "ujR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -109159,8 +110515,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "ukg" = ( /obj/structure/closet/bombcloset, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -109169,16 +110529,16 @@ pixel_y = -22 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "uks" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForStar_Chamber) +/area/maintenance/Deck2_Security_ForStar_Chamber) "ukz" = ( /obj/item/frame, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "ukI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -109209,16 +110569,26 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "ukP" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) +"ukR" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Science_StarCorridor2) "ukV" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "ukX" = ( /obj/machinery/portable_atmospherics/canister, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -109229,7 +110599,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "ulb" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -109238,23 +110608,23 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) -"ulh" = ( -/obj/machinery/alarm{ - pixel_y = 25 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Central_2_Deck_Hall) "uli" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) +"ulC" = ( +/obj/random/trash, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/maintenance/ab_TeshDen) "ulI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "ulR" = ( /obj/machinery/alarm{ dir = 4; @@ -109262,7 +110632,7 @@ }, /obj/structure/smolebuilding/business, /turf/simulated/floor/smole, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "umh" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1 @@ -109274,7 +110644,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "uml" = ( /obj/structure/cable/green{ d1 = 4; @@ -109294,7 +110664,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "ump" = ( /obj/structure/cable{ d1 = 4; @@ -109303,13 +110673,13 @@ }, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "ums" = ( /obj/structure/sign/directions/evac{ dir = 8 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "umv" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -109337,7 +110707,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Security_StarCorridor1) +/area/maintenance/Deck2_Security_StarCorridor1) "umE" = ( /obj/machinery/alarm{ dir = 8; @@ -109347,7 +110717,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "umH" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -109361,20 +110731,20 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "umT" = ( /obj/structure/window/reinforced/tinted/frosted{ dir = 4 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/bcarpet/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "umX" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "unr" = ( /obj/item/radio/intercom{ dir = 4; @@ -109382,7 +110752,7 @@ pixel_x = 22 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "uns" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -109397,7 +110767,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "unR" = ( /obj/structure/cable/green{ d1 = 2; @@ -109434,14 +110804,14 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "unU" = ( /obj/effect/floor_decal/chapel{ dir = 1 }, /obj/structure/table/bench/padded, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "uoh" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -109461,7 +110831,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "uoj" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -109489,7 +110859,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "uoP" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -109510,7 +110880,7 @@ frequency = 1380 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "uoQ" = ( /obj/machinery/disposal, /obj/machinery/status_display{ @@ -109526,7 +110896,7 @@ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "upe" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -109539,7 +110909,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "upf" = ( /obj/structure/cable/green{ d1 = 4; @@ -109548,7 +110918,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) +/area/maintenance/Deck2_Science_ForCorridor1) "upj" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -109557,12 +110927,12 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "upv" = ( /obj/item/clothing/shoes/dress, /obj/random/trash, /turf/simulated/floor/wood/alt/panel/broken/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "upA" = ( /obj/structure/table/reinforced, /obj/machinery/computer/skills{ @@ -109576,7 +110946,7 @@ dir = 8 }, /turf/simulated/floor/carpet/purple, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "upF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -109590,7 +110960,7 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/area/maintenance/Deck2_Star_Corridor) "upM" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -109599,7 +110969,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "upO" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -109619,7 +110989,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "upP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloorwhite/corner2{ @@ -109631,7 +111001,7 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "upR" = ( /obj/machinery/shield_diffuser, /obj/effect/catwalk_plated/white, @@ -109642,7 +111012,7 @@ id = "sc-GCeastshuttlebay" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "uqf" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -109669,10 +111039,10 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "uqg" = ( /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "uqi" = ( /obj/structure/cable/green{ d1 = 1; @@ -109686,7 +111056,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "uqj" = ( /obj/random/contraband, /obj/random/contraband, @@ -109726,7 +111096,7 @@ /obj/item/clothing/under/shiny/catsuit/poly, /obj/item/clothing/under/shiny/leotard/poly, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "uqB" = ( /obj/effect/floor_decal/industrial/loading/blue, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, @@ -109743,7 +111113,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "uqI" = ( /obj/structure/cable/green{ d1 = 1; @@ -109757,7 +111127,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "uqJ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -109765,7 +111135,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "uqP" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -109782,10 +111152,29 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor2) +/area/maintenance/Deck2_Science_StarCorridor2) "uqR" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor2) +/area/maintenance/Deck2_Science_StarCorridor2) +"urq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/item/radio/intercom{ + dir = 8; + name = "1W-Station Intercom (General)"; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Corridor_1) "urA" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -109794,7 +111183,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "urG" = ( /obj/machinery/newscaster{ pixel_x = -28; @@ -109804,14 +111193,14 @@ /obj/effect/floor_decal/borderfloorwhite/corner2, /obj/effect/floor_decal/corner/white/bordercorner2, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "urP" = ( /obj/structure/table/woodentable, /obj/structure/backup_implanter_ch{ pixel_y = 3 }, -/turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/turf/simulated/floor/carpet/sblucarpet, +/area/hallway/Star_Transit_Foyer) "urU" = ( /obj/structure/cable/green{ d1 = 4; @@ -109824,20 +111213,39 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/black/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) +"usa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -3 + }, +/obj/machinery/camera/network/security{ + dir = 8; + c_tag = "D2-Com-Aft Corridor1"; + network = list("Commons") + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "uss" = ( /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "usx" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "usz" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "usD" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -109846,11 +111254,11 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "usM" = ( /obj/structure/inflatable, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "usY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -109868,7 +111276,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "utb" = ( /obj/structure/cable/green{ d1 = 1; @@ -109881,14 +111289,14 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "utJ" = ( /obj/vehicle/train/engine{ dir = 2 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "utV" = ( /obj/structure/cable/green{ d1 = 1; @@ -109897,14 +111305,14 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) "utZ" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/yellow, /obj/effect/landmark/start{ name = "Intern" }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "uuA" = ( /obj/structure/cable/green{ d1 = 4; @@ -109914,14 +111322,18 @@ /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) +"uuC" = ( +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "uuS" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "uvq" = ( /obj/machinery/firealarm{ pixel_y = 25; @@ -109931,11 +111343,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "uvJ" = ( /obj/structure/table, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "uvY" = ( /obj/structure/cable/green{ d1 = 1; @@ -109952,7 +111364,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "uwj" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -109961,18 +111373,26 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "uww" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarCorridor1) +/area/maintenance/Deck2_Cargo_AftStarCorridor1) "uwy" = ( /obj/machinery/vending/wallmed1{ name = "1N-NanoMed"; pixel_y = 26 }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) +"uwL" = ( +/obj/machinery/light{ + dir = 8; + layer = 3; + name = "1W-light fixture" + }, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Star_2_Deck_Central_Corridor_2) "uxd" = ( /obj/vehicle/train/trolley{ dir = 8 @@ -109980,10 +111400,38 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "uxr" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) +"uxR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "uxW" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -110006,7 +111454,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarCorridor1) +/area/maintenance/Deck2_Cargo_AftStarCorridor1) "uyu" = ( /obj/structure/cable/green{ d1 = 4; @@ -110021,14 +111469,14 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "uyP" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "uyR" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -110050,7 +111498,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "uzt" = ( /obj/machinery/floodlight, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -110058,7 +111506,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "uzD" = ( /obj/structure/cable/green{ d1 = 4; @@ -110075,7 +111523,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "uzF" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8; @@ -110085,11 +111533,11 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "uzV" = ( /obj/structure/sign/nosmoking_1, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "uzX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -110100,7 +111548,7 @@ id_tag = "Med Lockdown" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "uAt" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -110109,11 +111557,11 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "uAw" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "uAH" = ( /obj/structure/cable/green{ d1 = 1; @@ -110137,13 +111585,28 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) +"uAO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "uBc" = ( /obj/structure/bed/chair/sofa/black{ dir = 8 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "uBs" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, @@ -110152,11 +111615,6 @@ network = list("engineering"); dir = 1 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -110172,7 +111630,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "uBI" = ( /obj/structure/cable/green{ d1 = 4; @@ -110193,24 +111651,14 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "uCk" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) -"uCm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/maintenance/Deck2_ForPort_Corridor) "uCt" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -110219,7 +111667,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "uCD" = ( /obj/structure/table/bench/padded, /obj/effect/floor_decal/chapel{ @@ -110237,14 +111685,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "uCO" = ( /obj/item/modular_computer/laptop/preset/custom_loadout/cheap{ pixel_y = 9 }, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "uCX" = ( /obj/structure/cable/green{ d1 = 1; @@ -110252,11 +111700,20 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber1) +/area/maintenance/Deck2_Engineering_PortChamber1) +"uDk" = ( +/obj/structure/lattice, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_StarChamber1) "uDr" = ( /obj/structure/table/bench/wooden, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "uDw" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -110265,7 +111722,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "uDR" = ( /obj/structure/cable/green{ d1 = 1; @@ -110275,7 +111732,7 @@ /obj/structure/table/rack, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarCorridor1) +/area/maintenance/Deck2_Cargo_AftStarCorridor1) "uEl" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -110284,7 +111741,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "uEq" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -110293,12 +111750,12 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "uEF" = ( /obj/structure/table/steel, /obj/item/binoculars, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "uEL" = ( /obj/structure/cable/green{ d1 = 2; @@ -110322,7 +111779,20 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) +"uEX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 1 + }, +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 2 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_2) "uEY" = ( /obj/structure/cable{ d1 = 4; @@ -110334,7 +111804,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "uFe" = ( /obj/structure/sign/directions/security/brig{ dir = 9 @@ -110344,7 +111814,7 @@ dir = 1 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "uFq" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 @@ -110358,7 +111828,16 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) +"uFE" = ( +/obj/structure/lattice, +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_PortChamber2) "uGl" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 @@ -110367,7 +111846,7 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "uGC" = ( /obj/structure/cable/green{ d1 = 1; @@ -110387,7 +111866,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "uGK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -110399,11 +111878,11 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "uGP" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "uGU" = ( /obj/effect/floor_decal/chapel{ dir = 4 @@ -110412,7 +111891,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "uGW" = ( /obj/structure/cable/green{ d1 = 4; @@ -110430,8 +111909,12 @@ name = "Cargo Bay"; sortType = "Cargo Bay" }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "uHn" = ( /obj/structure/cable{ d1 = 1; @@ -110442,17 +111925,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) +"uHo" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "uHv" = ( /obj/machinery/atmospherics/valve/shutoff{ name = "Cargo automatic shutoff valve" }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "uHU" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Security_ForPortChamber1) +/area/maintenance/Deck2_Security_ForPortChamber1) "uIe" = ( /obj/structure/cable{ d1 = 2; @@ -110462,7 +111949,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/cyan, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "uIg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -110477,11 +111964,11 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "uIz" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "uIK" = ( /obj/effect/floor_decal/chapel{ dir = 4 @@ -110490,16 +111977,29 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "uJd" = ( /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "uJB" = ( /obj/structure/table/hardwoodtable, /obj/random/instrument, /obj/random/trash, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) +"uJC" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/camera/network/security{ + dir = 1; + c_tag = "D2-Com-For Corridor2"; + network = list("Commons") + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/steel_ridged, +/area/hallway/For_2_Deck_Central_Corridor_2) "uJR" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -110509,7 +112009,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "uKb" = ( /obj/structure/cable/green{ d1 = 4; @@ -110530,11 +112030,28 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) +"uKc" = ( +/obj/random/junk, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_StarChamber1) "uKe" = ( /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) +"uKl" = ( +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall, +/area/maintenance/Deck2_Civilian_PortChamber2) "uKp" = ( /obj/structure/cable/green{ d1 = 1; @@ -110554,32 +112071,17 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "uKu" = ( -/obj/machinery/holoposter{ - dir = 1; - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain, +/obj/structure/flora/underwater/grass3, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_1) "uKL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "uLk" = ( /obj/machinery/disposal/deliveryChute, /obj/structure/railing{ @@ -110592,7 +112094,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "uLm" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -110625,7 +112127,7 @@ pixel_y = 2 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "uLE" = ( /obj/structure/cable/green{ d1 = 1; @@ -110638,15 +112140,27 @@ c_tag = "D2-Eng-EVA Storage1"; network = list("engineering") }, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) +"uLM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/maintenance/Distro_Civilian) "uMr" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "uMy" = ( /obj/item/storage/box/lights/mixed{ pixel_x = 8; @@ -110690,14 +112204,14 @@ }, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "uMC" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "uMN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -110714,7 +112228,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "uMR" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -110738,7 +112252,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "uMS" = ( /obj/structure/cable{ d1 = 1; @@ -110746,7 +112260,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "uNd" = ( /obj/structure/cable{ d1 = 1; @@ -110756,11 +112270,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "uNA" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -110768,7 +112282,7 @@ id = "sc-WTholodeck" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "uND" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/random{ @@ -110795,7 +112309,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "uNL" = ( /obj/structure/disposalpipe/junction{ dir = 1; @@ -110803,7 +112317,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "uNN" = ( /obj/structure/cable/green{ d1 = 4; @@ -110817,7 +112331,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "uNQ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -110829,14 +112343,14 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "uNR" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "uNW" = ( /obj/machinery/newscaster{ name = "1E-newscaster"; @@ -110846,7 +112360,7 @@ pixel_y = 25 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "uOa" = ( /obj/structure/cable/green{ d1 = 2; @@ -110859,7 +112373,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "uOd" = ( /obj/machinery/light{ dir = 1; @@ -110883,33 +112397,23 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "uOy" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "uOF" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "uOK" = ( /obj/effect/floor_decal/industrial/loading/blue{ dir = 1 @@ -110929,13 +112433,13 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "uOZ" = ( /obj/structure/bookcase{ name = "Forbidden Knowledge" }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "uPc" = ( /obj/structure/bed/chair{ dir = 1 @@ -110947,7 +112451,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "uPk" = ( /obj/structure/table/steel_reinforced, /obj/effect/floor_decal/borderfloor{ @@ -110967,7 +112471,7 @@ pixel_x = -5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "uPu" = ( /obj/structure/closet/emcloset, /obj/machinery/light{ @@ -110976,7 +112480,7 @@ /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "uPF" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -110985,14 +112489,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "uPX" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "uPY" = ( /obj/structure/sign/directions/evac{ dir = 4; @@ -111000,7 +112504,7 @@ layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) +/area/maintenance/Deck2_Medical_AftCorridor1) "uQa" = ( /obj/structure/cable/green{ d1 = 1; @@ -111017,7 +112521,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "uQb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -111027,21 +112531,21 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "uQd" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "uQk" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "uQK" = ( /obj/random/toolbox, /turf/simulated/floor/wood/broken, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "uQN" = ( /obj/structure/table/marble, /obj/machinery/door/blast/shutters{ @@ -111050,7 +112554,16 @@ name = "Bar Shutters" }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) +"uQU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "uQZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -111059,26 +112572,26 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "uRa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "uRm" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "uRn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "uRN" = ( /obj/structure/table/wooden_reinforced, /obj/item/storage/fancy/markers{ @@ -111097,13 +112610,13 @@ pixel_x = 9 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "uRX" = ( /obj/effect/floor_decal/spline/fancy{ dir = 4 }, /turf/simulated/floor/carpet/purple, -/area/SouthernCrossV2/Science/RD_Office) +/area/rnd/RD_Office) "uSo" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -111114,7 +112627,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "uSp" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -111123,27 +112636,36 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber2) +/area/maintenance/Deck2_Engineering_ForStarChamber2) "uSr" = ( -/obj/structure/sign/securearea{ - icon_state = "radiation_small"; - name = "\improper RAD SAFE"; - desc = "A warning sign which reads 'RADIATION SHIELDING IN THIS AREA'." +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/blue, +/obj/effect/wingrille_spawn/reinforced/polarized{ + id = "sc-WTkitchen" }, -/obj/structure/disposalpipe/segment, -/turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/turf/simulated/floor/plating, +/area/crew_quarters/Chomp_Kitchen) "uSG" = ( /obj/structure/table/woodentable, /obj/item/starcaster_news, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) +"uSP" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/flora/underwater/grass3, +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_2) "uSQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "uST" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 8; @@ -111165,7 +112687,7 @@ oxygen = 0; temperature = 80 }, -/area/SouthernCrossV2/Science/Server_Room) +/area/rnd/Server_Room) "uSV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -111176,7 +112698,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "uSY" = ( /obj/structure/cable/green{ d1 = 4; @@ -111187,7 +112709,7 @@ dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "uTm" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -111199,7 +112721,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "uTo" = ( /obj/item/gun/energy/netgun{ pixel_y = 13; @@ -111222,17 +112744,17 @@ layer = 2.9 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "uTu" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "uTA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "uTK" = ( /obj/structure/cable/green{ d1 = 1; @@ -111249,7 +112771,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "uTS" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -111270,7 +112792,7 @@ }, /obj/structure/disposalpipe/junction, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "uTV" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -111279,7 +112801,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "uTX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -111289,7 +112811,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "uUa" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -111303,7 +112825,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "uUB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -111315,7 +112837,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) +"uUH" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/grass, +/area/hallway/Central_2_Deck_Hall) "uUK" = ( /obj/structure/cable/green{ d1 = 1; @@ -111327,7 +112853,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "uUR" = ( /obj/structure/cable/green{ d1 = 1; @@ -111339,7 +112865,39 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) +"uUZ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) +"uVa" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/structure/sign/poster/nanotrasen{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_2) "uVg" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -111366,7 +112924,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "uVm" = ( /obj/machinery/firealarm{ dir = 1; @@ -111383,7 +112941,7 @@ pixel_y = -1 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "uVE" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -111392,7 +112950,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "uVN" = ( /obj/machinery/station_map{ pixel_y = 32; @@ -111405,7 +112963,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "uVQ" = ( /obj/structure/cable{ d1 = 1; @@ -111422,7 +112980,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "uVT" = ( /obj/structure/table/steel, /obj/item/stack/material/glass{ @@ -111431,7 +112989,7 @@ pixel_y = 3 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Circuitry_Den) +/area/rnd/Circuitry_Den) "uVV" = ( /obj/structure/cable/green{ d1 = 1; @@ -111446,7 +113004,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Corridor) +/area/maintenance/Deck2_Science_ForPort_Corridor) "uVY" = ( /obj/structure/cable/green{ d1 = 1; @@ -111456,7 +113014,7 @@ /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "uVZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -111465,11 +113023,15 @@ dir = 1 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "uWs" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/brown/diagonal, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "uWx" = ( /obj/structure/cable/green{ d1 = 1; @@ -111486,12 +113048,12 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "uWG" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "uWJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -111503,7 +113065,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "uWP" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -111515,7 +113077,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "uXf" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/random{ @@ -111542,7 +113104,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/area/maintenance/Deck2_For_Corridor) "uXp" = ( /obj/effect/decal/cleanable/blood/splatter{ name = "Liquid"; @@ -111554,7 +113116,20 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) +"uXr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + name = "1N-lighting fixture" + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "uXN" = ( /obj/structure/cable/green{ d1 = 1; @@ -111576,7 +113151,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "uXQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -111587,7 +113162,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "uXX" = ( /obj/structure/cable{ d1 = 4; @@ -111605,7 +113180,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "uYd" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/hatch/blue, @@ -111614,13 +113189,13 @@ network = list("Science") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "uYj" = ( /obj/effect/floor_decal/industrial/stand_clear/red, /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "uYT" = ( /obj/structure/cable{ d1 = 1; @@ -111634,7 +113209,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "uZc" = ( /obj/structure/railing/grey{ color = "yellow" @@ -111644,7 +113219,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "uZr" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -111653,7 +113228,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "uZu" = ( /obj/structure/cable/green{ d1 = 1; @@ -111664,17 +113239,17 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "uZy" = ( /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "uZD" = ( /obj/random/trash, /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "uZI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -111691,10 +113266,10 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "uZK" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "uZN" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -111703,7 +113278,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "uZO" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -111726,7 +113301,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Security_StarCorridor1) +/area/maintenance/Deck2_Security_StarCorridor1) "uZV" = ( /obj/structure/cable/green{ d1 = 4; @@ -111747,11 +113322,11 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "vaa" = ( /obj/structure/bed/pillowpile/black, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "vad" = ( /obj/structure/table/glass, /obj/item/reagent_containers/spray/cleaner{ @@ -111766,11 +113341,11 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "vaf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "vat" = ( /obj/effect/floor_decal/chapel{ dir = 1 @@ -111778,14 +113353,14 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/black/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "vav" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /obj/structure/sign/warning/hot_exhaust, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "vaB" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloorblack{ @@ -111795,7 +113370,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "vaC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -111803,7 +113378,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "vaD" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -111812,11 +113387,22 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "vaL" = ( -/obj/structure/reagent_dispensers/watertank/high, -/turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "vaR" = ( /obj/structure/cable/green{ d1 = 1; @@ -111829,13 +113415,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "vaT" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "vaX" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -111847,13 +113433,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "vaY" = ( /obj/structure/table/rack/steel, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "vbn" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -111869,7 +113455,7 @@ color = "#6b75ff" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "vbq" = ( /obj/machinery/computer/security/telescreen{ desc = "Big Brother is watching."; @@ -111884,13 +113470,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "vbD" = ( /obj/structure/lattice, /obj/machinery/light/small/neon/generic_green, /obj/machinery/shield_diffuser, /turf/space, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "vbI" = ( /obj/structure/cable/green{ d1 = 2; @@ -111899,14 +113485,14 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "vbP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "vbX" = ( /obj/machinery/alarm{ dir = 8; @@ -111914,7 +113500,7 @@ }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "vcb" = ( /obj/structure/cable/green{ d1 = 1; @@ -111934,7 +113520,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "vcf" = ( /obj/structure/cable/green{ d1 = 1; @@ -111944,46 +113530,36 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "vcv" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) -"vcN" = ( -/obj/item/radio/intercom{ - name = "1S-Station Intercom (General)"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/area/hallway/Port_2_Deck_Central_Corridor_1) +"vcR" = ( +/obj/effect/floor_decal/corner/brown/diagonal, +/obj/effect/floor_decal/corner/brown/diagonal{ dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/quartermaster/Reception) "vcT" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "vdc" = ( /obj/structure/reagent_dispensers/watertank/high, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "vdf" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "vdz" = ( /obj/effect/graffitispawner, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "vdS" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarCorridor1) +/area/maintenance/Deck2_Cargo_AftStarCorridor1) "vdV" = ( /obj/machinery/alarm{ dir = 8; @@ -111994,7 +113570,7 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "vei" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -112010,7 +113586,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "veJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -112033,7 +113609,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "veO" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/grille, @@ -112062,12 +113638,12 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "vfb" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "vfk" = ( /obj/machinery/light{ dir = 4; @@ -112089,14 +113665,19 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "vfn" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) +"vft" = ( +/obj/structure/table/standard, +/obj/item/material/sharpeningkit, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/Chomp_Kitchen) "vfz" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -112106,19 +113687,19 @@ d2 = 4; icon_state = "0-4" }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/light/floortube{ - dir = 1; - pixel_y = 2 +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_1) "vfG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "vfI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -112137,7 +113718,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "vfZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -112155,7 +113736,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "vge" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/disposalpipe/up{ @@ -112165,12 +113746,12 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor2) +/area/maintenance/Deck2_Science_StarCorridor2) "vgu" = ( /obj/structure/table/reinforced, /obj/item/clothing/gloves/sterile/latex, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "vgH" = ( /obj/item/paint_palette{ pixel_x = 6; @@ -112190,7 +113771,23 @@ }, /obj/structure/table/reinforced, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) +"vhr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/camera/network/security{ + c_tag = "D2-Com-Star Corridor1"; + network = list("Commons") + }, +/obj/structure/sign/poster/nanotrasen{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "vhw" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ @@ -112199,11 +113796,11 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "vhB" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/porta_turret/industrial/teleport_defense{ - faction = "mouse" + faction = "nanotrasen" }, /mob/living/simple_mob/animal/passive/mouse/brown/Tom{ faction = "nanotrasen" @@ -112219,7 +113816,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Vault) +/area/bridge/Vault) "vhK" = ( /obj/structure/cable/green{ d1 = 1; @@ -112230,7 +113827,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "vhS" = ( /obj/effect/floor_decal/industrial/loading/blue{ dir = 1 @@ -112247,7 +113844,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "vhU" = ( /obj/structure/bed/chair/backed_red{ dir = 4 @@ -112256,14 +113853,29 @@ dir = 10 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "vil" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + name = "W-fire alarm"; + pixel_x = -25 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Corridor_1) "viG" = ( /obj/structure/cable/green{ d1 = 1; @@ -112273,12 +113885,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) +"viI" = ( +/obj/structure/lattice, +/obj/effect/catwalk_plated/techmaint, +/obj/structure/cable/white{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_StarChamber1) "viP" = ( /obj/structure/bed/double, /obj/item/bedsheet/reddouble, /turf/simulated/floor/carpet/brown/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "viV" = ( /obj/machinery/conveyor_switch/oneway{ id = "QMDelivery" @@ -112286,7 +113908,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/steeldecal/steel_decals_central4, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "vje" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -112298,14 +113920,8 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "vjh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -112317,7 +113933,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "vjv" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -112329,15 +113945,15 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "vjy" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "vjz" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "vjJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -112346,7 +113962,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "vjL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ @@ -112354,7 +113970,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "vjM" = ( /obj/machinery/ai_status_display{ name = "1N-AI display"; @@ -112365,24 +113981,7 @@ dir = 8 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Bar) -"vjZ" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/machinery/light/floortube{ - dir = 1; - pixel_y = 2 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/crew_quarters/Midnight_Bar) "vkf" = ( /obj/machinery/light{ dir = 4; @@ -112397,7 +113996,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "vky" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -112405,7 +114004,7 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "vkE" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/structure/cable/green{ @@ -112421,32 +114020,18 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "vkN" = ( /obj/effect/decal/remains/unathi, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Maints/ab_Chapel) -"vkT" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/int, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Aft_Corridor) +/area/maintenance/ab_Chapel) "vlb" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "vlc" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -112460,7 +114045,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "vmd" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/alarm{ @@ -112469,7 +114054,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForStar_Chamber) +/area/maintenance/Deck2_Security_ForStar_Chamber) "vmk" = ( /obj/structure/cable/green{ d1 = 4; @@ -112480,12 +114065,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/floor_decal/steeldecal/monofloor{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "vml" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "vmp" = ( /obj/structure/cable/green{ d1 = 4; @@ -112497,14 +114085,14 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "vmD" = ( /obj/effect/catwalk_plated/techmaint, /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "vmE" = ( /obj/structure/cable{ d1 = 1; @@ -112515,7 +114103,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "vmI" = ( /obj/structure/bed/chair/bay/chair/padded/red/bignest, /obj/item/toy/plushie/teshari, @@ -112523,7 +114111,18 @@ pixel_y = 25 }, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) +"vmY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "vnk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -112534,7 +114133,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "vnm" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -112543,7 +114142,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "vnx" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 8 @@ -112552,7 +114151,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "vnG" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 8; @@ -112564,11 +114163,11 @@ name = "blobstart" }, /turf/simulated/floor/reinforced, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "vnH" = ( /obj/structure/inflatable, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "vnP" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -112577,13 +114176,21 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Chamber) +/area/maintenance/Deck2_Science_ForPort_Chamber) +"vnU" = ( +/obj/structure/cable/white{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_StarChamber2) "vnV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "vnZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -112600,7 +114207,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "vor" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -112610,7 +114217,7 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "vos" = ( /obj/structure/cable/green{ d1 = 1; @@ -112627,34 +114234,42 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) -"voE" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/rnd/Robotics_Lab) +"voF" = ( +/obj/structure/cable/white{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/white{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_PortChamber2) "voG" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "voL" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "voS" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "voV" = ( /obj/item/radio/intercom{ name = "1S-Station Intercom (General)"; pixel_y = -22 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "vpe" = ( /obj/machinery/atmospherics/valve/digital/open, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "vpj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -112667,7 +114282,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "vpl" = ( /obj/structure/cable/green{ d1 = 2; @@ -112675,7 +114290,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "vpB" = ( /obj/item/paper/sticky{ pixel_y = -18; @@ -112684,7 +114299,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "vpH" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -112693,14 +114308,14 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "vpP" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "vpU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -112724,7 +114339,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "vpW" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -112738,7 +114353,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_StarChamber1) +/area/maintenance/Deck2_Cargo_StarChamber1) "vqk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -112755,18 +114370,37 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "vqs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/kafel_full/red/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "vqv" = ( /obj/effect/floor_decal/techfloor, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) +"vqw" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/sign/directions/library{ + layer = 3.5; + pixel_y = -9; + dir = 4 + }, +/obj/structure/sign/directions/chapel{ + layer = 3.5 + }, +/obj/structure/sign/directions/dorms{ + pixel_y = 9; + layer = 3.5 + }, +/turf/simulated/wall, +/area/maintenance/Distro_Civilian) "vqy" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -112775,7 +114409,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "vqA" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -112785,7 +114419,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "vqB" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, @@ -112794,7 +114428,7 @@ }, /obj/mecha/combat/fighter/scoralis/loaded, /turf/space, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "vqQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -112806,7 +114440,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "vqW" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -112818,18 +114452,18 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "vqY" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "vre" = ( /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "vrg" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -112840,18 +114474,26 @@ name = "NanoVerse VR" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "vrj" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) +"vrq" = ( +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/maintenance/ab_TeshDen) "vrx" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "vrD" = ( /obj/structure/cable/green{ d1 = 1; @@ -112868,7 +114510,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Deck2_Corridor) +/area/rnd/Deck2_Corridor) "vrX" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -112887,11 +114529,16 @@ use_power = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "vso" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) +"vsy" = ( +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "vsL" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/sign/securearea{ @@ -112901,7 +114548,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "vsO" = ( /obj/machinery/light{ dir = 1; @@ -112915,7 +114562,7 @@ }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "vsQ" = ( /obj/structure/cable/green{ d1 = 4; @@ -112932,17 +114579,17 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "vsR" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "vte" = ( /obj/structure/bed/chair/sofa, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "vtm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -112956,17 +114603,17 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "vtp" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "vtq" = ( /obj/machinery/light/small, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "vtu" = ( /obj/structure/cable{ d1 = 1; @@ -112984,7 +114631,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "vty" = ( /obj/structure/cable/green{ d1 = 1; @@ -112998,7 +114645,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortCorridor1) +/area/maintenance/Deck2_Medical_AftPortCorridor1) "vtO" = ( /obj/structure/bed/chair/sofa/left/blue{ dir = 8 @@ -113006,14 +114653,14 @@ /obj/effect/floor_decal/spline/fancy{ dir = 4 }, -/turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/turf/simulated/floor/carpet/sblucarpet, +/area/hallway/Star_Transit_Foyer) "vtR" = ( /obj/item/stool/padded{ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "vuc" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -113022,7 +114669,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/black/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "vue" = ( /obj/machinery/computer/security/wooden_tv, /obj/structure/window/reinforced{ @@ -113033,7 +114680,7 @@ c_tag = "D2-Sec-Forensics1" }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "vul" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -113045,7 +114692,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "vun" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -113054,7 +114701,7 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "vuC" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -113063,7 +114710,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "vuU" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -113083,7 +114730,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "vuY" = ( /obj/structure/cable/green{ d1 = 1; @@ -113095,15 +114742,44 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "vvd" = ( /turf/simulated/shuttle/floor, /area/shuttle/large_escape_pod4/station) +"vvn" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + name = "W-fire alarm"; + pixel_x = -25 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "vvp" = ( /obj/machinery/floodlight, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) +"vvq" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/shuttle/blue{ + pixel_x = -1; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/hallway/Port_2_Deck_Central_Corridor_1) "vvy" = ( /obj/structure/cable{ d1 = 2; @@ -113118,7 +114794,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "vvJ" = ( /obj/machinery/power/apc{ dir = 1; @@ -113152,7 +114828,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "vvP" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -113170,7 +114846,7 @@ pixel_y = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "vvY" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -113182,7 +114858,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "vwr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -113195,27 +114871,27 @@ /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ +/obj/effect/floor_decal/corner/lightorange/bordercorner{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "vwu" = ( /obj/structure/table/standard, /obj/random/maintenance/cargo, /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortCorridor1) +/area/maintenance/Deck2_Medical_AftPortCorridor1) "vwB" = ( /obj/effect/floor_decal/spline/fancy{ dir = 1 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "vwC" = ( /obj/structure/sign/chemistry, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "vwF" = ( /obj/structure/noticeboard{ pixel_y = 30 @@ -113228,12 +114904,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "vwX" = ( /obj/structure/loot_pile/maint/junk, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "vxe" = ( /obj/machinery/station_map{ pixel_y = 32; @@ -113257,14 +114933,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "vxi" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "vxj" = ( /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "vxy" = ( /obj/structure/table/rack, /obj/structure/window/reinforced, @@ -113278,23 +114954,23 @@ pixel_y = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "vxF" = ( -/obj/structure/sink/kitchen{ - dir = 1; - pixel_y = -7 +/obj/item/stool/padded{ + dir = 4 }, -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -6; - pixel_y = 7 +/obj/effect/landmark/start{ + name = "Chef" }, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = 6; - pixel_y = 7 +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "vxG" = ( /obj/effect/floor_decal/industrial/hatch, /obj/machinery/atmospheric_field_generator/perma/underdoors{ @@ -113320,9 +114996,8 @@ locked = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "vyg" = ( -/obj/random/trash, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -113333,36 +115008,9 @@ d2 = 4; icon_state = "1-4" }, +/obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) -"vyn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/maintenance/Medical_Substation) "vyy" = ( /obj/structure/cable{ d1 = 1; @@ -113376,7 +115024,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "vyA" = ( /obj/item/radio/intercom{ dir = 1; @@ -113398,7 +115046,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "vyZ" = ( /obj/machinery/alarm{ dir = 4; @@ -113406,41 +115054,34 @@ }, /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) +/area/maintenance/Deck2_Science_ForCorridor1) "vzc" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "vzr" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "vzs" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "vzz" = ( /obj/machinery/atmospherics/binary/pump, /obj/effect/catwalk_plated, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "vzB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/turf/simulated/wall, +/area/hallway/Star_2_Deck_Central_Corridor_2) "vzL" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -113452,7 +115093,7 @@ id_tag = "sc-DBEstall3" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "vzM" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -113463,13 +115104,13 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "vAk" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "vAp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -113486,7 +115127,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "vAt" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, @@ -113497,11 +115138,11 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarChamber1) +/area/maintenance/Deck2_Cargo_AftStarChamber1) "vAx" = ( /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "vAC" = ( /obj/structure/cable{ d1 = 1; @@ -113518,7 +115159,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "vAY" = ( /obj/machinery/light{ dir = 1; @@ -113532,7 +115173,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "vBb" = ( /obj/machinery/power/apc{ dir = 1; @@ -113555,7 +115196,7 @@ pixel_y = 27 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "vCb" = ( /obj/effect/catwalk_plated, /obj/structure/cable/white{ @@ -113564,7 +115205,7 @@ icon_state = "2-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "vCe" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -113576,7 +115217,7 @@ req_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "vCn" = ( /obj/structure/urinal{ pixel_y = 28 @@ -113587,7 +115228,27 @@ name = "E-fire alarm" }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) +"vCo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "vCA" = ( /obj/machinery/power/apc{ dir = 8; @@ -113599,17 +115260,17 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "vCI" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "vCQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Internal_Affairs_Office) +/area/security/Internal_Affairs_Office) "vDa" = ( /obj/structure/cable{ d1 = 1; @@ -113623,7 +115284,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "vDb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -113641,7 +115302,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "vDl" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -113657,7 +115318,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "vDn" = ( /obj/machinery/airlock_sensor{ pixel_y = -24; @@ -113666,7 +115327,7 @@ /obj/effect/map_helper/airlock/sensor/chamber_sensor, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "vDt" = ( /obj/machinery/power/apc{ dir = 4; @@ -113693,14 +115354,14 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "vDJ" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "vDT" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -113712,14 +115373,23 @@ id_tag = "sc-DBNstall1" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "vEe" = ( /obj/structure/bed/chair/comfy/red{ dir = 8 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) +"vEo" = ( +/obj/structure/lattice, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_StarChamber2) "vEB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -113733,16 +115403,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) -"vEF" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/floodlight, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/maintenance/Deck2_ForPort_Corridor) "vEN" = ( /obj/structure/table/woodentable, /obj/item/paper_bin{ @@ -113774,7 +115435,7 @@ pixel_y = -36 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "vES" = ( /obj/structure/cable{ d1 = 1; @@ -113782,26 +115443,27 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "vET" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "vFj" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "vFq" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) +/area/maintenance/Deck2_Engineering_PortCorridor1) "vFr" = ( /obj/structure/bed/chair/sofa/right/brown{ - dir = 8 + dir = 8; + pixel_y = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -113809,7 +115471,7 @@ dir = 4 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "vFJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -113822,7 +115484,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "vGh" = ( /obj/structure/cable/green{ d1 = 4; @@ -113842,7 +115504,11 @@ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) +"vGm" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass, +/area/hallway/For_2_Deck_Central_Corridor_2) "vGB" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -113851,23 +115517,21 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "vGD" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "vGJ" = ( -/obj/machinery/light{ - name = "1S-light fixture" +/obj/structure/lattice, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_PortChamber1) "vGK" = ( /obj/structure/cable/green{ d1 = 1; @@ -113879,20 +115543,20 @@ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "vGS" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 }, /turf/simulated/floor/tiled/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "vHd" = ( /obj/structure/table/reinforced, /obj/machinery/microwave{ pixel_y = 18 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "vHe" = ( /obj/machinery/keycard_auth{ pixel_y = -24 @@ -113916,7 +115580,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "vHj" = ( /obj/structure/cable/green{ d1 = 1; @@ -113924,7 +115588,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "vHl" = ( /obj/structure/bed/chair/sofa/corner{ dir = 4 @@ -113933,7 +115597,7 @@ dir = 1 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "vHv" = ( /obj/structure/cable{ d1 = 4; @@ -113952,8 +115616,11 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "vHD" = ( /obj/structure/cable/green{ d1 = 2; @@ -113967,7 +115634,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "vHK" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -113976,7 +115643,7 @@ dir = 8 }, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "vIg" = ( /obj/machinery/shield_diffuser, /obj/structure/cable/white{ @@ -113985,7 +115652,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "vIk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -113996,7 +115663,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "vIB" = ( /obj/machinery/light{ dir = 1; @@ -114005,7 +115672,7 @@ /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "vIC" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -114014,18 +115681,22 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "vID" = ( /obj/machinery/autolathe, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "vIQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/valve/digital/open, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "vJC" = ( /obj/machinery/light/floortube{ pixel_y = -2 @@ -114036,10 +115707,10 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "vKf" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "vKr" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -114062,13 +115733,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "vKy" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "vKA" = ( /obj/machinery/ai_status_display{ pixel_y = -32 @@ -114087,17 +115758,17 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "vKH" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/cargo, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "vKR" = ( /obj/random/mouseremains, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "vKX" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -114109,7 +115780,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "vLc" = ( /obj/structure/cable{ d1 = 1; @@ -114123,7 +115794,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "vLj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -114134,25 +115805,25 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "vLo" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "vLq" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "vLw" = ( /obj/random/trash_pile, /obj/random/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber1) +/area/maintenance/Deck2_Engineering_PortChamber1) "vLK" = ( /obj/structure/cable/green{ d1 = 1; @@ -114163,7 +115834,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "vLQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -114171,7 +115842,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "vLU" = ( /obj/structure/cable{ d1 = 1; @@ -114182,17 +115853,17 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "vMx" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "vMy" = ( /obj/structure/table/hardwoodtable, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "vMz" = ( /obj/structure/cable{ d1 = 1; @@ -114206,7 +115877,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "vMC" = ( /obj/effect/floor_decal/shuttle/loading/yellow{ dir = 1 @@ -114215,26 +115886,23 @@ dir = 5 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "vMO" = ( /obj/effect/floor_decal/stairs{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "vMT" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "vNh" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/turf/simulated/wall/r_wall, +/area/hallway/Port_2_Deck_Central_Corridor_2) "vNi" = ( /obj/structure/cable/green{ d1 = 1; @@ -114256,7 +115924,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "vNX" = ( /obj/structure/cable/green{ d1 = 4; @@ -114274,7 +115942,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "vOd" = ( /obj/structure/table/rack, /obj/structure/window/reinforced, @@ -114294,7 +115962,12 @@ pixel_x = 3 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) +"vOl" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "vOB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -114311,7 +115984,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "vOH" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -114320,7 +115993,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "vOW" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 @@ -114332,10 +116005,10 @@ pixel_x = -22 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "vPa" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortCorridor1) +/area/maintenance/Deck2_Medical_AftPortCorridor1) "vPf" = ( /obj/effect/landmark{ name = "lightsout" @@ -114344,16 +116017,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Office_Lounge) -"vPy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/crew_quarters/Office_Lounge) "vPP" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -114365,15 +116029,15 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "vPQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "vPX" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "vPZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -114391,7 +116055,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "vQa" = ( /obj/machinery/light{ dir = 1; @@ -114405,11 +116069,11 @@ /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, -/obj/effect/floor_decal/corner/white/bordercorner{ +/obj/effect/floor_decal/corner/brown/bordercorner{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "vQX" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/firealarm{ @@ -114423,7 +116087,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "vRq" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -114437,20 +116101,19 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Aft_Restroom) -"vRy" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/area/crew_quarters/Aft_Restroom) +"vRv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 }, /obj/effect/floor_decal/borderfloor{ - dir = 1 + dir = 8 }, -/obj/effect/floor_decal/corner/green/border{ - dir = 1 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 }, -/turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "vRJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -114458,21 +116121,21 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "vRU" = ( /obj/structure/sign/department/shield{ desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "vSs" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_StarChamber1) +/area/maintenance/Deck2_Cargo_StarChamber1) "vSv" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "vSz" = ( /obj/structure/table/woodentable, /obj/item/book/manual/wiki/engineering_construction, @@ -114492,7 +116155,7 @@ name = "1S-AI display" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "vSK" = ( /obj/structure/bed/chair/sofa/left/blue{ dir = 8 @@ -114503,48 +116166,57 @@ dir = 4 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "vTf" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "vTu" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "vTv" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "vTx" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) -"vTA" = ( -/obj/machinery/holoposter{ - dir = 1; - pixel_y = -32 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/AftPort_2_Deck_Observatory) "vTN" = ( /obj/structure/disposalpipe/sortjunction/wildcard{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) +"vTO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 2 + }, +/obj/item/radio/intercom{ + dir = 8; + name = "1W-Station Intercom (General)"; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_2) "vTR" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "vUa" = ( /obj/structure/cable/green{ d1 = 1; @@ -114556,7 +116228,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "vUb" = ( /obj/effect/floor_decal/stairs, /obj/structure/cable/green{ @@ -114568,21 +116240,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) -"vUc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Star_2_Deck_Corridor_2) "vUd" = ( /obj/item/storage/box/syringes{ pixel_y = -4; @@ -114617,10 +116275,10 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "vUf" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "vUj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -114631,7 +116289,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "vUl" = ( /obj/structure/cable/green{ d1 = 1; @@ -114648,7 +116306,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "vUp" = ( /obj/machinery/suit_cycler/engineering{ req_one_access = list(11,24); @@ -114656,14 +116314,14 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "vUv" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "vUB" = ( /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "vUO" = ( /obj/machinery/power/apc{ dir = 8; @@ -114671,8 +116329,12 @@ pixel_x = -24 }, /obj/structure/cable/green, +/obj/structure/cable/white{ + d2 = 2; + icon_state = "0-2" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "vUQ" = ( /obj/machinery/firealarm{ dir = 4; @@ -114686,28 +116348,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) -"vUU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/sign/poster/custom{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Port_Transit_Foyer) "vUV" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "vVh" = ( /obj/structure/bed/chair/bay/chair/padded/red/smallnest{ name = "Nugget's nest" @@ -114720,17 +116367,29 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) -"vVl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ +/area/engineering/CE_Office) +"vVm" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/hatch, +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium, +/obj/structure/window/titanium{ + dir = 4 + }, +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_StarChamber2) "vVx" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -114760,7 +116419,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "vVL" = ( /obj/structure/cable/green{ d1 = 4; @@ -114775,7 +116434,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "vVP" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -114792,7 +116451,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_1) "vVQ" = ( /obj/machinery/sleep_console{ dir = 4 @@ -114800,18 +116459,18 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "vVV" = ( /obj/machinery/drone_fabricator/unify, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "vWb" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "vWx" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "vWB" = ( /obj/structure/table/rack/shelf/steel, /obj/item/stack/cable_coil/random{ @@ -114850,7 +116509,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "vXg" = ( /obj/structure/table/steel_reinforced, /obj/machinery/light{ @@ -114859,7 +116518,7 @@ }, /obj/item/clipboard, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "vXm" = ( /obj/structure/cable{ d1 = 1; @@ -114879,13 +116538,13 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "vXy" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "vXB" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/floor_decal/borderfloorblack/corner{ @@ -114904,13 +116563,13 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "vXJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "vXL" = ( /obj/structure/cable/green{ d2 = 8; @@ -114922,12 +116581,12 @@ pixel_x = 24 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "vXP" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "vXR" = ( /obj/structure/cable/green{ d1 = 1; @@ -114938,8 +116597,14 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "vXT" = ( /obj/structure/cable{ d1 = 1; @@ -114953,7 +116618,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) "vYr" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -114962,7 +116627,16 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) +"vYs" = ( +/obj/structure/lattice, +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_StarChamber2) "vYS" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -114975,10 +116649,21 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "vZc" = ( /turf/simulated/shuttle/floor/white, /area/shuttle/large_escape_pod3/station) +"vZd" = ( +/obj/random/trash_pile, +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_PortChamber2) "vZp" = ( /obj/structure/cable{ d1 = 1; @@ -114991,7 +116676,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "vZs" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -115005,7 +116690,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "vZw" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -115029,7 +116714,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForPortChamber1) +/area/maintenance/Deck2_Security_ForPortChamber1) "vZE" = ( /obj/structure/table/standard, /obj/item/reagent_containers/food/drinks/cans/waterbottle{ @@ -115049,19 +116734,19 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "vZF" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "vZG" = ( /obj/structure/stasis_cage, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "vZL" = ( /obj/structure/cable/green{ d1 = 1; @@ -115079,17 +116764,17 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "vZW" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "vZY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "wae" = ( /obj/structure/cable/green{ d1 = 4; @@ -115104,29 +116789,20 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "wao" = ( /obj/structure/lattice, /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) -"waH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/maintenance/Deck2_Civilian_StarChamber2) "waN" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -115143,7 +116819,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor2) +/area/maintenance/Deck2_Science_StarCorridor2) "waP" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -115155,7 +116831,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/For_Tool_Storage) +/area/quartermaster/For_Tool_Storage) "wbc" = ( /obj/effect/floor_decal/industrial/arrows{ dir = 4 @@ -115187,7 +116863,7 @@ req_one_access = list(11,24) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "wbd" = ( /obj/structure/cable{ d1 = 1; @@ -115206,17 +116882,17 @@ sortType = "Gallery" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "wbB" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "wbK" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "wbS" = ( /obj/structure/closet{ name = "Prisoner's Locker" @@ -115231,7 +116907,7 @@ pixel_x = -22 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "wbU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -115242,10 +116918,10 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "wcj" = ( /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "wco" = ( /obj/structure/table/rack, /obj/structure/window/reinforced, @@ -115261,7 +116937,7 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "wcr" = ( /obj/effect/floor_decal/industrial/loading/blue{ dir = 1 @@ -115277,14 +116953,14 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "wct" = ( /obj/machinery/alarm{ pixel_y = 25 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "wcF" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -115292,34 +116968,22 @@ id = "sc-WThop_office" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "wcL" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/light_construct, /turf/simulated/floor/wood/broken, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "wcM" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "wcN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Port_Corridor) +/turf/simulated/floor/water/deep/indoors, +/area/hallway/Port_2_Deck_Central_Corridor_2) "wdd" = ( /obj/item/radio/intercom{ dir = 1; @@ -115339,7 +117003,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Reception) +/area/engineering/Reception) "wdf" = ( /obj/effect/floor_decal/chapel{ dir = 8 @@ -115349,7 +117013,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "wdx" = ( /obj/structure/table/reinforced, /obj/machinery/chemical_dispenser/full{ @@ -115362,11 +117026,11 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "wdA" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "wdC" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -115393,16 +117057,21 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "wdI" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) +"wdN" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_2) "wdS" = ( /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "wdV" = ( /obj/item/aiModule/reset, /obj/structure/table/steel, @@ -115413,7 +117082,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "wdW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/landmark{ @@ -115426,7 +117095,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "weu" = ( /obj/structure/cable/green{ d1 = 4; @@ -115438,7 +117107,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "weA" = ( /obj/structure/cable/green{ d1 = 1; @@ -115448,7 +117117,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarCorridor1) +/area/maintenance/Deck2_Cargo_AftStarCorridor1) "weK" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -115472,20 +117141,20 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "weU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "weX" = ( /obj/machinery/iv_drip, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "weY" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -115496,12 +117165,12 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "weZ" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "wff" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -115519,19 +117188,19 @@ }, /obj/item/tape/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "wfl" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central7, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "wfo" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "wfu" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "wfz" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 @@ -115539,7 +117208,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "wfB" = ( /obj/machinery/status_display{ pixel_x = -32; @@ -115548,7 +117217,7 @@ /obj/machinery/suit_cycler/refit_only, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "wfH" = ( /obj/machinery/button/remote/blast_door{ id = "sc-GCmechbay1"; @@ -115558,7 +117227,20 @@ req_one_access = list(47) }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) +"wfN" = ( +/obj/structure/closet/crate/freezer, +/obj/machinery/alarm{ + pixel_y = 25; + name = "N-alarm" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/Chomp_Kitchen) +"wfR" = ( +/obj/structure/table/steel, +/obj/item/mail/junkmail, +/turf/simulated/floor/tiled/dark, +/area/hallway/ForPort_2_Deck_Observatory) "wfT" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -115578,7 +117260,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "wfU" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -115587,11 +117269,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/lightorange/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/hallway/Port_2_Deck_Central_Corridor_2) "wgq" = ( /obj/structure/cable/green{ d1 = 4; @@ -115610,7 +117292,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "wgA" = ( /obj/structure/cable/green{ d1 = 1; @@ -115626,7 +117308,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "wgL" = ( /obj/structure/cable/green{ d1 = 1; @@ -115642,7 +117324,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "whb" = ( /obj/structure/closet/l3closet/medical, /obj/item/radio/intercom{ @@ -115653,7 +117335,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "whh" = ( /obj/structure/table/rack/holorack, /obj/item/circuitboard/telecomms/processor{ @@ -115709,7 +117391,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "whv" = ( /obj/structure/closet/secure_closet/chemical, /obj/item/tool/screwdriver, @@ -115721,26 +117403,26 @@ }, /obj/item/storage/bag/chemistry, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Chemistry) +/area/medical/Chemistry) "why" = ( /obj/structure/sign/department/shield{ desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "whH" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "whI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "whT" = ( /turf/simulated/floor/tiled/monotile, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "wib" = ( /obj/structure/cable/green{ d1 = 4; @@ -115761,7 +117443,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "wie" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -115771,25 +117453,25 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftPortCorridor1) +/area/maintenance/Deck2_Security_AftPortCorridor1) "wim" = ( /obj/structure/loot_pile/maint/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "wix" = ( /obj/structure/table/rack, /obj/random/maintenance/security, /obj/random/mainttoyloot, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "wiE" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "wiH" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -115803,7 +117485,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "wiM" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -115813,7 +117495,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "wja" = ( /obj/structure/cable/green{ d1 = 4; @@ -115825,14 +117507,14 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "wjc" = ( /obj/structure/bed/chair/sofa/sif_ora, /obj/effect/floor_decal/spline/fancy{ dir = 1 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "wjg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorwhite/corner2, @@ -115844,7 +117526,33 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) +"wjt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/light/floortube{ + pixel_y = -2 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "wjD" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -115862,7 +117570,7 @@ pixel_x = -5 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "wjE" = ( /obj/structure/table/woodentable, /obj/item/clothing/suit/storage/apron/white{ @@ -115885,17 +117593,17 @@ pixel_y = 3 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "wjP" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "wjR" = ( /obj/structure/bed/chair/sofa/left/sif_ora, /obj/effect/floor_decal/spline/fancy{ dir = 1 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "wjT" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -115909,7 +117617,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "wjU" = ( /obj/structure/cable/green{ d1 = 1; @@ -115935,11 +117643,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "wkg" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "wkj" = ( /obj/structure/cable/green{ d1 = 4; @@ -115947,14 +117655,14 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "wkl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "wkq" = ( /obj/structure/urinal{ pixel_y = 28 @@ -115966,13 +117674,13 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "wks" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "wkA" = ( /obj/structure/table/rack/shelf/steel, /obj/item/stack/material/steel{ @@ -115986,7 +117694,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "wkF" = ( /obj/item/stool/padded{ dir = 4 @@ -115999,7 +117707,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "wkQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -116014,7 +117722,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "wkS" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -116032,7 +117740,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "wkZ" = ( /obj/structure/cable/green{ d1 = 4; @@ -116047,7 +117755,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "wlg" = ( /obj/machinery/camera/network/security{ dir = 4; @@ -116061,7 +117769,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "wli" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -116081,33 +117789,24 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "wlr" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, +/obj/effect/wingrille_spawn/reinforced/polarized{ + id = "sc-WTsecEstorage" + }, /obj/structure/cable/white, /obj/structure/cable/white{ d2 = 2; icon_state = "0-2" }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, /obj/structure/sign/directions/security/armory{ dir = 5; layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "wls" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -116126,7 +117825,29 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) +"wlP" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/hatch, +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium, +/obj/structure/window/titanium{ + dir = 4 + }, +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium{ + dir = 8 + }, +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_StarChamber2) "wlZ" = ( /obj/structure/cable/green{ d1 = 4; @@ -116149,7 +117870,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "wmj" = ( /obj/structure/shuttle/engine/propulsion{ dir = 8 @@ -116170,7 +117891,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "wmx" = ( /obj/structure/cable{ d1 = 4; @@ -116188,15 +117909,30 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_StarCorridor1) +/area/maintenance/Deck2_Security_StarCorridor1) "wmO" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) +"wna" = ( +/obj/structure/railing/grey{ + color = "yellow"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/obj/structure/railing/grey{ + color = "yellow"; + dir = 8 + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/Deck2_Aft_Corridor) "wnb" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "wni" = ( /obj/effect/floor_decal/stairs{ dir = 1 @@ -116207,13 +117943,28 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) +"wnj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Aft_Corridor) "wno" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "wnt" = ( /obj/machinery/light{ dir = 1; @@ -116240,7 +117991,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "wnu" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -116248,7 +117999,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Surgery_Room_1) +/area/medical/Surgery_Room_1) "wnv" = ( /obj/machinery/alarm{ dir = 1; @@ -116258,11 +118009,11 @@ dir = 1 }, /turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "wnB" = ( /obj/structure/sign/painting/public, /turf/simulated/wall/sifwood, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "wnG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -116276,14 +118027,31 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor1) -"wnW" = ( +/area/maintenance/Deck2_Engineering_PortCorridor1) +"wnR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/alarm{ + pixel_y = -25; + name = "S-alarm"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_1) "wnY" = ( /obj/structure/cable/green{ d1 = 4; @@ -116294,7 +118062,7 @@ dir = 4 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "woi" = ( /obj/structure/closet/gmcloset, /obj/item/glass_jar, @@ -116305,7 +118073,7 @@ pixel_y = 6 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "wop" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -116317,7 +118085,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "wor" = ( /obj/structure/cable/green{ d1 = 4; @@ -116334,14 +118102,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "woz" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "woJ" = ( /obj/machinery/power/apc{ dir = 1; @@ -116359,7 +118127,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "woM" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -116372,13 +118140,13 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "woW" = ( /obj/machinery/atmospherics/valve/shutoff{ name = "Science automatic shutoff valve" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "wpe" = ( /obj/structure/closet/crate/secure/large/reinforced, /obj/effect/floor_decal/borderfloor{ @@ -116391,7 +118159,7 @@ /obj/fiftyspawner/steel, /obj/fiftyspawner/glass, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "wpq" = ( /obj/machinery/alarm{ dir = 1; @@ -116400,7 +118168,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "wpH" = ( /obj/machinery/alarm{ dir = 8; @@ -116408,31 +118176,16 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) -"wpJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/painting/public, -/turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_2_Deck_Central_Corridor_1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "wpP" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "wqc" = ( /obj/machinery/shield_diffuser, /obj/effect/catwalk_plated/white, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "wqh" = ( /obj/item/reagent_containers/food/drinks/soymilk, /obj/item/reagent_containers/food/drinks/soymilk, @@ -116457,7 +118210,7 @@ dir = 4 }, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "wqi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -116470,7 +118223,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "wqk" = ( /obj/structure/cable/green{ d1 = 2; @@ -116478,10 +118231,10 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "wql" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "wqm" = ( /obj/structure/cable/green{ d1 = 4; @@ -116495,7 +118248,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "wqp" = ( /obj/structure/cable/green{ d1 = 1; @@ -116510,7 +118263,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "wqH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -116518,7 +118271,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "wqL" = ( /obj/machinery/body_scanconsole{ dir = 4 @@ -116531,14 +118284,29 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) +"wrc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "wrf" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "wrl" = ( /obj/structure/cable{ d1 = 1; @@ -116552,7 +118320,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "wry" = ( /obj/item/radio/intercom{ dir = 1; @@ -116566,7 +118334,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "wrz" = ( /obj/structure/table/glass, /obj/item/defib_kit/loaded{ @@ -116578,10 +118346,10 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "wrK" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "wrM" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -116592,11 +118360,16 @@ /obj/effect/floor_decal/corner/white/border{ dir = 8 }, +/obj/machinery/light{ + dir = 8; + layer = 3; + name = "1W-light fixture" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "wsg" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "wsk" = ( /obj/structure/cable/green{ d1 = 1; @@ -116606,7 +118379,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "wsr" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -116624,27 +118397,25 @@ }, /obj/structure/barricade, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "wsB" = ( -/obj/machinery/smartfridge/drying_rack, -/obj/item/storage/rollingpapers{ - pixel_x = -6; - pixel_y = 11 +/obj/structure/table/marble, +/obj/machinery/microwave{ + pixel_y = 18 }, -/obj/item/storage/rollingpapers/blunt{ - pixel_x = 7; - pixel_y = 11 +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 }, -/obj/item/storage/rollingpapers{ - pixel_x = -6; - pixel_y = 13 +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 }, -/obj/item/storage/rollingpapers/blunt{ - pixel_x = 7; - pixel_y = 13 - }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) +"wsD" = ( +/obj/effect/graffitispawner, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_ForPortChamber1) "wsU" = ( /obj/structure/girder, /obj/machinery/vending/wardrobe/mimedrobe, @@ -116655,7 +118426,7 @@ /obj/item/card/id/event/altcard/mime, /obj/item/fluff/id_kit_mime, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "wsV" = ( /obj/machinery/vending/hydronutrients/brig, /obj/effect/floor_decal/borderfloorblack{ @@ -116665,21 +118436,21 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "wsX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "wsZ" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) +/area/maintenance/Deck2_Engineering_PortCorridor2) "wtg" = ( /obj/structure/table/steel, /obj/item/clothing/suit/storage/vest/press, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "wtB" = ( /obj/structure/cable/green{ d1 = 1; @@ -116701,13 +118472,21 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) +"wtG" = ( +/obj/structure/cable/white{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/ab_TeshDen) "wtM" = ( /obj/structure/bookcase{ name = "bookcase (Fiction)" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "wtP" = ( /obj/structure/table/standard, /obj/item/towel/random, @@ -116723,7 +118502,7 @@ network = list("Security,Prison") }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "wub" = ( /obj/structure/cable/green{ d1 = 1; @@ -116736,7 +118515,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "wuf" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -116761,7 +118540,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/brown/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Star_Tool_Storage) +/area/quartermaster/Star_Tool_Storage) "wui" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -116772,23 +118551,32 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_Workshop) +/area/engineering/Engineering_Workshop) "wum" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/random/trash, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "wuA" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarChamber1) +/area/maintenance/Deck2_Cargo_AftStarChamber1) "wuC" = ( /obj/structure/lattice, /obj/random/trash, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "wuI" = ( /obj/machinery/disposal, /obj/item/radio/intercom{ @@ -116800,7 +118588,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "wuK" = ( /obj/item/stool/padded{ dir = 8 @@ -116811,7 +118599,7 @@ pixel_x = 26 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "wuM" = ( /obj/structure/cable/green{ d1 = 4; @@ -116831,7 +118619,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Locker_Room) +/area/rnd/Locker_Room) "wuX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -116841,7 +118629,7 @@ /obj/machinery/door/airlock/maintenance/int, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortChamber1) +/area/maintenance/Deck2_Medical_AftPortChamber1) "wvi" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -116857,7 +118645,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "wvp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -116869,7 +118657,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "wvS" = ( /obj/structure/bed/double/padded, /obj/item/bedsheet/medical{ @@ -116883,7 +118671,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "wvX" = ( /obj/structure/cable{ d1 = 4; @@ -116895,40 +118683,28 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/catwalk_plated/techmaint, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, /obj/structure/cable{ d1 = 1; d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/area/maintenance/Deck2_Star_Corridor) "wwf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/multi_tile/glass, -/obj/effect/floor_decal/industrial/arrows/blue, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 1 - }, -/obj/machinery/door/airlock/angled_bay/double/glass/common{ - name = "Aft Sector Domicile-Docks" - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "wwW" = ( /obj/structure/cable{ d1 = 1; @@ -116944,7 +118720,21 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) +"wwX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/For_2_Deck_Central_Corridor_2) "wxw" = ( /obj/structure/table/steel, /obj/item/storage/toolbox/electrical{ @@ -116970,7 +118760,7 @@ /obj/item/clothing/glasses/meson, /obj/item/clothing/glasses/meson, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "wxP" = ( /obj/structure/table/woodentable, /obj/machinery/alarm{ @@ -116984,7 +118774,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "wyl" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -116995,7 +118785,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "wym" = ( /obj/effect/floor_decal/chapel{ dir = 1 @@ -117005,17 +118795,17 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "wys" = ( /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "wyC" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "wyG" = ( /obj/structure/closet/emcloset, /obj/item/storage/box/lights/mixed, @@ -117023,8 +118813,11 @@ /obj/item/storage/box/lights/mixed{ pixel_y = 8 }, +/obj/random/trash, +/obj/random/trash, +/obj/structure/ghost_pod/ghost_activated/maintpred, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "wyR" = ( /obj/structure/cable/green{ d1 = 4; @@ -117033,7 +118826,7 @@ }, /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "wyU" = ( /obj/structure/sign/directions/medical/medeqp{ dir = 6 @@ -117044,7 +118837,7 @@ layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "wyV" = ( /obj/structure/cable/green{ d1 = 1; @@ -117058,34 +118851,34 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "wze" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "wzk" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForPort_Corridor) +/area/maintenance/Deck2_Science_ForPort_Corridor) "wzo" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/spline/fancy{ dir = 5 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "wzK" = ( /obj/machinery/atmospherics/pipe/tank/nitrous_oxide, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor3) +/area/maintenance/Deck2_Security_ForCorridor3) "wzS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -117099,7 +118892,19 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) +"wzV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "wAl" = ( /obj/structure/cable/green{ d1 = 1; @@ -117111,7 +118916,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "wAm" = ( /obj/structure/cable{ d1 = 2; @@ -117135,32 +118940,49 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_StarCorridor1) +/area/maintenance/Deck2_Security_StarCorridor1) "wAv" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "wAw" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 10 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "wAA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "wAG" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) +"wAW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "wAZ" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Science/Testing_Chamber) +/area/rnd/Testing_Chamber) "wBk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -117175,16 +118997,19 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "wBs" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/shield_gen, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "wBy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/machinery/door/blast/regular/open{ layer = 3.5; id = "For Lockdown"; @@ -117193,12 +119018,8 @@ dir = 4 }, /obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/arrows/blue, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/turf/simulated/floor/plating, +/area/maintenance/Deck2_For_Corridor) "wBz" = ( /obj/structure/cable/green{ d1 = 1; @@ -117215,7 +119036,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "wBE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -117239,7 +119060,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "wBI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -117256,19 +119077,11 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "wBK" = ( /obj/structure/sign/warning/hot_exhaust, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) -"wBO" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/rnd/Toxins_Mixing_Room) "wBQ" = ( /obj/effect/catwalk_plated, /obj/machinery/shield_diffuser, @@ -117278,7 +119091,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "wBX" = ( /obj/structure/cable/green{ d1 = 1; @@ -117286,13 +119099,13 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "wCj" = ( /obj/machinery/light_construct{ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Maints/ab_Chapel) +/area/maintenance/ab_Chapel) "wCl" = ( /obj/item/gps{ pixel_x = 3; @@ -117314,29 +119127,24 @@ "wCr" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "wCB" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "wCI" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor1) +/area/maintenance/Deck2_Cargo_AftCorridor1) "wCM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/spline/plain{ + dir = 9 }, -/obj/machinery/light/floortube{ - dir = 1; - pixel_y = 2 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/turf/simulated/floor/tiled/dark, +/area/hallway/Star_2_Deck_Central_Corridor_1) "wCT" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_1) "wCU" = ( /obj/effect/floor_decal/industrial/stand_clear/blue{ dir = 1 @@ -117351,7 +119159,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "wDm" = ( /obj/structure/window/reinforced{ dir = 4 @@ -117392,7 +119200,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "wDo" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -117409,16 +119217,16 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "wDz" = ( /obj/effect/decal/remains/unathi, /obj/effect/decal/cleanable/vomit, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "wDP" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor1) +/area/maintenance/Deck2_Civilian_ForStarCorridor1) "wEt" = ( /obj/structure/cable/green{ d1 = 4; @@ -117441,7 +119249,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "wEC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -117453,7 +119261,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "wES" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -117467,7 +119275,7 @@ icon_state = "1-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Storage_Room) +/area/security/Storage_Room) "wEW" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 1 @@ -117476,13 +119284,13 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "wEZ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "wFd" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -117494,17 +119302,22 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Mail_Room) +/area/quartermaster/Mail_Room) "wFh" = ( /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "wFm" = ( /obj/structure/windoor_assembly{ dir = 4 }, /obj/item/tape/engineering, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber1) +/area/maintenance/Deck2_Civilian_PortChamber1) "wFy" = ( /obj/structure/cable/green{ d1 = 1; @@ -117518,19 +119331,23 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) +/area/hallway/For_2_Deck_Stairwell) "wFz" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) +"wFD" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/hallway/For_2_Deck_Central_Corridor_2) "wFF" = ( /obj/structure/table/reinforced, /obj/item/clipboard, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "wFM" = ( /obj/structure/table/reinforced, /obj/item/wrapping_paper{ @@ -117563,7 +119380,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "wFO" = ( /obj/structure/cable/green{ d1 = 4; @@ -117572,13 +119389,13 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "wFX" = ( /obj/structure/bed/chair/sofa/right/black{ dir = 8 }, /turf/simulated/floor/wood/alt/panel/broken/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "wFY" = ( /obj/structure/toilet{ dir = 8 @@ -117598,7 +119415,7 @@ specialfunctions = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "wGl" = ( /obj/structure/cable/green{ d1 = 4; @@ -117618,17 +119435,22 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "wGp" = ( /obj/structure/loot_pile/maint/trash, /obj/random/trash, /obj/random/junk, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "wGq" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_PortCorridor1) +/area/maintenance/Deck2_Security_PortCorridor1) "wGI" = ( /obj/structure/sign/directions/cargo/refinery{ pixel_y = 9; @@ -117638,7 +119460,14 @@ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) +"wGJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/graffitispawner, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Security_AftStarCorridor2) "wGT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -117646,7 +119475,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_2) +/area/hallway/Aft_2_Deck_Corridor_2) "wGV" = ( /obj/structure/cable{ d1 = 1; @@ -117669,7 +119498,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "wHh" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -117684,23 +119513,23 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "wHt" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "wHA" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/area/maintenance/Deck2_For_Corridor) "wHC" = ( /obj/item/starcaster_news, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "wIa" = ( /obj/machinery/libraryscanner, /obj/structure/extinguisher_cabinet{ @@ -117713,7 +119542,7 @@ pixel_x = -6 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "wIl" = ( /obj/machinery/power/apc{ dir = 8; @@ -117725,11 +119554,11 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarCorridor1) +/area/maintenance/Deck2_Engineering_ForStarCorridor1) "wIr" = ( /obj/structure/table/hardwoodtable, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "wIs" = ( /obj/structure/cable/green{ d1 = 2; @@ -117737,7 +119566,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor1) +/area/maintenance/Deck2_Security_AftStarCorridor1) "wIu" = ( /obj/structure/cable/green{ d1 = 1; @@ -117762,7 +119591,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "wIC" = ( /obj/structure/cable/green{ d1 = 1; @@ -117774,11 +119603,11 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "wIQ" = ( /obj/structure/table/rack/shelf, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "wIY" = ( /obj/structure/cable/green{ d1 = 1; @@ -117788,15 +119617,11 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "wJa" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Stairwell) -"wJe" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Stairwell) "wJo" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -117810,7 +119635,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "wJt" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -117822,11 +119647,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Toxins_Storage) +/area/rnd/Toxins_Storage) "wJE" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "wJJ" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 2; @@ -117848,7 +119673,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "wJS" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -117857,7 +119682,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "wJW" = ( /obj/structure/cable{ d1 = 4; @@ -117868,7 +119693,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "wKd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -117887,7 +119712,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "wKf" = ( /obj/machinery/firealarm{ dir = 8; @@ -117901,14 +119726,17 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "wKg" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Star_Corridor) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "wKG" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -117917,10 +119745,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "wKN" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "wKO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorwhite{ @@ -117930,7 +119758,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "wKQ" = ( /obj/structure/table/steel, /obj/item/reagent_containers/glass/beaker/large{ @@ -117953,7 +119781,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Distillery) +/area/medical/Distillery) "wKX" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -117962,7 +119790,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "wLh" = ( /obj/effect/floor_decal/carpet{ dir = 4 @@ -117972,11 +119800,11 @@ dir = 6 }, /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "wLi" = ( /obj/structure/bed/chair/comfy/beige, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "wLp" = ( /obj/machinery/light{ dir = 1; @@ -118000,7 +119828,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "wLq" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -118011,7 +119839,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "wLB" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -118020,7 +119848,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "wLI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -118030,13 +119858,21 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) +"wLS" = ( +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_Civilian_PortChamber2) "wLU" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "wLW" = ( /obj/structure/cable/green{ d1 = 1; @@ -118055,11 +119891,11 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "wLZ" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_StarChamber1) +/area/maintenance/Deck2_Cargo_StarChamber1) "wMa" = ( /obj/structure/cable/green{ d1 = 4; @@ -118076,7 +119912,7 @@ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "wMF" = ( /obj/structure/bed/chair/sofa/right/blue{ dir = 4 @@ -118093,11 +119929,11 @@ dir = 8 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "wMI" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "wMK" = ( /obj/structure/cable/green{ d1 = 4; @@ -118105,10 +119941,10 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "wML" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "wMO" = ( /obj/structure/table/marble, /obj/structure/sink/countertop{ @@ -118130,14 +119966,14 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "wNa" = ( /obj/structure/filingcabinet, /obj/structure/sign/calendar{ pixel_y = 30 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "wNf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -118148,7 +119984,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "wNh" = ( /obj/machinery/alarm{ dir = 1; @@ -118165,7 +120001,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "wNw" = ( /obj/structure/bed/chair/bay/chair/padded/red/bignest, /obj/structure/curtain/medical{ @@ -118178,13 +120014,13 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "wNx" = ( /obj/effect/floor_decal/shuttle/loading/yellow{ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Engineering/Canister_Storage) +/area/engineering/Canister_Storage) "wNH" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -118203,7 +120039,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Office_Lounge) +/area/crew_quarters/Office_Lounge) "wOe" = ( /obj/structure/cable/green{ d1 = 1; @@ -118228,13 +120064,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "wOg" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/engineering, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "wOx" = ( /obj/structure/cable/green{ d1 = 1; @@ -118253,7 +120089,7 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "wPa" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -118261,7 +120097,7 @@ network = list("Domicile") }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "wPw" = ( /obj/structure/bed/chair/sofa/orange{ dir = 8 @@ -118271,20 +120107,20 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "wPD" = ( /obj/structure/disposalpipe/tagger{ dir = 4; sort_tag = "transit_crew" }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/area/crew_quarters/Chomp_Kitchen) "wPG" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 4 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "wPN" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 6 @@ -118299,7 +120135,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "wPY" = ( /obj/structure/cable{ d1 = 1; @@ -118310,7 +120146,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "wQe" = ( /obj/structure/cable/green{ d1 = 4; @@ -118322,7 +120158,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "wQu" = ( /obj/structure/cable/green{ d1 = 4; @@ -118340,7 +120176,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Equipment_Storage) +/area/security/Equipment_Storage) "wQP" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/suit/space/void/engineering/hazmat{ @@ -118368,7 +120204,7 @@ pixel_x = -6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "wQR" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -118399,7 +120235,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "wQT" = ( /obj/machinery/light/small{ dir = 4 @@ -118411,7 +120247,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarCorridor1) +/area/maintenance/Deck2_Cargo_AftStarCorridor1) "wQZ" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -118422,31 +120258,11 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) -"wRb" = ( -/obj/machinery/door/blast/regular/open{ - layer = 3.5; - id = "For Lockdown"; - name = "Lockdown Gate"; - desc = "A heavily reinforced gate, sector lockdown!"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/angled_bay/double/glass/command{ - name = "Fore Sector Security-Command"; - req_access = null - }, -/obj/machinery/door/firedoor/multi_tile/glass, -/obj/effect/floor_decal/industrial/arrows/blue, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/maintenance/Deck2_Civilian_StarChamber2) "wRf" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "wRt" = ( /obj/item/stool/padded{ dir = 8 @@ -118458,7 +120274,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "wRF" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -118466,7 +120282,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "wRN" = ( /obj/machinery/station_map{ pixel_y = 32; @@ -118479,7 +120295,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "wRW" = ( /obj/item/towel/random{ pixel_x = -5; @@ -118505,7 +120321,7 @@ }, /obj/structure/table/rack/shelf, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "wSa" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -118547,7 +120363,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "wSB" = ( /obj/item/rectape/random{ pixel_x = 4; @@ -118556,7 +120372,25 @@ /obj/structure/table/steel, /obj/item/clothing/accessory/badge/press/independent, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) +"wSC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "wSU" = ( /obj/item/modular_computer/console/preset/engineering{ dir = 4 @@ -118572,18 +120406,16 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Reception) -"wTh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/area/engineering/Reception) +"wTq" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 8 +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "wTx" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -118594,21 +120426,21 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "wTK" = ( /obj/structure/bed/chair/office/light, /obj/effect/landmark/start{ name = "Chief Medical Officer" }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "wTL" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "wTX" = ( /obj/machinery/vending/medical, /obj/machinery/light{ @@ -118618,10 +120450,10 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "wUp" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "wUs" = ( /obj/structure/cable{ d1 = 1; @@ -118635,14 +120467,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "wUw" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "wUC" = ( /obj/machinery/power/apc{ dir = 4; @@ -118650,8 +120482,12 @@ pixel_x = 24 }, /obj/structure/cable/green, +/obj/structure/cable/white{ + d2 = 2; + icon_state = "0-2" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_PortChamber2) +/area/maintenance/Deck2_Civilian_PortChamber2) "wUN" = ( /obj/machinery/button/remote/driver{ id = "enginecore"; @@ -118676,7 +120512,7 @@ }, /obj/structure/table/borosilicate, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "wUU" = ( /obj/machinery/alarm{ dir = 8; @@ -118689,14 +120525,14 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarCorridor1) +/area/maintenance/Deck2_Engineering_ForStarCorridor1) "wVa" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "wVk" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "wVu" = ( /obj/structure/table/rack, /obj/item/gun/energy/hunter{ @@ -118728,7 +120564,7 @@ pixel_x = 17 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "wVw" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -118744,14 +120580,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "wVz" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "wVM" = ( /obj/machinery/alarm{ dir = 1; @@ -118773,11 +120609,11 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "wVP" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "wVW" = ( /obj/machinery/power/apc{ dir = 4; @@ -118789,25 +120625,25 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber1) +/area/maintenance/Deck2_Engineering_PortChamber1) "wWl" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "wWx" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "wWC" = ( /obj/structure/sign/directions/dock{ layer = 3.5; dir = 10 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Rec_Lounge) +/area/crew_quarters/Rec_Lounge) "wWN" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -118819,7 +120655,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "wWW" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -118843,19 +120679,19 @@ name = "Northern Medical Post" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "wWX" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "wWZ" = ( /obj/structure/sign/examroom, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Deck2_Corridor) +/area/medical/Deck2_Corridor) "wXa" = ( /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "wXc" = ( /obj/machinery/vending/blood, /obj/item/radio/intercom{ @@ -118866,23 +120702,23 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "wXh" = ( /obj/item/stool/padded{ dir = 8 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) "wXt" = ( /obj/random/trash, /obj/structure/table/steel, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "wXx" = ( /obj/structure/sign/nosmoking_2, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "wXR" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ frequency = 1380; @@ -118897,44 +120733,34 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_Evac_Corridor) +/area/engineering/Deck2_Evac_Corridor) "wXT" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) -"wYq" = ( -/obj/machinery/atmospherics/valve/digital/open, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/area/maintenance/Deck2_Science_ForCorridor1) +"wYI" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 4; + name = "Kitchen Shutters"; + id = "sc-GCkitchen"; + layer = 3.3 }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/Chomp_Kitchen) "wYS" = ( /obj/structure/loot_pile/maint/technical, /obj/random/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) -"wYZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/maintenance/Deck2_Engineering_PortChamber2) "wZj" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_PortCorridor1) +/area/maintenance/Deck2_Security_PortCorridor1) "wZn" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "wZq" = ( /obj/structure/cable/green{ d1 = 4; @@ -118949,7 +120775,16 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) +"wZv" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "wZI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -118957,15 +120792,31 @@ dir = 1 }, /obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) +"xak" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/security/telescreen/entertainment{ + name = "1N-entertainment monitor"; + pixel_y = 28 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/item/mail/blank, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/Chomp_Dinner_2) "xao" = ( /obj/structure/closet/coffin, /obj/structure/window/basic{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "xaD" = ( /obj/structure/table/marble, /obj/item/hand_labeler{ @@ -118992,7 +120843,7 @@ dir = 4 }, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "xaT" = ( /obj/structure/table/reinforced, /obj/item/storage/fancy/vials{ @@ -119009,7 +120860,7 @@ }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "xaY" = ( /obj/machinery/door/window/brigdoor/westleft{ name = "Forensics Area"; @@ -119023,7 +120874,7 @@ dir = 4 }, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "xbo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -119042,7 +120893,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_1_Corridor) +/area/engineering/Deck2_1_Corridor) "xbv" = ( /obj/item/radio/intercom{ dir = 4; @@ -119050,7 +120901,7 @@ pixel_x = 22 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "xbV" = ( /obj/structure/table/rack{ dir = 8; @@ -119121,7 +120972,7 @@ pixel_y = -5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "xbZ" = ( /obj/structure/extinguisher_cabinet{ dir = 4; @@ -119140,20 +120991,20 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "xcl" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/red/border{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "xcC" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "xcE" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -119179,7 +121030,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "xcQ" = ( /obj/machinery/power/apc{ dir = 1; @@ -119197,7 +121048,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) +/area/hallway/AftStar_2_Deck_Observatory) "xcT" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -119209,17 +121060,17 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "xde" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "xdp" = ( /obj/item/starcaster_news, /obj/structure/table/hardwoodtable, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "xdu" = ( /obj/structure/cable/green{ d1 = 1; @@ -119229,7 +121080,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "xdw" = ( /obj/structure/curtain/medical{ icon_state = "open"; @@ -119238,13 +121089,13 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "xdy" = ( /obj/machinery/doorbell_chime{ id_tag = "sc-ChimeSci" }, /turf/simulated/wall, -/area/SouthernCrossV2/Science/Mech_Bay) +/area/rnd/Mech_Bay) "xdP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -119264,27 +121115,20 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) -"xdU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/area/hallway/Aft_2_Deck_Corridor_1) "xdX" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "xem" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftStarChamber1) +/area/maintenance/Deck2_Medical_AftStarChamber1) "xeq" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "xet" = ( /obj/effect/floor_decal/techfloor/orange, /obj/effect/floor_decal/techfloor/hole/right, @@ -119292,7 +121136,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "xeu" = ( /obj/machinery/power/apc{ dir = 4; @@ -119309,12 +121153,12 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "xez" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "xeF" = ( /obj/effect/floor_decal/industrial/loading/blue{ dir = 1 @@ -119334,7 +121178,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "xeH" = ( /obj/structure/undies_wardrobe, /obj/item/towel/random{ @@ -119350,7 +121194,7 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Security/Restroom) +/area/security/Restroom) "xeM" = ( /obj/machinery/camera/network/security{ dir = 4; @@ -119375,7 +121219,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "xeV" = ( /obj/effect/floor_decal/industrial/loading/blue, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, @@ -119393,13 +121237,14 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "xfb" = ( /obj/machinery/vending/cola/soft, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "xfc" = ( /obj/machinery/shield_diffuser, /obj/effect/catwalk_plated/white, @@ -119410,20 +121255,7 @@ id = "sc-GCwestshuttlebay" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) -"xff" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/harbor/Port_Shuttlebay) "xfj" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -119432,7 +121264,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "xft" = ( /obj/machinery/power/apc{ dir = 4; @@ -119459,14 +121291,31 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) +"xfv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Star_2_Deck_Central_Corridor_1) "xfH" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "xfL" = ( /obj/effect/catwalk_plated/white, /obj/structure/cable/green{ @@ -119476,6 +121325,18 @@ }, /turf/simulated/floor/airless, /area/space) +"xfQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Aft_2_Deck_Central_Corridor_1) "xgc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -119487,7 +121348,7 @@ dir = 9 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "xgl" = ( /obj/structure/cable/green{ d1 = 2; @@ -119495,7 +121356,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "xgF" = ( /obj/structure/cable{ d2 = 4; @@ -119507,17 +121368,17 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "xgL" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "xgV" = ( /obj/effect/floor_decal/corner/purple/diagonal, /obj/effect/floor_decal/corner/purple/diagonal{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "xha" = ( /obj/structure/ladder/updown{ pixel_y = 3 @@ -119528,11 +121389,11 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "xhc" = ( /obj/structure/bed/psych, /turf/simulated/floor/tiled/eris/steel/techfloor, -/area/SouthernCrossV2/Maints/ab_Pdance) +/area/maintenance/ab_Pdance) "xhd" = ( /obj/structure/table/hardwoodtable, /obj/effect/floor_decal/spline/fancy/wood{ @@ -119540,7 +121401,7 @@ }, /obj/item/newspaper, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "xhf" = ( /obj/structure/toilet{ dir = 4 @@ -119549,7 +121410,7 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "xhh" = ( /obj/structure/table/glass, /obj/item/sleevemate{ @@ -119564,7 +121425,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "xhn" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor{ @@ -119574,23 +121435,20 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "xht" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 4 +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "xhu" = ( /obj/structure/table/rack, /obj/random/maintenance/security, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_For_Corridor) +/area/maintenance/Deck2_For_Corridor) "xhy" = ( /obj/structure/cable/green{ d1 = 1; @@ -119602,7 +121460,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "xhM" = ( /obj/structure/cable/white{ d1 = 4; @@ -119611,31 +121469,37 @@ }, /obj/effect/catwalk_plated/white, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/For_Shuttlebay) +/area/harbor/For_Shuttlebay) "xhT" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 + dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/area/hallway/For_2_Deck_Central_Corridor_1) "xiD" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortChamber1) +/area/maintenance/Deck2_Civilian_ForPortChamber1) +"xiN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/security{ + c_tag = "D2-Com-For Corridor1"; + network = list("Commons") + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/steel_ridged, +/area/hallway/For_2_Deck_Central_Corridor_2) "xiQ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber1) +/area/maintenance/Deck2_Engineering_PortChamber1) "xiT" = ( /obj/item/stool/padded{ dir = 8 @@ -119647,7 +121511,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "xiX" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -119668,7 +121532,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "xiZ" = ( /obj/structure/cable/green{ d1 = 4; @@ -119679,23 +121543,31 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "xjv" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/food/snacks/pie, +/obj/machinery/computer/security/telescreen/entertainment{ + name = "1E-entertainment monitor"; + pixel_x = 32; + pixel_y = -4 + }, /obj/machinery/light{ dir = 4; - name = "1E-light fixture" + layer = 3 + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + name = "Kitchen Shutters"; + id = "sc-GCkitchen"; + layer = 3.3 }, /obj/structure/disposalpipe/segment, -/obj/item/radio/intercom{ - dir = 4; - name = "1E-Station Intercom (General)"; - pixel_x = 22 - }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/Chomp_Dinner_1) "xjG" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "xjT" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -119710,7 +121582,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "xjY" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -119718,7 +121590,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Emergency_EVA) +/area/crew_quarters/Emergency_EVA) "xka" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -119727,7 +121599,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "xkS" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -119750,21 +121622,21 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "xkV" = ( /obj/structure/sign/warning/vent_port, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "xkX" = ( -/obj/machinery/vending/sovietvend, /obj/effect/floor_decal/borderfloor{ dir = 1 }, /obj/effect/floor_decal/corner/brown/border{ dir = 1 }, +/obj/machinery/vending/nukie, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "xlj" = ( /obj/machinery/light{ dir = 8; @@ -119782,11 +121654,11 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "xlF" = ( /obj/structure/table/rack/shelf/steel, /obj/item/suit_cooling_unit{ @@ -119829,7 +121701,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_2_Deck_Airlock_Access) +/area/harbor/Aft_2_Deck_Airlock_Access) "xlO" = ( /obj/structure/table/reinforced, /obj/item/storage/box/donkpockets{ @@ -119855,7 +121727,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "xlU" = ( /obj/structure/cable/green{ d1 = 1; @@ -119872,17 +121744,17 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "xlW" = ( /obj/effect/floor_decal/stairs/wood_stairs, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "xmb" = ( /obj/machinery/portable_atmospherics/canister/oxygen/prechilled, /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "xme" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -119891,14 +121763,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) -"xmf" = ( -/obj/effect/floor_decal/industrial/arrows/blue, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/rnd/Research_Lab) "xmy" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/effect/floor_decal/borderfloorwhite{ @@ -119908,14 +121773,14 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Port_Medical_Post) +/area/medical/Port_Medical_Post) "xmE" = ( /obj/structure/table/standard, /obj/random/maintenance/medical, /obj/random/maintenance/medical, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "xmJ" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -119924,7 +121789,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "xnd" = ( /obj/machinery/disposal/wall/cleaner{ name = "1N-Resleeving lost & found bin"; @@ -119945,7 +121810,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Aft_Restroom) +/area/crew_quarters/Aft_Restroom) "xni" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -119955,17 +121820,9 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_For_Corridor) "xnp" = ( /obj/structure/cable/green{ d1 = 4; @@ -119985,11 +121842,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "xns" = ( /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "xnA" = ( /obj/structure/cable/green{ d1 = 1; @@ -120010,7 +121867,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Stairwell) +/area/hallway/Aft_2_Deck_Stairwell) "xnS" = ( /obj/machinery/door/window/northleft, /obj/structure/window/reinforced/tinted/frosted{ @@ -120018,7 +121875,7 @@ }, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "xnW" = ( /obj/structure/cable{ d2 = 8; @@ -120030,7 +121887,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "xof" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 28; @@ -120043,7 +121900,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "xop" = ( /obj/structure/cable/green{ d1 = 1; @@ -120056,38 +121913,28 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "xoK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) -"xoN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/structure/sign/poster/nanotrasen{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/quartermaster/Warehouse) "xoR" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "xoY" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "xpb" = ( /obj/structure/table/standard, /obj/item/uv_light{ @@ -120109,7 +121956,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "xpp" = ( /obj/machinery/power/apc{ dir = 4; @@ -120118,11 +121965,11 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "xpv" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "xpA" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor{ @@ -120132,7 +121979,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "xpB" = ( /obj/structure/cable/green{ d1 = 1; @@ -120140,7 +121987,7 @@ icon_state = "1-2" }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "xpD" = ( /obj/structure/railing/grey{ color = "yellow" @@ -120152,14 +121999,14 @@ name = "Lockdown Gate" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "xpR" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "xpY" = ( /obj/effect/floor_decal/industrial/loading{ dir = 4 @@ -120183,7 +122030,7 @@ opacity = 1 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "xqp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -120196,7 +122043,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "xqs" = ( /obj/structure/cable/green{ d1 = 1; @@ -120210,15 +122057,16 @@ /obj/effect/floor_decal/borderfloor{ dir = 1 }, +/obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled/old_tile/yellow, -/area/SouthernCrossV2/Domicile/Library_Cafe) +/area/crew_quarters/Library_Cafe) "xqE" = ( /obj/machinery/ai_status_display{ name = "1E-AI display"; pixel_x = 32 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "xqL" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 5 @@ -120233,17 +122081,17 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "xqU" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/carpet/brown/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "xqV" = ( /obj/machinery/vending/wardrobe/chapdrobe, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chapel_Morgue) +/area/crew_quarters/Chapel_Morgue) "xrb" = ( /obj/structure/cable/green{ d1 = 4; @@ -120257,7 +122105,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/CE_Office) +/area/engineering/CE_Office) "xrd" = ( /obj/structure/sign/directions/evac{ dir = 1; @@ -120265,13 +122113,13 @@ layer = 3.5 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Star_Restroom) +/area/crew_quarters/Star_Restroom) "xri" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "xrq" = ( /obj/structure/cable{ d1 = 1; @@ -120289,7 +122137,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "xry" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloorblack{ @@ -120299,7 +122147,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Armory) +/area/security/Armory) "xrB" = ( /obj/structure/cable/green{ d1 = 1; @@ -120313,7 +122161,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftStarCorridor1) +/area/maintenance/Deck2_Cargo_AftStarCorridor1) "xrV" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -120322,19 +122170,19 @@ /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, -/obj/effect/floor_decal/corner/green/border{ +/obj/effect/floor_decal/corner/orange/border{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "xsc" = ( /obj/structure/salvageable/server_os, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "xss" = ( /obj/random/tech_supply/component, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "xsB" = ( /obj/structure/cable/green{ d1 = 1; @@ -120348,14 +122196,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "xsE" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "xsH" = ( /obj/structure/cable/green{ d1 = 1; @@ -120372,13 +122220,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "xsS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "xsZ" = ( /obj/structure/closet/emcloset, /obj/machinery/camera/network/security{ @@ -120389,13 +122237,13 @@ /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Cargo/Reception) +/area/quartermaster/Reception) "xtd" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) "xtn" = ( /obj/structure/cable/green{ d1 = 1; @@ -120412,7 +122260,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "xtI" = ( /obj/structure/cable/green{ d1 = 4; @@ -120427,7 +122275,27 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarChamber1) +/area/maintenance/Deck2_Engineering_ForStarChamber1) +"xtK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "xtM" = ( /obj/structure/cable{ d1 = 1; @@ -120443,11 +122311,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "xua" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "xud" = ( /obj/effect/catwalk_plated/white, /obj/structure/cable/white{ @@ -120460,7 +122328,7 @@ }, /obj/machinery/shield_diffuser, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Harbor/Aft_Shuttlebay) +/area/harbor/Aft_Shuttlebay) "xun" = ( /obj/structure/cable/green{ d1 = 4; @@ -120483,29 +122351,22 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "xuB" = ( /obj/structure/table/standard, /obj/random/maintenance/research, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "xuF" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "xvc" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortCorridor2) -"xvd" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/maintenance/Deck2_Engineering_PortCorridor2) "xvh" = ( /obj/structure/cable{ d1 = 1; @@ -120519,14 +122380,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftPort_2_Deck_Observatory) +/area/hallway/AftPort_2_Deck_Observatory) "xvn" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "xvD" = ( /obj/structure/cable/green{ d1 = 4; @@ -120547,7 +122408,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "xvE" = ( /obj/effect/floor_decal/industrial/danger{ dir = 4 @@ -120563,10 +122424,10 @@ icon_state = "1-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Shuttlebay_Storage) +/area/security/Shuttlebay_Storage) "xvF" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Domicile_Substation) +/area/maintenance/Domicile_Substation) "xvJ" = ( /obj/structure/cable/green{ d1 = 4; @@ -120591,11 +122452,25 @@ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "xvY" = ( /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) +"xwd" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "xwh" = ( /obj/structure/cable/green{ d1 = 2; @@ -120604,13 +122479,13 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "xwp" = ( /obj/machinery/doorbell_chime{ id_tag = "sc-ChimeSec" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Security/Firing_Range) +/area/security/Firing_Range) "xwB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -120621,7 +122496,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Deck2_Evac_Corridor) +/area/medical/Deck2_Evac_Corridor) "xwT" = ( /obj/structure/cable/white{ d1 = 1; @@ -120629,11 +122504,11 @@ icon_state = "1-4" }, /turf/simulated/wall, -/area/SouthernCrossV2/Security/Wardens_Office) +/area/security/Wardens_Office) "xxw" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "xxE" = ( /obj/structure/cable/green{ d1 = 2; @@ -120664,26 +122539,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "xyb" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) -"xyj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/maintenance/Cargo_Substation) "xyn" = ( /obj/machinery/alarm{ dir = 1; @@ -120692,31 +122553,21 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "xyF" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) -"xyG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "xyP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "xzg" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortChamber1) +/area/maintenance/Deck2_Medical_AftPortChamber1) "xzk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -120729,7 +122580,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForPort_Corridor) +/area/maintenance/Deck2_ForPort_Corridor) "xzm" = ( /obj/machinery/power/apc{ dir = 8; @@ -120750,7 +122601,27 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) +"xzx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/sign/poster/nanotrasen, +/turf/simulated/floor/tiled, +/area/hallway/Port_2_Deck_Central_Corridor_2) "xzB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -120763,7 +122634,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "xzL" = ( /obj/structure/cable/green{ d1 = 1; @@ -120780,13 +122651,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "xzT" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "xzX" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -120801,7 +122672,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "xAg" = ( /obj/structure/cable/green{ d1 = 4; @@ -120809,24 +122680,24 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "xAj" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/atmospherics/pipe/tank/air/full, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "xAm" = ( /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "xAz" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Viewing_Port) +/area/rnd/Toxins_Viewing_Port) "xAI" = ( /obj/structure/cable/green{ d1 = 2; @@ -120844,7 +122715,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "xAQ" = ( /obj/machinery/recycling/sorter{ color = "#BDBCA9" @@ -120855,7 +122726,7 @@ network = list("Cargo") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "xAZ" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 1 @@ -120864,7 +122735,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "xBk" = ( /obj/machinery/light{ dir = 1; @@ -120896,7 +122767,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "xBt" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/power/apc{ @@ -120908,8 +122779,14 @@ d2 = 8; icon_state = "0-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "xBw" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -120918,7 +122795,19 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) +"xBF" = ( +/obj/machinery/pointdefense{ + id_tag = "PD Primary" + }, +/obj/machinery/shield_diffuser, +/obj/structure/cable/white{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/catwalk_plated/white, +/turf/simulated/floor/plating/turfpack/airless, +/area/space) "xBI" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -120928,27 +122817,44 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/HoS_Office) +/area/security/HoS_Office) "xBP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gallery) +/area/crew_quarters/Gallery) +"xBV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) "xBZ" = ( /obj/random/trash, /obj/structure/loot_pile/maint/junk, /obj/random/junk, /obj/random/trash, +/obj/structure/cable/white{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "xCb" = ( /obj/structure/sign/department/medbay{ layer = 3.5; desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/FirstAid_Storage) +/area/medical/FirstAid_Storage) "xCd" = ( /obj/machinery/alarm{ dir = 4; @@ -120958,20 +122864,20 @@ dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Library_Office) +/area/crew_quarters/Library_Office) "xCr" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "xCD" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "xCE" = ( /obj/structure/cable{ d1 = 4; @@ -120988,7 +122894,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "xCF" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -120998,17 +122904,22 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "xCP" = ( /obj/machinery/doorbell_chime{ id_tag = "sc-ChimeSec" }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) +"xDd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "xDe" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "xDi" = ( /obj/machinery/light{ dir = 1 @@ -121039,7 +122950,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "xDr" = ( /obj/machinery/door/window/southright{ dir = 1; @@ -121052,7 +122963,7 @@ name = "Bar Shutters" }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "xDJ" = ( /obj/structure/table/marble, /obj/machinery/microwave{ @@ -121066,7 +122977,7 @@ pixel_x = -6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "xDM" = ( /obj/structure/closet/l3closet/medical, /obj/machinery/status_display{ @@ -121076,24 +122987,24 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Locker_Room) +/area/medical/Locker_Room) "xDR" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "xDW" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "xEj" = ( /obj/structure/table/bench/sifwooden/padded, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "xEp" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "xEv" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -121116,7 +123027,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "xEA" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -121138,14 +123049,14 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Cargo/Packaging_Room) +/area/quartermaster/Packaging_Room) "xEJ" = ( /obj/structure/sign/warning/airlock, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "xEK" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Science/Research_Lab) +/area/rnd/Research_Lab) "xEP" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ @@ -121155,7 +123066,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "xES" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -121169,7 +123080,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "xFz" = ( /obj/machinery/light{ dir = 8; @@ -121190,19 +123101,49 @@ network = list("Security,Prison") }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "xGd" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chapel_Office) +/area/crew_quarters/Chapel_Office) "xGn" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/item/radio/intercom{ - dir = 1; - name = "1N-Station Intercom (General)"; +/obj/structure/table/marble, +/obj/machinery/alarm{ pixel_y = 22 }, -/turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Chomp_Hydroponics) +/obj/item/packageWrap{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/packageWrap, +/obj/item/clothing/head/hairnet{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/clothing/head/hairnet{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/toy/figure/chef{ + pixel_y = 7; + pixel_x = -6 + }, +/obj/item/clothing/head/hairnet{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/item/clothing/head/hairnet{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "xGq" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/simple/visible, @@ -121218,11 +123159,11 @@ locked = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "xGO" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_ForCorridor1) +/area/maintenance/Deck2_Science_ForCorridor1) "xGT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -121234,7 +123175,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "xGZ" = ( /obj/structure/table/glass, /obj/item/reagent_containers/food/drinks/britcup, @@ -121243,7 +123184,7 @@ pixel_x = 14 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "xHg" = ( /obj/machinery/light{ dir = 4; @@ -121263,7 +123204,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "xHj" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, @@ -121271,7 +123212,7 @@ icon = 'icons/turf/shuttle_alien_blue.dmi' }, /turf/space, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "xHq" = ( /turf/simulated/shuttle/floor, /area/shuttle/large_escape_pod3/station) @@ -121281,7 +123222,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Mech_Bay) +/area/engineering/Mech_Bay) "xHA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -121297,7 +123238,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "xHB" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -121305,10 +123246,10 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor1) +/area/maintenance/Deck2_Security_ForCorridor1) "xIa" = ( /obj/machinery/camera/network/security{ - c_tag = "D2-Com-For Corridor5"; + c_tag = "D2-Com-For Corridor4"; network = list("Commons") }, /obj/effect/floor_decal/borderfloor{ @@ -121318,13 +123259,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Corridor_1) +/area/hallway/For_2_Deck_Corridor_1) "xIe" = ( /obj/effect/floor_decal/spline/fancy{ dir = 5 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Cargo/Breakroom) +/area/quartermaster/Breakroom) "xIf" = ( /obj/structure/table/steel_reinforced, /obj/item/modular_computer/laptop/preset/custom_loadout/advanced{ @@ -121332,7 +123273,7 @@ pixel_x = 10 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Drone_Fab) +/area/engineering/Drone_Fab) "xIl" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -121350,7 +123291,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "xIm" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -121366,7 +123307,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "xIp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -121387,7 +123328,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Research_Substation) +/area/maintenance/Research_Substation) "xIB" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -121396,7 +123337,7 @@ dir = 4 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Science/Toxins_Mixing_Room) +/area/rnd/Toxins_Mixing_Room) "xIT" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -121404,24 +123345,37 @@ dir = 1 }, /obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/white{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "xIW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Cargo_Substation) +/area/maintenance/Cargo_Substation) "xJa" = ( /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) +"xJd" = ( +/obj/structure/sign/securearea{ + icon_state = "radiation_small"; + name = "\improper RAD SAFE"; + desc = "A warning sign which reads 'RADIATION SHIELDING IN THIS AREA'." + }, +/turf/simulated/wall, +/area/crew_quarters/Chomp_Kitchen) "xJi" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/black/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chapel_Lobby) +/area/crew_quarters/Chapel_Lobby) "xJy" = ( /obj/structure/bed/chair{ dir = 8 @@ -121429,7 +123383,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "xJD" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -121439,17 +123393,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Brig) -"xJH" = ( -/obj/machinery/camera/network/security{ - dir = 1; - c_tag = "D2-Com-Central Hall4"; - network = list("Commons") - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/security/Brig) "xJI" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, @@ -121459,7 +123403,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "xJK" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -121468,7 +123412,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_2_Corridor) +/area/security/Deck2_2_Corridor) "xKa" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -121477,11 +123421,20 @@ }, /obj/machinery/bluespace_beacon, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "xKl" = ( -/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/corner/lightorange/diagonal{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_2) +/area/engineering/Engineering_Workshop) +"xKn" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Dinner_2) "xKy" = ( /obj/structure/cable{ d1 = 1; @@ -121506,7 +123459,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "xKJ" = ( /obj/structure/cable/green{ d1 = 4; @@ -121520,14 +123473,24 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "xKO" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) +"xKX" = ( +/obj/structure/lattice, +/obj/effect/catwalk_plated/techmaint, +/obj/structure/cable/white{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/open, +/area/maintenance/Deck2_Civilian_PortChamber2) "xLt" = ( /obj/structure/sign/warning/moving_parts, /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Waste_Disposals) +/area/quartermaster/Waste_Disposals) "xLY" = ( /obj/structure/cable/green{ d1 = 2; @@ -121544,14 +123507,21 @@ }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Surgery_Viewing) +/area/medical/Surgery_Viewing) "xLZ" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) +"xMg" = ( +/obj/structure/railing/grey{ + color = "yellow"; + dir = 1 + }, +/turf/simulated/open, +/area/maintenance/Deck2_Aft_Corridor) "xMr" = ( /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "xMx" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -121560,12 +123530,12 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "xMH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Cargo/QM_Office) +/area/quartermaster/QM_Office) "xMI" = ( /obj/structure/cable/green{ d1 = 4; @@ -121588,7 +123558,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Deck2_Stairwell) +/area/quartermaster/Deck2_Stairwell) "xMV" = ( /obj/machinery/light{ dir = 8; @@ -121602,17 +123572,24 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/brown/border{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) +"xND" = ( +/obj/machinery/atmospherics/pipe/tank/air/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/blue, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "xNG" = ( /obj/structure/table/standard, /obj/random/maintenance/cargo, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "xNV" = ( /obj/structure/bed/chair/sofa/left/brown{ dir = 1; @@ -121625,7 +123602,26 @@ /obj/structure/window/titanium, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) +"xOn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, +/turf/simulated/floor/tiled, +/area/quartermaster/Warehouse) "xOo" = ( /obj/structure/cable/green{ d1 = 4; @@ -121640,7 +123636,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "xOw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -121653,7 +123649,7 @@ }, /obj/structure/cable, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "xOD" = ( /obj/structure/table/steel, /obj/item/clamp{ @@ -121699,19 +123695,17 @@ pixel_y = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "xOT" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "xPc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/item/stool/baystool/padded{ + dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "xPy" = ( /obj/structure/bed/chair/sofa/left/blue{ dir = 8 @@ -121720,7 +123714,7 @@ dir = 4 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "xPz" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -121729,7 +123723,34 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForStar_2_Deck_Observatory) +/area/hallway/ForStar_2_Deck_Observatory) +"xPD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_2_Deck_Hall) +"xPM" = ( +/obj/item/reagent_containers/cooking_container/grill, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) "xPR" = ( /obj/structure/table/standard, /obj/item/storage/box/holowarrants{ @@ -121745,7 +123766,7 @@ pixel_x = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Boardroom) +/area/security/Boardroom) "xPU" = ( /obj/structure/cable/green{ d1 = 1; @@ -121754,7 +123775,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "xPX" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -121770,7 +123791,7 @@ color = "#6b75ff" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "xPZ" = ( /obj/machinery/photocopier, /obj/machinery/alarm{ @@ -121784,7 +123805,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Reception) +/area/medical/Reception) "xQf" = ( /obj/structure/cable/green{ d1 = 4; @@ -121809,7 +123830,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Robotics_Lab) +/area/rnd/Robotics_Lab) "xQu" = ( /obj/structure/cable/green{ d1 = 1; @@ -121828,8 +123849,12 @@ d2 = 8; icon_state = "1-8" }, +/obj/effect/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "xQy" = ( /obj/structure/table/standard, /obj/item/autopsy_scanner{ @@ -121847,7 +123872,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "xQF" = ( /obj/structure/cable{ d1 = 2; @@ -121856,33 +123881,26 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "xQQ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Central_Engineering_Post) +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/Chomp_Kitchen) "xQW" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "xRa" = ( /obj/effect/floor_decal/corner_techfloor_gray{ dir = 10 }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "xRk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -121897,23 +123915,44 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftCorridor1) +/area/maintenance/Deck2_Civilian_AftCorridor1) +"xRH" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/arrows/yellow, +/obj/effect/floor_decal/industrial/arrows/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/int, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/Deck2_Aft_Corridor) "xRS" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftCorridor2) +/area/maintenance/Deck2_Cargo_AftCorridor2) "xRW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) "xRY" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/white, /obj/machinery/shield_diffuser, /turf/space, -/area/SouthernCrossV2/Harbor/Star_Shuttlebay) +/area/harbor/Star_Shuttlebay) "xSl" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -121932,14 +123971,14 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "xSr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "xSE" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor2) +/area/maintenance/Deck2_Medical_AftCorridor2) "xSI" = ( /obj/structure/table/hardwoodtable, /obj/item/paicard/typeb, @@ -121953,7 +123992,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/VR) +/area/crew_quarters/VR) "xSP" = ( /obj/structure/cable/green{ d1 = 1; @@ -121975,7 +124014,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck2_2_Corridor) +/area/engineering/Deck2_2_Corridor) "xSR" = ( /obj/structure/cable/green{ d1 = 4; @@ -122002,14 +124041,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Reception) +/area/security/Reception) "xSY" = ( /obj/machinery/power/emitter{ dir = 8 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Storage) +/area/engineering/Storage) "xTm" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -122027,7 +124066,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "xTn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -122048,11 +124087,11 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Breakroom) +/area/engineering/Breakroom) "xTR" = ( /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber2) +/area/maintenance/Deck2_Civilian_StarChamber2) "xTW" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -122077,7 +124116,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Dressing_Room) +/area/medical/Dressing_Room) "xTX" = ( /obj/item/storage/toolbox/mechanical{ pixel_y = -5; @@ -122099,7 +124138,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "xUc" = ( /obj/structure/closet/cabinet, /obj/item/clothing/suit/storage/hooded/teshari/standard/pink_grey, @@ -122108,20 +124147,14 @@ /obj/item/clothing/shoes/sandal, /obj/item/clothing/shoes/sandal, /turf/simulated/floor/wood, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "xUd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "xUg" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck2_Security_ForStar_Chamber) -"xUn" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/maintenance/Deck2_Security_ForStar_Chamber) "xUF" = ( /obj/structure/cable{ d1 = 1; @@ -122136,7 +124169,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "xUK" = ( /obj/structure/closet{ name = "Evidence Closet" @@ -122149,7 +124182,7 @@ }, /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "xUX" = ( /obj/structure/cable/green{ d1 = 1; @@ -122165,10 +124198,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_1) +/area/hallway/Port_2_Deck_Corridor_1) "xVd" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Cargo/Recycling) +/area/quartermaster/Recycling) "xVq" = ( /obj/structure/cable/green{ d1 = 4; @@ -122177,13 +124210,13 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Vault_Reception) +/area/bridge/Vault_Reception) "xVE" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "xVJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -122199,11 +124232,11 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "xVO" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_PortChamber2) +/area/maintenance/Deck2_Engineering_PortChamber2) "xWb" = ( /obj/structure/cable{ d1 = 1; @@ -122217,16 +124250,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "xWh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Central_Corridor_1) +/area/hallway/Star_2_Deck_Central_Corridor_2) "xWD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -122240,7 +124273,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "xXg" = ( /obj/structure/curtain/medical{ icon_state = "open"; @@ -122254,10 +124287,10 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "xXo" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Gym_Sauna) +/area/crew_quarters/Gym_Sauna) "xXv" = ( /obj/structure/cable/green{ d1 = 1; @@ -122276,7 +124309,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "xXz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -122290,7 +124323,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Central_Corridor_1) +/area/hallway/Aft_2_Deck_Central_Corridor_1) "xXQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -122304,7 +124337,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Security_ForCorridor2) +/area/maintenance/Deck2_Security_ForCorridor2) "xXX" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -122314,7 +124347,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/ForPort_2_Deck_Observatory) +/area/hallway/ForPort_2_Deck_Observatory) "xXY" = ( /obj/machinery/alarm{ pixel_y = 25 @@ -122335,7 +124368,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarCorridor1) +/area/maintenance/Deck2_Civilian_StarCorridor1) "xYa" = ( /obj/structure/bed/chair/wood/wings{ color = "#004b9a" @@ -122352,7 +124385,14 @@ network = list("Domicile") }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) +"xYh" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/Port_2_Deck_Central_Corridor_1) "xYl" = ( /obj/structure/cable/green{ d1 = 1; @@ -122366,13 +124406,24 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "xYn" = ( -/obj/structure/disposalpipe/segment{ +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/hatch, +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium, +/obj/structure/window/titanium{ dir = 4 }, -/turf/simulated/wall, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_1) +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/Deck2_For_Corridor) "xYp" = ( /obj/structure/cable/green{ d1 = 1; @@ -122383,8 +124434,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals_central2{ + dir = 1 + }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "xYs" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -122405,23 +124459,23 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Surgery_Room_2) +/area/medical/Surgery_Room_2) "xYt" = ( /obj/random/trash_pile, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarChamber1) +/area/maintenance/Deck2_Science_StarChamber1) "xYy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Library) +/area/crew_quarters/Library) "xYD" = ( /obj/structure/table/rack, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_AftStarCorridor2) +/area/maintenance/Deck2_Security_AftStarCorridor2) "xYE" = ( /obj/structure/cable/green{ d1 = 1; @@ -122438,7 +124492,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/For_Medical_Post) +/area/medical/For_Medical_Post) "xYN" = ( /obj/structure/table/rack/holorack, /obj/item/circuitboard/fusion_core{ @@ -122488,7 +124542,7 @@ pixel_y = -9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) +/area/engineering/Technical_Storage) "xYQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -122496,7 +124550,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "xYU" = ( /obj/structure/cable/green{ d1 = 2; @@ -122522,15 +124576,15 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Stairwell) +/area/hallway/Port_2_Deck_Stairwell) "xZa" = ( /obj/random/trash, /turf/simulated/floor/lino, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "xZe" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortCorridor1) +/area/maintenance/Deck2_Medical_AftPortCorridor1) "xZu" = ( /obj/machinery/door/blast/angled/open{ dir = 4; @@ -122545,14 +124599,14 @@ name = "Lockdown Gate" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) +/area/maintenance/Deck2_Medical_AftCorridor1) "xZy" = ( /obj/machinery/ai_status_display{ name = "1N-AI display"; pixel_y = 32 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "xZG" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -122571,7 +124625,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Stairwell) +/area/hallway/Star_2_Deck_Stairwell) "xZK" = ( /obj/structure/bed/chair/backed_red, /obj/machinery/alarm{ @@ -122582,7 +124636,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "xZV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -122592,7 +124646,7 @@ /obj/structure/simple_door/wood, /obj/item/tape/engineering, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "yaa" = ( /obj/machinery/alarm{ dir = 1; @@ -122600,7 +124654,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForPortCorridor1) +/area/maintenance/Deck2_Civilian_ForPortCorridor1) "yau" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -122612,15 +124666,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/AftStar_2_Deck_Observatory) -"yaD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Distro_Civilian) +/area/hallway/AftStar_2_Deck_Observatory) "yaI" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -122636,7 +124682,7 @@ name = "Holodeck Control" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "yaN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorwhite{ @@ -122646,11 +124692,11 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/EMT_Bay) +/area/medical/EMT_Bay) "ybj" = ( /obj/machinery/light, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Maints/ab_TeshDen) +/area/maintenance/ab_TeshDen) "ybp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -122658,7 +124704,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_AftPortCorridor1) +/area/maintenance/Deck2_Civilian_AftPortCorridor1) "ybs" = ( /obj/structure/cable/green{ d1 = 1; @@ -122669,7 +124715,7 @@ name = "Medical automatic shutoff valve" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) "ybA" = ( /obj/structure/closet/emcloset, /obj/item/storage/box/survival/synth{ @@ -122692,7 +124738,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Shuttlebay_Corridor) +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor) "ybD" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -122712,11 +124758,11 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_ForStar_Corridor) +/area/maintenance/Deck2_ForStar_Corridor) "ybP" = ( /obj/random/obstruction, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Security_ForPortChamber1) +/area/maintenance/Deck2_Security_ForPortChamber1) "ybS" = ( /obj/structure/cable/green{ d1 = 1; @@ -122736,7 +124782,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Lobby) +/area/security/Lobby) "ycd" = ( /obj/structure/cable/green{ d1 = 4; @@ -122751,7 +124797,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Engineering_Substation) +/area/maintenance/Engineering_Substation) "yck" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -122776,7 +124822,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "ycm" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ frequency = 1381; @@ -122786,16 +124832,16 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_2_Deck_Airlock_Access) +/area/harbor/Star_2_Deck_Airlock_Access) "ycK" = ( /obj/random/trash_pile, /obj/random/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_StarChamber1) +/area/maintenance/Deck2_Civilian_StarChamber1) "ydd" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Gym) +/area/crew_quarters/Gym) "ydh" = ( /obj/structure/cable/green{ d1 = 2; @@ -122813,9 +124859,9 @@ icon_state = "pipe-c" }, /obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_2) +/area/hallway/Star_2_Deck_Corridor_2) "ydl" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -122823,7 +124869,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Treatment_Hall) +/area/medical/Treatment_Hall) "ydm" = ( /obj/machinery/firealarm{ dir = 1; @@ -122848,7 +124894,7 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Port_Restroom) +/area/crew_quarters/Port_Restroom) "ydn" = ( /obj/structure/ladder/updown{ pixel_y = 3 @@ -122871,7 +124917,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftCorridor1) +/area/maintenance/Deck2_Medical_AftCorridor1) "ydB" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -122880,7 +124926,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Transit_Foyer) +/area/hallway/Star_Transit_Foyer) "ydH" = ( /obj/machinery/power/port_gen/pacman, /obj/structure/cable/green{ @@ -122889,13 +124935,23 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Medical_Substation) +/area/maintenance/Medical_Substation) +"ydR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/maintenance/Distro_Civilian) "ydX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Cargo/Warehouse) +/area/quartermaster/Warehouse) "yec" = ( /obj/structure/cable/green{ d1 = 1; @@ -122904,29 +124960,29 @@ }, /obj/structure/girder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Cargo_AftPortCorridor1) +/area/maintenance/Deck2_Cargo_AftPortCorridor1) "yep" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engineering_EVA) +/area/engineering/Engineering_EVA) "yes" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "yeu" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Evidence_Storage) +/area/security/Evidence_Storage) "yeG" = ( /obj/random/maintenance/morestuff, /turf/simulated/floor/wood/alt/panel/broken/turfpack/station, -/area/SouthernCrossV2/Maints/ab_Theater) +/area/maintenance/ab_Theater) "yeI" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/alarm{ @@ -122934,7 +124990,7 @@ pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftStar_Corridor) +/area/maintenance/Deck2_AftStar_Corridor) "yeN" = ( /obj/structure/table/steel, /obj/machinery/cell_charger{ @@ -122957,19 +125013,42 @@ pixel_y = -1 }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Harbor/Port_Shuttlebay) +/area/harbor/Port_Shuttlebay) "yeO" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Technical_Storage) -"yfj" = ( -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 2 +/area/engineering/Technical_Storage) +"yfi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightorange/diagonal, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/Chomp_Kitchen) +"yfj" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -122980,17 +125059,13 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ +/obj/effect/floor_decal/spline/plain/corner{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "yfo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -123004,7 +125079,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_AftPort_Corridor) +/area/maintenance/Deck2_AftPort_Corridor) "yfr" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -123013,7 +125088,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "yfv" = ( /obj/structure/cable/green{ d1 = 4; @@ -123021,7 +125096,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Medical_AftPortChamber1) +/area/maintenance/Deck2_Medical_AftPortChamber1) "yfB" = ( /obj/structure/cable/green{ d1 = 1; @@ -123042,7 +125117,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Deck2_1_Corridor) +/area/security/Deck2_1_Corridor) "yfQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -123054,14 +125129,10 @@ c_tag = "D2-Com-Central Hall2"; network = list("Commons") }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_2_Deck_Hall) +/area/hallway/Central_2_Deck_Hall) "yfZ" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -123070,7 +125141,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Visitation_Room) +/area/security/Visitation_Room) "ygf" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -123079,7 +125150,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "ygg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -123097,7 +125168,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Holodeck) +/area/crew_quarters/Holodeck) "ygq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -123116,9 +125187,9 @@ network = list("Commons") }, /obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_2_Deck_Corridor_2) +/area/hallway/Port_2_Deck_Corridor_2) "ygs" = ( /obj/item/module/power_control{ pixel_y = -6; @@ -123186,7 +125257,7 @@ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Cargo/Aft_Tool_Storage) +/area/quartermaster/Aft_Tool_Storage) "ygw" = ( /obj/item/radio/intercom{ dir = 1; @@ -123194,7 +125265,7 @@ pixel_y = 22 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "ygz" = ( /obj/structure/bed/double, /obj/item/bedsheet/greendouble, @@ -123203,7 +125274,7 @@ name = "1S-entertainment monitor" }, /turf/simulated/floor/carpet/brown/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "ygD" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -123236,29 +125307,29 @@ pixel_x = -6 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "ygJ" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "ygQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/kafel_full/red/turfpack/station, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "yhk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Science/Testing_Lab) +/area/rnd/Testing_Lab) "yhv" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Brig) +/area/security/Brig) "yhB" = ( /obj/machinery/bookbinder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Civilian_ForStarCorridor2) +/area/maintenance/Deck2_Civilian_ForStarCorridor2) "yic" = ( /obj/structure/table/sifwoodentable, /obj/item/material/kitchen/utensil/spork{ @@ -123292,7 +125363,7 @@ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "yij" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -123300,7 +125371,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Security/Locker_Room) +/area/security/Locker_Room) "yil" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -123309,10 +125380,10 @@ }, /obj/machinery/bluespace_beacon, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "yiq" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "yiv" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -123334,7 +125405,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck2_Science_StarCorridor1) +/area/maintenance/Deck2_Science_StarCorridor1) "yiw" = ( /obj/item/modular_computer/console/preset/medical, /obj/machinery/light{ @@ -123349,7 +125420,7 @@ pixel_y = 24 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Medical/CMO_Office) +/area/medical/CMO_Office) "yiA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -123361,7 +125432,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Corridor_1) +/area/hallway/Aft_2_Deck_Corridor_1) "yiF" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 1 @@ -123370,7 +125441,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Patient_Ward) +/area/medical/Patient_Ward) "yjc" = ( /obj/structure/table/marble, /obj/structure/sink/countertop{ @@ -123393,7 +125464,7 @@ pixel_x = 3 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "yjo" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -123411,11 +125482,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Midnight_Kitchen) +/area/crew_quarters/Midnight_Kitchen) "yjF" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "yjH" = ( /obj/structure/cable/green{ d1 = 4; @@ -123428,13 +125499,13 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_2_Deck_Corridor_1) +/area/hallway/Star_2_Deck_Corridor_1) "yjN" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Security/Prison_Wing) +/area/security/Prison_Wing) "ykz" = ( /obj/structure/cable/green{ d1 = 4; @@ -123451,7 +125522,7 @@ dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Security/Forensics_Office) +/area/security/Forensics_Office) "ykU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -123463,7 +125534,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Security/Processing_Room) +/area/security/Processing_Room) "ykZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -123473,18 +125544,17 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Transit_Foyer) +/area/hallway/Port_Transit_Foyer) "ylj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_2_Deck_Central_Corridor_2) +/area/hallway/For_2_Deck_Central_Corridor_2) "ylD" = ( /obj/structure/cable/green{ d1 = 1; @@ -123495,7 +125565,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_2_Deck_Lobby) +/area/hallway/Aft_2_Deck_Lobby) "ylQ" = ( /obj/structure/table/sifwoodentable, /obj/item/material/kitchen/utensil/spork{ @@ -123524,13 +125594,13 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Midnight_Bar) +/area/crew_quarters/Midnight_Bar) "yme" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck2_Engineering_ForStarCorridor1) +/area/maintenance/Deck2_Engineering_ForStarCorridor1) "ymh" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/alarm{ @@ -123538,7 +125608,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Security_Substation) +/area/maintenance/Security_Substation) (1,1,1) = {" aaa @@ -133474,7 +135544,7 @@ nFH nFH aQB aQB -otn +pvv qGK qGK ljC @@ -133958,7 +136028,7 @@ qFK qFK qFK qFK -dbg +hGd uBs cDt avT @@ -134991,7 +137061,7 @@ bDn arC xjG tpv -aFh +iIB cDt fGb aGh @@ -136056,7 +138126,7 @@ weZ xyb biZ pzX -ctG +lDV ctG uTV qeb @@ -136102,9 +138172,9 @@ aaa aaa aaa aaa -aaa -aaa -aaa +aaf +aKY +aaf aaa cCw mAT @@ -136114,9 +138184,9 @@ cCw aaa aaa aaa -ctj -ctj -ctj +dqa +bCe +dqa aaa aaa aaa @@ -136134,9 +138204,9 @@ aaa aaa aaa aaa -ctj -ctj -ctj +dqa +bCe +dqa aaa aaa aaa @@ -136360,12 +138430,12 @@ aaa aaa aaa aaa -aaa -aaa -aaa +aKY +bCe +aKY aaa cCw -oht +aYr oht oht cCw @@ -136373,7 +138443,7 @@ aaa aaa aaa ctj -ctj +sOr ctj aaa aaa @@ -136393,7 +138463,7 @@ aaa aaa aaa ctj -ctj +sOr ctj aaa aaa @@ -136532,7 +138602,7 @@ cvV aeR aim bSI -cqo +rzV bJm aKT aKT @@ -136618,9 +138688,9 @@ aaa aaa aaa aaa -aaa -aaa -aaa +aaf +sOr +aaf aaa cCw oht @@ -136631,7 +138701,7 @@ aaa aaa aaa ctj -ctj +key ctj aaa aaa @@ -136651,7 +138721,7 @@ aaa aaa aaa ctj -ctj +key ctj aaa aaa @@ -136877,7 +138947,7 @@ aaa aaa aaa cCw -cCw +uKl cCw cCw cCw @@ -136889,7 +138959,7 @@ aaa aaa ctj ctj -ctj +key ctj ctj aaa @@ -136909,7 +138979,7 @@ aaa aaa ctj ctj -ctj +key ctj ctj aaa @@ -137135,7 +139205,7 @@ aaa aaa aaa mAT -oht +vZd fsb oht pMa @@ -137147,7 +139217,7 @@ cCw cCw cCw mAT -mAT +rtD mAT cCw cCw @@ -137167,7 +139237,7 @@ cCw cCw cCw mAT -mAT +rtD mAT cCw cCw @@ -137393,7 +139463,7 @@ aaa aaa aaa mAT -oht +ocV oht oht oht @@ -137405,7 +139475,7 @@ nCr nCr nCr nCr -nCr +uFE nCr nCr nCr @@ -137425,7 +139495,7 @@ cCw nCr nCr nCr -nCr +uFE nCr nCr nCr @@ -137435,9 +139505,9 @@ oht hPY feR mAT -aaa -aaa -aaa +aaf +krL +aaf aaa aaa aaa @@ -137599,7 +139669,7 @@ kfd fCr pBQ qfd -wjP +dtP cXQ xRS fhN @@ -137651,51 +139721,51 @@ aaa aaa aaa mAT -oht -oht -oht -mFk -oht -oht -oht +jbZ +wLS +wLS +ejY +voF +wLS +wLS adO -nCr -nCr -nCr -nCr +smI +smI +smI +smI +lIT +smI +smI +smI +adO +smI +smI +smI +smI +smI acS -nCr -nCr -nCr +smI +smI +smI +smI +smI adO -nCr -nCr -nCr -nCr -nCr -acS -nCr -nCr -nCr -nCr -nCr -adO -nCr -nCr -iHu +smI +smI iHu +hhO acS -nCr -nCr -nCr -nCr -oht +smI +smI +smI +smI +wLS lhM -feR -mAT -aaa -aaa -aaa +jED +bxU +bmS +qBX +krL aaa aaa aaa @@ -137867,7 +139937,7 @@ pfR qxX hsE wAv -wjP +dtP wjP nbj hZe @@ -137913,7 +139983,7 @@ oht oht oht oht -oht +ocV oht oht cCw @@ -137951,9 +140021,9 @@ mAT cCw cCw cCw -aaa -aaa -aaa +aaf +krL +aaf aaa aaa aaa @@ -138171,7 +140241,7 @@ bUL bub ajH bUL -bub +xKX ajH abJ vPX @@ -138429,7 +140499,7 @@ rcx bub cbV rcx -bub +xKX cbV vPX vPX @@ -138687,7 +140757,7 @@ rcx hcr cbV rcx -bub +xKX cbV vPX vPX @@ -138945,7 +141015,7 @@ rcx bub cbV rcx -bub +xKX cbV vPX vPX @@ -139203,7 +141273,7 @@ rcx bub cbV rcx -bub +xKX cbV vPX vPX @@ -139461,7 +141531,7 @@ rcx bub cbV rcx -hcr +bQG cbV vPX vPX @@ -139629,8 +141699,8 @@ bEi cKs uwj kLA -rml aim +rml tVu tVu aim @@ -139719,7 +141789,7 @@ rcx bub cbV rcx -hcr +bQG cbV vPX vPX @@ -139977,7 +142047,7 @@ rcx bub cbV rcx -bub +xKX cbV vPX vPX @@ -140235,7 +142305,7 @@ rcx bub cbV rcx -bub +xKX cbV vPX vPX @@ -140404,8 +142474,8 @@ uZK uZK bUf abX -avx ngD +avx cDH lYO bCy @@ -140449,7 +142519,7 @@ nxp rez fHa xQu -bzb +nOk cHM kFY jYC @@ -140493,7 +142563,7 @@ fjT bub bfJ fjT -bub +xKX bfJ bEw vPX @@ -140707,7 +142777,7 @@ cmO bEt bzb eUA -bzb +nOk cHM kFY aAV @@ -140751,7 +142821,7 @@ oht oht oht oht -oht +ocV oht mFk cCw @@ -140924,9 +142994,9 @@ avx bog sDt oRI -cEO -cEO -cEO +xKl +xKl +xKl iYb fJX fIx @@ -140953,9 +143023,9 @@ aEI aJP bkV bmw -bsd -awj -bsd +vcR +nex +vcR btV jCR aUK @@ -140965,7 +143035,7 @@ cyV bEt bzb eUA -bzb +nOk cHM bzb bzb @@ -141009,7 +143079,7 @@ cCw fQF qJa wUC -oht +bkp oht oht cCw @@ -141184,7 +143254,7 @@ wui dVV eoK dVV -cEO +xKl cEO eYu kvM @@ -141213,7 +143283,7 @@ bkT bnW uWs gXI -bsd +vcR knz jCR hrl @@ -141223,7 +143293,7 @@ tZi qjY gxm uGW -bzb +nOk azY bzb bzb @@ -141469,7 +143539,7 @@ aEI cCe eqG bmw -bsd +vcR nub sTS btY @@ -141481,7 +143551,7 @@ xVd xVd mTs eUA -bzb +nOk cHM aPz ctm @@ -141727,9 +143797,9 @@ epn jUv bpo uLm -bsd +vcR aMN -bsd +vcR xsZ aSQ bxm @@ -141739,7 +143809,7 @@ rby xVd tnO eUA -bzb +nOk cHM bKM cjC @@ -141958,7 +144028,7 @@ nBk dVV grM qJL -cEO +xKl ciJ eWt auN @@ -141985,9 +144055,9 @@ aEJ aSQ aIH bsd -bsd +vcR awj -bsd +vcR bYc ozL ccb @@ -141996,7 +144066,7 @@ mGr bdN xVd dcC -wkZ +xOn xoK iuO lpw @@ -142185,7 +144255,7 @@ aaa aaa aaa bry -avq +dbg xXX kcw nCV @@ -142216,7 +144286,7 @@ nBk dVV avw qJL -cEO +xKl ehE eYu ayX @@ -142245,7 +144315,7 @@ bkW bsd atb vmk -bsd +vcR bKf aLX bxn @@ -142474,7 +144544,7 @@ rTy pbX uhR hZp -cEO +xKl oYQ ahd dIq @@ -142501,9 +144571,9 @@ pkk sqJ gwj bsd -bsd -awj -bsd +vcR +nex +vcR aDL aLX aBD @@ -142530,7 +144600,7 @@ luQ luQ bAi bAi -bAi +luQ bAi mWi fVt @@ -142722,7 +144792,7 @@ gpE gFM lNS izG -wrl +iKA iKA sCb tde @@ -142774,7 +144844,7 @@ lcY eZg kHW xlj -sNd +uNd uNd jxA iVZ @@ -142959,7 +145029,7 @@ aaa aaa aaa bvO -aJb +wfR vuC aiU aiU @@ -143111,9 +145181,9 @@ myK bFD bFD bFD -aaa -aaa -aaa +aaf +krL +aaf aaa aaa aaa @@ -143241,7 +145311,7 @@ amU aof acU huG -snO +diZ adi adv uSp @@ -143368,10 +145438,10 @@ cfY sGr rPT sjb -myK -aaa -aaa -aaa +lqm +bmS +qBX +krL aaa aaa aaa @@ -143551,7 +145621,7 @@ dYS bLh vdS eUS -cPl +rDa qUH xrB nyb @@ -143589,47 +145659,47 @@ nDk eHT jBe nDk -gDe -gDe -gDe +dUQ +oRn +oRn oiB -cfY -cfY -cfY -cfY -cfY -cfY -cfY -cfY +vGJ +vGJ +vGJ +vGJ +vGJ +vGJ +vGJ +vGJ oiB -cfY -cfY +vGJ +vGJ slJ -cfY -cfY -cfY -cfY -cfY -cfY -cfY -cfY +vGJ +vGJ +vGJ +vGJ +vGJ +vGJ +vGJ +vGJ oiB -cfY -cfY -cfY -cfY -cfY -cfY -cfY -cfY -cfY +vGJ +vGJ +vGJ +vGJ +vGJ +vGJ +vGJ +vGJ +vGJ wFm izi jrp myK -aaa -aaa -aaa +aaf +krL +aaf aaa aaa aaa @@ -143757,7 +145827,7 @@ peT apm acU aqb -snO +diZ adi ezV aAZ @@ -143847,7 +145917,7 @@ nDk pAW jBe nDk -gDe +opw cnt sCT bFD @@ -144046,7 +146116,7 @@ cse tyl pHa lDK -pHa +mjM tzm lnP pss @@ -144059,7 +146129,7 @@ pWU bbK qmn xVd -ekR +ssD hBF bQq bLj @@ -144105,7 +146175,7 @@ nDk pAW jBe nDk -gDe +opw jBe nDk bFD @@ -144273,7 +146343,7 @@ lwA cgf acU fjI -snO +diZ adi atR hKl @@ -144363,7 +146433,7 @@ uZc pAW weY uZc -gDe +opw weY uZc bFD @@ -144621,7 +146691,7 @@ aRu qYj aRu aRu -aRu +toP eZd aRu bFD @@ -144875,11 +146945,11 @@ cwM dyx mYK bFD -aRu +beM hFz tkT gpn -aRu +lZi aRu iOn bFD @@ -145050,19 +147120,19 @@ qgT jzO axN sRf -piW +acR acR aDS nhx qVc lFr -cvI +lFr lFr mzI srf -cII jhF -rXV +jhF +axN nqn nqn nnN @@ -145070,7 +147140,7 @@ jxY wfU jkg beq -jxY +jFi tBa tRm rQx @@ -145087,9 +147157,9 @@ vZL ogJ htP xMV -iQE ohe -iQE +ohe +ohe aje qeA hcU @@ -145313,7 +147383,7 @@ jlA bEr aBp njj -jlA +jty ryb qtJ yck @@ -145341,7 +147411,7 @@ sum vDa rLU rCR -rLU +hJr lWo cVv aUM @@ -145581,15 +147651,15 @@ aGK axD ifk hHg -fjG -oJc -aQe -sdq +tOJ +sRJ +jhT +cIn apN cIn -aXr -dPK -vNh +cVZ +fjG +aFs oSK sxQ sxQ @@ -145623,7 +147693,7 @@ ctj ctj cgq hKb -mQc +pkG rOO guQ gIA @@ -145839,15 +147909,15 @@ akO aIm aJL aLD -noZ -oJc -czR -sdq -asa -sdq -czR -fjG -bbe +rnx +tTE +tTE +rZy +iwe +rTn +tTE +tTE +xzx wKN bPN bgb @@ -146097,15 +148167,15 @@ sQG kDj ltX aLF -fjG -oJc -czR -aVn +rnx +tTE +tTE +hbB wcN -aVn -czR -fjG -oJc +nQK +tTE +tTE +ekR wKN aCh bxl @@ -146355,15 +148425,15 @@ viV ijM aJL aLF -bFb -fho -czR +hFj +tTE +tTE rZy -wcN +cbD rTn -czR -bWN -aFs +tTE +tTE +ifj wKN ahb wKN @@ -146613,15 +148683,15 @@ aGN aGN aGK aLG -kHJ +rnx tTE -czR -pSC -aTW -hDm -czR -ulh -jLC +tTE +uSP +wcN +oiG +tTE +tTE +aRM wKN aCi wKN @@ -146871,15 +148941,15 @@ aCK dJJ dJJ dJJ -eWP -aeh -gel -sZG -gho -aku -iWN -eWP -bbb +dgJ +aAh +aAh +rZy +tZu +bgq +aAh +aAh +ekR wKN wFY wKN @@ -146944,7 +149014,7 @@ uIz rSV vXL xDR -tAg +sho rSV hJV qGX @@ -147128,16 +149198,16 @@ ctj ctj ctj ctj -iis -aOP +vNh +psv rek -vcv +shL +fNY +pre pTu -lYw -nXE -vcv rek -bbc +jPs +bkH wKN wKN wKN @@ -147387,15 +149457,15 @@ ctj ctj ctj vVP -ldf -aSh -aSh -nHH -drh -nXE -aSh -aSh -pkU +chy +cuq +cuq +lVe +lND +fZj +cuq +cuq +lGq vVP ctj ctj @@ -147427,7 +149497,7 @@ wrM fxZ ucS bym -ucS +kUJ wfT cwF hkr @@ -147645,15 +149715,15 @@ ctj ctj ctj vVP -mfi +chy aSh aSh -nHH -fsh -nXE +suW +bsr +tlY aSh aSh -psd +lGq vVP ctj ctj @@ -147903,15 +149973,15 @@ ctj ctj ctj vVP -iwf +nDU aSh aSh -nHH -jrC -nXE +nZo +drh +uKu aSh aSh -aNs +mAf vVP ctj ctj @@ -147957,7 +150027,7 @@ dtN bRG bRG mea -bRG +wsD bRG kuE chs @@ -148161,15 +150231,15 @@ ctj ctj ctj iis -bQY +nXS aSh aSh -lVe -wpJ -tlY +nHH +qWX +nXE aSh aSh -vcN +lvy iis ctj ctj @@ -148206,7 +150276,7 @@ csE wpe tEK gJG -bRG +tuo hNe sJR spo @@ -148419,15 +150489,15 @@ aFt aFt aFt iis -eKz +oqA aSh aSh -nHH -qWX -nXE +dpQ +xYh +tcC aSh aSh -lGq +wnR iis bQz bjC @@ -148677,22 +150747,22 @@ oDy fpt wVP bJF -dZt +nHf +sCP +ugQ vcv +vvq vcv -nHH -drh -nXE -vcv -vcv -lGR +dxM +sCP +aWK bJF xLZ xLZ pRa vxi eiv -aYe +ooV aYe dlD bQz @@ -148871,7 +150941,7 @@ nns ckq vVQ rGT -vVQ +bqz rGT wqL bcN @@ -148935,15 +151005,15 @@ fMS fMS lzm cxX -jrc -eyn -eyn -oOJ -qBX -oOJ -eyn -eyn -dIj +vCo +nDH +kWa +pve +fwy +pve +mBN +svY +rmN cxX leq aYe @@ -149129,7 +151199,7 @@ jkJ kDF cqZ rGT -cqZ +bqz rGT nuH pIT @@ -149193,15 +151263,15 @@ qQF exE wKd bJF -aDi +mRi kHJ -vcv -fSc -koi -nXE dCO -vcv -rnQ +sdq +koi +sdq +oQm +dcA +qCN bJF jev lYo @@ -149385,11 +151455,11 @@ lpo ako caW pRj -bqz +rGT eQU bqz iLI -bqz +rGT pIT dEY bEF @@ -149453,12 +151523,12 @@ osN kWE kcc xSl -aku -iWN -apN -gel +czR +sdq +aVn +sdq pfU -vcv +dvW oJc aQr aAT @@ -149504,7 +151574,7 @@ cpL cpL ahs aZK -aAh +aKX nRU sEx sEx @@ -149717,7 +151787,7 @@ gqc seI czR aZh -oJc +gvT aAT wNa dYe @@ -149974,7 +152044,7 @@ aSm koC pjM czR -vcv +tVI vfz aAT aCm @@ -150231,8 +152301,8 @@ czR avr llb rSd -czR -vcv +ejj +kHJ kMF aAT aCo @@ -150748,9 +152818,9 @@ sdq aTY sdq bcM -xmJ +mQh ksl -uZN +lSq aCq uZN swx @@ -150763,7 +152833,7 @@ cfT oku aAT rjI -aYe +rNz bQz ctj ctj @@ -150832,7 +152902,7 @@ biB tQg qxm gVs -gDg +iOC sqb bKO aaa @@ -151069,7 +153139,7 @@ cvi rsu gbG gbG -cuq +gbG mga chd sAF @@ -151247,18 +153317,18 @@ pFy fuv aEb slP +rGm +rGm aEb -aEb -aEb -aEb -aEb +rGm +rGm aEb aEb ajE kcp aaW aOg -jlP +kna jlP cui hkd @@ -151289,7 +153359,7 @@ ctj dmt jal bBv -bBv +gDQ qav bTh cbk @@ -151506,21 +153576,21 @@ cpB uAw uAw xjv -uAw +iTv gSe -aEb -aEb -aEb +fjU +rBr +pvq bYV -pgb +oSv atZ -end +jAh oma pFk ilk chj bjJ -pFk +tOs aOO nDR xCF @@ -151547,7 +153617,7 @@ ctj dmt llS fGB -bBv +gDQ iFg bTh hBq @@ -151763,31 +153833,31 @@ auR acs aEb axY -xdU +cbG fqD sFM aEF -fqD -uSr -oun -vil -ejl -smB -pgb +rol +kqM +kqM +apU +kqt +hff +oSv ipx ayE cpO fxe bxv -jmx +xoR ubU dAt uqB sCt apO fpT -lUL -aAT +sCj +ooM lIk cqC aqt @@ -151804,8 +153874,8 @@ ctj ctj dmt bBH -bBv -bBv +gDQ +gDQ iFg bTh iHz @@ -152003,41 +154073,41 @@ xoY xoY grh dEJ -xfj -vTv -xYn -caX +wTq +gvi +kQw +cmj abh -caX -caX -ael -ael -adJ -adJ -adJ -ael -ael +cmj +cmj +cBN +cBN +xYn +xYn +xYn +cBN +cBN aae cwK aCR jpI -pgb -aFK -lOJ -bgq -cop +oSv +lOe aKf -aHb -aIA -pRV +aKf +aKf +aKf +aKf +aKf +daR arE -pgb +oSv aPc fIe aoG tnv oGO -xvd +apO drb ayD asK @@ -152045,7 +154115,7 @@ atP apO aZN ulb -aAT +moX aAT cAJ cAJ @@ -152054,18 +154124,18 @@ cAJ aAT aVU bQz -bQz -oTZ +sjZ +qTR bGL bGL bGL oTZ -oTZ -aDH -aDH -aDH -aDH -aDH +dmt +bTh +sxW +bTh +bTh +bTh dNI xjT nxC @@ -152262,32 +154332,32 @@ bye xcl bEl aTk -eww -sjK -dUk +fYn +kQw +wHA xni -org -vPy -wRb -atq -cbD -oDf -oQm -aaN +iuD +uXf +bAm +mfA +iEc +gyS +aoA +aoA cmj rzc cDA lfW lxK -mhU -aAo -lOJ -lAE -cop -eLI -bDy -bzV -pRV +oSv +eWk +nFV +aKf +gkg +rjy +cgn +lZk +oDD hff wPD vbn @@ -152295,7 +154365,7 @@ vhS aNv bby auk -hdz +apO qLD iWZ wcr @@ -152303,36 +154373,36 @@ bpp dTy apI rkJ -eKL +lyA tZC +gSB eKL -eKL -rYA -vVl -vVl -gBt -tpx +hru +uZN +qmy +xPD +kHD +jWK dGT -bfx -ghH -jCa -fmx -bpz -bbR -jCa -gTy -jCa -jCa -jCa -gpk -bIl -bbR -jCa -jCa -jCa -jCa -jCa -jCa +aoL +lhB +dme +rMF +ehn +flI +lft +lBJ +rMF +vRv +hfR +wSC +uOy +uOy +uOy +uOy +uOy +uOy +uOy wWN hzt lhB @@ -152491,12 +154561,12 @@ agY fdO cnb bdK -bdK +bbe cGQ bjf fya aHK -pSX +amR uFe abc dDQ @@ -152524,73 +154594,73 @@ ylj pGC eKA akw -hhr -ddv +kzJ +oCX wBy kzJ oCX -lcd -guX -hZN +kzJ +oCX +kzJ aue hZN pPi qGz dXw -mhU +lYw aPN -vRy -wnW +msM +vsy gRQ lSI aKd -ggY +jAh qQc -crV -pgb +jAh +oSv bZo mBY aej aej fZP -qQk +sMt iPo bbp wbB vTN -xoR +aMv tif -bIq -bIq -bIq -bIq -bIq -pvv -abz -xBw -hOL -pre +nMO +rxJ +rxJ +rxJ +ohK +sKv +fpx +fpx +xBV +asa +rHG dtL -mRD -bCe -bEP -pmv -kbs -xUn -xoN -shL -aUf -nJX -kbs -sPr -lcc -nhM -mep -smt -sbq -fil -lKy -ryq +tze +ktk +uQU +tMm +tMm +tDE +ckd +kap +kap +lmO +kap +cFe +gJj +iyn +xfQ +cgz +uiQ +uiQ +uiQ gMr wbd vLc @@ -152777,36 +154847,36 @@ bye bye bOx aTk -vTv +kwP bJS kQw +cmj +xhu +bkY emF -hpO -emF -emF -emF -emF -emF -emF -emF -emF +bAm +aoA +aoA emF +bsn +cmj +cmj cBM bpL -awK +afk afY -vil +oSv xGn -lSq +aKf oyM tpq gud azO -afK +jAh +rCc ikH -bas -akl -vIQ +bFb +apJ aTa aTa aTa @@ -152818,36 +154888,36 @@ dlL bNn gzI mxN -bIq -bIq -bIq -bIq -bIq -bcI -apR +gFJ +eaI +gRK +gsz +tgx +leC +nUR +uUH +syY oVV -rCC -bCf -bCf -bCf -bCf -bCf -bCf -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -etY -cDX +siE cDX +rXE +uHo +ogh +cQc +ogh +tZc +qCK +leL +abz +ogh +uKL +uUZ +bhy +fMb +cLL +qfE +cLL +cLL gQu fTJ bhy @@ -153028,43 +155098,43 @@ aRq aYo aJm aJm -qDS +aJm brQ -rtf +bye bye bye xcl aTk tKH -cBN -cBN -wHA +vTv +uJC kJM -iuD -uXf -bAm -iEc -gyS -aoA -aoA -aoA -cBN -cBN +kJM +kJM +kJM +hQz +kJM +kJM +kJM +kJM +kJM +xiN +jMD ahE -afk +awK xfb -aqe +apU wsB -lSq -puO -lVM -vxF -end -end -chy -end -tiC -vIQ +aKf +bSU +kul +gud +fII +jAh +wfN +ikH +mhU +apJ aTa aTa aTa @@ -153076,38 +155146,38 @@ aVG ckt bgB vHv -bIq -bIq -bIq -bIq -bIq -bcI -isp -bCf -qef -gMy -dYm -cmF -cmF -dvk -dvk -cDX -oYo -kPr -dcl -rNn -vEF -gID -jeP -sDz -sDz -sGN -sFA -gNX -sFt -cDX -cDX -cWj +gFJ +gsz +jAk +hrp +tgx +gel +kOS +kOS +kOS +kOS +kIa +dnp +aku +xht +pNa +nKM +nKM +fyA +rhp +snO +snO +gjO +xht +nFJ +bhy +aZC +cLL +wnj +bTi +cLL +cLL +lVU bhy bdC rHB @@ -153175,9 +155245,9 @@ cqv woz piv ptE -aaa -aaa -aaa +aaf +krL +aaf aaa aaa aaa @@ -153293,35 +155363,35 @@ bye bye xcl aTk -tdn -rXE -aoE -aoE +tKH +eww +lQz +vTO kuR -mZm -aoE +gao +bAf hmn +pdP mZm -mZm -rTE +oDf tNy aoE -aoE -rXE +oDf +org afi ant bpr -end -rBr -lSq -puO +jAh +wsB +aKf +kXI bNv bpF +fYE jAh -ckd -rIv -tWn -aoL +vft +ikH +ggY gVv aTa aTa @@ -153334,39 +155404,39 @@ wfl bez eeQ dqv -bIq -bIq -bIq -bIq -bIq -rDY -vkT -cau -khR -cQc -kOS -kOS -ndZ -kOS -kOS -jdU -swY -jPs -pxg -wYq -pxg -rkd -ndC -pxg -awg -cpT -qCK -sGp -eaM -fhn -cDX -fLQ -cgk +gFJ +gsz +qiX +ilE +tgx +soM +qJf +usa +pyb +bJT +jWK +dtL +aoL +qPE +hLt +emC +sBz +hdB +upj +upj +emC +kFF +mOt +aqg +bhy +bdh +cLL +oYo +wna +flV +cLL +lVU +bhy aBw cin vPP @@ -153397,13 +155467,13 @@ bXA yic pKB nnG -nnG +dln tRq aMR aMR aMR bMw -nQK +gPC imz atA gPC @@ -153418,24 +155488,24 @@ nzJ tDH cqU jDv -auv -dzV -auv +wtG +vrq +gKQ kmP -dzV +vrq qEx -dzV -pNb -pNb -auv -xZV -dzV +vrq +ulC +ulC +gKQ +epJ +vrq nOM -dzV -ptE -aaa -aaa -aaa +vrq +dQS +bmS +qBX +krL aaa aaa aaa @@ -153544,42 +155614,42 @@ aRq aYt aJm aJm -qDS +aJm brQ -rtf +bye bye bye xcl aTk gzv -cBN -cBN -bkY -xhu -aoA -aoA +wwX +wwX +wwX +wwX +wwX +sxn ius -aoA -aoA -jFj -rjy +qMW +smB +smB +smB +smB +smB gYe -cBN -cBN fdB afk arX -aqe +uSr buf -lSq -puO -lVM -pDo +aKf +tii +nTE +gud +djZ jAh -alI -rIv -pyb -aoM +owj +ikH +akl apJ aTa aTa @@ -153592,40 +155662,40 @@ aVG blp bgB vHv -bIq -bIq -bIq -bIq -bIq -xJH -nbT +gFJ +syY +hrp +gsz +tgx +fUX bCf -iMs -krc -lDa -crL -cmF -jkp -skZ -cDX -mLM -ezo -lDC nJD -qSG -kMO -wYZ -qDw -yaD +nJD +nJD +axX +fPz +nJD +nJD +nJD +nJD +nJD +poT +nJD +nJD +nJD mCf -mCf -oNV -oqA -cDX -cDX -fLQ -cgk -qZr +fTJ +bhy +bhy +dpD +cLL +mMP +xMg +cLL +cLL +lVU +bhy +lhB gPr bIr xAg @@ -153676,7 +155746,7 @@ iFv bHD bHD sud -pNb +qeJ dzV uQK kAe @@ -153691,9 +155761,9 @@ lZD oie lUy wff -aaa -aaa -aaa +aaf +krL +aaf aaa aaa aaa @@ -153810,34 +155880,34 @@ bye bOx aTk nIJ -bJS -cBN -cBN -cBN -cBN -cBN -cBN -cBN -cBN -cBN -cBN -cBN -cBN -avI +shH +wFD +qBs +vGm +ryV +ohh +eNh +aIA +ltY +kxU +sWZ +gpd +kxU +aqe plz afk aLZ -end +jAh aAo -lSq -puO +aKf +jkR lVM -aQW +gud lOz -aQw -rIv +jAh +nqB +ikH xQQ -aoO apJ aTa aTa @@ -153850,39 +155920,39 @@ aVG byy bgB vHv -bIq -bIq -bIq -bIq -bIq -hBl -apR -gzZ -iFA -cly -cly -cly -cly -cly -cly -qTb -qTb -qTb -qTb -qTb -qTb -qTb -qTb -qTb -qTb -qTb -qTb -frO +gFJ +nUR +uUH +oVV +tgx +fUX +uLM +mLM +cEw +lVT +ayo +hvI +tYu +cmF +tHK qTb qTb +uuC +gjZ +xND +mLM +vqw +kXS +kFb +kFb +qqM +poA +xRH +poA +poA cdU -gsz -xKl +kXS +kFb ujx ewQ wkg @@ -154068,37 +156138,37 @@ bye iyG bNN yfj -bYS -aoC -fLt -alp -jgi -qhd +ejl +ejl +ejl +ejl +ejl +siv pWz -pdP -fmS -tWZ -xyj -roM -eUi -uKL +jZt +oun +oun +oun +oun +oun +mqy xhT tBk gqD -aKg -aPN -lSq +uSr +gvb +aKf puO -lVM -aHe +puO +gud +alL jAh -tAa rIv -pyb +sFA mCd fra pZR -jOF +pZR pZR pZR vTf @@ -154108,37 +156178,37 @@ aVG rtA lKa vHv -bIq -bIq -bIq -bIq -bIq -dVE -aQQ +hwo +oCW +oCW +oCW +gHD +jRa gdt -vyn -kXE -wwf -tEZ -gfK -bBd -hnL -mRi -wBO -nMm -mDt -bpE -eXN -dyS -ooM -nMm -wBO -nzV -rOP -mAf -jTH -acP -gSv +tmv +xtK +kHv +dyZ +qmo +vIQ +qmo +qkQ +uAO +qmo +tVe +pgb +ydR +scp +gDV +qDz +wKg +wKg +ghQ +tck +dLb +vvn +tZo +tZo luT mtZ krj @@ -154173,7 +156243,7 @@ vZY nnG nnG qJZ -dln +nnG deb aLB aMC @@ -154333,27 +156403,27 @@ mDc goH bAf edc -cqV +pdP fxq -mDc +mNa leW fbP -cml +oPZ sRT pko odm bfW -aKg -aAo -lSq +uSr +xwd +sbq few -lVM +xPM svX +jyG +jAh +jAh +qQc jAh -aIE -cvo -pyb -aXj oSv aVG aUc @@ -154367,35 +156437,35 @@ rtA bgB pTL gxS -xBw +hWU lWC oHM iqE -jOo -lKC -vUc +vOl +uLM oWk -lJU -xmf -lQm -sxW -upj -mpI -xff -wJe -upj -eGP +heF +wrc +cII +oza +qKI +wwf +rUP +fja +xDd +xDd +aBy +aBy +eTP +mLM +gzd upj upj upj -rHr -upj -wJe -upj -ebL -kLR -wTh -obp +mOt +wzV +vmY +bdC upj rHr upj @@ -154590,28 +156660,28 @@ bYZ bYU bYZ bYU -cpg -apw -bDG -bDG -bDG -apw -apw +mMv +ael +adJ +adJ +adJ +ael +ael aae afn dos kmD -end -aFK -lSq -bgq -lVM -vaL jAh -alK +aFK +uiH +aKf +khR +vaL +bmj +jAh rft -jib -nqK +aQw +aSq oSv aUJ bIq @@ -154630,33 +156700,33 @@ lkb mWv bjP mWv -lkb ffY +ipq men jsb jsb -clg +fhn cFW cFW cFW -clg -clg -cgn -chW -chW -cgn -cgn -cgn -cgn -cgn -cgn -nzQ +fhn +fhn +mLM +mLM +mLM +nzV +mLM +ccV +bWA +ccV +bWA +jfH cax -cbG +cbT qKm -cgn -cgn -cgn +bWA +bWA +bWA uaM cin bOj @@ -154859,17 +156929,17 @@ azl aXQ vxj aLS -end -aKg -aKg +jAh aKg +vxF +iuQ iuQ aFG -jAh -alL +yfi +xJd ops aQw -aSq +roS oSv mdj qkK @@ -154882,8 +156952,8 @@ xBw gMg bgB igu -oDD -ipq +rtA +log aWO bgG nNj @@ -154901,7 +156971,7 @@ ctj bLI bNo bGK -bGK +rLW nws bVw kgw @@ -155098,7 +157168,7 @@ msQ lfX xEp bqR -xcl +dQN aUG llY bku @@ -155118,15 +157188,15 @@ mXe vxj vxj baE -vxj -vxj -vxj -xPc -vxj -jAh -cvf -hYU +wYI +pRV +wYI +qsA +uSr +bas +jtj jAh +sac jAh oSv aXu @@ -155140,11 +157210,11 @@ bgB bgB bgB igu -vGJ +lUL ipq aKo bgG -hru +bgG aOk bux ipq @@ -155375,12 +157445,12 @@ cBY mXe vxj lpe -vxj -vxj -vxj -vxj +xPc xPc vxj +xPc +xPc +xKn jAY vxj ikG @@ -155402,11 +157472,11 @@ dTF ipq bmY bgG -hru +bgG aOm buy ipq -lLI +end ilY jsb ctj @@ -155417,7 +157487,7 @@ ctj bPd thH sIQ -sIQ +dPK bOd bVw kgw @@ -155610,7 +157680,7 @@ ijF wix lAX bqR -lCS +wGJ rvc hbu bqR @@ -155638,8 +157708,8 @@ oSt oSt gyc vdf -cle -cle +vdf +dUk cle fgD pww @@ -155660,11 +157730,11 @@ fti ipq dBK bgG -hru +bgG bSo cqn ipq -lLI +end dBF jsb ctj @@ -155735,7 +157805,7 @@ svD svD svD tQg -gDg +iOC cEI aaa aaa @@ -155865,7 +157935,7 @@ aSt aUz bfG ijF -brm +eAl lAX bqR mbA @@ -155908,8 +157978,8 @@ sOC bdd dcV plL -aVG -bcI +iKN +gWh wWC bdg bdg @@ -155918,11 +157988,11 @@ psF ipq bmZ bgG -hru +bgG bgG bqE ipq -lLI +end rPG jsb ctj @@ -156176,11 +158246,11 @@ qau klR wmO wmO -tZc +wmO wmO aQV ipq -lLI +end rfi jsb ctj @@ -156403,7 +158473,7 @@ alW aaa aaa czO -cBY +xak rXL rWt poq @@ -156413,7 +158483,7 @@ lCA vLo vxj iCX -kKF +ddv kKF lIC bFR @@ -156421,11 +158491,11 @@ nAI ovw eUr qLY -rnx -gMa +mQf +tof eUr -wCT -itl +eqY +cJG bdg bgF jgH @@ -156438,7 +158508,7 @@ srq dbf aRa ipq -lLI +end gKM jsb ctj @@ -156677,12 +158747,12 @@ rcy xDe eZG aEC -bdh +eUr qdI jYg -aTu -eUr -wCT +gMa +ken +wAW mgx bdg aCt @@ -156696,7 +158766,7 @@ qkY bgG aQY ipq -lLI +end qzu jsb ctj @@ -156744,7 +158814,7 @@ bVT vat cnD svj -rfR +mIA qPt rsq tSK @@ -156940,7 +159010,7 @@ sHA wvX brw eUr -wCT +uXr itl bdg beK @@ -156954,7 +159024,7 @@ paB jMS bvN ipq -lLI +end jsb jsb ctj @@ -157193,12 +159263,12 @@ hnj hhp fAH aXB -wKg -lXn -upF -mBr -dxM -wCT +eUr +sOC +mQf +sOC +eUr +vhr bwJ ipq beL @@ -157449,15 +159519,15 @@ nsw vUj qRM aSy -xht -eqY -wCT -bcY -fNr -fVJ +rTE +lJO +lcd +sOC +upF +sOC dKG -wCT -gjW +sHV +iOZ bdg bzL bgG @@ -157468,9 +159538,9 @@ azP cre lLI hWe -lLI -lLI -lLI +qfS +qfS +sfR jsb ctj ctj @@ -157668,7 +159738,7 @@ xQW qbx ijF brm -brm +bsk bqR eXt brm @@ -157707,15 +159777,15 @@ iEX iEX eEy mES -nDA -xyG -xyG -jEW -sAh -waH -qpl -qpl -inV +uxR +piW +xfv +diF +gKV +dLB +cvI +oGn +iOZ bdg boY bgG @@ -157965,15 +160035,15 @@ aPu nWI qrT aSy -rRg +fFn +eJq +jiK wCT +aTu wCT -bcY -aON -fVJ -wCT -wCT -aKY +sWa +eJq +wZv bdg beO bgG @@ -158162,7 +160232,7 @@ srH dPi cwa dRO -czJ +gPb apZ atk bCi @@ -158223,15 +160293,15 @@ kLW kLW kLW kLW -vUU +gMy aZE aZE -bcY -aON -fVJ +wCM +npV +cTE aZE aZE -gOr +qQq bzM bzM aFJ @@ -158481,16 +160551,16 @@ ctj ctj ctj mHY -nEh +gwb aZE aZE -bcY -kPJ +lcc +aON fVJ aZE aZE -aZC -bdn +pSn +mHY ctj ctj ctj @@ -158739,16 +160809,16 @@ ctj ctj ctj mKm -eJn +wjt aZE aZE -wCM -gjG +dKB +mKF muk aZE aZE -bmX -bOQ +tto +mKm ctj ctj ctj @@ -158997,16 +161067,16 @@ ctj ctj ctj mKm -eJn +iQE aZE aZE -bcY -rzn -fVJ +lPb +aQW +muk aZE aZE -bmX -bOQ +nID +mKm ctj ctj ctj @@ -159255,16 +161325,16 @@ ctj ctj ctj mKm -nBh -aZE -aZE -bcY -dpQ -fVJ -aZE -aZE -hYZ -bOQ +iQE +qDS +qDS +qsz +nfq +gAe +qDS +qDS +nID +mKm ctj ctj ctj @@ -159309,7 +161379,7 @@ clv clv clv clv -hPt +cop rvV cnP cnP @@ -159513,15 +161583,15 @@ ctj asV asV asV -nFE -aZE -aZE +gxC +kPr +gOr +daU +oSF bcY -aON -fVJ -aZE -aZE -vjZ +kPr +chW +bio bdn ctj ctj @@ -159566,7 +161636,7 @@ hPt hPt gNy hPt -hPt +aAP cpH aUH cnP @@ -159582,7 +161652,7 @@ wnY aeg xGd ieU -rfR +mIA qPt qco bAn @@ -159771,15 +161841,15 @@ asV asV jKu asV -nFa -nFa -hzV -bcY -rNz -fVJ -hzV -nFa -nFa +fQe +rtf +rtf +soe +uwL +ldf +rtf +rtf +lKg bsU bsU bsU @@ -160029,15 +162099,15 @@ iJT asV had asV -lvy -oyS -mBr -dxM -qWM -wKg -lXn -emC -qbr +uVa +hzV +hzV +soe +eMM +qnA +hzV +hzV +jMv aut avs aem @@ -160287,15 +162357,15 @@ cGo asV lMw asV -eqY -oCL -eUr -rlk -gDI +fMy +hzV +hzV +soe +aXH qnA -eUr -azH -gws +hzV +hzV +uEX aBF lFp rEA @@ -160545,15 +162615,15 @@ mbf bfr cDk asV -moX -vTA -eUr -dmB +fQe +hzV +hzV +fqd aGM -ozc -dxM -uKu -cKv +iTM +hzV +hzV +mBr wiE iAB xJa @@ -160803,15 +162873,15 @@ rEq bEx rEq asV -nDH -peQ -wKg -soe -cDx -lAk -lXn -nDH -voE +uVa +hzV +hzV +fJw +aGM +qnA +hzV +hzV +tfT aut wDm bzW @@ -161061,19 +163131,19 @@ asV asV asV xrd -sYW -peQ +fQe kYN -sOC -gjf +wdN mns -sOZ -uCm -sTi +gjf +vzB +kwf +eDX +mJI rxW -kap -kap -axX +aut +aut +aut aut kZg pbi @@ -161311,7 +163381,7 @@ nsR xWb tgW iHh -tgW +efB xWb cHu bZz @@ -161328,9 +163398,9 @@ sgx kgM jqB pgu -bSd -bXN -tXL +iMh +ihS +peL jad tXL bXN @@ -161339,7 +163409,7 @@ qMQ hQG vLU bBh -bXN +urq tXL bXN tXL @@ -161390,7 +163460,7 @@ rfR qyu rfR uhD -iqu +erM pnx pnx mNJ @@ -161561,11 +163631,11 @@ bBN csN ydh gdr -scp khZ -scp +khZ +khZ pCR -scp +khZ khZ ofW gPt @@ -161580,7 +163650,7 @@ emn aCU csp aCU -moX +eFx jGK xWh juK @@ -161599,9 +163669,9 @@ dWv tjb wze iAR -tVe bnq -tVe +bnq +bnq fpp pqN tWd @@ -161906,7 +163976,7 @@ uhD vpl gHc vUO -iqu +tmF otd iqu aSz @@ -162119,7 +164189,7 @@ oEw pwT byg bFk -vzB +daK qkk bkE bLN @@ -162165,7 +164235,7 @@ iqu pui mLg iqu -iqu +qBY mLg iqu uhD @@ -162333,7 +164403,7 @@ cjq ugY crJ cvs -uOy +rVJ jIM jUw cAM @@ -162423,7 +164493,7 @@ tyQ oMZ wLq tyQ -evu +hiC wLq tyQ uhD @@ -162635,7 +164705,7 @@ kSe qya byg oOZ -vzB +daK vaC bkE bLN @@ -162681,7 +164751,7 @@ hWI oMZ nST hWI -evu +hiC nST hWI uhD @@ -162849,7 +164919,7 @@ cjs cqx crJ cvs -uOy +rVJ cwx jUw aeL @@ -162939,7 +165009,7 @@ hWI oMZ nST hWI -evu +hiC vzM bFm uhD @@ -163197,47 +165267,47 @@ hWI oMZ nST hWI -evu -evu -evu +viI +dfO +dfO xIT -mbj -mbj -mbj -mbj -mbj +uDk +uDk +uDk +uDk +uDk wuC -mbj -mbj +uDk +uDk xIT -mbj -mbj -mbj -mbj -mbj -mbj -mbj -mbj -mbj -mbj -mbj +uDk +uDk +uDk +uDk +uDk +uDk +uDk +uDk +uDk +uDk +uDk xIT -mbj -mbj -mbj -mbj -mbj -mbj -mbj -mbj -mbj +uDk +uDk +uDk +uDk +uDk +uDk +uDk +uDk +uDk qSt -mLg +uKc dHd itt -aaa -aaa -aaa +aaf +krL +aaf aaa aaa aaa @@ -163365,7 +165435,7 @@ cju cqy crJ cvs -uOy +rVJ cwx jUw cAN @@ -163408,7 +165478,7 @@ yfv bBC bBC byg -bFk +sNN puB pCJ bkE @@ -163492,10 +165562,10 @@ mbj ycK ycK xBZ -itt -aaa -aaa -aaa +mli +bmS +cVD +krL aaa aaa aaa @@ -163676,7 +165746,7 @@ pol paU flS wIu -xlU +vil gFU xlU nSa @@ -163751,9 +165821,9 @@ itt uhD uhD uhD -aaa -aaa -aaa +aaf +krL +aaf aaa aaa aaa @@ -163926,7 +165996,7 @@ raN bDH qOQ gBz -kvC +pcs tdW oZx vkf @@ -164373,7 +166443,7 @@ ajt aHO aHO adV -mVe +ikk jIb mDS eZe @@ -165150,7 +167220,7 @@ bFM aNC iTU aOL -lXu +tTn bno iTU php @@ -166032,9 +168102,9 @@ aaa aaa qcZ wIQ -sQq -sQq -sQq +pin +gjv +vnU sQq sQq sQq @@ -166290,7 +168360,7 @@ aaa aaa sbk vor -oHb +dKd wQZ vor oHb @@ -166548,7 +168618,7 @@ aaa aaa sbk xzT -oHb +dKd tBD xzT oHb @@ -166806,7 +168876,7 @@ aaa aaa sbk xzT -oHb +dKd tBD xzT oHb @@ -167064,7 +169134,7 @@ aaa aaa qcZ xzT -oHb +dKd tBD xzT oHb @@ -167322,7 +169392,7 @@ aaa aaa qcZ xzT -oHb +dKd tBD xzT oHb @@ -167580,7 +169650,7 @@ aaa aaa qcZ xzT -oHb +dKd tBD xzT oHb @@ -167838,7 +169908,7 @@ aaa aaa qcZ xzT -oHb +dKd tBD xzT oHb @@ -168096,7 +170166,7 @@ aaa aaa qcZ xzT -oHb +dKd tBD xzT oHb @@ -168354,7 +170424,7 @@ aaa aaa qcZ xzT -oHb +dKd tBD xzT oHb @@ -168612,7 +170682,7 @@ aaa aaa qcZ nAM -oHb +dKd jhO nAM oHb @@ -168870,7 +170940,7 @@ aaa aaa sbk sQq -sQq +kfm sQq sQq sQq @@ -168911,9 +170981,9 @@ sbk qcZ qcZ qcZ -aaa -aaa -aaa +aaf +krL +aaf aaa aaa aaa @@ -169127,51 +171197,51 @@ aaa aaa aaa sbk -sQq -sQq -sQq -lGm -sQq -sQq -bFw +pin +pwn +gjv +ibl +gjv +gjv +fbA dLF -xTR -xTR -xTR -xTR -wao -xTR -xTR -xTR +vEo +vEo +vEo +vEo +pMh +vEo +vEo +vEo dLF -xTR -xTR -xTR -xTR -xTR +vEo +vEo +vEo +vEo +vEo wao -xTR -xTR -xTR -xTR -xTR +vEo +vEo +vEo +vEo +vEo dLF -xTR -xTR -xTR -xTR +vEo +vEo +vEo +ftk wao -xTR -xTR -xTR -xTR -lGm -sQq +vEo +vEo +vEo +vEo +ibl +gjv wGp -sbk -aaa -aaa -aaa +vVm +bmS +cVD +krL aaa aaa aaa @@ -169385,7 +171455,7 @@ aaa aaa aaa sbk -sQq +kfm sQq bFw bFw @@ -169397,7 +171467,7 @@ xTR xTR xTR xTR -xTR +vYs xTR xTR xTR @@ -169417,7 +171487,7 @@ qcZ xTR xTR xTR -xTR +vYs xTR xTR xTR @@ -169427,9 +171497,9 @@ sQq fVB pQm sbk -aaa -aaa -aaa +aaf +krL +aaf aaa aaa aaa @@ -169643,8 +171713,8 @@ aaa aaa aaa qcZ -wIQ -sQq +fWy +apw sQq gMN sQq @@ -169655,7 +171725,7 @@ qcZ qcZ qcZ sbk -sbk +wlP sbk qcZ qcZ @@ -169675,7 +171745,7 @@ qcZ qcZ qcZ sbk -sbk +wlP sbk qcZ qcZ @@ -169901,7 +171971,7 @@ aaa aaa aaa qcZ -qcZ +pUY qcZ qcZ qcZ @@ -169913,7 +171983,7 @@ aaa aaa ctj ctj -ctj +key ctj ctj aaa @@ -169933,7 +172003,7 @@ aaa aaa ctj ctj -ctj +key ctj ctj aaa @@ -170158,9 +172228,9 @@ aaa aaa aaa aaa -aaa -aaa -aaa +aaf +sOr +aaf aaa qcZ xss @@ -170171,7 +172241,7 @@ aaa aaa aaa ctj -ctj +key ctj aaa aaa @@ -170191,7 +172261,7 @@ aaa aaa aaa ctj -ctj +key ctj aaa aaa @@ -170416,9 +172486,9 @@ aaa aaa aaa aaa -aaa -aaa -aaa +aKY +xBF +aaf aaa qcZ qJo @@ -170429,7 +172499,7 @@ aaa aaa aaa ctj -ctj +sOr ctj aaa aaa @@ -170449,7 +172519,7 @@ aaa aaa aaa ctj -ctj +sOr ctj aaa aaa @@ -170674,9 +172744,9 @@ aaa aaa aaa aaa -aaa -aaa -aaa +aaf +aKY +aaf aaa qcZ sbk @@ -170686,9 +172756,9 @@ qcZ aaa aaa aaa -ctj -ctj -ctj +dqa +oBS +dqa aaa aaa aaa @@ -170706,9 +172776,9 @@ aaa aaa aaa aaa -ctj -ctj -ctj +dqa +oBS +dqa aaa aaa aaa @@ -171126,9 +173196,9 @@ cto oxN uqP qKG -qKG +hkB fkn -qMI +ukR hgN uqR naC @@ -171384,7 +173454,7 @@ cAU rMX uqR dXJ -qMI +cGh waN otv otv @@ -173470,7 +175540,7 @@ hBX tEx ehd tEx -jmU +gpf fZU anr iow @@ -174476,7 +176546,7 @@ uGP cGJ yiq wLU -yiq +gpk nSZ tyC lrb diff --git a/maps/southern_sun/southern_cross-3.dmm b/modular_chomp/maps/soluna_nexus/soluna_nexus-3.dmm similarity index 82% rename from maps/southern_sun/southern_cross-3.dmm rename to modular_chomp/maps/soluna_nexus/soluna_nexus-3.dmm index 606f238a8a..372ebfb935 100644 --- a/maps/southern_sun/southern_cross-3.dmm +++ b/modular_chomp/maps/soluna_nexus/soluna_nexus-3.dmm @@ -7,18 +7,20 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "aab" = ( /obj/effect/catwalk_plated/white, /turf/simulated/floor/glass/turfpack/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftPort) +/area/engineering/Solar_Array_AftPort) "aac" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "aad" = ( -/obj/machinery/vending/sol, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Dinner_2) "aae" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -30,7 +32,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "aaf" = ( /obj/machinery/atmospherics/omni/atmos_filter{ tag_east = 1; @@ -39,7 +41,7 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "aag" = ( /obj/structure/extinguisher_cabinet{ dir = 4; @@ -54,7 +56,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "aah" = ( /obj/structure/extinguisher_cabinet{ dir = 1; @@ -64,14 +66,14 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "aai" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "aaj" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -102,15 +104,15 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "aak" = ( /obj/machinery/status_display{ layer = 4; name = "N-status display"; pixel_y = 32 }, -/turf/simulated/floor/glass, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Lounge) "aal" = ( /obj/effect/catwalk_plated/white, /turf/space, @@ -123,25 +125,31 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "aan" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "aao" = ( /obj/structure/table/woodentable, /obj/item/newspaper, /obj/item/flame/candle, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "aap" = ( /obj/effect/catwalk_plated/white, /turf/simulated/floor/glass/turfpack/airless, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "aav" = ( /obj/structure/table/woodentable, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) +"aaw" = ( +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "aaD" = ( /obj/machinery/atmospherics/binary/pump{ name = "N2O to Connector" @@ -154,10 +162,10 @@ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "aaM" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "abh" = ( /obj/structure/cable/green{ d1 = 1; @@ -177,7 +185,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "abm" = ( /obj/structure/cable/white{ d1 = 4; @@ -185,11 +193,11 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "abu" = ( /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "abI" = ( /obj/structure/cable/green{ d1 = 4; @@ -203,7 +211,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "abK" = ( /obj/structure/table/woodentable, /obj/machinery/computer/security/telescreen/entertainment{ @@ -212,7 +220,7 @@ pixel_y = -4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "abN" = ( /obj/structure/cable/green{ d1 = 4; @@ -225,13 +233,13 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "abV" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "abX" = ( /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "ace" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/random{ @@ -258,14 +266,14 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "acg" = ( /obj/machinery/light/small{ dir = 4 }, /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "aci" = ( /obj/structure/bed/chair/wood{ dir = 4 @@ -275,7 +283,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "acm" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 @@ -283,7 +291,7 @@ /obj/machinery/meter, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "acD" = ( /obj/machinery/power/apc{ dir = 8; @@ -305,17 +313,17 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "acO" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "acS" = ( /obj/structure/bed/chair/sofa/beige{ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "acY" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/steeldecal/steel_decals10{ @@ -325,7 +333,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "adm" = ( /obj/structure/cable/green{ d1 = 2; @@ -345,16 +353,16 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "adp" = ( /obj/structure/table/rack, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "adu" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "adI" = ( /obj/structure/transit_tube/station, /obj/machinery/alarm{ @@ -370,7 +378,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "adS" = ( /obj/machinery/light{ dir = 8; @@ -381,12 +389,12 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "aea" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "aee" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -404,7 +412,7 @@ }, /obj/structure/transit_tube, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "aeh" = ( /obj/structure/sink{ dir = 4; @@ -419,7 +427,7 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "aej" = ( /obj/structure/transit_tube{ icon_state = "N-S-Pass" @@ -430,10 +438,10 @@ /obj/machinery/power/tesla_coil/relay, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "aex" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "afc" = ( /obj/structure/railing/grey{ dir = 8 @@ -448,7 +456,7 @@ /obj/machinery/portable_atmospherics/canister/empty, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "aff" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/reinforced/airless, @@ -461,13 +469,13 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "afq" = ( /obj/structure/sign/securearea{ icon_state = "restroom" }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "afx" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -483,13 +491,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "afz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "agd" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -508,7 +516,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "agg" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -517,7 +525,7 @@ /obj/effect/engine_setup/coolant_canister, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "agk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -528,7 +536,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "agr" = ( /obj/structure/window/reinforced/tinted/frosted{ dir = 8 @@ -537,7 +545,7 @@ dir = 1 }, /turf/simulated/floor/water/deep/pool, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "agw" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -557,7 +565,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "agy" = ( /obj/effect/catwalk_plated/white, /obj/structure/cable/white{ @@ -584,7 +592,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "ahv" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Solar - AftPort"; @@ -597,7 +605,7 @@ pixel_y = -32 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "ahK" = ( /obj/structure/cable/green{ d1 = 4; @@ -617,13 +625,13 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "aie" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "aii" = ( /obj/structure/railing{ dir = 4 @@ -635,7 +643,7 @@ }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aiF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -648,7 +656,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "aiP" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -660,7 +668,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "aiT" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -680,14 +688,14 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1) +/area/maintenance/Deck3_Dorms_ForCorridor1) "aja" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "ajC" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -698,7 +706,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "ajN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -719,7 +727,7 @@ layer = 3.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "ajO" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -731,13 +739,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "akk" = ( /obj/structure/bed/chair/comfy/beige, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "aku" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -745,7 +753,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "akz" = ( /obj/structure/table/bench/marble, /obj/item/flashlight/lamp/clown{ @@ -753,7 +761,7 @@ on = 0 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "akK" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -770,7 +778,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "akR" = ( /obj/structure/table/rack, /obj/random/flashlight, @@ -778,22 +786,22 @@ /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "alv" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "alA" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Server_Room) +/area/bridge/Server_Room) "ama" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "amn" = ( /obj/structure/cable/green{ d1 = 1; @@ -822,7 +830,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "anh" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -853,7 +861,7 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "ank" = ( /obj/structure/cable/green{ d1 = 1; @@ -865,7 +873,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/green/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "anP" = ( /obj/structure/railing, /obj/machinery/light{ @@ -881,7 +889,7 @@ }, /obj/machinery/door/firedoor/border_only, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "aoa" = ( /obj/structure/transit_tube{ icon_state = "E-W-Pass" @@ -898,11 +906,11 @@ }, /obj/item/bedsheet/rainbowdouble, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "aoz" = ( /obj/machinery/atmospherics/trinary/mixer/m_mixer, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "aoA" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -911,26 +919,26 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "aoC" = ( /obj/machinery/oxygen_pump/mobile/anesthetic, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "aoF" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "aoL" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "apa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "apc" = ( /turf/space, /area/space) @@ -952,7 +960,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "apA" = ( /obj/machinery/alarm{ dir = 8; @@ -960,29 +968,29 @@ }, /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "apH" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "apN" = ( /obj/machinery/atmospherics/binary/pump/on{ target_pressure = 200 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "apP" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Server_Room) +/area/bridge/Server_Room) "apR" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "aqj" = ( /obj/structure/lattice, /turf/space, @@ -997,7 +1005,7 @@ /obj/machinery/cell_charger, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "aqL" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -1009,7 +1017,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aqN" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -1019,7 +1027,7 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "aqS" = ( /obj/structure/cable/pink{ d1 = 4; @@ -1030,7 +1038,7 @@ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "arb" = ( /obj/structure/bed/double/padded, /obj/item/bedsheet/mimedouble, @@ -1040,7 +1048,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "art" = ( /obj/effect/floor_decal/corner/red/full{ dir = 8 @@ -1050,11 +1058,11 @@ network = list("engineering") }, /turf/simulated/floor/reinforced/nitrogen, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "ary" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "arU" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -1062,18 +1070,21 @@ icon_state = "2-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftPort) +/area/engineering/Solar_Array_AftPort) "asa" = ( -/obj/structure/table/steel, +/obj/structure/bed/chair/backed_grey{ + color = "grey"; + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "asb" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "aso" = ( /obj/structure/cable/green{ d1 = 1; @@ -1088,14 +1099,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "asu" = ( /obj/structure/table/rack/shelf, /obj/random/medical/lite, /obj/random/medical/lite, /obj/random/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "asK" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -1116,14 +1127,14 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "asO" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "asY" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "ata" = ( /obj/machinery/shower{ pixel_y = 16 @@ -1135,7 +1146,7 @@ /obj/machinery/door/window/westright, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "atl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1147,17 +1158,17 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "atT" = ( /obj/structure/railing, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "atW" = ( /obj/structure/loot_pile/maint/junk, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "atX" = ( /obj/structure/railing, /obj/structure/railing{ @@ -1165,17 +1176,17 @@ }, /obj/machinery/door/firedoor/multi_tile, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "auu" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "auR" = ( /obj/machinery/newscaster{ pixel_x = 28; name = "1E-newscaster" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "auS" = ( /obj/structure/cable/green{ d1 = 1; @@ -1187,7 +1198,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "auX" = ( /obj/structure/railing, /obj/machinery/light{ @@ -1196,7 +1207,7 @@ name = "1W-light fixture" }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "ava" = ( /turf/simulated/floor/plating/turfpack/airless, /area/space) @@ -1209,7 +1220,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "avh" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -1217,7 +1228,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "avi" = ( /obj/machinery/atmospherics/unary/outlet_injector{ frequency = 1443; @@ -1228,11 +1239,11 @@ dir = 8 }, /turf/simulated/floor/reinforced/airmix, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "avn" = ( /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "avr" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -1245,13 +1256,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "avF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "avO" = ( /obj/item/modular_computer/console/preset/medical{ dir = 1 @@ -1260,7 +1271,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "avR" = ( /obj/structure/cable/green{ d1 = 4; @@ -1280,10 +1291,10 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "avY" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "awg" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -1291,7 +1302,7 @@ id = "sc-WTheadsauna" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "awn" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -1302,13 +1313,13 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "awy" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "awA" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -1316,7 +1327,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "axl" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -1325,7 +1336,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "axI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -1348,7 +1359,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "axR" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1356,7 +1367,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "axW" = ( /obj/effect/floor_decal/industrial/warning/color/corner{ dir = 8 @@ -1379,7 +1390,7 @@ pixel_y = 10 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_1) +/area/medical/Psych_Room_1) "ayz" = ( /obj/item/modular_computer/console/preset/security{ dir = 1 @@ -1387,11 +1398,11 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "ayA" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "ayM" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -1399,18 +1410,13 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "ayO" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "ayQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -1418,8 +1424,9 @@ /obj/effect/floor_decal/corner/paleblue/border{ dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "azb" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -1431,7 +1438,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "azv" = ( /obj/structure/bed/chair/wood{ dir = 8 @@ -1441,7 +1448,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "azB" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ frequency = 1381; @@ -1456,7 +1463,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "azR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -1466,7 +1473,17 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) +"azX" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/crew_quarters/Chomp_Stage) +"azY" = ( +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Engineering_AftStarChamber3) "aAb" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -1479,7 +1496,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "aAd" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -1487,7 +1504,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "aAf" = ( /obj/machinery/computer/security/telescreen/entertainment{ name = "1N-entertainment monitor"; @@ -1495,7 +1512,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "aAk" = ( /obj/structure/closet/crate/radiation, /obj/item/clothing/glasses/meson, @@ -1505,13 +1522,13 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "aAn" = ( /obj/effect/floor_decal/spline/fancy{ dir = 9 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "aAy" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -1528,7 +1545,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "aAA" = ( /obj/structure/sign/securearea{ icon_state = "radiation_small"; @@ -1536,17 +1553,17 @@ desc = "A warning sign which reads 'RADIATION SHIELDING IN THIS AREA'."; pixel_x = -32 }, -/obj/machinery/light{ - dir = 8; - layer = 3; - name = "1W-light fixture" - }, /obj/effect/floor_decal/spline/plain, /obj/effect/floor_decal/spline/plain{ dir = 1 }, +/obj/machinery/light/spot{ + dir = 8; + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aAD" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -1565,13 +1582,13 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "aAH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "aAM" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -1586,7 +1603,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "aAO" = ( /obj/structure/sink{ pixel_y = 14 @@ -1595,7 +1612,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "aAV" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/structure/sign/poster/custom{ @@ -1603,13 +1620,13 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "aBe" = ( /obj/structure/table/woodentable, /obj/item/deck/tarot, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "aBg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1622,7 +1639,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "aBn" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -1631,7 +1648,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "aBs" = ( /obj/structure/bed/chair/wood{ dir = 8 @@ -1644,24 +1661,19 @@ /obj/effect/landmark/start/visitor, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "aBx" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "aBA" = ( -/obj/machinery/light{ - name = "1S-light fixture" +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/obj/machinery/vending/weeb, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/scenery/fakefireaxe{ - pixel_y = -29 - }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/obj/structure/table/woodentable, +/obj/item/mail/junkmail, +/turf/simulated/floor/carpet/brown, +/area/crew_quarters/Chomp_Stage) "aBD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1670,12 +1682,12 @@ dir = 6 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "aBW" = ( /obj/machinery/vending/wardrobe/medidrobe, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "aCi" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -1684,14 +1696,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "aCk" = ( /obj/structure/sign/directions/medical/resleeving{ pixel_y = 9; dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "aCl" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -1703,13 +1715,13 @@ }, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "aCV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "aDn" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -1729,7 +1741,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "aDu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 @@ -1737,7 +1749,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "aDE" = ( /obj/machinery/light{ dir = 8; @@ -1750,7 +1762,7 @@ name = "1W-station intercom (Medbay)" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "aDK" = ( /obj/machinery/shower{ pixel_y = 16 @@ -1764,11 +1776,11 @@ /obj/machinery/door/window/southright, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "aDY" = ( /obj/effect/catwalk_plated/white, /turf/simulated/floor/glass/turfpack/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "aEk" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/cap/visible{ @@ -1776,7 +1788,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "aEt" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -1793,7 +1805,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "aEy" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -1803,7 +1815,7 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "aEE" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -1814,7 +1826,7 @@ dir = 4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "aES" = ( /obj/structure/cable/green{ d1 = 1; @@ -1833,27 +1845,27 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "aEV" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) +/area/maintenance/Deck3_Dorms_StarChamber2) "aFa" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "aFg" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/yellow, /obj/item/geiger/wall/north, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "aFn" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "aFq" = ( /turf/simulated/floor/greengrid/nitrogen, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "aFB" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 1 @@ -1870,7 +1882,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "aFT" = ( /obj/machinery/iv_drip, /obj/machinery/alarm{ @@ -1883,7 +1895,7 @@ network = list("Medical") }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Medical/Patient_2) +/area/medical/Patient_2) "aGg" = ( /obj/effect/floor_decal/corner/purple/full{ dir = 4 @@ -1891,22 +1903,24 @@ /obj/effect/floor_decal/corner/orange, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/reinforced/phoron, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "aGi" = ( /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "aGs" = ( -/obj/machinery/light{ - dir = 1 +/obj/machinery/light/spot{ + dir = 1; + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." }, -/turf/simulated/floor/glass, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Lounge) "aGu" = ( /obj/machinery/atmospherics/binary/pump, /obj/effect/engine_setup/pump_max, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "aGH" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ @@ -1916,7 +1930,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "aHf" = ( /obj/structure/bed/chair/comfy/blue{ dir = 4 @@ -1925,7 +1939,7 @@ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "aHq" = ( /obj/structure/cable/green{ d1 = 2; @@ -1952,17 +1966,17 @@ }, /obj/effect/floor_decal/corner/white/bordercorner2, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "aHx" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "aHI" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "aHW" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -1976,7 +1990,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "aId" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 1 @@ -1987,7 +2001,7 @@ "aIn" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "aIG" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/light{ @@ -1995,7 +2009,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "aIP" = ( /obj/structure/table/standard, /obj/structure/bedsheetbin, @@ -2006,7 +2020,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "aIQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -2032,7 +2046,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "aIV" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -2041,7 +2055,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "aJq" = ( /obj/machinery/atmospherics/valve/shutoff{ name = "Engineering automatic shutoff valve"; @@ -2049,7 +2063,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "aJv" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -2058,7 +2072,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "aJJ" = ( /obj/random/trash, /obj/machinery/camera/network/security{ @@ -2067,8 +2081,13 @@ network = list("Commons") }, /obj/effect/catwalk_plated/techmaint, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "aJK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -2077,19 +2096,19 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "aJL" = ( /obj/structure/table/woodentable, /obj/item/flashlight/lamp/green{ on = 0 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_1) +/area/medical/Psych_Room_1) "aJY" = ( /obj/random/trash_pile, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "aKj" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -2107,7 +2126,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "aKl" = ( /obj/structure/sign/directions/medical/morgue{ pixel_y = -9 @@ -2118,10 +2137,10 @@ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "aKm" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "aKr" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -2133,7 +2152,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "aKL" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -2144,7 +2163,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "aLd" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 @@ -2152,7 +2171,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "aLj" = ( /obj/effect/catwalk_plated/techfloor, /obj/machinery/power/terminal{ @@ -2163,7 +2182,7 @@ icon_state = "0-4" }, /turf/simulated/floor/greengrid, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "aLC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloorwhite{ @@ -2173,7 +2192,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "aLM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 @@ -2181,15 +2200,15 @@ /obj/effect/catwalk_plated/techmaint, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "aLY" = ( /obj/structure/flora/log1, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "aMh" = ( /obj/machinery/floor_light/prebuilt, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "aMl" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -2209,17 +2228,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "aMs" = ( -/turf/simulated/floor/glass, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/shuttle/blue{ + pixel_x = -1; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/Chomp_Dinner_1) "aMv" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "aMw" = ( /obj/structure/bed/chair/oldsofa{ dir = 8 @@ -2229,7 +2253,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "aMG" = ( /obj/structure/table/marble, /obj/machinery/door/blast/shutters{ @@ -2238,11 +2262,11 @@ name = "Botanist kitchen shutters" }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "aMV" = ( /obj/structure/sign/warning/airlock, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "aMZ" = ( /obj/item/modular_computer/console/preset/engineering{ dir = 1 @@ -2253,7 +2277,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "aNe" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -2265,7 +2289,7 @@ name = "Dorm six" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "aNp" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -2283,11 +2307,11 @@ icon_state = "1-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "aNr" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "aNx" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/effect/floor_decal/techfloor{ @@ -2296,7 +2320,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "aNH" = ( /obj/effect/floor_decal/industrial/warning/color/red, /obj/effect/floor_decal/industrial/warning/color{ @@ -2304,14 +2328,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"aNP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) "aNZ" = ( /obj/effect/landmark{ name = "lightsout" @@ -2321,7 +2337,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "aOF" = ( /obj/machinery/power/apc{ dir = 4; @@ -2345,21 +2361,21 @@ icon_state = "0-8" }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "aOO" = ( /obj/structure/railing, /obj/structure/railing{ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "aPi" = ( /obj/structure/ladder{ pixel_y = 3 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "aPx" = ( /obj/structure/table/standard, /obj/item/toy/plushie/carp/gold, @@ -2371,18 +2387,18 @@ pixel_y = 27 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "aPD" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "aPF" = ( /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "aPH" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "aQd" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ frequency = 1381; @@ -2393,20 +2409,20 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "aQg" = ( /obj/structure/bed/chair/bay/chair/padded/red/bignest, /obj/item/toy/plushie/teshari/_yw, /obj/item/bedsheet/mimedouble, /turf/simulated/floor/wood/alt/broken, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "aQw" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "aRa" = ( /obj/structure/table/woodentable, /obj/structure/cable/green{ @@ -2416,7 +2432,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "aRl" = ( /obj/structure/railing/grey, /obj/structure/railing/grey{ @@ -2436,7 +2452,7 @@ dir = 10 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "aRR" = ( /obj/effect/catwalk_plated, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2448,7 +2464,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "aSu" = ( /obj/structure/cable/green{ d1 = 4; @@ -2468,7 +2484,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "aSE" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -2480,7 +2496,7 @@ req_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "aSR" = ( /obj/structure/cable/green{ d1 = 1; @@ -2498,7 +2514,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "aTo" = ( /obj/structure/bed/chair/sofa/left/yellow, /obj/machinery/alarm{ @@ -2506,7 +2522,7 @@ pixel_x = 22 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "aTy" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -2517,7 +2533,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "aTJ" = ( /obj/machinery/power/apc{ dir = 1; @@ -2530,7 +2546,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "aTK" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -2542,11 +2558,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "aUp" = ( /obj/structure/girder, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "aUt" = ( /obj/structure/closet/emergsuit_wall{ pixel_y = 27; @@ -2560,7 +2576,7 @@ dir = 8 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "aUR" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -2579,7 +2595,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "aVe" = ( /obj/structure/cable/green{ d1 = 4; @@ -2608,17 +2624,17 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "aVj" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "aVm" = ( /obj/structure/loot_pile/surface/medicine_cabinet/fresh{ pixel_y = 25 }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "aVq" = ( /obj/structure/cable/green{ d1 = 1; @@ -2634,7 +2650,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "aVu" = ( /obj/effect/floor_decal/industrial/warning/color, /obj/machinery/atmospherics/pipe/simple/visible/black{ @@ -2661,15 +2677,24 @@ pixel_x = -22; name = "1W-station intercom (Medbay)" }, -/obj/machinery/disposal/wall{ - dir = 1; - pixel_y = -34; - name = "1S-inset disposal unit" +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + pixel_x = 11; + pixel_y = -27; + name = "S-light switch"; + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" }, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "aVB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -2685,7 +2710,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "aVI" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -2694,7 +2719,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "aVT" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -2705,7 +2730,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "aWg" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/effect/floor_decal/borderfloorwhite{ @@ -2715,17 +2740,17 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "aWj" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "aWm" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "aWs" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -2739,13 +2764,13 @@ name = "Psychiatrist" }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "aWE" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "aWW" = ( /obj/structure/cable/green{ d1 = 1; @@ -2758,7 +2783,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "aXd" = ( /obj/machinery/power/apc/hyper{ pixel_y = -24; @@ -2774,21 +2799,21 @@ /obj/structure/cable/yellow, /obj/random/trash, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "aXg" = ( /obj/structure/sign/hydro{ layer = 3.5 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "aXn" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "aXo" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "aXz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2796,7 +2821,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "aXC" = ( /obj/structure/girder/reinforced, /obj/machinery/alarm{ @@ -2804,23 +2829,23 @@ pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "aXN" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "aYx" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "aYC" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "aYI" = ( /obj/structure/table/woodentable, /obj/item/paper_bin{ @@ -2845,10 +2870,10 @@ pixel_x = -22 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "aYM" = ( /turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "aYS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -2858,7 +2883,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "aYU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -2872,19 +2897,19 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "aYW" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "aZg" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "aZK" = ( /obj/structure/cable/green{ d1 = 2; @@ -2898,7 +2923,7 @@ dir = 6 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "aZQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -2915,7 +2940,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "bao" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -2943,13 +2968,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "baP" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "baT" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -2972,7 +2997,7 @@ name = "Reactor Blast Door" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "bbq" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -2985,13 +3010,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "bbC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "bbE" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 @@ -2999,18 +3024,13 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "bbU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "bbV" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -3041,7 +3061,7 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "bcg" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -3055,14 +3075,14 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "bcj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/computer/rdconsole/service, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "bdd" = ( /obj/structure/table/standard, /obj/item/reagent_containers/food/drinks/cans/waterbottle{ @@ -3081,7 +3101,7 @@ dir = 4 }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "bde" = ( /obj/structure/railing/grey{ dir = 1 @@ -3095,26 +3115,20 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "bdz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) -"bdC" = ( -/obj/item/stool/baystool/padded{ - dir = 4 - }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "bdG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "bdL" = ( /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for the engine radiator viewport shutters."; @@ -3125,7 +3139,13 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) +"bdX" = ( +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "beh" = ( /obj/structure/table/bench/marble, /obj/effect/floor_decal/spline/plain{ @@ -3135,25 +3155,25 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "bep" = ( /obj/structure/bed/double/padded, /obj/item/bedsheet/rddouble, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "beu" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green, /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "beO" = ( /obj/random/trash_pile, /obj/random/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) +/area/maintenance/Deck3_Dorms_StarChamber2) "beQ" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 4 @@ -3167,12 +3187,12 @@ /area/space) "beU" = ( /turf/simulated/floor/wood/alt/broken, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "bfC" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "bfP" = ( /obj/machinery/computer/power_monitor{ dir = 1 @@ -3181,7 +3201,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "bga" = ( /obj/structure/table/standard, /obj/machinery/light{ @@ -3189,17 +3209,17 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "bge" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "bgm" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "bgB" = ( /obj/structure/table/wooden_reinforced, /obj/machinery/computer/skills{ @@ -3208,12 +3228,12 @@ pixel_y = 3 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "bgC" = ( /obj/structure/table/standard, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "bgE" = ( /obj/machinery/atmospherics/binary/passive_gate{ regulate_mode = 0; @@ -3222,7 +3242,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "bgZ" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -3245,17 +3265,17 @@ }, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "bhn" = ( /obj/structure/bed/double/padded, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "bhy" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "bhE" = ( /obj/machinery/power/apc{ dir = 8; @@ -3267,7 +3287,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "bhN" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -3285,15 +3305,16 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "bhP" = ( /obj/structure/filingcabinet/chestdrawer{ desc = "A large drawer filled with autopsy reports."; name = "Autopsy Reports" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "bhT" = ( /obj/structure/railing{ dir = 1 @@ -3302,7 +3323,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "bip" = ( /obj/item/radio/intercom{ name = "1S-Station Intercom (General)"; @@ -3311,12 +3332,12 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "biB" = ( /obj/random/trash, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "biI" = ( /obj/machinery/pointdefense{ id_tag = "PD Secondary" @@ -3328,7 +3349,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "biM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -3341,7 +3362,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "biX" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -3363,23 +3384,23 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "bja" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "bjg" = ( /turf/simulated/floor/reinforced/nitrogen{ nitrogen = 82.1472 }, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "bjk" = ( /obj/machinery/power/tesla_coil/collector, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "bjy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -3389,21 +3410,13 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "bjz" = ( -/obj/structure/flora/pottedplant/bamboo{ - name = "Monolo"; - pixel_y = 10 - }, -/obj/structure/table/bench/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "bjF" = ( /obj/machinery/alarm{ dir = 8; @@ -3411,18 +3424,18 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "bjH" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "bjX" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "bkc" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 4 @@ -3431,14 +3444,14 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "bke" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/misc, /obj/random/maintenance/misc, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "bkj" = ( /obj/structure/cable/green{ d1 = 1; @@ -3454,36 +3467,23 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) -"bkm" = ( -/obj/machinery/vending/wallmed1{ - pixel_y = 26; - name = "1N-NanoMed" - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/maintenance/Deck3_Medical_AftCorridor1) "bks" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "bkC" = ( -/obj/machinery/vending/snack, -/obj/machinery/light{ - name = "1S-light fixture" +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) -"bkJ" = ( -/obj/machinery/computer/timeclock/premade/north, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 2; + name = "privacy curtain"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/Chomp_Stage) "bkO" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -3494,7 +3494,7 @@ dir = 5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "bkP" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -3514,26 +3514,26 @@ default_material = "lead" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "bkX" = ( /obj/effect/landmark{ name = "JoinLateCyborg" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Cyborg_Station) +/area/bridge/Cyborg_Station) "blk" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "blt" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "blw" = ( /turf/simulated/floor/airless, /area/space) @@ -3542,7 +3542,7 @@ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "blM" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 4 @@ -3551,13 +3551,13 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "blQ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "blV" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -3576,7 +3576,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "bmc" = ( /obj/machinery/shower{ pixel_y = 16 @@ -3590,7 +3590,7 @@ /obj/machinery/door/window/southright, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "bmj" = ( /obj/structure/cable/green{ d1 = 4; @@ -3610,10 +3610,16 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "bmm" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) +"bmI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "bmK" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -3621,19 +3627,23 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "bng" = ( /obj/machinery/status_display, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "bnk" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) +"bnp" = ( +/obj/machinery/vending/cola/soft, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "bnv" = ( /obj/structure/sign/warning/airlock, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "bnD" = ( /obj/structure/cable/green{ d1 = 4; @@ -3656,11 +3666,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "bnF" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "bnW" = ( /obj/structure/table/rack/steel, /obj/random/maintenance/engineering, @@ -3668,7 +3678,7 @@ /obj/random/maintenance/cargo, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "bop" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/button/remote/airlock{ @@ -3679,10 +3689,10 @@ specialfunctions = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "boE" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "boI" = ( /obj/structure/cable/green{ d1 = 2; @@ -3709,7 +3719,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "boX" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 @@ -3722,7 +3732,7 @@ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "bpd" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -3731,10 +3741,10 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "bpf" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Patient_3) +/area/medical/Patient_3) "bpy" = ( /obj/structure/cable/green{ d1 = 4; @@ -3753,29 +3763,29 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "bpW" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "bqs" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "bqB" = ( /obj/structure/table/reinforced, /obj/item/storage/secure/briefcase{ pixel_y = 6 }, /obj/item/storage/secure/briefcase, -/turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/turf/simulated/floor/tiled/dark, +/area/bridge/Control_Atrium) "bqJ" = ( /obj/structure/flora/pottedplant/flower{ name = "Gretel" }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "bqN" = ( /obj/structure/cable/white{ d1 = 4; @@ -3783,7 +3793,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "bqS" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -3803,7 +3813,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "bre" = ( /obj/structure/cable/green{ d1 = 1; @@ -3811,31 +3821,25 @@ icon_state = "1-8" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "brm" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 }, -/obj/machinery/light_switch{ - dir = 8; - name = "E-light switch"; - pixel_x = 27; - pixel_y = -12 +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 2; + name = "privacy curtain"; + opacity = 0 }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/Chomp_Stage) "brq" = ( /obj/structure/table/rack/steel, /obj/random/junk, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "brI" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/power/smes/buildable{ @@ -3850,12 +3854,12 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Dorms_Substation) +/area/maintenance/Dorms_Substation) "brZ" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "bsl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -3864,11 +3868,11 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "bsy" = ( /obj/structure/frame/computer, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "bsD" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -3890,7 +3894,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "btd" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 6 @@ -3899,7 +3903,7 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "btt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -3914,18 +3918,21 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "btA" = ( /obj/effect/floor_decal/industrial/arrows{ dir = 1 }, /obj/effect/floor_decal/industrial/arrows, -/obj/machinery/door/airlock/angled_bay/external/glass/red, +/obj/machinery/door/airlock/angled_bay/hatch/engineering{ + name = "Solars access"; + req_access = null + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "btH" = ( /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "btY" = ( /obj/structure/cable/green{ d1 = 1; @@ -3935,11 +3942,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "buv" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "buC" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -3959,7 +3966,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "bvr" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -3967,26 +3974,26 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "bvz" = ( /obj/structure/bed/chair/sofa/green{ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "bvA" = ( /obj/structure/reagent_dispensers/water_cooler/full{ dir = 4; pixel_x = -9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "bvB" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "bvI" = ( /obj/structure/sign/levels/engineering/solars{ dir = 1; @@ -4014,7 +4021,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "bwg" = ( /obj/item/storage/toolbox/electrical{ pixel_x = -2; @@ -4033,7 +4040,7 @@ pixel_x = 3 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "bwo" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black, /turf/simulated/floor/reinforced/airless, @@ -4054,7 +4061,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "bxf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -4068,20 +4075,20 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "bxg" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "bxE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "bxL" = ( /obj/structure/table/marble, /obj/machinery/microwave{ @@ -4089,7 +4096,7 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "bya" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 @@ -4103,7 +4110,7 @@ dir = 4 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "byb" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -4117,7 +4124,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "byw" = ( /obj/structure/bed/chair/sofa/left/blue, /obj/machinery/power/apc{ @@ -4142,7 +4149,7 @@ dir = 4 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "byz" = ( /obj/structure/cable/green{ d1 = 1; @@ -4152,10 +4159,10 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "byC" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "bzb" = ( /obj/machinery/newscaster{ name = "1E-newscaster"; @@ -4171,14 +4178,14 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/beige/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "bzm" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Atmos Substation Bypass" }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "bzr" = ( /obj/structure/cable/green{ d1 = 1; @@ -4195,8 +4202,13 @@ dir = 4 }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "bzs" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -4223,27 +4235,27 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "bzD" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "bzQ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Dorms_Substation) +/area/maintenance/Dorms_Substation) "bzX" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "bAf" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/effect/floor_decal/corner/paleblue/diagonal{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "bAj" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -4252,7 +4264,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "bAv" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -4263,7 +4275,7 @@ pixel_y = 28 }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "bAH" = ( /obj/structure/table/standard, /obj/machinery/alarm{ @@ -4271,11 +4283,11 @@ pixel_x = -22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "bAI" = ( /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "bAX" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -4290,7 +4302,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "bBg" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -4299,7 +4311,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "bBi" = ( /obj/structure/sink{ dir = 1; @@ -4311,11 +4323,11 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "bBk" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "bBp" = ( /obj/structure/cable/green{ d1 = 1; @@ -4326,11 +4338,11 @@ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_1) +/area/medical/Patient_1) "bBZ" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "bCz" = ( /obj/structure/cable/green{ d1 = 2; @@ -4344,32 +4356,32 @@ dir = 6 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "bCC" = ( /obj/random/trash, /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortCorridor1) +/area/maintenance/Deck3_Medical_AftPortCorridor1) "bCG" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "bCO" = ( /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "bCP" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "bCU" = ( /obj/structure/morgue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "bDa" = ( /obj/structure/cable/green{ d1 = 1; @@ -4378,7 +4390,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) +/area/maintenance/Deck3_Dorms_StarChamber2) "bDd" = ( /obj/structure/cable/cyan, /obj/structure/cable/white{ @@ -4412,7 +4424,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "bDs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorwhite{ @@ -4422,7 +4434,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "bDE" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -4431,10 +4443,10 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortChamber1) +/area/maintenance/Deck3_Dorms_PortChamber1) "bDN" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "bDS" = ( /obj/structure/table/steel, /obj/machinery/alarm{ @@ -4450,10 +4462,10 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "bDU" = ( /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "bEC" = ( /obj/effect/floor_decal/corner/red{ dir = 1 @@ -4466,11 +4478,11 @@ network = list("engineering") }, /turf/simulated/floor/reinforced/n20, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "bEQ" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "bET" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -4484,7 +4496,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "bEY" = ( /obj/structure/railing{ dir = 8 @@ -4496,13 +4508,13 @@ }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "bFh" = ( /obj/machinery/washing_machine{ pixel_y = 15 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "bFo" = ( /obj/structure/cable/green{ d1 = 1; @@ -4517,7 +4529,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "bFE" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 @@ -4537,7 +4549,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "bFI" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -4545,7 +4557,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "bFR" = ( /obj/effect/floor_decal/industrial/warning/color, /obj/machinery/atmospherics/pipe/manifold/visible/black{ @@ -4561,26 +4573,13 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/command, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "bGG" = ( -/obj/structure/table/woodentable, -/obj/item/stack/material/cardboard{ - amount = 25 - }, -/obj/item/tape_roll{ - pixel_x = 3; - pixel_y = -5 - }, -/obj/item/packageWrap{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/packageWrap{ - pixel_x = -4; - pixel_y = 7 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Stage) "bGL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -4588,7 +4587,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "bGQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -4599,7 +4598,7 @@ /obj/machinery/meter, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "bGT" = ( /obj/machinery/power/port_gen/pacman, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -4609,7 +4608,7 @@ }, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Dorms_Substation) +/area/maintenance/Dorms_Substation) "bHh" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -4621,7 +4620,7 @@ dir = 10 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "bHv" = ( /obj/structure/ladder{ pixel_y = 3 @@ -4632,7 +4631,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "bHz" = ( /obj/structure/ladder{ pixel_y = 3 @@ -4643,24 +4642,24 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "bHJ" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "bHU" = ( /obj/machinery/atmospherics/valve/digital/open{ dir = 4 }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "bHV" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "bII" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -4677,11 +4676,11 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "bIP" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "bJj" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -4695,7 +4694,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "bJx" = ( /obj/structure/cable/green{ d1 = 2; @@ -4720,17 +4719,17 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "bJE" = ( /obj/effect/graffitispawner, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "bJK" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "bJP" = ( /obj/structure/cable{ d1 = 1; @@ -4741,7 +4740,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "bJS" = ( /obj/structure/transit_tube{ icon_state = "S-NW" @@ -4756,7 +4755,7 @@ }, /obj/effect/catwalk_plated/techfloor, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Substation) +/area/engineering/Engine1_Substation) "bKa" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -4768,7 +4767,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "bKp" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/steeldecal/steel_decals10{ @@ -4778,7 +4777,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "bKx" = ( /obj/structure/cable/green{ d1 = 4; @@ -4801,14 +4800,14 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "bKL" = ( /obj/structure/table/standard, /obj/random/coin/sometimes, /obj/random/maintenance/cargo, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "bKQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -4829,7 +4828,7 @@ dir = 1 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "bLc" = ( /obj/structure/window/reinforced/tinted/frosted{ dir = 8 @@ -4839,7 +4838,7 @@ }, /obj/item/bikehorn/rubberducky, /turf/simulated/floor/water/deep/pool, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "bLk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -4853,8 +4852,12 @@ /obj/effect/floor_decal/corner/beige/border{ dir = 8 }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "bLq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4865,7 +4868,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "bLA" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -4884,11 +4887,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "bLC" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "bLD" = ( /obj/structure/cable/green{ d1 = 2; @@ -4908,17 +4911,17 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "bLU" = ( /obj/effect/floor_decal/spline/fancy{ dir = 8 }, /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "bLY" = ( /obj/item/stool/padded, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "bMd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -4941,7 +4944,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "bMs" = ( /obj/machinery/status_display{ layer = 4; @@ -4953,7 +4956,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "bMt" = ( /obj/random/medical/pillbottle, /obj/random/medical/pillbottle, @@ -5000,14 +5003,16 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "bNg" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, +/obj/random/trash_pile, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "bNs" = ( /obj/structure/cable/pink{ d1 = 1; @@ -5025,7 +5030,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "bNu" = ( /obj/random/cargopod, /obj/machinery/camera/network/security{ @@ -5034,11 +5039,11 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "bNG" = ( /obj/structure/bed/chair/comfy/orange, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "bOl" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -5051,7 +5056,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "bOm" = ( /obj/structure/cable/green{ d1 = 1; @@ -5068,7 +5073,7 @@ dir = 5 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "bOD" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -5077,14 +5082,14 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "bOE" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "bOR" = ( /obj/effect/catwalk_plated/techfloor, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "bOS" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/firealarm{ @@ -5100,7 +5105,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "bPf" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloorwhite{ @@ -5113,7 +5118,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "bPl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -5127,7 +5132,7 @@ icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "bPo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5136,23 +5141,19 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) -"bPD" = ( -/obj/structure/sign/painting/public, -/turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/crew_quarters/Chomp_Dinner_2) "bQc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "bQC" = ( /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "bQD" = ( /obj/machinery/power/tracker, /obj/structure/cable/yellow{ @@ -5165,7 +5166,7 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "bQF" = ( /obj/structure/railing/grey{ color = "yellow" @@ -5176,7 +5177,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "bQP" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -5194,15 +5195,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "bQV" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, /obj/effect/wingrille_spawn/reinforced/polarized{ - id = "sc-WTkitchen" + id = "sc-WTstage" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/crew_quarters/Chomp_Stage) "bQX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -5211,7 +5212,7 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/command, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "bRj" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 @@ -5219,7 +5220,7 @@ /turf/simulated/floor/boxing{ name = "yoga mat" }, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "bRn" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 5 @@ -5229,7 +5230,7 @@ pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "bRr" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -5237,12 +5238,12 @@ network = list("Bridge","Science") }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "bRu" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "bRF" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -5251,7 +5252,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "bRU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -5259,18 +5260,18 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "bRW" = ( /obj/structure/table/marble, /obj/machinery/microwave{ pixel_y = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "bSi" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "bSn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -5280,14 +5281,14 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1) +/area/maintenance/Deck3_Dorms_ForCorridor1) "bSv" = ( /obj/machinery/atmospherics/valve/digital/open{ name = "Mixed Air Inlet Valve" }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "bSQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -5297,7 +5298,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "bSR" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -5305,7 +5306,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "bTk" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 6 @@ -5314,15 +5315,12 @@ /turf/simulated/floor/reinforced/airless, /area/space) "bTy" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 +/obj/structure/bed/chair/backed_grey{ + color = "grey"; + dir = 1 }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/turf/simulated/floor/carpet/brown, +/area/crew_quarters/Chomp_Stage) "bTD" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -5347,13 +5345,13 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "bTG" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "bTH" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -5365,18 +5363,18 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "bTP" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "bTW" = ( /turf/simulated/open, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "bUc" = ( /obj/structure/bed/chair/office/light, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "bUd" = ( /obj/structure/table/rack, /obj/random/cash, @@ -5384,7 +5382,7 @@ /obj/random/tech_supply/component, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "bUe" = ( /obj/structure/bed/chair/comfy/green{ dir = 1 @@ -5397,7 +5395,7 @@ dir = 6 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "bUf" = ( /obj/effect/catwalk_plated/white, /obj/machinery/light_switch{ @@ -5413,7 +5411,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "bUI" = ( /obj/machinery/shower{ pixel_y = 16 @@ -5427,7 +5425,12 @@ /obj/machinery/door/window/southright, /obj/structure/curtain/open/shower/medical, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) +"bUO" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Medical_ForChamber2) "bUQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -5449,18 +5452,18 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "bUZ" = ( /obj/structure/table/reinforced, /obj/item/folder/red, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "bVh" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "bVL" = ( /obj/structure/cable/green{ d1 = 4; @@ -5477,17 +5480,17 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "bVQ" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "bWm" = ( /obj/structure/bed/chair/sofa/corner/sif_ora, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "bWy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -5509,7 +5512,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "bWJ" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -5518,13 +5521,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "bWV" = ( /obj/structure/loot_pile/maint/technical, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "bXe" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -5535,7 +5538,7 @@ dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "bXz" = ( /obj/structure/cable/green{ d1 = 1; @@ -5551,27 +5554,16 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "bXC" = ( -/obj/machinery/appliance/cooker/fryer, -/obj/machinery/ai_status_display{ - name = "1S-AI display"; - pixel_y = -32 - }, -/obj/machinery/camera/network/security{ - dir = 1; - c_tag = "D3-Dmc-Chomp Kitchen1"; - network = list("Domicile") - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/hatch/blue, +/turf/simulated/floor/plating, +/area/engineering/Central_Engineering_Post) "bXF" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortChamber1) +/area/maintenance/Deck3_Dorms_PortChamber1) "bXW" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -5587,23 +5579,23 @@ id = "sc-WTheadmeeting" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "bYh" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "bYq" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "bYw" = ( /obj/random/junk, /obj/structure/table/standard, /obj/random/drinkbottle, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "bYz" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "bYA" = ( /obj/effect/floor_decal/industrial/warning/color, /obj/structure/cable/white{ @@ -5620,7 +5612,7 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "bYR" = ( /obj/structure/cable/green{ d1 = 1; @@ -5638,13 +5630,13 @@ }, /obj/effect/floor_decal/corner/white/bordercorner2, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_1) +/area/medical/Patient_1) "bYS" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "bYU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -5661,7 +5653,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "bZn" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -5681,7 +5673,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "bZp" = ( /obj/structure/undies_wardrobe, /obj/item/reagent_containers/food/drinks/cans/waterbottle{ @@ -5693,7 +5685,7 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "bZu" = ( /obj/structure/cable/green{ d1 = 1; @@ -5703,30 +5695,30 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "bZA" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "bZQ" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "bZY" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "cai" = ( /obj/machinery/vending/snack, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "cak" = ( /obj/machinery/ai_status_display{ name = "1N-AI display"; @@ -5737,23 +5729,23 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "caz" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "caL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "caS" = ( /obj/structure/bed/chair/sofa/brown{ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "cbd" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -5779,7 +5771,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "cbe" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -5801,7 +5793,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "cbk" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 5 @@ -5812,15 +5804,15 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "cbo" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "cbr" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "cbL" = ( /obj/machinery/power/apc{ dir = 1; @@ -5832,7 +5824,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "cbX" = ( /obj/machinery/power/apc{ dir = 8; @@ -5841,7 +5833,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "ccn" = ( /obj/structure/cable/green{ d1 = 1; @@ -5853,7 +5845,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "ccv" = ( /obj/effect/catwalk_plated/white, /turf/simulated/floor/plating/turfpack/airless, @@ -5869,14 +5861,14 @@ name = "Dorm five" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "ccI" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "ccR" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 1 @@ -5885,7 +5877,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "ccS" = ( /obj/structure/flora/pottedplant/smelly{ pixel_y = 9; @@ -5899,7 +5891,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "cdc" = ( /obj/machinery/door/window/brigdoor/southright{ req_access = list(19) @@ -5912,7 +5904,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "cdq" = ( /obj/structure/cable/green{ d1 = 1; @@ -5927,30 +5919,30 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "cds" = ( /obj/item/bedsheet/rd, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "cej" = ( /obj/random/trash_pile, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "cem" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "ceo" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "cew" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -5961,11 +5953,11 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "ceK" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "cfe" = ( /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/floor_decal/industrial/outline/blue, @@ -5976,7 +5968,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "cfh" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor/corner{ @@ -5987,7 +5979,7 @@ dir = 9 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "cfp" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 4 @@ -6022,33 +6014,33 @@ id = "sc-WTcaptainbridge" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "cgc" = ( /obj/structure/sign/department/medbay{ layer = 3.5; desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "cge" = ( /obj/structure/dogbed{ name = "Lisa's bed" }, /mob/living/simple_mob/animal/passive/dog/corgi/Lisa, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "cgg" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 1 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "cgr" = ( /obj/effect/floor_decal/spline/fancy{ dir = 6 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "cgt" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -6056,7 +6048,7 @@ id = "sc-WTDorm5" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "cgG" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/disposalpipe/segment, @@ -6067,11 +6059,11 @@ }, /obj/random/trash, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "cgU" = ( /obj/structure/bed/chair/comfy/purp, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "cho" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1; @@ -6093,7 +6085,7 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "chr" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -6103,12 +6095,12 @@ }, /obj/random/trash, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "cih" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "cik" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -6117,11 +6109,11 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "cim" = ( /obj/machinery/pipedispenser/disposal, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "ciB" = ( /obj/effect/catwalk_plated, /obj/structure/cable/green{ @@ -6144,10 +6136,10 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "ciH" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "ciJ" = ( /obj/item/storage/belt/utility/full{ pixel_y = -6 @@ -6161,7 +6153,7 @@ pixel_x = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "ciK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -6170,7 +6162,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "ciS" = ( /obj/structure/cable/green{ d1 = 1; @@ -6186,7 +6178,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "cjg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -6204,13 +6196,13 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "cji" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "cju" = ( /obj/machinery/computer/diseasesplicer, /obj/machinery/camera/network/research{ @@ -6226,7 +6218,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "cjx" = ( /obj/machinery/vending/wardrobe/detdrobe, /obj/machinery/ai_status_display{ @@ -6234,10 +6226,10 @@ pixel_y = -32 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "cjD" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "cke" = ( /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/borderfloor/corner2{ @@ -6247,7 +6239,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "ckk" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloorblack{ @@ -6257,10 +6249,10 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "ckl" = ( /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "cko" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -6296,7 +6288,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "ckt" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -6331,7 +6323,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "cku" = ( /obj/structure/cable/green{ d1 = 1; @@ -6347,7 +6339,7 @@ dir = 9 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "ckO" = ( /obj/machinery/power/apc{ dir = 4; @@ -6359,27 +6351,27 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "ckU" = ( /obj/structure/railing, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "ckV" = ( /obj/random/trash, /obj/random/junk, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) +/area/maintenance/Deck3_Dorms_StarChamber2) "clf" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "clj" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "clk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -6391,7 +6383,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "clr" = ( /obj/machinery/light{ dir = 8; @@ -6401,7 +6393,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "cly" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /obj/effect/catwalk_plated/techmaint, @@ -6411,10 +6403,10 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "clB" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "clM" = ( /obj/machinery/computer/security/telescreen/entertainment{ name = "1N-entertainment monitor"; @@ -6422,7 +6414,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "clN" = ( /obj/structure/bed/chair/comfy/blue{ dir = 8 @@ -6431,7 +6423,7 @@ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "cme" = ( /obj/machinery/computer/power_monitor{ dir = 4 @@ -6446,7 +6438,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "cmm" = ( /obj/machinery/light{ dir = 8; @@ -6455,11 +6447,11 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "cmv" = ( /obj/structure/table/glass, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "cmw" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -6481,7 +6473,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "cni" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -6506,19 +6498,19 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "cnv" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/binary/circulator{ anchored = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "cny" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "cnT" = ( /obj/structure/table/sifwoodentable, /obj/item/flashlight/lamp{ @@ -6526,7 +6518,7 @@ on = 0 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "cnW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -6535,14 +6527,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "coA" = ( /obj/machinery/power/terminal{ dir = 8 }, /obj/structure/cable/yellow, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "coG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -6557,7 +6549,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "cpa" = ( /obj/structure/cable/green{ d1 = 1; @@ -6572,11 +6564,11 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "cpd" = ( /obj/structure/closet/secure_closet/engineering_chief_wardrobe, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "cpl" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -6590,7 +6582,7 @@ dir = 8 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "cpp" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 1 @@ -6601,7 +6593,7 @@ "cps" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "cpu" = ( /obj/structure/cable/green{ d1 = 4; @@ -6616,11 +6608,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "cpE" = ( /obj/structure/sign/warning/airlock, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "cpH" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -6630,11 +6622,23 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "cpV" = ( -/obj/machinery/vending/snix, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Dinner_2) "cpZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -6649,11 +6653,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "cqa" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "cqo" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -6664,10 +6668,10 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "cqp" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "cqt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -6675,43 +6679,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "cqz" = ( /obj/machinery/portable_atmospherics/canister/phoron, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) -"cqT" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) -"crb" = ( -/obj/machinery/vending/dinnerware, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Engine2_Canister_Storage) "crM" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -6726,7 +6699,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "crN" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -6738,7 +6711,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "crP" = ( /obj/structure/undies_wardrobe, /obj/item/reagent_containers/food/drinks/cans/waterbottle{ @@ -6750,7 +6723,7 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "crR" = ( /obj/structure/bed/chair/office/dark, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -6759,7 +6732,7 @@ name = "Command Secretary" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "csb" = ( /obj/structure/cable/green{ d1 = 1; @@ -6775,7 +6748,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "csr" = ( /obj/structure/cable/white{ d1 = 2; @@ -6783,20 +6756,20 @@ icon_state = "2-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "csy" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "csA" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "csD" = ( /obj/machinery/light{ dir = 8; @@ -6810,26 +6783,26 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "ctp" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "ctq" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "ctu" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/power/generator, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "ctH" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber1) +/area/maintenance/Deck3_Medical_ForChamber1) "ctN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -6856,11 +6829,11 @@ }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "ctU" = ( /obj/machinery/message_server, /turf/simulated/floor/bluegrid, -/area/SouthernCrossV2/Bridge/Server_Room) +/area/bridge/Server_Room) "cuw" = ( /obj/structure/cable/green{ d1 = 1; @@ -6878,7 +6851,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "cuz" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -6898,10 +6871,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "cvI" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "cvT" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -6927,7 +6900,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "cvU" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -6936,7 +6909,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "cvZ" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -6944,7 +6917,7 @@ icon_state = "2-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "cwa" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -6967,7 +6940,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "cwb" = ( /obj/machinery/light{ dir = 1; @@ -6977,7 +6950,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "cwd" = ( /obj/structure/railing{ dir = 1 @@ -6986,7 +6959,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "cwi" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -6998,7 +6971,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "cwt" = ( /obj/structure/cable/green{ d1 = 4; @@ -7016,17 +6989,17 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "cwv" = ( /obj/machinery/biogenerator, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "cwT" = ( /obj/structure/table/glass, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "cwY" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -7036,7 +7009,7 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "cxj" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -7049,12 +7022,12 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall) +/area/engineering/Engine1_Access_Hall) "cxo" = ( /obj/structure/table/hardwoodtable, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "cxs" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -7062,7 +7035,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "cxC" = ( /obj/structure/cable/green{ d1 = 4; @@ -7073,7 +7046,7 @@ dir = 5 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "cxF" = ( /obj/structure/cable/green{ d1 = 4; @@ -7088,7 +7061,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "cxG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -7100,12 +7073,12 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "cxR" = ( /obj/effect/floor_decal/corner/blue/full, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/reinforced/oxygen, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "cyd" = ( /obj/structure/table/darkglass, /obj/machinery/computer/security/telescreen/entertainment{ @@ -7117,10 +7090,10 @@ dir = 4 }, /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "cyo" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "cyx" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -7129,7 +7102,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "cyS" = ( /obj/item/radio/intercom{ dir = 4; @@ -7139,8 +7112,13 @@ /obj/effect/floor_decal/techfloor/orange/corner{ dir = 1 }, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -27; + name = "1S-emergency suit storage" + }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "cyT" = ( /obj/machinery/power/apc{ dir = 1; @@ -7152,7 +7130,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "czb" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Engine - Primary Core"; @@ -7170,7 +7148,7 @@ pixel_y = 32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "czh" = ( /obj/item/radio/intercom{ dir = 8; @@ -7180,7 +7158,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "czn" = ( /obj/structure/cable/green{ d1 = 1; @@ -7198,7 +7176,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "czN" = ( /obj/structure/bed/chair/sofa/left/green{ dir = 4 @@ -7212,7 +7190,7 @@ dir = 1 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "czX" = ( /obj/structure/urinal{ dir = 8; @@ -7220,18 +7198,18 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "czZ" = ( /obj/random/cargopod, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "cAb" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "cAd" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -7243,7 +7221,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "cAA" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -7252,7 +7230,7 @@ icon_state = "1-8" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "cBg" = ( /obj/structure/cable/green{ d1 = 4; @@ -7275,7 +7253,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "cBo" = ( /obj/effect/floor_decal/industrial/warning/tile, /obj/machinery/shield_diffuser, @@ -7287,12 +7265,14 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "cBS" = ( -/obj/machinery/appliance/cooker/oven, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Central Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/engineering/Central_Engineering_Post) "cCe" = ( /obj/machinery/ai_status_display{ name = "1N-AI display"; @@ -7319,7 +7299,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "cCt" = ( /obj/machinery/light{ dir = 8; @@ -7335,7 +7315,7 @@ pixel_y = -4 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "cDk" = ( /obj/structure/table/bench/wooden, /obj/item/storage/box/timecap{ @@ -7345,7 +7325,7 @@ dir = 6 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "cDl" = ( /obj/structure/lattice, /obj/machinery/shield_diffuser, @@ -7354,7 +7334,7 @@ "cDq" = ( /obj/machinery/vending/donksoft, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "cDs" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/ai_status_display{ @@ -7363,7 +7343,7 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "cDw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7373,7 +7353,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "cDy" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -7402,7 +7382,7 @@ default_material = "lead" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "cDM" = ( /obj/machinery/alarm{ dir = 4; @@ -7416,7 +7396,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "cDS" = ( /obj/structure/cable/green{ d1 = 2; @@ -7431,7 +7411,7 @@ }, /obj/machinery/ai_slipper, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "cDV" = ( /obj/structure/cable/green{ d1 = 4; @@ -7439,7 +7419,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "cEp" = ( /obj/machinery/alarm{ dir = 4; @@ -7452,7 +7432,7 @@ dir = 1 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "cEu" = ( /obj/machinery/button/remote/airlock{ dir = 1; @@ -7463,35 +7443,16 @@ }, /obj/structure/closet/secure_closet/personal/cabinet, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "cEE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_05) -"cEF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/crew_quarters/sleeping/Dormitory_05) "cEG" = ( -/obj/item/stool/padded{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Chef" - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/turf/simulated/wall, +/area/crew_quarters/Chomp_Stage) "cEH" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -7502,8 +7463,13 @@ name = "Kitchen Maintenance"; req_one_access = list(28) }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Central_Engineering_Post) "cES" = ( /obj/structure/cable/green{ d1 = 2; @@ -7523,14 +7489,14 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "cEX" = ( /obj/structure/railing{ dir = 8 }, /obj/structure/railing, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "cFa" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/reinforced/airless, @@ -7538,14 +7504,14 @@ "cFc" = ( /obj/random/tank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "cFp" = ( /obj/machinery/atmospherics/binary/pump{ name = "N2 to Connector" }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "cFA" = ( /obj/structure/table/marble, /obj/item/storage/box/glasses/coffeecup{ @@ -7566,11 +7532,11 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "cFL" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "cFW" = ( /obj/structure/cable/green{ d1 = 2; @@ -7583,10 +7549,10 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "cFY" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "cGk" = ( /obj/structure/cable/green{ d1 = 1; @@ -7596,7 +7562,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "cGo" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -7617,20 +7583,20 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "cGK" = ( /obj/structure/bed/padded, /obj/item/bedsheet/green, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "cGR" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "cGT" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -7666,7 +7632,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "cGX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -7684,7 +7650,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "cHh" = ( /obj/structure/bookcase, /obj/item/book/manual/hydroponics_pod_people{ @@ -7724,7 +7690,7 @@ dir = 5 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "cHl" = ( /obj/item/modular_computer/console/preset/engineering{ dir = 1 @@ -7733,10 +7699,10 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "cHm" = ( /turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "cHn" = ( /obj/machinery/light{ dir = 4; @@ -7744,10 +7710,10 @@ }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "cHp" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "cHG" = ( /obj/machinery/alarm{ dir = 1; @@ -7755,13 +7721,13 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "cIe" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "cIk" = ( /obj/machinery/computer/rcon{ dir = 1 @@ -7770,7 +7736,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "cIB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -7784,19 +7750,19 @@ }, /obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "cIT" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "cJp" = ( /obj/machinery/suit_storage_unit/security, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "cJq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -7804,19 +7770,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "cJI" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/shuttle/blue{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "cJN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -7828,13 +7788,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "cJX" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "cJZ" = ( /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 @@ -7844,14 +7804,14 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "cKh" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "cKn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "cKu" = ( /obj/structure/coatrack, /obj/machinery/light{ @@ -7859,7 +7819,11 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) +"cKv" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/crew_quarters/Chomp_Stage) "cKC" = ( /obj/structure/cable/green{ d1 = 1; @@ -7877,7 +7841,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "cKI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -7886,14 +7850,14 @@ }, /obj/machinery/door/airlock/maintenance/command, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "cKP" = ( /obj/structure/table/rack, /obj/random/medical/lite, /obj/random/maintenance/misc, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "cKW" = ( /obj/structure/table/marble, /obj/machinery/cash_register/civilian, @@ -7903,7 +7867,7 @@ name = "Botanist kitchen shutters" }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "cLm" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -7915,7 +7879,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "cLo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -7929,7 +7893,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "cLt" = ( /obj/structure/transit_tube{ icon_state = "E-W-Pass" @@ -7947,22 +7911,22 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "cLw" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "cLD" = ( /obj/effect/catwalk_plated/techfloor, /turf/simulated/floor/greengrid, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "cLI" = ( /obj/structure/sign/hydrostorage, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "cLY" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Patient_3) +/area/medical/Patient_3) "cMa" = ( /obj/structure/closet/crate/laundry, /obj/effect/floor_decal/borderfloor{ @@ -7972,7 +7936,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "cMc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -7983,13 +7947,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "cMk" = ( /obj/effect/floor_decal/spline/fancy{ dir = 6 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "cML" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -8004,7 +7968,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "cMP" = ( /obj/structure/sign/securearea{ icon_state = "radiation_small"; @@ -8012,25 +7976,26 @@ desc = "A warning sign which reads 'RADIATION SHIELDING IN THIS AREA'."; pixel_x = 32 }, -/obj/machinery/light{ - dir = 4; - name = "1E-light fixture" - }, /obj/effect/floor_decal/spline/plain, /obj/effect/floor_decal/spline/plain{ dir = 1 }, +/obj/machinery/light/spot{ + dir = 4; + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "cMT" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForChamber1) +/area/maintenance/Deck3_Bridge_ForChamber1) "cNf" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "cNm" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/white, @@ -8052,7 +8017,7 @@ }, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "cND" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -8070,7 +8035,7 @@ icon_state = "1-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftPort) +/area/engineering/Solar_Array_AftPort) "cNJ" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -8084,11 +8049,15 @@ icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "cNT" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "cNZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -8097,13 +8066,13 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "cOb" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "cOc" = ( /obj/structure/table/glass, /obj/random/toy, @@ -8113,7 +8082,7 @@ pixel_x = -22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "cOi" = ( /obj/structure/table/woodentable, /obj/machinery/power/apc{ @@ -8138,11 +8107,11 @@ icon_state = "0-4" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "cOx" = ( /obj/effect/catwalk_plated/white, /turf/simulated/floor/glass/turfpack/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForPort) +/area/engineering/Solar_Array_ForPort) "cOG" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -8153,11 +8122,11 @@ dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "cOH" = ( /obj/machinery/light_construct, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "cOS" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -8180,7 +8149,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "cPi" = ( /obj/structure/cable/green{ d1 = 1; @@ -8192,14 +8161,14 @@ dir = 10 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "cPz" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "cPD" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "cPJ" = ( /obj/structure/window/reinforced{ dir = 1; @@ -8209,7 +8178,7 @@ dir = 1 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "cPN" = ( /obj/structure/bed/double/padded{ pixel_x = 10; @@ -8239,48 +8208,35 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "cPX" = ( /obj/structure/table/woodentable, /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "cQt" = ( /obj/structure/bed/chair/comfy/orange{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "cQE" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Bridge_Substation) -"cQF" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "sc-GCkitchen"; - name = "Kitchen Shutters Control"; - pixel_x = -24; - req_access = list(28) - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) -"cQQ" = ( -/obj/item/stool/baystool/padded{ - dir = 8 - }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/maintenance/Bridge_Substation) +"cQK" = ( +/obj/structure/sign/painting/public, +/turf/simulated/wall, +/area/crew_quarters/Chomp_Stage) "cQZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/white/border{ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "cRh" = ( /obj/machinery/atmospherics/omni/atmos_filter{ tag_east = 1; @@ -8289,7 +8245,7 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "cRk" = ( /obj/structure/railing{ dir = 1 @@ -8298,7 +8254,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "cRl" = ( /obj/structure/cable/green{ d1 = 1; @@ -8312,7 +8268,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "cRp" = ( /obj/machinery/light{ dir = 1; @@ -8327,7 +8283,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "cRs" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -8336,7 +8292,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "cRv" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -8353,7 +8309,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "cRB" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -8361,48 +8317,47 @@ icon_state = "1-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "cRD" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, -/turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/turf/simulated/floor/tiled/dark, +/area/bridge/Control_Atrium) "cSp" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "cSs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "cSt" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/power/breakerbox/activated{ RCon_tag = "Dorms Substation Bypass" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Dorms_Substation) +/area/maintenance/Dorms_Substation) "cSJ" = ( /obj/structure/sign/nosmoking_1, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "cSS" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "cSX" = ( -/obj/machinery/vending/cigarette, /obj/machinery/camera/network/security{ dir = 1; c_tag = "D3-Dmc-Chomp Dinner3"; network = list("Domicile") }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "cTh" = ( /obj/structure/sign/directions/engineering/solars{ dir = 1 @@ -8412,15 +8367,18 @@ pixel_y = 9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "cTi" = ( /obj/effect/floor_decal/industrial/arrows{ dir = 1 }, /obj/effect/floor_decal/industrial/arrows, -/obj/machinery/door/airlock/angled_bay/external/glass/red, +/obj/machinery/door/airlock/angled_bay/hatch/engineering{ + name = "Solars access"; + req_access = null + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "cTj" = ( /obj/structure/railing, /obj/structure/railing{ @@ -8432,18 +8390,18 @@ network = list("Domicile") }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "cTw" = ( /obj/structure/closet/firecloset/full/atmos, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "cTx" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "cTz" = ( /obj/structure/closet/emergsuit_wall{ dir = 8; @@ -8466,7 +8424,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "cTQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -8480,15 +8438,15 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "cUv" = ( /obj/structure/table/rack/shelf, /obj/random/medical/pillbottle, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "cUy" = ( /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "cUU" = ( /obj/structure/cable/green{ d1 = 2; @@ -8517,7 +8475,7 @@ dir = 9 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "cVa" = ( /obj/machinery/power/solar_control{ auto_start = 2; @@ -8529,14 +8487,14 @@ icon_state = "0-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "cVl" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "cVs" = ( /obj/structure/cable/green{ d1 = 4; @@ -8549,18 +8507,11 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/beige/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "cVG" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) -"cVJ" = ( -/obj/machinery/atm{ - name = "1E-Automatic Teller Machine"; - pixel_x = 29 - }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/maintenance/Deck3_Center_Star) "cVP" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -8572,7 +8523,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "cVS" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -8593,7 +8544,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "cXl" = ( /obj/machinery/portable_atmospherics/powered/pump/huge, /obj/machinery/atmospherics/portables_connector{ @@ -8601,7 +8552,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "cXn" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -8609,13 +8560,13 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "cXq" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "cXs" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/hatch/blue, @@ -8625,7 +8576,7 @@ network = list("Commons") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "cXt" = ( /obj/structure/cable/green{ d1 = 1; @@ -8640,16 +8591,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "cXw" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "cXM" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "cXW" = ( /obj/machinery/alarm{ dir = 4; @@ -8658,11 +8609,11 @@ /obj/structure/table/bench/marble, /obj/structure/flora/pottedplant/bamboo, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "cYb" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "cYU" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -8676,7 +8627,7 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "cYV" = ( /obj/machinery/atmospherics/unary/freezer{ icon_state = "freezer" @@ -8691,7 +8642,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "cYZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -8714,7 +8665,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "cZt" = ( /obj/machinery/light/floortube{ dir = 4; @@ -8727,7 +8678,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "cZx" = ( /obj/machinery/status_display{ name = "S-status display"; @@ -8739,19 +8690,19 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "cZB" = ( /obj/structure/bed/chair/comfy/brown{ dir = 4 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_1) +/area/medical/Psych_Room_1) "cZD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "cZJ" = ( /obj/structure/table/sifwoodentable, /obj/item/storage/briefcase/clutch{ @@ -8763,7 +8714,7 @@ pixel_y = 22 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "cZQ" = ( /obj/effect/floor_decal/industrial/warning/color/red, /turf/simulated/floor/reinforced/airless, @@ -8775,11 +8726,11 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "cZW" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "dad" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -8802,15 +8753,15 @@ }, /obj/structure/table/wooden_reinforced, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "dag" = ( /obj/structure/sign/nosmoking_1, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "daj" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "dan" = ( /obj/machinery/atmospherics/unary/vent_pump{ external_pressure_bound = 0; @@ -8827,11 +8778,11 @@ use_power = 1 }, /turf/simulated/floor/reinforced/phoron, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "dbc" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "dbf" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -8844,7 +8795,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "dbm" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -8856,7 +8807,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "dbu" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -8873,7 +8824,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "dbX" = ( /obj/structure/cable/green{ d1 = 1; @@ -8882,18 +8833,18 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "dbY" = ( /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "dcd" = ( /obj/machinery/atmospherics/binary/pump{ name = "Custom Mix to Connector" }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "dch" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -8902,7 +8853,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "dcK" = ( /obj/structure/cable/green{ d1 = 1; @@ -8919,13 +8870,15 @@ dir = 9 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "dcT" = ( -/obj/structure/railing{ - dir = 4 +/obj/machinery/alarm{ + pixel_y = 25 }, -/turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Center_Star) "ddi" = ( /obj/machinery/power/apc{ dir = 4; @@ -8937,10 +8890,10 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber1) +/area/maintenance/Deck3_Medical_ForChamber1) "ddj" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "ddp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor/corner{ @@ -8950,10 +8903,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "ddq" = ( /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "dds" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light{ @@ -8961,10 +8914,10 @@ name = "1E-light fixture" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "ddt" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "ddu" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/white, @@ -8991,14 +8944,14 @@ id = "SC-GCaicore" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "def" = ( /obj/structure/railing, /obj/structure/railing{ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "det" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -9009,13 +8962,13 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "deR" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "dfh" = ( /obj/structure/toilet{ dir = 1 @@ -9033,7 +8986,7 @@ id = "sc-DBCstall3" }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "dfo" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/cable/green{ @@ -9045,7 +8998,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "dfC" = ( /obj/structure/railing{ dir = 4 @@ -9054,14 +9007,14 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "dfI" = ( /obj/structure/table/sifwoodentable, /obj/effect/floor_decal/spline/fancy{ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "dfS" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -9081,11 +9034,11 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "dga" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortChamber1) +/area/maintenance/Deck3_Dorms_PortChamber1) "dgd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -9108,23 +9061,16 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor2) +/area/maintenance/Deck3_Medical_AftCorridor2) "dgt" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "dgI" = ( /obj/random/trash, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) -"dgL" = ( -/obj/machinery/light, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/maintenance/Deck3_Medical_ForStarChamber1) "dhi" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -9135,12 +9081,12 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "dhr" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "dhs" = ( /obj/effect/floor_decal/borderfloorblack/corner2{ dir = 4 @@ -9155,24 +9101,36 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "dih" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "div" = ( /obj/machinery/vending/giftvendor, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "diJ" = ( -/obj/structure/table/marble, -/obj/structure/sink/countertop{ - pixel_y = 9 +/obj/structure/bed/chair/backed_grey{ + color = "grey"; + dir = 1 }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/crew_quarters/Chomp_Stage) +"diR" = ( +/obj/machinery/light{ + dir = 1; + name = "1N-lighting fixture" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/Control_Atrium) "djr" = ( /obj/structure/cable/green{ d1 = 4; @@ -9192,7 +9150,7 @@ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "djw" = ( /obj/structure/cable/green{ d1 = 4; @@ -9211,7 +9169,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "djz" = ( /obj/structure/table/woodentable, /obj/item/radio/subspace{ @@ -9221,7 +9179,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "djK" = ( /obj/structure/sign/warning/vent_port, /obj/structure/cable/white{ @@ -9230,12 +9188,12 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "djL" = ( /obj/structure/table/fancyblack, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "djT" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -9255,7 +9213,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "djU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -9269,18 +9227,18 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "djV" = ( /obj/machinery/particle_accelerator/control_box, /obj/effect/floor_decal/techfloor/orange{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "djZ" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "dkh" = ( /obj/structure/table/steel, /obj/item/sleevemate{ @@ -9296,7 +9254,7 @@ pixel_x = 7 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "dkv" = ( /obj/structure/sign/levels/engineering/solars{ dir = 1; @@ -9309,7 +9267,7 @@ dir = 10 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "dkH" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -9320,7 +9278,7 @@ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "dkU" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -9329,7 +9287,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "dlo" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -9339,7 +9297,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "dlv" = ( /obj/structure/cable/green{ d1 = 4; @@ -9353,7 +9311,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Server_Room) +/area/bridge/Server_Room) "dlA" = ( /obj/machinery/alarm{ dir = 1; @@ -9367,7 +9325,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "dlO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -9382,14 +9340,14 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "dmb" = ( /obj/structure/railing, /obj/structure/railing{ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "dmd" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -9402,14 +9360,14 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "dmh" = ( /obj/structure/table/bench/sifwooden, /obj/item/flashlight/lamp{ on = 0 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "dmt" = ( /obj/machinery/alarm{ dir = 4; @@ -9418,7 +9376,7 @@ /obj/structure/table/standard, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "dmx" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -9435,7 +9393,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Substation) +/area/engineering/Engine1_Substation) "dmB" = ( /obj/structure/cable/green{ d1 = 1; @@ -9443,14 +9401,14 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "dmH" = ( /obj/structure/railing, /obj/structure/railing{ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "dnd" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -9459,13 +9417,13 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "dnk" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "dnr" = ( /obj/structure/cable/green{ d1 = 2; @@ -9485,7 +9443,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "dog" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/green, @@ -9495,13 +9453,13 @@ /obj/structure/table/standard, /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "doB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "doG" = ( /obj/item/modular_computer/console/preset/security{ dir = 1 @@ -9518,24 +9476,24 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "doI" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "doL" = ( /obj/structure/bed/padded, /obj/item/bedsheet/green, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "doY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "dpg" = ( /obj/structure/sign/directions/engineering/atmospherics{ pixel_y = -9; @@ -9543,7 +9501,7 @@ layer = 3.5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "dpl" = ( /obj/machinery/power/terminal{ dir = 1 @@ -9559,10 +9517,10 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "dpB" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "dpF" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -9571,14 +9529,14 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "dpO" = ( /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "dqb" = ( /obj/machinery/computer/message_monitor, /turf/simulated/floor/bluegrid, -/area/SouthernCrossV2/Bridge/Server_Room) +/area/bridge/Server_Room) "dqI" = ( /obj/structure/cable/green{ d1 = 1; @@ -9596,7 +9554,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "dqY" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -9606,7 +9564,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/green/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "drk" = ( /obj/structure/window/plastitanium{ color = "white"; @@ -9619,10 +9577,10 @@ network = list("Medical") }, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "drl" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "drn" = ( /obj/structure/cable/green{ d1 = 4; @@ -9645,11 +9603,7 @@ dir = 9 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_Breakroom) -"drt" = ( -/obj/structure/closet/crate/freezer, -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/hallway/Star_Breakroom) "drx" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, @@ -9664,7 +9618,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "dse" = ( /obj/structure/cable/white{ d1 = 2; @@ -9685,37 +9639,25 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Resleeving) -"dsu" = ( -/obj/machinery/atm{ - name = "1N-Automatic Teller Machine"; - pixel_y = 22 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/medical/Resleeving) "dsH" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "dsP" = ( /obj/structure/railing, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "dtC" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "dvc" = ( /obj/structure/cable/green{ d1 = 4; @@ -9739,7 +9681,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "dvf" = ( /obj/effect/landmark{ name = "carpspawn" @@ -9756,17 +9698,17 @@ pixel_y = -28 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "dvL" = ( /obj/structure/bed/chair/comfy/brown{ dir = 4 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "dvU" = ( /obj/effect/graffitispawner, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "dvZ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -9776,7 +9718,7 @@ }, /obj/random/junk, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "dwb" = ( /obj/machinery/status_display{ name = "S-status display"; @@ -9796,7 +9738,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "dwq" = ( /obj/structure/undies_wardrobe, /obj/machinery/alarm{ @@ -9812,7 +9754,7 @@ pixel_y = 18 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "dwu" = ( /obj/structure/cable/green{ d1 = 4; @@ -9820,11 +9762,11 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "dwN" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "dwY" = ( /obj/structure/cable/green{ d1 = 4; @@ -9833,7 +9775,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "dxj" = ( /obj/structure/bed/psych{ pixel_y = 9; @@ -9843,18 +9785,18 @@ pixel_x = 2 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "dxl" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "dxy" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "dxF" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "dxN" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -9863,7 +9805,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "dxS" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -9872,14 +9814,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "dxT" = ( /obj/structure/table/marble, /obj/machinery/microwave{ pixel_y = 18 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "dxW" = ( /obj/structure/cable/green{ d1 = 1; @@ -9897,19 +9839,19 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "dye" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "dyf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "dym" = ( /obj/effect/landmark/map_data{ height = 3 @@ -9920,7 +9862,7 @@ /obj/machinery/light/small, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortCorridor1) +/area/maintenance/Deck3_Medical_AftPortCorridor1) "dyy" = ( /obj/structure/ladder{ pixel_y = 3 @@ -9935,7 +9877,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "dyU" = ( /obj/machinery/alarm{ dir = 1; @@ -9943,13 +9885,13 @@ }, /obj/structure/table/reinforced, /turf/simulated/floor/bluegrid, -/area/SouthernCrossV2/Bridge/Server_Room) +/area/bridge/Server_Room) "dyX" = ( /obj/structure/bed/chair/oldsofa{ dir = 4 }, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "dza" = ( /obj/structure/cable/green{ d1 = 1; @@ -9961,7 +9903,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "dzc" = ( /obj/structure/table/wooden_reinforced, /obj/item/flashlight/lamp{ @@ -9971,7 +9913,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "dzj" = ( /obj/structure/table/rack/shelf/steel, /obj/item/suit_cooling_unit{ @@ -10014,20 +9956,20 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "dzB" = ( /obj/machinery/light{ dir = 1; name = "1N-lighting fixture" }, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "dzC" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "dzJ" = ( /obj/structure/cable/white{ d1 = 4; @@ -10035,7 +9977,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "dzK" = ( /obj/structure/cable/green{ d1 = 2; @@ -10063,11 +10005,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "dzQ" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "dzT" = ( /obj/machinery/power/apc{ dir = 1; @@ -10091,7 +10033,7 @@ }, /obj/item/cell/apc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "dAf" = ( /obj/machinery/atmospherics/unary/heat_exchanger{ dir = 8 @@ -10101,58 +10043,28 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "dAo" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "dAr" = ( /obj/structure/table/steel, /obj/item/reagent_containers/food/drinks/glass2/rocks, /obj/item/reagent_containers/food/drinks/glass2/rocks, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "dAz" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "dAI" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_x = 10; - pixel_y = 14 +/obj/effect/floor_decal/stairs/wood_stairs{ + dir = 4 }, -/obj/item/reagent_containers/food/condiment/ketchup{ - pixel_x = 4; - pixel_y = 15 - }, -/obj/item/reagent_containers/food/condiment/mustard{ - pixel_y = 14 - }, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_x = 10; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/condiment/cornoil{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/condiment/cookingoil{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/hotsauce{ - pixel_x = -11; - pixel_y = 19 - }, -/obj/item/reagent_containers/food/condiment/soysauce{ - pixel_x = -8; - pixel_y = 14 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "dAY" = ( /obj/structure/table/woodentable, /obj/item/paper_bin{ @@ -10177,13 +10089,13 @@ pixel_y = -3 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "dBh" = ( /obj/structure/bed/chair/sofa/right/beige{ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "dBm" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/cable/green{ @@ -10195,14 +10107,14 @@ dir = 4 }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "dBo" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "dBt" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -10221,7 +10133,7 @@ dir = 6 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Server_Room) +/area/bridge/Server_Room) "dBu" = ( /obj/structure/cable/green{ d1 = 4; @@ -10236,7 +10148,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "dBF" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 1 @@ -10245,7 +10157,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "dCl" = ( /obj/structure/closet/emergsuit_wall{ dir = 4; @@ -10256,17 +10168,17 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "dCB" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "dCF" = ( /obj/structure/toilet{ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "dDr" = ( /obj/structure/cable/green{ d1 = 1; @@ -10282,10 +10194,10 @@ icon_state = "pipe-c" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "dDx" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "dDL" = ( /obj/structure/railing{ dir = 1 @@ -10296,13 +10208,13 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "dDT" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 4 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "dDU" = ( /obj/structure/bed/chair/sofa/orange{ dir = 1 @@ -10312,7 +10224,7 @@ pixel_y = -22 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "dEe" = ( /obj/structure/table/sifwoodentable, /obj/machinery/computer/security/telescreen/entertainment{ @@ -10321,7 +10233,7 @@ pixel_y = -4 }, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "dEh" = ( /obj/structure/sign/flag/vir/left, /obj/structure/cable/white{ @@ -10330,13 +10242,13 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "dEn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "dEo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -10351,13 +10263,13 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1) +/area/maintenance/Deck3_Dorms_ForCorridor1) "dEw" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "dEy" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -10367,7 +10279,7 @@ /obj/machinery/door/airlock/maintenance/command, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "dEz" = ( /obj/structure/table/woodentable, /obj/item/starcaster_news, @@ -10380,13 +10292,13 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "dEG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "dER" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -10395,24 +10307,11 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "dES" = ( -/obj/structure/railing/grey{ - color = "yellow"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 1 - }, -/obj/structure/lattice, -/obj/structure/disposalpipe/down{ - dir = 1 - }, -/turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/obj/structure/table/rack/steel, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Center_Star) "dFd" = ( /obj/machinery/power/apc{ dir = 8; @@ -10430,25 +10329,23 @@ icon_state = "0-4" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "dFh" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "dFk" = ( -/obj/item/stool{ - color = "grey" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/obj/machinery/light{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/obj/effect/landmark/start{ - name = "Chef" - }, -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Dinner_1) "dFo" = ( /obj/item/radio/intercom/department/medbay{ dir = 8; @@ -10462,10 +10359,10 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "dFr" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "dFx" = ( /obj/item/modular_computer/console/preset/command, /obj/machinery/button/remote/airlock{ @@ -10485,21 +10382,21 @@ pixel_y = 24 }, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "dFQ" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "dGv" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/cap/visible{ color = "#ffcc00" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "dGz" = ( /obj/item/cane{ pixel_x = -9; @@ -10535,7 +10432,7 @@ pixel_x = 2 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "dGD" = ( /obj/structure/cable/green{ d1 = 4; @@ -10547,20 +10444,20 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "dGH" = ( /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "dGZ" = ( /obj/structure/table/glass, /obj/item/storage/box/monkeycubes, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "dHa" = ( /turf/simulated/floor/reinforced/airless, /area/space) @@ -10570,7 +10467,7 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "dHz" = ( /obj/structure/cable/green{ d1 = 4; @@ -10593,7 +10490,17 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor2) +/area/maintenance/Deck3_Medical_AftCorridor2) +"dHF" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 2; + name = "privacy curtain"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/Chomp_Stage) "dHZ" = ( /obj/machinery/atmospherics/pipe/tank/air{ dir = 1; @@ -10601,7 +10508,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "dIm" = ( /obj/machinery/light{ dir = 8; @@ -10610,14 +10517,14 @@ }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "dIo" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/reinforced/oxygen, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "dIt" = ( /obj/machinery/atmospherics/unary/heater{ icon_state = "heater"; @@ -10625,10 +10532,14 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "dIz" = ( -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/brown, +/area/crew_quarters/Chomp_Stage) "dIE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -10638,20 +10549,20 @@ /obj/machinery/door/airlock/maintenance/common, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "dJu" = ( /obj/structure/flora/ausbushes/brflowers, /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "dJO" = ( /obj/machinery/keycard_auth{ pixel_x = -26 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "dJY" = ( /obj/machinery/atmospherics/unary/freezer{ icon_state = "freezer" @@ -10672,15 +10583,18 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "dKj" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "dKo" = ( /obj/structure/cable/green{ d1 = 1; @@ -10694,7 +10608,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "dKq" = ( /obj/structure/cable/green{ d1 = 1; @@ -10706,7 +10620,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "dKx" = ( /obj/structure/cable/pink{ d1 = 1; @@ -10717,7 +10631,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "dLa" = ( /obj/structure/cable/green{ d1 = 1; @@ -10739,7 +10653,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Medical/Patient_3) +/area/medical/Patient_3) "dLe" = ( /obj/machinery/atmospherics/omni/atmos_filter{ tag_east = 1; @@ -10748,14 +10662,14 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "dLf" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "dLl" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -10768,7 +10682,7 @@ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "dLu" = ( /obj/effect/floor_decal/industrial/warning/color/corner{ dir = 1 @@ -10785,7 +10699,7 @@ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "dLL" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -10793,7 +10707,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "dMf" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/borderfloor/corner2{ @@ -10808,19 +10722,19 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, +/obj/structure/disposalpipe/junction, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "dMh" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "dMC" = ( /obj/item/storage/toolbox/electrical{ pixel_x = -2; @@ -10839,7 +10753,7 @@ pixel_x = 3 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "dMY" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -10850,7 +10764,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "dNc" = ( /obj/machinery/camera/network/research{ c_tag = "D3-Med-Lounge2"; @@ -10859,19 +10773,19 @@ }, /obj/machinery/vending/medical, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "dNd" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "dNg" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "dNh" = ( /obj/machinery/floodlight, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "dNq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -10884,7 +10798,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) +/area/engineering/Engine2_Canister_Storage) "dNI" = ( /obj/machinery/light{ dir = 4; @@ -10905,23 +10819,23 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "dNX" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "dOb" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "dOd" = ( /obj/machinery/atmospherics/pipe/manifold/visible/purple{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "dOf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 10 @@ -10929,7 +10843,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "dOq" = ( /obj/structure/cable/green{ d1 = 1; @@ -10946,16 +10860,16 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "dOv" = ( /obj/structure/sign/biohazard, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "dOz" = ( /obj/random/trash, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "dOD" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -10964,15 +10878,15 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "dOI" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "dOP" = ( /obj/random/trash, /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "dPn" = ( /obj/item/radio/intercom{ name = "1S-Station Intercom (General)"; @@ -10995,7 +10909,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "dPZ" = ( /obj/machinery/power/apc{ dir = 8; @@ -11004,14 +10918,14 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "dQh" = ( /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "dQi" = ( /obj/structure/railing, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "dQn" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -11025,7 +10939,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "dQp" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -11045,7 +10959,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "dQv" = ( /obj/machinery/power/smes/batteryrack/mapped, /obj/structure/cable/white{ @@ -11053,7 +10967,15 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) +"dQE" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "dRb" = ( /obj/structure/cable/green{ d1 = 1; @@ -11070,13 +10992,13 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "dRg" = ( /obj/effect/floor_decal/spline/fancy{ dir = 9 }, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "dRo" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -11085,7 +11007,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "dRt" = ( /obj/structure/table/steel, /obj/item/storage/box/flare{ @@ -11118,13 +11040,13 @@ network = list("Bridge") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "dRN" = ( /obj/structure/bed/chair/comfy/beige, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "dRW" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -11134,7 +11056,7 @@ }, /obj/random/junk, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "dSf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11145,7 +11067,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "dSg" = ( /obj/structure/cable/green{ d1 = 1; @@ -11155,7 +11077,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "dSv" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -11163,7 +11085,7 @@ }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "dSz" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -11173,13 +11095,13 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "dSM" = ( /obj/structure/table/wooden_reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "dSN" = ( /obj/structure/table/woodentable, /obj/item/radio/intercom{ @@ -11191,7 +11113,7 @@ dir = 4 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "dSP" = ( /obj/structure/table/sifwoodentable, /obj/item/flashlight/lamp{ @@ -11207,14 +11129,14 @@ dir = 8 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "dSS" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "dSV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -11231,7 +11153,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "dSZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -11256,7 +11178,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "dTo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -11271,7 +11193,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "dTs" = ( /obj/machinery/atmospherics/unary/outlet_injector{ frequency = 1441; @@ -11282,7 +11204,7 @@ dir = 8 }, /turf/simulated/floor/reinforced/n20, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "dTv" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -11309,19 +11231,19 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "dTD" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "dTM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "dTO" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/techmaint, @@ -11333,7 +11255,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "dTR" = ( /obj/structure/table/reinforced, /obj/item/paper_bin, @@ -11344,7 +11266,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "dTX" = ( /obj/machinery/computer/general_air_control/large_tank_control{ frequency = 1443; @@ -11356,7 +11278,7 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "dUe" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -11365,7 +11287,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "dUj" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11374,7 +11296,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "dUm" = ( /obj/structure/table/woodentable, /obj/machinery/power/apc{ @@ -11399,7 +11321,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "dUI" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -11425,7 +11347,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "dUZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -11439,7 +11361,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber1) +/area/maintenance/Deck3_Medical_ForChamber1) "dVb" = ( /obj/structure/cable/pink{ d1 = 2; @@ -11458,7 +11380,7 @@ }, /obj/item/tool/screwdriver/brass, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "dVe" = ( /obj/machinery/computer/general_air_control{ frequency = 1443; @@ -11473,35 +11395,23 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "dVf" = ( /obj/structure/sign/department/morgue{ desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Morgue) -"dVg" = ( -/obj/structure/table/standard, -/obj/item/material/knife/butch{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/material/knife/hook{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/medical/Morgue) "dVi" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "dVC" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "dVH" = ( /obj/machinery/power/apc{ dir = 8; @@ -11513,7 +11423,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "dVO" = ( /obj/machinery/alarm{ dir = 4; @@ -11521,11 +11431,11 @@ }, /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "dVR" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "dVU" = ( /obj/machinery/light{ dir = 1 @@ -11537,7 +11447,7 @@ dir = 1 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "dVZ" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -11545,7 +11455,7 @@ network = list("Bridge") }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "dWg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -11562,7 +11472,7 @@ req_one_access = list(1,11,24) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "dWz" = ( /obj/machinery/power/solar_control{ auto_start = 2; @@ -11572,12 +11482,12 @@ }, /obj/structure/cable/yellow, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "dWD" = ( /obj/random/junk, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "dWR" = ( /obj/structure/cable/green{ d1 = 1; @@ -11592,7 +11502,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "dWZ" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/machinery/camera/network/research{ @@ -11601,7 +11511,7 @@ network = list("Medical") }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "dXa" = ( /obj/structure/undies_wardrobe, /obj/machinery/alarm{ @@ -11617,7 +11527,7 @@ pixel_y = 18 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "dXf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -11626,7 +11536,7 @@ dir = 10 }, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "dXo" = ( /obj/structure/cable/green{ d1 = 1; @@ -11640,7 +11550,7 @@ dir = 9 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "dXp" = ( /obj/item/storage/toolbox/lunchbox/heart/filled{ name = "Stayc's lunchbox"; @@ -11660,7 +11570,7 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "dXC" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, @@ -11671,7 +11581,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "dXG" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -11697,13 +11607,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "dXX" = ( /obj/structure/toilet{ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "dYf" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -11714,21 +11624,21 @@ name = "Chompers Dinner" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "dYo" = ( /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "dYp" = ( /obj/machinery/vending/loadout/loadout_misc, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "dYv" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "dYx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -11737,7 +11647,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "dYy" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -11754,13 +11664,13 @@ }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "dYB" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "dYF" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -11772,7 +11682,7 @@ id_tag = "sc-DBCstall3" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "dYN" = ( /obj/structure/cable/green{ d1 = 4; @@ -11789,14 +11699,14 @@ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "dYS" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "dYY" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 1; @@ -11815,21 +11725,33 @@ dir = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "dYZ" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) +"dZo" = ( +/obj/structure/table/bench/glass, +/obj/structure/flora/pottedplant/bamboo{ + name = "Monolo"; + pixel_y = 10 + }, +/obj/machinery/light/spot{ + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "dZx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "dZJ" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -11844,13 +11766,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "dZQ" = ( /obj/structure/sign/department/bar{ desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "dZU" = ( /obj/structure/table/bench/sifwooden, /obj/machinery/button/remote/airlock{ @@ -11864,19 +11786,19 @@ dir = 4 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "dZX" = ( -/obj/machinery/computer/arcade{ - dir = 1 - }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, +/obj/machinery/computer/arcade/battle{ + dir = 4 + }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "eac" = ( /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "eae" = ( /obj/structure/cable/white{ d1 = 2; @@ -11889,11 +11811,11 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "eap" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "eau" = ( /obj/structure/transit_tube/station{ dir = 1 @@ -11902,7 +11824,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "eaE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -11926,7 +11848,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "eaJ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -11935,20 +11857,20 @@ icon_state = "1-2" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "eaN" = ( /obj/machinery/computer/security/telescreen/entertainment{ name = "1S-entertainment monitor"; pixel_y = -36 }, -/obj/machinery/computer/arcade{ - dir = 1 - }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, +/obj/item/stool/padded{ + dir = 4 + }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "eaO" = ( /obj/machinery/vending/loadout/loadout_misc, /obj/machinery/ai_status_display{ @@ -11962,10 +11884,10 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "eaQ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "eaR" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -11992,17 +11914,17 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "eaW" = ( /obj/structure/ladder{ pixel_y = 3 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "eaY" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "eba" = ( /obj/machinery/ai_status_display{ name = "1N-AI display"; @@ -12016,13 +11938,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "ebe" = ( /obj/machinery/atmospherics/tvalve/mirrored{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "ebm" = ( /obj/structure/cable/green{ d1 = 1; @@ -12032,10 +11954,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "ebr" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "ebu" = ( /obj/machinery/ai_status_display{ name = "1S-AI display"; @@ -12047,7 +11969,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "ebL" = ( /obj/structure/table/glass, /obj/item/reagent_containers/glass/bottle/stoxin{ @@ -12080,7 +12002,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "ecb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -12093,7 +12015,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "ecc" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -12104,7 +12026,7 @@ name = "Observation Deck" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "ecl" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -12117,14 +12039,14 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "ecn" = ( /obj/structure/railing, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "ecu" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "ecC" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/spline/plain{ @@ -12140,14 +12062,14 @@ /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "ecD" = ( /obj/structure/sign/directions/kitchen{ layer = 3.5; dir = 1 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "ecR" = ( /obj/structure/cable/green{ d1 = 2; @@ -12172,14 +12094,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "ecT" = ( /obj/structure/table/standard, /obj/item/bikehorn/rubberducky/green, /obj/random/maintenance/clean, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "edc" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -12189,21 +12111,21 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "ede" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "edg" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "edl" = ( /obj/structure/bed/chair/sofa/brown{ dir = 1 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "edp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -12230,7 +12152,7 @@ }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "edG" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ @@ -12241,20 +12163,20 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "edU" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "eeA" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 9 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "eeU" = ( /obj/structure/table/bench/marble, /obj/item/flashlight/lamp/green{ @@ -12262,7 +12184,7 @@ on = 0 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "eeV" = ( /obj/structure/table/steel, /obj/item/storage/box/donkpockets/pizza{ @@ -12284,7 +12206,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "efi" = ( /obj/machinery/computer/guestpass{ dir = 8; @@ -12292,7 +12214,7 @@ name = "1E-guest pass terminal" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "efk" = ( /obj/machinery/sleep_console{ dir = 4 @@ -12304,7 +12226,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "efv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -12322,7 +12244,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "efy" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -12344,7 +12266,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "ega" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -12364,15 +12286,15 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "egb" = ( /obj/effect/mist, /turf/simulated/floor/water/pool, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "egc" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "egi" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 1 @@ -12381,7 +12303,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "egN" = ( /obj/structure/bed/chair/wood{ dir = 4 @@ -12395,13 +12317,13 @@ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "ehc" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "ehd" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor/corner{ @@ -12412,20 +12334,20 @@ dir = 9 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "ehe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/catwalk_plated, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "ehj" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "ehq" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "ehC" = ( /obj/item/geiger/wall/west, /obj/structure/cable/cyan{ @@ -12435,7 +12357,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "ehG" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -12453,11 +12375,11 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "ehL" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "ehO" = ( /obj/structure/railing/grey{ color = "yellow" @@ -12467,7 +12389,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor2) +/area/maintenance/Deck3_Medical_AftCorridor2) "ehS" = ( /obj/structure/table/standard, /obj/item/haircomb{ @@ -12485,11 +12407,11 @@ pixel_y = 28 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "eid" = ( /obj/machinery/atmospherics/trinary/mixer/t_mixer, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "eiF" = ( /obj/structure/cable/green{ d1 = 2; @@ -12504,10 +12426,10 @@ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "eiK" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "eiV" = ( /obj/structure/cable/green{ d1 = 4; @@ -12521,7 +12443,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "ejh" = ( /obj/structure/table/standard, /obj/item/clothing/gloves/botanic_leather{ @@ -12544,11 +12466,11 @@ pixel_y = 4 }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "ejD" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "ekj" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -12557,7 +12479,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "ekp" = ( /obj/machinery/turretid/stun{ control_area = "\improper AI Upload Hall"; @@ -12575,7 +12497,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "ekr" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -12583,7 +12505,7 @@ icon_state = "1-2" }, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "ekP" = ( /obj/structure/bed/chair/sofa/corner/blue{ dir = 4 @@ -12593,11 +12515,11 @@ name = "1N-emergency suit storage" }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "elc" = ( /obj/structure/sign/warning/secure_area, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "ele" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -12605,12 +12527,12 @@ id = "sc-WTmental02" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "elf" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "elu" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -12627,7 +12549,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "elx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -12662,7 +12584,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "elz" = ( /obj/structure/railing/grey{ dir = 4 @@ -12680,7 +12602,7 @@ }, /obj/effect/landmark/start/captain, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "elF" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8; @@ -12690,7 +12612,7 @@ /area/space) "elH" = ( /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "elN" = ( /obj/item/destTagger{ pixel_x = 6; @@ -12705,7 +12627,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "elR" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -12719,13 +12641,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "emd" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "emh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -12734,10 +12656,10 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "emm" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "emx" = ( /obj/structure/cable/green{ d1 = 1; @@ -12753,7 +12675,7 @@ dir = 9 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "emy" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -12764,11 +12686,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "emN" = ( /obj/machinery/atmospherics/tvalve/digital, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "enb" = ( /obj/machinery/dna_scannernew, /obj/item/radio/intercom{ @@ -12785,13 +12707,13 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "enc" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "enf" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -12811,12 +12733,12 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "enk" = ( /obj/random/junk, /obj/machinery/atmospherics/pipe/manifold/hidden/cyan, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "enm" = ( /obj/structure/cable/green{ d1 = 4; @@ -12833,7 +12755,7 @@ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "enW" = ( /obj/machinery/light{ dir = 4; @@ -12841,7 +12763,7 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "eog" = ( /obj/machinery/alarm{ dir = 4; @@ -12855,7 +12777,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "eot" = ( /obj/structure/railing/grey{ dir = 4 @@ -12867,7 +12789,7 @@ /area/space) "eow" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "eoY" = ( /obj/structure/sign/directions/kitchen{ layer = 3.5; @@ -12875,29 +12797,29 @@ pixel_y = 9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1) +/area/maintenance/Deck3_Dorms_ForCorridor1) "epg" = ( /obj/machinery/light/small{ dir = 4 }, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "eps" = ( /obj/structure/sign/directions/command{ dir = 8; layer = 3.5 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "epw" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "epU" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/visible/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "eqk" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -12905,7 +12827,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "eqr" = ( /obj/machinery/atmospherics/unary/heat_exchanger{ dir = 8 @@ -12915,7 +12837,7 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "eqC" = ( /obj/machinery/status_display{ pixel_x = -32; @@ -12929,11 +12851,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "eqE" = ( /obj/machinery/vending/wardrobe/secdrobe, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "eqJ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -12947,7 +12869,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "erg" = ( /obj/structure/cable/green{ d1 = 4; @@ -12955,10 +12877,10 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "erh" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "ero" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -12981,11 +12903,15 @@ /obj/effect/floor_decal/corner/beige/bordercorner{ dir = 8 }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "ers" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "ery" = ( /obj/machinery/ai_status_display{ name = "1W-AI display"; @@ -13002,10 +12928,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "ess" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "esF" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/white, @@ -13023,7 +12949,7 @@ }, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "esI" = ( /obj/structure/table/marble, /obj/item/material/kitchen/rollingpin{ @@ -13037,7 +12963,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "esL" = ( /obj/structure/cable/green{ d1 = 4; @@ -13050,13 +12976,13 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "esT" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "eta" = ( /obj/structure/sign/securearea{ icon_state = "radiation_small"; @@ -13064,20 +12990,20 @@ desc = "A warning sign which reads 'RADIATION SHIELDING IN THIS AREA'." }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "etq" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "etz" = ( /obj/structure/fireaxecabinet{ name = "1E-fire axe cabinet"; pixel_x = 32 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "etB" = ( /obj/structure/transit_tube{ icon_state = "D-SW" @@ -13093,11 +13019,54 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "euc" = ( -/obj/structure/kitchenspike, -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/obj/item/storage/box/lights/mixed{ + pixel_x = 8; + pixel_y = 11 + }, +/obj/item/storage/box/lights/mixed{ + pixel_x = 8; + pixel_y = 22 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/radio{ + pixel_x = -11; + pixel_y = -1 + }, +/obj/item/radio{ + pixel_x = -8; + pixel_y = -1 + }, +/obj/item/radio{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/radio{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_x = 8; + pixel_y = -5 + }, +/obj/structure/table/steel, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/Central_Engineering_Post) "euk" = ( /obj/effect/floor_decal/corner/blue/diagonal{ dir = 4 @@ -13105,10 +13074,10 @@ /obj/effect/floor_decal/corner/white, /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/reinforced/airmix, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "eup" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "euu" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -13122,7 +13091,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "euw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -13133,7 +13102,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "euL" = ( /obj/structure/table/glass, /obj/item/roller{ @@ -13151,14 +13120,14 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "euR" = ( /obj/effect/catwalk_plated/techfloor, /turf/simulated/floor/redgrid/animated, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "euY" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "evc" = ( /obj/structure/railing{ dir = 4 @@ -13167,7 +13136,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "evv" = ( /obj/structure/cable{ d1 = 1; @@ -13185,10 +13154,10 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "evx" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "evA" = ( /obj/structure/railing{ dir = 4 @@ -13197,7 +13166,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "evD" = ( /obj/structure/cable/green{ d1 = 1; @@ -13205,12 +13174,12 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "evV" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "evX" = ( /obj/structure/bed/chair/sofa/right/orange{ dir = 1 @@ -13218,14 +13187,28 @@ /obj/effect/floor_decal/spline/fancy{ dir = 8 }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + name = "S-light switch"; + pixel_x = 11; + pixel_y = -27 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "ewn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "ewB" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor/corner{ @@ -13238,7 +13221,7 @@ dir = 5 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "ewJ" = ( /obj/structure/table/sifwoodentable, /obj/machinery/light{ @@ -13249,7 +13232,7 @@ dir = 4 }, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "exc" = ( /obj/effect/floor_decal/techfloor/orange/corner, /obj/structure/cable/cyan{ @@ -13258,7 +13241,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "exx" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -13270,19 +13253,19 @@ name = "Dorm two" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "exA" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "exB" = ( /obj/structure/table/standard, /obj/random/unidentified_medicine, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "exE" = ( /obj/effect/floor_decal/industrial/warning/color/corner{ dir = 8 @@ -13305,11 +13288,11 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "exV" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "eyi" = ( /obj/structure/extinguisher_cabinet{ dir = 8; @@ -13323,16 +13306,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) -"eyl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/hallway/Central_3_Deck_Hall) "eyp" = ( /obj/structure/sign/flag/vir, /obj/structure/cable/white{ @@ -13341,7 +13315,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "eyq" = ( /obj/structure/bed/chair/comfy/blue, /obj/structure/closet/emergsuit_wall{ @@ -13353,13 +13327,13 @@ dir = 1 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "eyr" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Cyborg_Station) +/area/bridge/Cyborg_Station) "eyL" = ( /obj/effect/floor_decal/borderfloorwhite/corner2{ dir = 5 @@ -13374,7 +13348,7 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "eyU" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor/corner{ @@ -13387,7 +13361,7 @@ dir = 6 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "ezA" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -13396,7 +13370,7 @@ /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "ezB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -13418,7 +13392,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "ezC" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -13426,11 +13400,11 @@ }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "ezD" = ( /obj/machinery/ai_status_display, /turf/simulated/wall/durasteel, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "ezK" = ( /obj/machinery/newscaster{ pixel_x = -28; @@ -13443,7 +13417,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "eAc" = ( /obj/machinery/vending/wallmed1{ dir = 1; @@ -13454,7 +13428,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "eAr" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -13470,7 +13444,7 @@ name = "Stairwell" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "eAx" = ( /obj/structure/bed/padded, /obj/item/bedsheet/medical, @@ -13478,28 +13452,17 @@ pixel_y = -32 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Patient_2) -"eAz" = ( -/obj/structure/table/marble, -/obj/item/toy/chewtoy, -/obj/machinery/door/blast/gate/thin{ - id = "sc-GCkitchen"; - layer = 3.3; - name = "Kitchen Shutters"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/medical/Patient_2) "eAD" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "eAE" = ( /obj/machinery/atmospherics/valve, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "eAG" = ( /obj/machinery/power/tracker, /obj/structure/cable/yellow{ @@ -13512,11 +13475,17 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForPort) +/area/engineering/Solar_Array_ForPort) +"eBa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Dinner_2) "eBc" = ( /obj/machinery/vending/hydronutrients, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "eBi" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -13536,7 +13505,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "eBl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -13551,19 +13520,19 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "eBr" = ( /obj/structure/table/woodentable, /obj/item/book/manual/wiki/engineering_guide, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "eBy" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "eBJ" = ( /obj/item/radio/intercom/department/medbay{ pixel_y = -22; @@ -13575,14 +13544,20 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "eBQ" = ( /obj/structure/railing/grey{ color = "yellow" }, /obj/structure/disposalpipe/down, +/obj/structure/cable{ + d1 = 32; + d2 = 2; + icon_state = "32-2" + }, +/obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "eCj" = ( /obj/structure/window/plastitanium{ color = "white"; @@ -13598,13 +13573,13 @@ dir = 10 }, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "eCs" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "eCv" = ( /obj/machinery/airlock_sensor{ pixel_y = -24; @@ -13618,7 +13593,7 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/map_helper/airlock/sensor/chamber_sensor, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "eCI" = ( /obj/machinery/disposal/wall{ dir = 8; @@ -13629,7 +13604,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "eDf" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -13660,7 +13635,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "eDk" = ( /obj/structure/cable/pink{ d1 = 2; @@ -13673,11 +13648,17 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) +"eDs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Dinner_1) "eDu" = ( /obj/random/mainttoyloot, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "eDv" = ( /obj/machinery/shower{ pixel_y = 16 @@ -13694,11 +13675,11 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "eDM" = ( /obj/structure/coatrack, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "eDT" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -13715,7 +13696,7 @@ }, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "eDW" = ( /obj/machinery/power/apc{ dir = 1; @@ -13727,13 +13708,13 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "eEi" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "eEk" = ( /obj/structure/table/reinforced, /obj/structure/flora/pottedplant/unusual{ @@ -13751,7 +13732,7 @@ pixel_y = -26 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "eEC" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 @@ -13759,20 +13740,35 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "eEF" = ( /obj/machinery/atmospherics/tvalve/mirrored/bypass{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "eEJ" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "eEO" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) +"eES" = ( +/obj/structure/flora/pottedplant/bamboo{ + name = "Namala"; + pixel_y = 10 + }, +/obj/structure/table/bench/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/spot{ + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "eFl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -13786,7 +13782,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "eFp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -13800,14 +13796,15 @@ }, /obj/machinery/access_button{ pixel_y = -24; - dir = 1 + dir = 1; + req_one_access = list(1,19) }, /obj/effect/map_helper/airlock/door/ext_door, /obj/effect/map_helper/airlock/button/ext_button{ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "eFE" = ( /obj/structure/cable/green{ d1 = 1; @@ -13818,7 +13815,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "eFF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -13841,11 +13838,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "eGf" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "eGh" = ( /obj/structure/cable/green{ d1 = 1; @@ -13860,20 +13857,20 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "eGk" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "eGw" = ( /obj/structure/railing{ dir = 4 }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "eGG" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ @@ -13883,13 +13880,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "eGU" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = -4 }, /turf/simulated/wall/wood, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "eHd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -13897,7 +13894,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "eHe" = ( /obj/structure/cable/green{ d1 = 4; @@ -13905,22 +13902,22 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "eHn" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold4w/visible/black, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "eHp" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "eHC" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "eHD" = ( /obj/structure/mirror{ dir = 4; @@ -13935,7 +13932,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "eHT" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -13953,12 +13950,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "eIt" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reflector/box, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "eIw" = ( /obj/structure/cable{ d1 = 1; @@ -13970,13 +13967,13 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "eIx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "eIA" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -13988,22 +13985,23 @@ /obj/structure/railing/grey{ color = "yellow" }, +/obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "eIE" = ( /obj/structure/closet/secure_closet/personal/cabinet, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "eIM" = ( /obj/structure/table/woodentable, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "eIW" = ( /obj/structure/table/sifwoodentable, /obj/item/trash/chips/bbq, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "eJa" = ( /obj/structure/table/standard, /obj/item/reagent_containers/glass/bucket{ @@ -14019,19 +14017,19 @@ pixel_y = 12 }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "eJk" = ( /obj/structure/particle_accelerator/particle_emitter/center{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "eJn" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "eJo" = ( /obj/machinery/firealarm{ dir = 8; @@ -14039,13 +14037,13 @@ name = "W-fire alarm" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "eJB" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "eJE" = ( /obj/structure/railing{ dir = 4 @@ -14054,7 +14052,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "eJF" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -14070,18 +14068,15 @@ d2 = 4; icon_state = "0-4" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "eJK" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "eJQ" = ( /obj/effect/catwalk_plated/white, /turf/simulated/floor/glass/turfpack/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "eJR" = ( /obj/effect/catwalk_plated/white, /obj/structure/cable/white{ @@ -14091,14 +14086,35 @@ }, /turf/simulated/floor/plating/turfpack/airless, /area/space) -"eKo" = ( -/obj/machinery/appliance/cooker/fryer, -/obj/machinery/light, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +"eKn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + name = "S-light switch"; + pixel_x = 11; + pixel_y = -27 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/button/windowtint{ + pixel_x = -12; + pixel_y = -26; + name = "S-window tint control"; + id = "sc-WTstage"; + range = 20 + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "eKF" = ( /obj/item/toy/plushie/teshari/eili, /obj/item/bedsheet/pirate{ @@ -14106,7 +14122,7 @@ pixel_x = 11 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "eKJ" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -14119,7 +14135,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "eKQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -14139,7 +14155,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "eKW" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -14148,19 +14164,16 @@ dir = 5 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "eLm" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "eLu" = ( /obj/random/mainttoyloot, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "eLv" = ( -/obj/machinery/light{ - dir = 8 - }, /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14171,25 +14184,34 @@ /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 8 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "eLF" = ( /obj/random/trash, /obj/random/junk, /obj/random/trash_pile, /obj/random/trash, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "eLN" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "eLR" = ( /obj/structure/cable/green{ d1 = 1; @@ -14199,7 +14221,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "eLV" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/structure/window/reinforced{ @@ -14210,7 +14232,7 @@ dir = 1 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "eMl" = ( /obj/machinery/vending/wardrobe/hydrobe, /obj/machinery/alarm{ @@ -14224,14 +14246,14 @@ dir = 4 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "eMn" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "eMx" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -14249,17 +14271,17 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftPort) +/area/engineering/Solar_Array_AftPort) "eMz" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/shield_gen/external, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "eMJ" = ( /obj/structure/loot_pile/maint/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) +/area/maintenance/Deck3_Dorms_StarChamber2) "eMM" = ( /obj/structure/cable{ d1 = 2; @@ -14274,11 +14296,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "eMP" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "eMQ" = ( /obj/machinery/alarm{ dir = 8; @@ -14298,7 +14320,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "eNb" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -14323,7 +14345,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine1_Substation) +/area/engineering/Engine1_Substation) "eNh" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -14333,7 +14355,7 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "eNk" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/structure/sign/poster{ @@ -14341,7 +14363,7 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "eNm" = ( /obj/structure/cable/green{ d1 = 4; @@ -14358,7 +14380,7 @@ /obj/machinery/light/small, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "eNI" = ( /obj/machinery/sleep_console, /obj/machinery/camera/network/security{ @@ -14375,7 +14397,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "eNJ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -14389,7 +14411,7 @@ req_one_access = list(10) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "eNQ" = ( /obj/machinery/alarm{ dir = 1; @@ -14400,7 +14422,7 @@ /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "eNS" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/engineering, @@ -14408,7 +14430,7 @@ /obj/random/maintenance/engineering, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "eOa" = ( /obj/structure/cable/green{ d1 = 2; @@ -14417,7 +14439,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "eOd" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -14433,7 +14455,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "eOe" = ( /obj/machinery/light, /obj/structure/cable/green{ @@ -14451,7 +14473,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "eOt" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -14468,7 +14490,7 @@ pixel_y = 24 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "eOx" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/grille, @@ -14493,7 +14515,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "eOE" = ( /obj/structure/cable/green{ d1 = 1; @@ -14507,7 +14529,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "eOX" = ( /obj/structure/cable/green{ d1 = 1; @@ -14525,16 +14547,16 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "ePp" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "ePx" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "ePA" = ( /obj/structure/cable/green{ d1 = 1; @@ -14548,7 +14570,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "eQe" = ( /obj/structure/cable/green{ d1 = 4; @@ -14568,7 +14590,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "eQf" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -14580,7 +14602,7 @@ network = list("Domicile") }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "eQm" = ( /obj/structure/cable/green{ d1 = 4; @@ -14597,7 +14619,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "eQp" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -14605,7 +14627,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "eQx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -14630,16 +14652,16 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "eQA" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Patient_1) +/area/medical/Patient_1) "eQJ" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "eQM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -14663,7 +14685,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "eQN" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -14677,10 +14699,10 @@ dir = 8 }, /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "eQQ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "eQT" = ( /obj/structure/cable/green{ d1 = 1; @@ -14693,7 +14715,7 @@ /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "eQU" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/field_generator{ @@ -14701,11 +14723,11 @@ state = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "eRe" = ( /obj/machinery/atmospherics/pipe/tank/air/full, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "eRh" = ( /obj/machinery/alarm{ dir = 1; @@ -14713,7 +14735,7 @@ }, /obj/item/frame, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) +/area/maintenance/Deck3_Dorms_StarChamber2) "eRi" = ( /obj/structure/table/reinforced, /obj/machinery/button/remote/blast_door{ @@ -14737,20 +14759,20 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "eRm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "eRB" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "eRE" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -14758,15 +14780,15 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "eRQ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "eSf" = ( /obj/structure/bed/padded, /obj/item/bedsheet/red, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "eSk" = ( /obj/structure/table/wooden_reinforced, /obj/item/camera{ @@ -14787,16 +14809,16 @@ pixel_x = 25 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "eSu" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "eSB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "eSH" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -14807,7 +14829,7 @@ name = "Botanical garden" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "eSM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -14824,7 +14846,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "eSP" = ( /obj/structure/table/rack, /obj/random/maintenance/misc, @@ -14832,7 +14854,7 @@ /obj/random/maintenance/cargo, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "eST" = ( /obj/structure/cable/green{ d1 = 4; @@ -14850,7 +14872,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "eSV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -14859,19 +14881,19 @@ dir = 8 }, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "eTa" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "eTg" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "eTi" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "eTl" = ( /obj/structure/bed/chair/office/dark, /mob/living/simple_mob/animal/passive/armadillo/torta, @@ -14885,7 +14907,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "eTm" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -14903,14 +14925,14 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "eTy" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "eTA" = ( /obj/machinery/light{ dir = 4; @@ -14932,7 +14954,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "eTD" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -14952,7 +14974,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "eTG" = ( /obj/machinery/disposal/wall/cleaner{ name = "1S-Resleeving lost & found bin"; @@ -14966,7 +14988,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "eTN" = ( /obj/machinery/firealarm{ dir = 8; @@ -14976,7 +14998,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "eTW" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ external_pressure_bound = 0; @@ -14992,7 +15014,7 @@ use_power = 1 }, /turf/simulated/floor/reinforced/airmix, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "eTX" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -15008,12 +15030,12 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "eUk" = ( /obj/random/trash, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "eUq" = ( /obj/structure/table/steel, /obj/item/storage/box/flare{ @@ -15045,19 +15067,19 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "eUr" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "eUt" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "eUC" = ( /obj/machinery/door/window/northright{ dir = 4; @@ -15066,7 +15088,7 @@ req_one_access = list(35,28) }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "eUH" = ( /obj/structure/cable/green{ d1 = 1; @@ -15089,7 +15111,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "eUM" = ( /obj/machinery/alarm{ dir = 4; @@ -15101,7 +15123,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "eUS" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -15118,7 +15140,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "eUT" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 8 @@ -15127,7 +15149,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "eUU" = ( /obj/structure/sign/directions/engineering/solars{ pixel_y = 9 @@ -15137,7 +15159,7 @@ pixel_y = -9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "eUW" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -15150,11 +15172,11 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "eVd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "eVh" = ( /obj/structure/sign/directions/engineering/atmospherics{ pixel_y = -9; @@ -15166,7 +15188,7 @@ pixel_y = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "eVn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -15190,7 +15212,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "eVo" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -15210,7 +15232,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "eVH" = ( /obj/machinery/computer/communications, /obj/machinery/requests_console{ @@ -15221,12 +15243,12 @@ pixel_y = 22 }, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "eVU" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "eWo" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -15235,11 +15257,11 @@ icon_state = "4-8" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "eWp" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "eWC" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -15267,7 +15289,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "eWE" = ( /obj/structure/cable{ d1 = 1; @@ -15285,7 +15307,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "eWG" = ( /obj/machinery/alarm{ dir = 8; @@ -15293,7 +15315,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "eWX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -15304,7 +15326,7 @@ name = "Engineering Air Distribution" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "eXg" = ( /obj/structure/reagent_dispensers/water_cooler/full{ dir = 1 @@ -15322,7 +15344,7 @@ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "eXr" = ( /obj/structure/cable/green{ d1 = 1; @@ -15340,13 +15362,13 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/beige/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "eXx" = ( /obj/structure/table/glass, /obj/item/pizzabox/old, /obj/item/clothing/head/pizzaguy, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "eXI" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/button/remote/airlock{ @@ -15357,7 +15379,7 @@ specialfunctions = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "eXN" = ( /obj/structure/cable/green{ d1 = 1; @@ -15366,7 +15388,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "eXU" = ( /obj/machinery/computer/security/engineering, /obj/effect/floor_decal/borderfloor{ @@ -15376,29 +15398,31 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "eXY" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "eYg" = ( -/obj/structure/closet/jequipcloset, +/obj/machinery/suit_cycler/engineering{ + req_one_access = list(11,24); + req_access = null + }, +/obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Central_Engineering_Post) "eYk" = ( +/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/plating, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) -"eYQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/engineering/Central_Engineering_Post) "eYR" = ( /obj/structure/cable/green{ d1 = 1; @@ -15414,22 +15438,21 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "eYV" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, -/obj/machinery/shield_capacitor{ - dir = 1 - }, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/light{ name = "1S-light fixture" }, -/obj/structure/cable, +/obj/machinery/shield_capacitor{ + dir = 1 + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "eZc" = ( /obj/structure/cable/green{ d1 = 4; @@ -15441,11 +15464,11 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "eZk" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "eZO" = ( /obj/structure/table/steel_reinforced, /obj/machinery/button/remote/emitter{ @@ -15486,7 +15509,7 @@ }, /obj/effect/engine_setup/shutters, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "eZS" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 @@ -15497,7 +15520,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "faa" = ( /obj/machinery/power/apc{ dir = 4; @@ -15506,14 +15529,14 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "faj" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "fal" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -15525,24 +15548,24 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "fam" = ( /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "fau" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 10 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "faE" = ( /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "faF" = ( /obj/structure/table/steel, /obj/item/gun/launcher/syringe{ @@ -15570,7 +15593,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "faI" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1; @@ -15591,20 +15614,28 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) +"fbb" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/shuttle/blue{ + pixel_x = -1; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/Chomp_Dinner_2) "fbg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "fbj" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "fbn" = ( /obj/machinery/alarm{ dir = 8; @@ -15617,7 +15648,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "fbo" = ( /obj/structure/cable/green{ d1 = 1; @@ -15635,21 +15666,27 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "fbp" = ( -/obj/structure/ladder{ - pixel_y = 3 +/obj/structure/railing/grey{ + color = "yellow"; + dir = 8 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/small/warning/emerg_only{ - pixel_y = -32 +/obj/structure/railing/grey{ + color = "yellow" }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/obj/structure/cable/green{ + d1 = 32; + d2 = 2; + icon_state = "32-2" + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/Deck3_Center_Star) "fbz" = ( /obj/item/frame/noticeboard, /turf/simulated/wall, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "fbO" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -15660,7 +15697,7 @@ dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "fbT" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -15678,7 +15715,7 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForPort) +/area/engineering/Solar_Array_ForPort) "fbV" = ( /obj/structure/cable/green{ d1 = 1; @@ -15702,13 +15739,13 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "fbZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "fco" = ( /obj/structure/cable/green{ d1 = 1; @@ -15719,7 +15756,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "fcs" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -15739,7 +15776,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "fcv" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -15747,7 +15784,7 @@ id = "sc-WThead5" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "fcB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -15770,10 +15807,10 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "fcD" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "fcL" = ( /obj/machinery/computer/centrifuge, /obj/effect/floor_decal/borderfloorwhite{ @@ -15785,7 +15822,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "fcW" = ( /obj/item/toy/xmastree{ pixel_y = 6; @@ -15807,7 +15844,7 @@ pixel_y = 27 }, /turf/simulated/floor/greengrid, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "fde" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 8 @@ -15816,7 +15853,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "fdg" = ( /obj/machinery/light/floortube{ dir = 4; @@ -15830,7 +15867,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "fdp" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -15839,7 +15876,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "fdq" = ( /obj/structure/cable/green{ d1 = 1; @@ -15851,20 +15888,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoS_Quarters) -"fdI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/bridge/sleeping/HoS_Quarters) "fdM" = ( /obj/structure/railing/grey{ color = "yellow" @@ -15878,14 +15902,14 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "fdN" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "fdT" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 @@ -15894,7 +15918,7 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "feh" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -15904,7 +15928,7 @@ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "fey" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -15921,7 +15945,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "feC" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -15930,7 +15954,7 @@ }, /obj/structure/table/steel_reinforced, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "feO" = ( /obj/machinery/shower{ pixel_y = 16 @@ -15947,7 +15971,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "feP" = ( /obj/structure/cable/green{ d1 = 1; @@ -15965,11 +15989,11 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "feT" = ( /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "ffp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -15983,7 +16007,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "ffy" = ( /obj/structure/cable/green{ d1 = 1; @@ -15992,7 +16016,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "ffH" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -16022,13 +16046,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "ffL" = ( /obj/structure/table/standard, /obj/random/medical, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "ffN" = ( /obj/machinery/computer/crew{ dir = 4 @@ -16040,7 +16064,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "ffQ" = ( /obj/structure/railing/grey{ dir = 1 @@ -16052,7 +16076,7 @@ /area/space) "ffT" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "fgb" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -16061,22 +16085,22 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "fgf" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "fgj" = ( /obj/structure/railing{ dir = 8 }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "fgI" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "fgM" = ( /obj/structure/cable/green{ d1 = 1; @@ -16092,7 +16116,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "fhg" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -16105,19 +16129,19 @@ icon_state = "1-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForPort) +/area/engineering/Solar_Array_ForPort) "fhn" = ( /obj/structure/table/steel, /obj/item/binoculars, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "fhs" = ( /obj/structure/ladder{ pixel_y = 3 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1) +/area/maintenance/Deck3_Dorms_ForCorridor1) "fhv" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/porta_turret/ai_defense, @@ -16126,7 +16150,7 @@ network = list("Bridge","Science") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "fhw" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -16143,11 +16167,11 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "fhI" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "fhW" = ( /obj/machinery/firealarm{ dir = 4; @@ -16161,12 +16185,12 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "fid" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "fis" = ( /obj/structure/cable/green{ d1 = 1; @@ -16178,14 +16202,14 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "fiE" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "fiS" = ( /obj/machinery/newscaster{ pixel_y = 28; @@ -16200,7 +16224,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "fji" = ( /obj/machinery/light{ dir = 8; @@ -16217,7 +16241,7 @@ pixel_x = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "fjx" = ( /obj/structure/bed/chair/wood{ dir = 8; @@ -16231,7 +16255,7 @@ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "fjA" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -16252,14 +16276,14 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "fjD" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "fjE" = ( /obj/item/storage/belt/utility/full{ pixel_y = -6 @@ -16273,10 +16297,10 @@ pixel_x = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "fjG" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "fjH" = ( /obj/machinery/light{ dir = 8; @@ -16284,19 +16308,19 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "fjK" = ( /obj/structure/closet/secure_closet/personal/patient, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_1) +/area/medical/Patient_1) "fjQ" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "fjT" = ( /obj/structure/table/standard, /obj/random/maintenance/foodstuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "fjX" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -16314,7 +16338,7 @@ icon_state = "1-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForPort) +/area/engineering/Solar_Array_ForPort) "fjZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -16323,7 +16347,7 @@ dir = 5 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "fke" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, @@ -16333,7 +16357,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "fkg" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -16349,7 +16373,7 @@ network = list("Bridge") }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "fkm" = ( /obj/structure/cable/green{ d1 = 1; @@ -16371,7 +16395,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "fkG" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -16386,7 +16410,7 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "fkN" = ( /obj/structure/reagent_dispensers/water_cooler/full{ dir = 1 @@ -16394,17 +16418,13 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "fkS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/turf/simulated/floor/carpet/brown, +/area/crew_quarters/Chomp_Stage) "fkV" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -16413,7 +16433,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "flb" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -16438,14 +16458,14 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "fle" = ( /obj/item/toy/plushie/borgplushie/medihound, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "fls" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -16453,7 +16473,7 @@ id = "sc-WTpatient01" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Patient_1) +/area/medical/Patient_1) "flB" = ( /obj/machinery/light{ dir = 4; @@ -16463,7 +16483,7 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "flM" = ( /obj/structure/extinguisher_cabinet{ dir = 4; @@ -16484,10 +16504,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "fmf" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "fmo" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -16496,7 +16516,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "fmx" = ( /obj/structure/table/sifwoodentable, /obj/machinery/computer/security/telescreen/entertainment{ @@ -16513,20 +16533,11 @@ dir = 4 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "fmC" = ( -/obj/structure/table/rack/shelf, -/obj/random/maintenance/engineering, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/obj/random/mainttoyloot, -/obj/random/thermalponcho, -/obj/random/trash, -/obj/random/trash, -/obj/random/contraband, -/obj/random/fishing_junk, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/brown, +/area/crew_quarters/Chomp_Stage) "fmH" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -16535,7 +16546,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "fmM" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -16554,7 +16565,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Patient_1) +/area/medical/Patient_1) "fmO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -16566,7 +16577,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "fmR" = ( /obj/structure/table/hardwoodtable, /obj/item/gps/command{ @@ -16578,7 +16589,7 @@ }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "fnd" = ( /obj/structure/cable/green{ d1 = 1; @@ -16589,7 +16600,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "fnj" = ( /obj/structure/cable/green{ d1 = 1; @@ -16606,7 +16617,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "fnk" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -16616,7 +16627,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "fnm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -16631,7 +16642,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "fnn" = ( /obj/structure/sign/flag/sol/left, /obj/structure/cable/white{ @@ -16640,7 +16651,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "fnD" = ( /obj/structure/cable/green{ d1 = 1; @@ -16671,7 +16682,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "fnF" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -16688,7 +16699,7 @@ }, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "fnJ" = ( /obj/structure/railing/grey{ dir = 4 @@ -16703,14 +16714,14 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "fod" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "fov" = ( /obj/structure/lattice, /obj/structure/railing/grey, @@ -16719,7 +16730,7 @@ /area/space) "foz" = ( /turf/unsimulated/mask, -/area/SouthernCrossV2/Maints/Room_88) +/area/maintenance/Room_88) "foO" = ( /obj/structure/cable/green{ d1 = 4; @@ -16741,7 +16752,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "foU" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/map_helper/airlock/atmos/chamber_pump, @@ -16749,11 +16760,11 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "foV" = ( /obj/structure/table/glass, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "foW" = ( /obj/structure/cable/green{ d1 = 1; @@ -16774,7 +16785,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "fpl" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -16788,14 +16799,14 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "fpy" = ( /obj/structure/table/steel, /obj/random/toolbox, /obj/random/maintenance/cargo, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "fpz" = ( /obj/machinery/light{ dir = 8; @@ -16803,13 +16814,13 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "fpQ" = ( /obj/effect/floor_decal/spline/fancy{ dir = 8 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "fqj" = ( /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/floor_decal/industrial/outline/blue, @@ -16817,7 +16828,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "fqu" = ( /obj/structure/table/glass, /obj/machinery/camera/network/research{ @@ -16825,7 +16836,7 @@ network = list("Medical") }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_1) +/area/medical/Patient_1) "fqC" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -16837,7 +16848,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "fqD" = ( /obj/structure/cable{ d1 = 4; @@ -16845,7 +16856,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "fqE" = ( /obj/machinery/portable_atmospherics/canister/empty, /obj/structure/window/reinforced{ @@ -16854,7 +16865,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "fqG" = ( /obj/structure/cable/green{ d1 = 1; @@ -16862,7 +16873,7 @@ icon_state = "1-2" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "frd" = ( /obj/structure/cable/green{ d1 = 4; @@ -16882,7 +16893,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "frg" = ( /obj/structure/table/standard, /obj/item/reagent_containers/glass/bucket{ @@ -16904,7 +16915,7 @@ dir = 1 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "frh" = ( /obj/machinery/alarm{ dir = 1; @@ -16913,7 +16924,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "frm" = ( /obj/structure/cable/green{ d1 = 1; @@ -16929,14 +16940,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) -"frp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "frv" = ( /obj/structure/cable/green{ d1 = 4; @@ -16964,14 +16968,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "frz" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "frB" = ( /obj/item/bedsheet/pirate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "frG" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -16988,7 +16992,7 @@ icon_state = "0-8" }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "frX" = ( /obj/effect/catwalk_plated/techfloor, /obj/structure/cable/green{ @@ -16997,14 +17001,14 @@ icon_state = "4-8" }, /turf/simulated/floor/greengrid, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "fsh" = ( /obj/structure/table/standard, /obj/random/maintenance/misc, /obj/random/maintenance/misc, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) +/area/maintenance/Deck3_Dorms_StarChamber2) "fsI" = ( /obj/structure/bed/chair{ dir = 4 @@ -17013,7 +17017,7 @@ name = "Cargo Technician" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "fsM" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -17024,7 +17028,7 @@ name = "Stairwell" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "fto" = ( /obj/structure/cable/green{ d1 = 4; @@ -17045,7 +17049,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "fts" = ( /obj/structure/sink{ pixel_y = 14 @@ -17054,7 +17058,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "ftF" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -17065,11 +17069,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "ftJ" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "fua" = ( /obj/machinery/ai_status_display, /obj/structure/cable/white{ @@ -17078,7 +17082,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "fuk" = ( /obj/structure/cable/white{ d1 = 1; @@ -17086,7 +17090,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "fuu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -17094,17 +17098,17 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "fuC" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "fuK" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /obj/structure/table/woodentable, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "fuN" = ( /obj/structure/cable{ d1 = 1; @@ -17123,7 +17127,7 @@ sortType = "Primary Engine" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "fuO" = ( /obj/machinery/shower{ pixel_y = 16 @@ -17137,14 +17141,14 @@ /obj/machinery/door/window/southleft, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "fuP" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "fvh" = ( /obj/machinery/alarm{ dir = 8; @@ -17165,7 +17169,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "fvy" = ( /obj/structure/railing{ dir = 8 @@ -17174,7 +17178,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "fwd" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -17185,7 +17189,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "fwh" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -17203,7 +17207,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "fwv" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -17217,7 +17221,7 @@ }, /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "fwz" = ( /obj/structure/table/woodentable, /obj/item/toy/eight_ball/conch, @@ -17225,19 +17229,19 @@ dir = 4 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "fwN" = ( /obj/effect/floor_decal/corner/white/border{ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "fwR" = ( /obj/effect/floor_decal/carpet/blue{ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "fwT" = ( /obj/structure/cable{ d1 = 1; @@ -17245,7 +17249,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "fwW" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -17254,7 +17258,7 @@ icon_state = "2-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "fxe" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -17276,7 +17280,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "fxp" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -17287,7 +17291,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "fxx" = ( /obj/machinery/computer/security/engineering{ dir = 1 @@ -17300,15 +17304,15 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "fxz" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "fxU" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "fxV" = ( /obj/structure/cable/green{ d1 = 4; @@ -17317,10 +17321,10 @@ }, /obj/structure/table/woodentable, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "fya" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "fyg" = ( /obj/machinery/door/window/brigdoor/westleft{ req_one_access = list(5,47); @@ -17332,7 +17336,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "fyp" = ( /obj/structure/railing{ dir = 1 @@ -17343,20 +17347,20 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "fyw" = ( /obj/machinery/cryopod/robot{ dir = 4 }, /turf/simulated/floor/bluegrid, -/area/SouthernCrossV2/Bridge/Cyborg_Station) +/area/bridge/Cyborg_Station) "fyz" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "fyI" = ( /obj/structure/closet/crate, /obj/item/circuitboard/smes, @@ -17369,13 +17373,24 @@ /obj/item/smes_coil/super_io, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) +"fyW" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/ai_status_display{ + name = "1S-AI display"; + pixel_y = -32 + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "fzi" = ( /obj/structure/sign/directions/dorms{ dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "fzr" = ( /obj/structure/railing{ dir = 1 @@ -17384,14 +17399,14 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "fzy" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "fzE" = ( /obj/structure/cable/green{ d1 = 4; @@ -17404,17 +17419,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 4 - }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "fzL" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -17438,7 +17444,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "fzQ" = ( /obj/item/modular_computer/console/preset/command{ dir = 1 @@ -17446,7 +17452,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "fzV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -17455,7 +17461,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "fzX" = ( /obj/machinery/optable, /obj/effect/floor_decal/borderfloor, @@ -17463,13 +17469,13 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "fAa" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "fAn" = ( /obj/structure/cable/white{ d1 = 1; @@ -17477,7 +17483,7 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "fAC" = ( /obj/machinery/disposal, /obj/structure/sign/securearea{ @@ -17494,7 +17500,7 @@ network = list("Medical") }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "fAM" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 @@ -17502,7 +17508,7 @@ /turf/simulated/floor/boxing{ name = "yoga mat" }, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "fAR" = ( /obj/structure/cable/green{ d1 = 1; @@ -17515,8 +17521,13 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/borderfloorwhite/corner2, /obj/effect/floor_decal/corner/white/bordercorner2, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "fBj" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/reinforced/airless, @@ -17529,7 +17540,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "fBx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -17548,12 +17559,12 @@ req_one_access = list(1,11,24) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "fBA" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/power/tesla_coil/splitter, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "fBJ" = ( /obj/machinery/shower{ dir = 1 @@ -17570,13 +17581,13 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "fBQ" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "fBR" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -17584,7 +17595,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "fBU" = ( /obj/structure/table/woodentable, /obj/machinery/computer/security/telescreen/entertainment{ @@ -17593,7 +17604,7 @@ pixel_y = -4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "fCi" = ( /obj/structure/table/glass, /obj/item/roller{ @@ -17614,7 +17625,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "fCm" = ( /obj/machinery/power/terminal{ dir = 8 @@ -17624,10 +17635,10 @@ icon_state = "0-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "fCn" = ( /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "fCo" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -17638,14 +17649,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "fCr" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "fCE" = ( /obj/machinery/firealarm{ dir = 4; @@ -17663,7 +17674,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "fCX" = ( /obj/machinery/light{ dir = 1; @@ -17676,29 +17687,29 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "fDf" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "fDg" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "fDu" = ( /obj/structure/reagent_dispensers/fueltank, /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "fDG" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "fDV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -17713,7 +17724,7 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1) +/area/maintenance/Deck3_Dorms_ForCorridor1) "fDW" = ( /obj/structure/table/woodentable, /obj/structure/cable/green{ @@ -17725,7 +17736,7 @@ dir = 5 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "fDX" = ( /obj/structure/cable/green{ d1 = 1; @@ -17740,7 +17751,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "fDZ" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/button/remote/airlock{ @@ -17751,11 +17762,11 @@ specialfunctions = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "fEm" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "fED" = ( /obj/structure/bed/double/padded, /obj/structure/bed/double/padded{ @@ -17766,7 +17777,7 @@ pixel_y = -23 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "fEI" = ( /obj/structure/railing{ dir = 1 @@ -17775,7 +17786,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "fFk" = ( /obj/structure/closet/emergsuit_wall{ dir = 4; @@ -17783,7 +17794,7 @@ name = "1E-emergency suit storage" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "fFn" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -17796,7 +17807,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "fFq" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -17814,11 +17825,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "fFy" = ( /obj/structure/closet/secure_closet/personal/patient, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "fFB" = ( /obj/machinery/camera/network/security{ dir = 10; @@ -17826,16 +17837,16 @@ network = list("Bridge") }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "fFF" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "fFH" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "fGa" = ( /obj/machinery/alarm{ dir = 4; @@ -17857,7 +17868,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "fGq" = ( /obj/machinery/computer/general_air_control/large_tank_control{ input_tag = "SC-o2IN"; @@ -17867,7 +17878,7 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "fGs" = ( /obj/structure/cable/green{ d1 = 1; @@ -17879,7 +17890,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "fGy" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -17890,7 +17901,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "fGz" = ( /obj/structure/cable/green{ d1 = 1; @@ -17900,10 +17911,10 @@ /obj/effect/catwalk_plated, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "fGB" = ( /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "fGE" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -17913,7 +17924,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "fGG" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -17927,7 +17938,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "fGI" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -17957,14 +17968,14 @@ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "fHm" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortCorridor1) +/area/maintenance/Deck3_Medical_AftPortCorridor1) "fHn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -17996,7 +18007,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "fHp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -18008,7 +18019,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "fHB" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Solar - ForStar"; @@ -18025,7 +18036,7 @@ icon_state = "0-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "fHI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -18042,14 +18053,14 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "fHS" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "fHV" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -18066,14 +18077,17 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "fHW" = ( /obj/machinery/light{ dir = 1; name = "1N-lighting fixture" }, -/turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/obj/effect/floor_decal/corner/paleblue{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/Control_Atrium) "fIy" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 10 @@ -18088,7 +18102,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "fIG" = ( /obj/machinery/alarm{ dir = 1; @@ -18109,7 +18123,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "fIV" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Dmc-Dorms Foyer2"; @@ -18122,7 +18136,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "fJg" = ( /obj/structure/railing, /obj/structure/railing{ @@ -18135,24 +18149,24 @@ }, /obj/machinery/door/firedoor/multi_tile, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "fJj" = ( /obj/effect/floor_decal/corner/red/border{ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "fJs" = ( /obj/structure/fitness/punchingbag, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "fJR" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Central_Engineering_Post) "fKp" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "fKC" = ( /obj/fiftyspawner/glass, /obj/fiftyspawner/glass, @@ -18172,7 +18186,7 @@ /obj/structure/closet/crate/secure/large/reinforced, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "fKD" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 @@ -18181,7 +18195,7 @@ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "fKF" = ( /obj/structure/bed/chair/sofa/left/purp{ dir = 4 @@ -18195,7 +18209,7 @@ dir = 5 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "fKI" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -18212,7 +18226,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "fKL" = ( /obj/structure/sink{ dir = 8; @@ -18231,7 +18245,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "fKN" = ( /obj/structure/cable/green{ d1 = 1; @@ -18241,7 +18255,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "fKP" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, @@ -18251,7 +18265,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "fKY" = ( /obj/structure/undies_wardrobe, /obj/item/reagent_containers/food/drinks/cans/waterbottle{ @@ -18267,10 +18281,10 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "fLj" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "fLv" = ( /obj/structure/extinguisher_cabinet{ dir = 1; @@ -18280,7 +18294,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "fLz" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -18290,16 +18304,7 @@ }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) -"fLJ" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/arrows/yellow, -/obj/effect/floor_decal/industrial/arrows/yellow{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/medical/Autoresleeving) "fLK" = ( /obj/structure/cable/green{ d1 = 2; @@ -18321,7 +18326,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "fLM" = ( /obj/structure/cable/green{ d1 = 1; @@ -18335,7 +18340,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "fMf" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -18345,13 +18350,13 @@ dir = 4 }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "fMn" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "fME" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -18361,7 +18366,7 @@ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "fMK" = ( /obj/structure/cable/green{ d1 = 4; @@ -18386,7 +18391,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "fMN" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -18405,10 +18410,10 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "fMV" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "fNe" = ( /obj/machinery/alarm{ dir = 1; @@ -18417,7 +18422,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "fNg" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -18431,7 +18436,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "fNB" = ( /obj/item/radio/intercom{ dir = 4; @@ -18441,25 +18446,30 @@ /obj/effect/floor_decal/techfloor/orange/corner{ dir = 1 }, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -27; + name = "1S-emergency suit storage" + }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "fNI" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "fNJ" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "fNS" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "fNU" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -18467,7 +18477,7 @@ icon_state = "1-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "fOa" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/steeldecal/steel_decals10{ @@ -18477,7 +18487,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "fOB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -18496,28 +18506,18 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Autoresleeving) -"fPf" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/gate/thin{ - id = "sc-GCkitchen"; - layer = 3.3; - name = "Kitchen Shutters"; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/medical/Autoresleeving) "fPi" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "fPj" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "fPx" = ( /obj/structure/cable/green{ d1 = 1; @@ -18535,21 +18535,21 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "fPG" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "fPM" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "fPP" = ( /obj/structure/cable/green{ d1 = 1; @@ -18562,7 +18562,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "fPU" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -18571,7 +18571,7 @@ dir = 1 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "fQc" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, @@ -18582,7 +18582,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "fQk" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -18593,7 +18593,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "fQm" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -18602,13 +18602,13 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "fQw" = ( /obj/machinery/vending/nifsoft_shop{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "fQA" = ( /obj/machinery/atmospherics/unary/heat_exchanger{ dir = 4 @@ -18617,25 +18617,25 @@ dir = 6 }, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "fQB" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "fQG" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "fQX" = ( /obj/structure/sign/level/three/large, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "fRd" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -18649,7 +18649,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "fRJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -18672,7 +18672,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "fSg" = ( /obj/effect/decal/warning_stripes, /obj/machinery/atmospherics/tvalve/mirrored/bypass, @@ -18682,7 +18682,7 @@ name = "W-fire alarm" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "fSk" = ( /obj/machinery/status_display{ pixel_x = -32; @@ -18700,7 +18700,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "fSs" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -18714,7 +18714,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Medical/Patient_3) +/area/medical/Patient_3) "fSx" = ( /obj/item/radio/intercom{ dir = 8; @@ -18728,13 +18728,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "fSz" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "fTe" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/door/airlock/angled_bay/elevator/glass{ @@ -18748,18 +18748,18 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "fTg" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "fTh" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "fTk" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "fTw" = ( /obj/machinery/power/apc{ dir = 1; @@ -18785,35 +18785,35 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "fTE" = ( /obj/structure/sign/directions/medical/resleeving{ pixel_y = 9; dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "fTK" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "fTX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "fTZ" = ( /obj/machinery/atmospherics/valve/digital{ name = "Emergency Cooling Valve 1" }, /obj/effect/floor_decal/industrial/outline, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "fUa" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "fUj" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -18821,7 +18821,7 @@ id = "sc-WTpatient02" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Patient_2) +/area/medical/Patient_2) "fUr" = ( /obj/machinery/light{ dir = 8; @@ -18829,7 +18829,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Server_Room) +/area/bridge/Server_Room) "fUE" = ( /obj/structure/bed/chair/sofa/right/blue, /obj/machinery/newscaster{ @@ -18840,7 +18840,7 @@ dir = 8 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "fUH" = ( /obj/item/radio/intercom{ dir = 1; @@ -18848,7 +18848,7 @@ pixel_y = 22 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "fUI" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -18866,7 +18866,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "fUM" = ( /obj/machinery/disposal, /obj/effect/floor_decal/spline/fancy/wood{ @@ -18874,14 +18874,14 @@ }, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "fUN" = ( /obj/structure/railing{ dir = 1 }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "fVy" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -18890,7 +18890,13 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) +"fVJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "fVO" = ( /obj/machinery/iv_drip, /obj/effect/floor_decal/borderfloorwhite{ @@ -18902,7 +18908,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "fVU" = ( /obj/structure/table/hardwoodtable, /obj/item/storage/box/pocky{ @@ -18914,7 +18920,7 @@ pixel_x = -5 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "fWg" = ( /obj/structure/sign/nosmoking_1, /obj/structure/cable/green{ @@ -18932,17 +18938,17 @@ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "fWz" = ( /obj/structure/bed/chair/sofa/right/sif_ora{ dir = 4 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "fWL" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "fWQ" = ( /obj/structure/cable/green{ d1 = 4; @@ -18955,14 +18961,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ d1 = 2; d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "fXj" = ( /obj/structure/cable/yellow{ d2 = 4; @@ -18975,21 +18980,21 @@ /turf/simulated/floor/airless{ icon_state = "solarpanel" }, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "fXn" = ( /obj/structure/bed/chair/wood{ dir = 4 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "fXS" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "fXW" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27; @@ -19009,7 +19014,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "fYc" = ( /obj/structure/bed/chair/wood{ dir = 4 @@ -19018,7 +19023,7 @@ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "fYj" = ( /obj/structure/table/rack/holorack, /obj/machinery/door/window/brigdoor/northright, @@ -19042,7 +19047,7 @@ pixel_x = -1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "fYB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -19052,7 +19057,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "fYG" = ( /obj/structure/table/rack/shelf, /obj/random/tech_supply, @@ -19060,11 +19065,11 @@ /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "fYV" = ( /obj/structure/sign/warning/airlock, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "fYW" = ( /obj/machinery/atmospherics/unary/vent_pump{ external_pressure_bound = 140; @@ -19076,37 +19081,37 @@ }, /obj/effect/floor_decal/spline/fancy/wood/corner, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "fZd" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "fZu" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) +/area/engineering/Engine2_Canister_Storage) "fZG" = ( /obj/structure/sign/directions/roomnum{ pixel_y = -8; dir = 5 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "fZH" = ( /obj/structure/table/standard, /obj/item/toy/figure/gardener, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "fZO" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "fZP" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -19126,27 +19131,27 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "fZT" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/engine_setup/coolant_canister, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "fZY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "gam" = ( /obj/structure/table/rack/steel, /obj/random/maintenance/engineering, /obj/random/maintenance/engineering, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "gao" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, @@ -19157,7 +19162,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "gaI" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -19171,18 +19176,18 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "gbc" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "gbg" = ( /obj/structure/table/woodentable, /obj/machinery/computer/med_data/laptop{ dir = 4 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "gbm" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment, @@ -19193,7 +19198,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "gbp" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 4 @@ -19201,7 +19206,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals10, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "gbs" = ( /obj/structure/table/rack/shelf/steel, /obj/item/suit_cooling_unit{ @@ -19244,10 +19249,10 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "gbu" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "gbA" = ( /obj/effect/floor_decal/industrial/warning/color/red, /obj/effect/floor_decal/industrial/warning/color{ @@ -19271,7 +19276,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "gbU" = ( /obj/machinery/light{ dir = 4; @@ -19286,7 +19291,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "gci" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -19299,7 +19304,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "gct" = ( /obj/machinery/firealarm{ dir = 4; @@ -19313,7 +19318,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "gcG" = ( /obj/structure/cable/white{ d1 = 1; @@ -19332,7 +19337,7 @@ name = "maint_pred" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "gcQ" = ( /obj/structure/cable{ d1 = 1; @@ -19341,14 +19346,14 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "gcW" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "gcY" = ( /obj/machinery/alarm{ dir = 1; @@ -19356,7 +19361,7 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "gdg" = ( /obj/machinery/atmospherics/binary/pump{ name = "Phoron to Connector" @@ -19367,7 +19372,7 @@ network = list("engineering") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "gdl" = ( /obj/structure/table/sifwoodentable, /obj/item/gps/command{ @@ -19381,7 +19386,7 @@ pixel_y = 25 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "gdr" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -19392,23 +19397,23 @@ name = "Recreational Access" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "gdt" = ( /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "gdv" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "gdy" = ( /obj/random/trash, /obj/structure/table/standard, /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "gdF" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -19417,7 +19422,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "gdG" = ( /obj/structure/window/basic{ dir = 8 @@ -19430,40 +19435,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "ger" = ( -/obj/structure/table/woodentable, -/obj/item/paper_bin{ - pixel_x = 5 - }, -/obj/item/folder{ - pixel_x = -6 - }, -/obj/item/folder{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/pen/blue{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/pen/multi{ - pixel_x = 5 - }, -/obj/item/pen/red{ - pixel_x = 5; - pixel_y = -3 - }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/light/spot{ + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "geG" = ( /obj/structure/cable{ d1 = 1; @@ -19476,7 +19460,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "geM" = ( /obj/structure/cable{ d1 = 4; @@ -19487,7 +19471,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "geN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -19497,10 +19481,10 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "gfr" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "gfL" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -19511,23 +19495,23 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "gfN" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "gfP" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "ggb" = ( /obj/structure/table/standard, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "ggn" = ( /obj/structure/cable{ d1 = 4; @@ -19539,11 +19523,11 @@ "ggp" = ( /obj/machinery/fitness/heavy/lifter, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "ggu" = ( /obj/machinery/status_display, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "ggw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -19555,11 +19539,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "ggF" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "ggN" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -19567,11 +19551,11 @@ network = list("Bridge") }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "ggO" = ( /obj/structure/sign/painting/public, /turf/simulated/wall/wood, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "ggV" = ( /obj/structure/flora/ausbushes/brflowers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -19581,16 +19565,16 @@ dir = 4 }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "ggZ" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "ghf" = ( /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "ghw" = ( /obj/structure/cable/green{ d1 = 2; @@ -19609,7 +19593,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "ghO" = ( /obj/structure/cable/green{ d1 = 2; @@ -19624,19 +19608,19 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "ghY" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "gig" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "gir" = ( /obj/machinery/alarm{ dir = 8; @@ -19644,7 +19628,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "giD" = ( /obj/structure/bed/chair{ dir = 4 @@ -19653,11 +19637,11 @@ name = "Shaft Miner" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "giF" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "giG" = ( /obj/machinery/clonepod/transhuman/full, /obj/machinery/alarm{ @@ -19667,7 +19651,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "giJ" = ( /obj/machinery/atmospherics/binary/pump{ name = "Air to Mixing" @@ -19677,14 +19661,14 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "gjd" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "gjg" = ( /obj/machinery/light{ dir = 1 @@ -19696,15 +19680,20 @@ /obj/effect/floor_decal/corner/white/border{ dir = 1 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "gjw" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "gjA" = ( /obj/structure/cable/green{ d1 = 1; @@ -19728,7 +19717,7 @@ /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "gjC" = ( /obj/structure/cable/green{ d1 = 1; @@ -19739,7 +19728,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "gjP" = ( /obj/structure/undies_wardrobe, /obj/machinery/alarm{ @@ -19755,7 +19744,7 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "gjT" = ( /obj/machinery/button/remote/airlock{ dir = 8; @@ -19770,17 +19759,17 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "gkt" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "gkA" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "gkF" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -19791,8 +19780,13 @@ /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 9 }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "glb" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 5 @@ -19805,7 +19799,7 @@ dir = 10 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "glg" = ( /obj/structure/closet/emcloset, /obj/machinery/camera/network/security{ @@ -19814,14 +19808,11 @@ network = list("Commons") }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "glv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/brown, +/area/crew_quarters/Chomp_Stage) "glw" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 @@ -19831,7 +19822,7 @@ }, /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "glG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -19859,7 +19850,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "glK" = ( /obj/machinery/light{ dir = 8; @@ -19870,17 +19861,17 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "gmb" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "gmg" = ( /obj/machinery/light/small{ dir = 8 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "gms" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -19888,7 +19879,7 @@ }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "gmz" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/light{ @@ -19897,7 +19888,7 @@ }, /obj/machinery/portable_atmospherics/canister/phoron, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) +/area/engineering/Engine2_Canister_Storage) "gmD" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -19911,7 +19902,7 @@ icon_state = "2-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "gnf" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -19925,7 +19916,7 @@ }, /obj/random/trash, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "gno" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -19944,17 +19935,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Patient_3) +/area/medical/Patient_3) "gnw" = ( /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "gnG" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "gnK" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ @@ -19985,12 +19976,12 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "gnN" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/white/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "gnX" = ( /obj/machinery/light/floortube{ pixel_y = -2 @@ -20000,14 +19991,14 @@ }, /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "gop" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Brd-Control Room1"; network = list("Bridge") }, -/turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/turf/simulated/floor/tiled/dark, +/area/bridge/Control_Atrium) "goM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -20016,7 +20007,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "gpg" = ( /obj/structure/cable/green{ d1 = 4; @@ -20033,7 +20024,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "gpl" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 @@ -20043,7 +20034,7 @@ }, /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "gpq" = ( /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/borderfloor/corner2{ @@ -20053,7 +20044,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "gpF" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -20062,7 +20053,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "gpH" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -20082,7 +20073,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Dorms_Substation) +/area/maintenance/Dorms_Substation) "gpJ" = ( /obj/structure/bed/chair/sofa/right/blue{ dir = 8 @@ -20096,11 +20087,8 @@ dir = 1 }, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "gpR" = ( -/obj/machinery/computer/arcade{ - dir = 1 - }, /obj/machinery/firealarm{ dir = 8; name = "W-fire alarm"; @@ -20109,8 +20097,11 @@ /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, +/obj/item/stool/padded{ + dir = 4 + }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "gpX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -20124,7 +20115,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "gqa" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -20133,7 +20124,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "gqe" = ( /obj/structure/table/rack/holorack, /obj/machinery/door/window/brigdoor/northleft, @@ -20157,7 +20148,7 @@ pixel_x = -1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "gqf" = ( /obj/machinery/alarm{ dir = 1; @@ -20165,7 +20156,7 @@ }, /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "gqj" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -20178,19 +20169,19 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "gqm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "gqt" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "gqu" = ( /obj/machinery/computer/communications{ dir = 4 @@ -20207,14 +20198,14 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "gqI" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "gqL" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/ai_status_display{ @@ -20224,11 +20215,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "gqT" = ( /obj/structure/bed/chair/sofa/yellow, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "gqX" = ( /obj/effect/catwalk_plated, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ @@ -20236,7 +20227,7 @@ }, /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "grh" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -20253,12 +20244,12 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "grs" = ( /obj/machinery/vending/wardrobe/robodrobe, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "grW" = ( /obj/machinery/pointdefense{ id_tag = "PD Secondary" @@ -20274,14 +20265,14 @@ "gsi" = ( /obj/structure/table/hardwoodtable, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "gsu" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Com-Aft Hall1"; network = list("Commons") }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "gsQ" = ( /obj/structure/cable/green{ d1 = 2; @@ -20304,17 +20295,17 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "gsS" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "gtn" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "gtC" = ( /obj/machinery/firealarm{ dir = 4; @@ -20338,11 +20329,11 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "gtE" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "gtJ" = ( /obj/structure/closet/emcloset, /obj/machinery/light{ @@ -20351,7 +20342,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "gud" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor/corner{ @@ -20364,13 +20355,13 @@ dir = 10 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "guh" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "gun" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "guM" = ( /obj/structure/cable/green{ d1 = 1; @@ -20394,7 +20385,7 @@ dir = 9 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "guP" = ( /obj/effect/floor_decal/borderfloorwhite/corner2{ dir = 1 @@ -20409,7 +20400,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "gvM" = ( /obj/structure/cable/green{ d1 = 4; @@ -20423,7 +20414,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "gvN" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -20440,7 +20431,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "gvZ" = ( /obj/structure/closet/radiation, /obj/effect/floor_decal/borderfloorblack{ @@ -20450,7 +20441,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "gwf" = ( /obj/structure/ladder{ pixel_y = 3 @@ -20461,7 +20452,7 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "gwA" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ external_pressure_bound = 140; @@ -20481,19 +20472,19 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "gwJ" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "gxe" = ( /obj/machinery/atmospherics/binary/pump, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "gxf" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "gxt" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/valve/digital{ @@ -20501,7 +20492,7 @@ name = "secondary TEG valve" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "gxz" = ( /obj/effect/catwalk_plated, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ @@ -20509,7 +20500,7 @@ }, /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "gxC" = ( /obj/machinery/power/apc{ dir = 8; @@ -20522,7 +20513,7 @@ }, /obj/structure/cable/white, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "gxS" = ( /obj/structure/closet/emergsuit_wall{ pixel_y = 27; @@ -20535,18 +20526,34 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "gyc" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "gyq" = ( /obj/machinery/atmospherics/valve/open, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) +"gys" = ( +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Central Subgrid"; + name_tag = "Central Subgrid" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/engineering/Central_Engineering_Post) "gyA" = ( /obj/machinery/atmospherics/omni/atmos_filter{ tag_north = 1; @@ -20557,13 +20564,13 @@ /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/engine_setup/atmo_filter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "gyU" = ( /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "gyV" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "gzf" = ( /obj/structure/bed/chair/sofa/left/brown{ dir = 4 @@ -20581,7 +20588,7 @@ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "gzl" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -20590,21 +20597,21 @@ icon_state = "1-2" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "gzB" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "gzH" = ( /obj/structure/table/standard, /obj/random/maintenance/misc, /obj/random/maintenance/misc, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "gzM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -20613,7 +20620,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "gzR" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -20626,11 +20633,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "gzV" = ( /obj/structure/noticeboard/airlock, /turf/simulated/wall, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "gAn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -20657,13 +20664,13 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "gAF" = ( /obj/structure/loot_pile/maint/technical, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "gAT" = ( /obj/structure/cable/green{ d1 = 4; @@ -20680,14 +20687,14 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "gAU" = ( /obj/structure/table/glass, /obj/machinery/computer/med_data/laptop{ pixel_y = 12 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_1) +/area/medical/Patient_1) "gBd" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -20699,17 +20706,17 @@ id_tag = "sc-DBCstall1" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "gBw" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "gBO" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "gBQ" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -20724,7 +20731,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "gCe" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -20733,7 +20740,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "gCl" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -20750,19 +20757,19 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "gCE" = ( /obj/structure/sign/directions/engineering/solars{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "gCJ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "gCO" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -20781,7 +20788,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "gCQ" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -20790,16 +20797,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "gDa" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "gDe" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "gDl" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -20808,15 +20815,15 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "gDU" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "gEr" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Server_Room) +/area/bridge/Server_Room) "gEs" = ( /obj/structure/cable/green{ d1 = 1; @@ -20832,7 +20839,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "gEG" = ( /obj/effect/floor_decal/corner/red/full{ dir = 1 @@ -20842,7 +20849,7 @@ id_tag = "SC-n2_sensor" }, /turf/simulated/floor/reinforced/nitrogen, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "gEI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -20859,7 +20866,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Dorms_Substation) +/area/maintenance/Dorms_Substation) "gEK" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -20877,7 +20884,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "gEL" = ( /obj/structure/railing/grey{ dir = 1 @@ -20909,16 +20916,16 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "gEV" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "gEX" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "gFg" = ( /obj/machinery/light{ dir = 8; @@ -20937,7 +20944,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "gFG" = ( /obj/item/bedsheet/brown, /obj/structure/cable/green{ @@ -20946,7 +20953,7 @@ icon_state = "4-8" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "gFX" = ( /obj/structure/cable/green{ d1 = 1; @@ -20978,12 +20985,12 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "gGh" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "gGj" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -21011,7 +21018,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "gGk" = ( /obj/structure/closet/emergsuit_wall{ dir = 8; @@ -21022,7 +21029,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "gGw" = ( /obj/item/radio/intercom/private{ dir = 4; @@ -21054,23 +21061,23 @@ name = "tripai" }, /turf/simulated/floor/greengrid, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "gGQ" = ( /obj/structure/loot_pile/maint/technical, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "gGW" = ( /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "gHy" = ( /obj/effect/catwalk_plated, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "gHI" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/door/blast/angled{ @@ -21079,7 +21086,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "gHR" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -21087,7 +21094,7 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForPort) +/area/engineering/Solar_Array_ForPort) "gIn" = ( /obj/structure/table/rack/shelf, /obj/item/honey_frame{ @@ -21126,12 +21133,12 @@ pixel_x = 6 }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "gIq" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "gIE" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -21151,21 +21158,21 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "gIN" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "gIP" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/effect/floor_decal/spline/fancy{ dir = 10 }, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "gJa" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -21198,7 +21205,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "gJe" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -21210,7 +21217,7 @@ name = "Atmospheric Technician" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "gJm" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -21218,8 +21225,13 @@ /obj/effect/floor_decal/corner/lightgrey/bordercorner{ dir = 4 }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "gJp" = ( /obj/structure/cable/green{ d1 = 4; @@ -21237,12 +21249,12 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "gJr" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "gJu" = ( /obj/machinery/recharge_station, /obj/machinery/light/small, @@ -21258,7 +21270,7 @@ id = "sc-DBCstall2" }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "gJI" = ( /obj/structure/cable/green{ d1 = 4; @@ -21270,12 +21282,12 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "gJL" = ( /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "gJN" = ( /obj/structure/toilet{ dir = 1 @@ -21293,13 +21305,13 @@ id = "sc-DBCstall1" }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "gKj" = ( /obj/structure/toilet{ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "gKC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -21325,7 +21337,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "gKG" = ( /obj/machinery/firealarm{ pixel_y = -25; @@ -21335,7 +21347,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "gKH" = ( /obj/machinery/turretid/stun{ check_synth = 1; @@ -21350,7 +21362,7 @@ icon_state = "1-4" }, /turf/simulated/floor/greengrid, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "gKL" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -21376,23 +21388,23 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "gKO" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "gKS" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "gKV" = ( /obj/machinery/vending/sol, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "gKW" = ( /obj/structure/table/steel, /obj/item/binoculars, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "gLb" = ( /obj/item/reagent_containers/food/snacks/burrito_hell, /obj/machinery/vending/wardrobe/clowndrobe, @@ -21403,7 +21415,7 @@ pixel_x = -4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "gLF" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/effect/floor_decal/corner/white{ @@ -21411,7 +21423,7 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/reinforced/n20, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "gLQ" = ( /obj/machinery/alarm{ dir = 4; @@ -21427,7 +21439,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "gLS" = ( /obj/structure/cable{ d1 = 4; @@ -21440,10 +21452,10 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "gMj" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "gMn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -21459,7 +21471,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "gMH" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -21482,7 +21494,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "gMR" = ( /obj/structure/window/plastitanium{ dir = 8 @@ -21498,8 +21510,8 @@ dir = 4; name = "1E-light fixture" }, -/turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/turf/simulated/floor/wood/alt/parquet/turfpack/airless, +/area/bridge/Captain_Office) "gMX" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ @@ -21507,13 +21519,13 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "gNg" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "gNl" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -21527,28 +21539,20 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "gNz" = ( -/obj/structure/ladder{ - pixel_y = 3 - }, -/obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/sign/small/warning/emerg_only{ desc = "Ladder for emergency use only"; pixel_y = -32 }, -/obj/structure/sign/small/warning/emerg_only{ - desc = "Ladder for emergency use only"; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/turf/simulated/floor/plating, +/area/harbor/Port_3_Deck_Airlock_Access) "gNI" = ( /obj/effect/floor_decal/spline/fancy{ dir = 10 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "gNN" = ( /obj/structure/table/wooden_reinforced, /obj/random_multi/single_item/captains_spare_id, @@ -21568,7 +21572,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "gOc" = ( /obj/structure/cable/green{ d1 = 4; @@ -21588,7 +21592,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "gOd" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -21596,7 +21600,7 @@ network = list("Commons") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "gOm" = ( /obj/structure/cable/green{ d1 = 4; @@ -21612,16 +21616,16 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "gOI" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "gOO" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "gOY" = ( /obj/structure/cable/white{ d1 = 1; @@ -21631,13 +21635,13 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "gPj" = ( /obj/machinery/doorbell_chime{ id_tag = "sc-ChimeMed" }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "gPm" = ( /obj/structure/table/marble, /obj/machinery/microwave{ @@ -21645,14 +21649,14 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "gPw" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "gPE" = ( /obj/structure/railing{ dir = 8 @@ -21661,31 +21665,31 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "gPN" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "gQa" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "gQy" = ( /obj/machinery/light/small{ dir = 8 }, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "gQA" = ( /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "gQD" = ( /obj/machinery/portable_atmospherics/powered/pump, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "gQN" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "gQS" = ( /obj/structure/window/reinforced{ dir = 4 @@ -21694,7 +21698,7 @@ dir = 1 }, /turf/simulated/floor/greengrid, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "gQZ" = ( /obj/structure/ladder{ pixel_y = 3 @@ -21705,57 +21709,37 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "gRc" = ( /obj/item/bedsheet/orangedouble, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "gRp" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "gRN" = ( /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "gRR" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "gSb" = ( -/obj/structure/railing, -/obj/machinery/light{ - dir = 4; - name = "1E-light fixture" - }, -/turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) -"gSd" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light_switch{ - name = "N-light switch"; - pixel_x = 12; - pixel_y = 27 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Medical_ForStarChamber3) "gSg" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "gSU" = ( /obj/machinery/power/apc{ dir = 4; @@ -21773,10 +21757,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "gSV" = ( /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "gSX" = ( /obj/item/radio/intercom{ dir = 8; @@ -21790,7 +21774,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "gSY" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 @@ -21798,7 +21782,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "gSZ" = ( /obj/structure/cable/green{ d1 = 2; @@ -21812,7 +21796,7 @@ dir = 10 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "gTb" = ( /obj/structure/table/rack/shelf, /obj/item/storage/firstaid/o2{ @@ -21847,11 +21831,11 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "gTB" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "gTJ" = ( /obj/machinery/light/small, /obj/structure/table/rack/steel, @@ -21859,11 +21843,11 @@ /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "gTT" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "gUg" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 6 @@ -21876,7 +21860,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "gUn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -21885,7 +21869,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "gUv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -21898,14 +21882,14 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "gUA" = ( /obj/structure/table/wooden_reinforced, /obj/machinery/computer/skills{ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "gUE" = ( /obj/machinery/power/apc{ dir = 8; @@ -21927,7 +21911,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "gVi" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -21939,7 +21923,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "gVj" = ( /obj/machinery/atmospherics/valve/digital{ name = "Custom Mix Outlet Valve" @@ -21950,10 +21934,10 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "gVl" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "gVn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -21975,7 +21959,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "gVw" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -21989,7 +21973,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "gWf" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -22001,7 +21985,7 @@ }, /obj/machinery/light/small, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "gWl" = ( /obj/effect/floor_decal/techfloor/orange/corner{ dir = 4 @@ -22012,10 +21996,10 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "gWq" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "gWG" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -22023,10 +22007,10 @@ icon_state = "1-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftPort) +/area/engineering/Solar_Array_AftPort) "gWK" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "gWO" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -22035,7 +22019,7 @@ dir = 8 }, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "gWP" = ( /obj/structure/cable/white{ d1 = 2; @@ -22043,7 +22027,7 @@ icon_state = "2-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "gWR" = ( /obj/structure/cable/green{ d1 = 1; @@ -22057,7 +22041,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForChamber1) +/area/maintenance/Deck3_Bridge_ForChamber1) "gWT" = ( /obj/structure/cable/green{ d1 = 1; @@ -22065,7 +22049,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "gXh" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -22083,11 +22067,11 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "gXC" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "gXD" = ( /obj/structure/table/glass, /obj/random/medical/pillbottle, @@ -22125,19 +22109,19 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "gXK" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "gXM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "gXS" = ( /obj/effect/floor_decal/industrial/warning/color/corner{ dir = 8 @@ -22154,7 +22138,7 @@ name = "Engineering Air Distribution" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "gYi" = ( /obj/structure/table/steel, /obj/item/storage/firstaid/surgery{ @@ -22165,7 +22149,7 @@ pixel_x = 3 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "gYj" = ( /obj/structure/cable/green{ d1 = 1; @@ -22186,14 +22170,14 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "gYn" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "gYN" = ( /obj/structure/undies_wardrobe, /obj/machinery/alarm{ @@ -22209,13 +22193,19 @@ pixel_y = 18 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) +"gYY" = ( +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "gZd" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "gZt" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "gZx" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloorwhite/corner{ @@ -22225,12 +22215,12 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "gZF" = ( /obj/effect/catwalk_plated, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "gZM" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -22252,14 +22242,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "gZV" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) +/area/maintenance/Deck3_Dorms_StarChamber2) "hag" = ( /obj/structure/cable/white{ d1 = 2; @@ -22267,7 +22257,7 @@ icon_state = "2-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "har" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -22276,7 +22266,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "haC" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan, /obj/effect/catwalk_plated/techmaint, @@ -22286,19 +22276,19 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "haI" = ( /obj/structure/table/standard, /obj/random/unidentified_medicine, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "hbE" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/open, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "hbJ" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -22306,10 +22296,10 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "hbN" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "hbO" = ( /obj/structure/window/plastitanium{ color = "white"; @@ -22318,50 +22308,38 @@ dir = 1 }, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "hcx" = ( -/obj/machinery/vending/snlvend, +/obj/structure/table/woodentable, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "hcC" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "hcP" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "hcQ" = ( /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "hdM" = ( /obj/machinery/status_display, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) +"hdW" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "hex" = ( /obj/structure/toilet{ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_09) -"heB" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/concha{ - color = "orange"; - desc = "A sweet bread roll baked with a tamarind topping thats crunchy and delicious, it kinda looks like a shell."; - name = "gummy concha"; - nutriment_desc = list("sweet bread" = 3, "tamarind" = 2, "gummy" = 1); - pixel_y = 10 - }, -/obj/machinery/door/blast/gate/thin{ - id = "sc-GCkitchen"; - layer = 3.3; - name = "Kitchen Shutters"; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/crew_quarters/sleeping/Dormitory_09) "heC" = ( /obj/machinery/power/emitter, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -22371,11 +22349,11 @@ name = "E-fire alarm" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "heF" = ( /obj/machinery/vending/fitness, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "heQ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -22384,7 +22362,7 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "hfg" = ( /obj/structure/cable/green{ d1 = 4; @@ -22404,7 +22382,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/blue/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "hfh" = ( /obj/structure/closet/crate/freezer, /obj/item/virusdish/random{ @@ -22417,7 +22395,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "hfi" = ( /obj/machinery/atmospherics/valve/digital/open{ name = "Hot Loop Waste Gas Management Switch"; @@ -22425,13 +22403,13 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "hfj" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "hfm" = ( /obj/machinery/washing_machine, /obj/item/storage/laundry_basket{ @@ -22445,34 +22423,34 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "hfv" = ( /obj/structure/table/standard, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "hfE" = ( /obj/structure/table/standard, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "hge" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "hgl" = ( /obj/structure/table/bench/sifwooden, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "hgu" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "hgw" = ( /obj/structure/bed/chair/sofa/left/blue, /obj/item/radio/intercom/department/medbay{ @@ -22486,7 +22464,7 @@ color = "#9e9e9e" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "hgB" = ( /obj/structure/cable/green{ d1 = 4; @@ -22504,13 +22482,13 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "hgE" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber1) +/area/maintenance/Deck3_Medical_ForChamber1) "hgN" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "hgP" = ( /obj/machinery/atmospherics/unary/vent_pump{ external_pressure_bound = 0; @@ -22530,11 +22508,11 @@ dir = 4 }, /turf/simulated/floor/reinforced/oxygen, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "hgZ" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "hig" = ( /obj/structure/railing/grey{ dir = 1 @@ -22557,7 +22535,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "hiy" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -22567,7 +22545,7 @@ /obj/machinery/door/airlock/maintenance/command, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "hiF" = ( /obj/structure/table/rack/shelf, /obj/item/storage/firstaid/o2{ @@ -22606,7 +22584,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "hjc" = ( /obj/structure/bed/chair/comfy/orange{ dir = 1 @@ -22615,17 +22593,17 @@ dir = 6 }, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "hjg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "hjB" = ( /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "hjD" = ( /obj/effect/catwalk_plated/white, /turf/simulated/floor/glass/turfpack/airless, @@ -22649,10 +22627,10 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "hkf" = ( /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "hkm" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -22662,7 +22640,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "hkO" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -22683,21 +22661,21 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "hkY" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 28; name = "1N-extinguisher cabinet" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "hli" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "hln" = ( /obj/structure/table/woodentable, /obj/machinery/computer/security/telescreen/entertainment{ @@ -22717,7 +22695,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "hlx" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -22748,7 +22726,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "hlI" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 8 @@ -22759,7 +22737,7 @@ output = 63 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "hlM" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -22779,7 +22757,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "hlU" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/disposalpipe/segment, @@ -22790,16 +22768,16 @@ }, /obj/random/junk, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "hlY" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "hmh" = ( /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "hmi" = ( /obj/structure/bed/chair/sofa/corner/blue{ dir = 8 @@ -22809,12 +22787,12 @@ pixel_x = 22 }, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "hml" = ( /obj/structure/closet/emcloset, /obj/item/toy/chainsaw, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "hmm" = ( /obj/structure/cable{ d1 = 4; @@ -22828,13 +22806,13 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "hmu" = ( /obj/structure/loot_pile/maint/trash, /obj/random/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) +/area/maintenance/Deck3_Dorms_StarChamber2) "hmv" = ( /obj/structure/cable/green{ d1 = 4; @@ -22845,10 +22823,16 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) +"hnD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "hnK" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "hnR" = ( /obj/structure/cable/white{ d1 = 2; @@ -22863,12 +22847,12 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber1) +/area/maintenance/Deck3_Medical_ForChamber1) "hoi" = ( /obj/structure/table/woodentable, /obj/item/deck/cards, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "how" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -22881,20 +22865,20 @@ icon_state = "2-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftPort) +/area/engineering/Solar_Array_AftPort) "hoF" = ( /obj/machinery/computer/security/telescreen/entertainment{ name = "1S-entertainment monitor"; pixel_y = -36 }, -/obj/machinery/computer/arcade{ - dir = 1 - }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, +/obj/machinery/computer/arcade/orion_trail{ + dir = 8 + }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "hoS" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor/corner{ @@ -22904,7 +22888,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "hoW" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -22913,7 +22897,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "hoZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -22939,12 +22923,12 @@ id = "SC-GCaicore" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "hpm" = ( /obj/structure/table/standard, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "hps" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -22956,7 +22940,7 @@ name = "Dorm three" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "hpy" = ( /obj/structure/cable/pink{ d1 = 1; @@ -22964,7 +22948,7 @@ icon_state = "1-4" }, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "hpA" = ( /obj/structure/closet/emergsuit_wall{ dir = 8; @@ -22972,7 +22956,7 @@ name = "1W-emergency suit storage" }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "hpG" = ( /obj/structure/transit_tube{ icon_state = "N-SW" @@ -22987,7 +22971,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "hqb" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -22997,37 +22981,37 @@ color = "yellow" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "hqk" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "hqo" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "hqp" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "hqr" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "hqt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "hrB" = ( /obj/machinery/power/apc{ dir = 4; @@ -23039,7 +23023,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "hsa" = ( /obj/structure/cable/green{ d1 = 4; @@ -23054,14 +23038,14 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "hsc" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "hsi" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortChamber1) +/area/maintenance/Deck3_Dorms_PortChamber1) "hsw" = ( /obj/machinery/power/apc{ dir = 1; @@ -23073,7 +23057,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "hsJ" = ( /obj/structure/table/wooden_reinforced, /obj/item/form_printer{ @@ -23083,14 +23067,14 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "hsN" = ( /obj/structure/table/sifwoodentable, /obj/item/flashlight/lamp/green{ pixel_y = 7 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "hsZ" = ( /obj/structure/displaycase, /obj/machinery/firealarm{ @@ -23099,12 +23083,12 @@ pixel_x = 25 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "hth" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "htn" = ( /obj/structure/table/wooden_reinforced, /obj/structure/window/reinforced/tinted/frosted, @@ -23114,7 +23098,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "htr" = ( /obj/structure/ladder{ pixel_y = 3 @@ -23125,7 +23109,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Dorms_Substation) +/area/maintenance/Dorms_Substation) "htL" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -23134,15 +23118,15 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "hum" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "hux" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) +/area/maintenance/Deck3_Dorms_StarChamber2) "huy" = ( /obj/structure/cable/white{ d1 = 2; @@ -23156,13 +23140,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "huJ" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/flora/lily2, /obj/structure/railing/grey, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "hvg" = ( /obj/structure/table/glass, /obj/item/reagent_containers/glass/beaker/cryoxadone{ @@ -23180,7 +23164,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "hvi" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -23189,7 +23173,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "hvv" = ( /obj/structure/table/steel, /obj/item/storage/box/bodybags{ @@ -23203,7 +23187,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "hvB" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -23212,15 +23196,15 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "hvR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "hwa" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "hwb" = ( /obj/structure/cable/green{ d1 = 2; @@ -23246,7 +23230,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "hwg" = ( /obj/structure/cable/green{ d1 = 4; @@ -23269,7 +23253,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "hwm" = ( /obj/structure/cable/green{ d1 = 1; @@ -23282,14 +23266,14 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "hwu" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /obj/machinery/portable_atmospherics/canister/empty/phoron, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "hxb" = ( /obj/structure/table/marble, /obj/item/glass_jar, @@ -23299,7 +23283,7 @@ name = "Botanist kitchen shutters" }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "hxm" = ( /obj/structure/cable/green{ d1 = 4; @@ -23319,7 +23303,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "hxM" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -23330,7 +23314,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "hxP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -23345,7 +23329,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "hye" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Dmc-Hydroponics2"; @@ -23358,12 +23342,12 @@ dir = 1 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "hyk" = ( /obj/structure/table/woodentable, /obj/item/storage/box/gum, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "hyp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -23374,14 +23358,14 @@ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "hyE" = ( /obj/structure/table/sifwoodentable, /obj/item/storage/chewables/tobacco/fine{ pixel_y = 5 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "hyP" = ( /obj/structure/table/woodentable, /obj/item/paper_bin{ @@ -23423,7 +23407,7 @@ icon_state = "0-4" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "hzi" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/machinery/light{ @@ -23431,7 +23415,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "hzP" = ( /obj/effect/floor_decal/industrial/warning/color/corner, /obj/structure/transit_tube{ @@ -23450,7 +23434,7 @@ name = "Dorm nine" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "hAa" = ( /obj/structure/cable/green{ d1 = 4; @@ -23465,7 +23449,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "hAb" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -23475,14 +23459,14 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "hAc" = ( /obj/structure/bed/chair/sofa/corner/green, /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "hAe" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -23490,7 +23474,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "hAo" = ( /obj/machinery/firealarm{ dir = 4; @@ -23503,7 +23487,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "hAC" = ( /obj/structure/cable/cyan{ d1 = 2; @@ -23523,14 +23507,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "hAK" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, -/turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/turf/simulated/floor/tiled, +/area/hallway/Aft_3_Deck_Central_Corridor_1) "hBe" = ( /obj/effect/floor_decal/techfloor/orange, /obj/machinery/light/floortube{ @@ -23541,16 +23525,16 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "hBq" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "hBu" = ( /obj/structure/bed/chair/oldsofa{ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "hBv" = ( /obj/structure/cable/cyan{ d2 = 2; @@ -23573,14 +23557,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "hBI" = ( /obj/structure/table/rack/shelf, /obj/random/flashlight, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "hBP" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -23605,7 +23589,7 @@ }, /obj/structure/table/wooden_reinforced, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "hBX" = ( /obj/structure/cable/green{ d1 = 4; @@ -23620,7 +23604,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "hCo" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -23628,7 +23612,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "hCH" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 @@ -23640,10 +23624,10 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "hCK" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "hCS" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -23652,7 +23636,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "hCW" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows, @@ -23664,14 +23648,9 @@ req_one_access = list(28) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "hCZ" = ( /obj/structure/table/glass, -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 27; - name = "1E-emergency suit storage" - }, /obj/machinery/alarm{ pixel_y = 22 }, @@ -23680,13 +23659,13 @@ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "hDe" = ( /obj/machinery/transhuman/resleever, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "hDi" = ( /obj/structure/bed/chair/sofa/right/green{ dir = 4 @@ -23695,14 +23674,14 @@ dir = 10 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "hDw" = ( /obj/effect/floor_decal/corner/red/full{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/reinforced/nitrogen, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "hDA" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -23718,7 +23697,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "hDD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -23742,7 +23721,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "hDJ" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ frequency = 1381; @@ -23757,7 +23736,7 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "hDT" = ( /obj/structure/bed/chair/oldsofa/left{ dir = 4 @@ -23774,7 +23753,7 @@ dir = 1 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "hEy" = ( /obj/structure/railing/grey{ color = "yellow" @@ -23784,7 +23763,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "hEz" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 4 @@ -23794,7 +23773,7 @@ /obj/structure/curtain/open/shower, /obj/structure/window/reinforced/tinted/frosted, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "hEO" = ( /obj/structure/cable/green{ d1 = 1; @@ -23812,19 +23791,19 @@ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "hES" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "hFq" = ( /mob/living/simple_mob/animal/passive/fish/koi{ name = "Mupert" }, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "hFy" = ( /obj/structure/sign/flag/almach_a/left, /obj/structure/cable/white{ @@ -23833,7 +23812,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "hFX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -23847,7 +23826,7 @@ }, /obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "hGg" = ( /obj/machinery/alarm{ dir = 8; @@ -23862,7 +23841,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "hGE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 5 @@ -23874,7 +23853,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "hGT" = ( /obj/structure/table/woodentable, /obj/item/paper_bin{ @@ -23900,7 +23879,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "hHj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -23909,16 +23888,16 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "hHz" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "hHB" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "hHH" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/pink{ @@ -23926,25 +23905,25 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "hHM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "hHO" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "hIh" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "hIz" = ( /obj/structure/table/wooden_reinforced, /obj/item/form_printer, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "hII" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -23961,7 +23940,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "hIR" = ( /obj/structure/table/marble, /obj/structure/sink/countertop{ @@ -23982,7 +23961,7 @@ pixel_y = 3 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "hJb" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -23994,20 +23973,20 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "hJj" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "hJs" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/effect/landmark/event_spawn/morphspawn, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "hJM" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "hJN" = ( /obj/machinery/vending/wardrobe/cargodrobe, /obj/machinery/firealarm{ @@ -24017,7 +23996,7 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "hJR" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -24044,7 +24023,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "hKi" = ( /obj/structure/railing/grey{ color = "yellow" @@ -24054,7 +24033,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "hKn" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/power/apc/hyper{ @@ -24072,7 +24051,7 @@ icon_state = "0-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "hKr" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -24089,7 +24068,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "hKC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -24102,7 +24081,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "hKK" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -24126,7 +24105,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "hKP" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -24149,10 +24128,10 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "hKY" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "hLf" = ( /obj/machinery/power/apc{ dir = 4; @@ -24164,7 +24143,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "hLg" = ( /obj/structure/cable/green{ d1 = 1; @@ -24186,11 +24165,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "hLn" = ( /obj/random/mainttoyloot, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "hLy" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -24198,7 +24177,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "hLJ" = ( /obj/structure/cable/white{ d1 = 1; @@ -24206,13 +24185,13 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "hLS" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "hLT" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -24226,7 +24205,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "hLW" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -24234,7 +24213,7 @@ id = "sc-WTpatient03" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Patient_3) +/area/medical/Patient_3) "hMa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -24251,7 +24230,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "hMo" = ( /obj/structure/bed/double/padded{ pixel_x = 10; @@ -24273,11 +24252,11 @@ network = list("Medical") }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "hMw" = ( /obj/structure/bed/chair/comfy/beige, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "hMC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -24291,12 +24270,12 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "hML" = ( /obj/structure/bed/chair/bay/chair/padded/red/bignest, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "hNh" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/effect/floor_decal/spline/fancy/wood/corner{ @@ -24314,7 +24293,7 @@ dir = 4 }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "hNx" = ( /obj/machinery/power/terminal{ dir = 4 @@ -24324,17 +24303,7 @@ icon_state = "0-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) -"hNz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Solar_Control_ForPort) "hNR" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -24345,7 +24314,7 @@ name = "Botanical garden" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "hOa" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -24359,7 +24328,7 @@ icon_state = "1-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "hOk" = ( /obj/structure/cable/white{ d1 = 2; @@ -24372,19 +24341,19 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "hOs" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "hOx" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "hOJ" = ( /obj/effect/floor_decal/industrial/stand_clear/red{ dir = 8 @@ -24393,7 +24362,7 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "hOT" = ( /obj/machinery/alarm{ dir = 8; @@ -24406,7 +24375,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "hOU" = ( /obj/machinery/light{ dir = 4; @@ -24426,7 +24395,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "hPg" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24438,10 +24407,10 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "hPk" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Cyborg_Station) +/area/bridge/Cyborg_Station) "hPK" = ( /obj/structure/cable/green{ d1 = 4; @@ -24456,7 +24425,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "hQu" = ( /obj/machinery/power/apc{ dir = 1; @@ -24506,7 +24475,7 @@ dir = 9 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "hQJ" = ( /obj/machinery/vending/wardrobe/genedrobe, /obj/effect/floor_decal/borderfloorblack/full, @@ -24515,7 +24484,7 @@ pixel_y = -22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "hQN" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -24535,7 +24504,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "hQQ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/small{ @@ -24543,7 +24512,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "hQR" = ( /obj/item/storage/toolbox/electrical{ pixel_x = -2; @@ -24562,7 +24531,7 @@ pixel_x = 3 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "hRf" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -24584,7 +24553,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "hRm" = ( /obj/structure/cable/green{ d1 = 4; @@ -24598,7 +24567,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "hRU" = ( /obj/structure/railing, /obj/machinery/light{ @@ -24614,7 +24583,7 @@ }, /obj/machinery/door/firedoor/border_only, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "hSf" = ( /obj/structure/transit_tube{ icon_state = "D-NE" @@ -24622,11 +24591,6 @@ /turf/space, /area/space) "hSo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -24637,19 +24601,20 @@ /obj/effect/floor_decal/corner/paleblue/bordercorner{ dir = 1 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "hSA" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "hSI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "hSU" = ( /obj/item/stool/padded{ dir = 1 @@ -24670,18 +24635,18 @@ dir = 1 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "hTb" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "hTf" = ( /obj/effect/floor_decal/corner/lime/diagonal, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "hTj" = ( /obj/effect/floor_decal/industrial/warning/color/corner{ dir = 4 @@ -24708,26 +24673,26 @@ /obj/machinery/door/window/southright, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "hTA" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "hTZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "hUd" = ( /obj/structure/cable/yellow, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "hUm" = ( /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "hUr" = ( /obj/structure/cable/green{ d1 = 4; @@ -24742,12 +24707,12 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "hUv" = ( /obj/structure/bed/chair/comfy/orange, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "hUR" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -24774,16 +24739,16 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "hUU" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "hUW" = ( /obj/structure/reagent_dispensers/foam, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "hVh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -24797,7 +24762,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "hVq" = ( /obj/machinery/alarm{ dir = 8; @@ -24816,7 +24781,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "hVB" = ( /obj/machinery/microwave{ pixel_y = 18 @@ -24838,7 +24803,7 @@ dir = 5 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "hVI" = ( /obj/structure/cable/green{ d1 = 1; @@ -24849,7 +24814,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "hVL" = ( /obj/machinery/alarm{ dir = 1; @@ -24858,7 +24823,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/beige/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "hVW" = ( /obj/structure/bed/chair/sofa/black{ dir = 4 @@ -24869,25 +24834,25 @@ name = "1W-entertainment monitor" }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "hWk" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "hWs" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "hWG" = ( /obj/structure/table/rack/steel, /obj/random/tech_supply, /obj/random/tech_supply/component, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "hWT" = ( /obj/machinery/keycard_auth{ pixel_x = -26 @@ -24901,7 +24866,7 @@ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "hXb" = ( /obj/structure/railing/grey{ dir = 1 @@ -24930,7 +24895,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "hXV" = ( /obj/structure/cable/green{ d1 = 1; @@ -24941,18 +24906,18 @@ /obj/effect/catwalk_plated/techmaint, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "hXZ" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/blue/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "hYl" = ( /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "hYm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -24967,7 +24932,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "hYC" = ( /obj/structure/cable/green{ d1 = 1; @@ -24982,7 +24947,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "hYI" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -24998,19 +24963,19 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "hYO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ - d1 = 4; + d1 = 1; d2 = 8; - icon_state = "4-8" + icon_state = "1-8" }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "hYW" = ( /obj/machinery/atmospherics/binary/pump{ name = "N2O to Mixing" @@ -25020,19 +24985,19 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "hZc" = ( /obj/structure/dancepole{ pixel_x = 1 }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "hZh" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "hZk" = ( /obj/structure/cable/pink{ d1 = 4; @@ -25041,7 +25006,7 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "hZu" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -25053,7 +25018,7 @@ dir = 1 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "hZD" = ( /obj/structure/bed/chair/comfy/purp, /obj/machinery/computer/security/telescreen/entertainment{ @@ -25062,7 +25027,7 @@ name = "1W-entertainment monitor" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "hZJ" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -25080,7 +25045,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "hZZ" = ( /obj/effect/floor_decal/industrial/hatch, /obj/machinery/door/firedoor/multi_tile/glass, @@ -25092,7 +25057,7 @@ name = "Engine Airlock access" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "ian" = ( /obj/structure/disposalpipe/junction{ dir = 8; @@ -25107,7 +25072,7 @@ dir = 1 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "iaz" = ( /obj/structure/cable/green{ d1 = 4; @@ -25120,20 +25085,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "iaG" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_alc/full{ - dir = 1; - pixel_y = -10 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/turf/simulated/floor/carpet/brown, +/area/crew_quarters/Chomp_Stage) "iaH" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -25149,11 +25108,11 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "iaR" = ( /obj/structure/railing, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "ibb" = ( /obj/structure/window/reinforced{ dir = 1; @@ -25164,7 +25123,7 @@ dir = 1 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "ibq" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -25175,12 +25134,12 @@ name = "Resleeving Access" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "ibw" = ( /obj/structure/reagent_dispensers/foam, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "ibG" = ( /obj/structure/cable/green{ d1 = 4; @@ -25197,7 +25156,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "ibN" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -25220,7 +25179,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "ico" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -25238,7 +25197,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "icr" = ( /obj/structure/cable/green{ d1 = 1; @@ -25259,7 +25218,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "icv" = ( /obj/structure/table/sifwoodentable, /obj/item/flashlight/lamp/green{ @@ -25268,13 +25227,13 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "icC" = ( /obj/structure/bed/chair/oldsofa{ dir = 4 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "icF" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ dir = 1 @@ -25286,7 +25245,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "icJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -25298,13 +25257,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "icV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "icY" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/catwalk_plated/techmaint, @@ -25312,7 +25271,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "icZ" = ( /obj/machinery/power/apc{ dir = 1; @@ -25329,7 +25288,7 @@ icon_state = "0-2" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "idb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -25340,7 +25299,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "idA" = ( /obj/structure/cable/white{ d1 = 1; @@ -25348,7 +25307,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "idD" = ( /obj/structure/bed/double/padded, /obj/structure/bed/double/padded{ @@ -25374,7 +25333,7 @@ dir = 4 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "idM" = ( /obj/machinery/vending/loadout/clothing, /obj/structure/cable/green{ @@ -25392,12 +25351,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Resleeving) -"idY" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/medical/Resleeving) "iea" = ( /obj/effect/floor_decal/industrial/warning/color/corner, /obj/structure/sign/directions/engineering/solars, @@ -25416,11 +25370,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "ief" = ( /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "iel" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -25446,7 +25400,7 @@ dir = 8 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "ier" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -25457,11 +25411,11 @@ dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "ieB" = ( /obj/structure/table/steel, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "ieL" = ( /obj/structure/sink{ dir = 8; @@ -25477,10 +25431,10 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "ieM" = ( /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "ieV" = ( /obj/machinery/power/apc{ dir = 1; @@ -25492,7 +25446,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "ifa" = ( /obj/machinery/alarm{ dir = 8; @@ -25505,21 +25459,21 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "ifx" = ( /obj/effect/catwalk_plated/techfloor, /obj/item/toy/mistletoe{ pixel_y = 17 }, /turf/simulated/floor/greengrid, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "ify" = ( /obj/structure/sign/directions/roomnum{ pixel_y = -8; dir = 10 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "ifH" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/bathrobe, @@ -25539,18 +25493,18 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "ifQ" = ( /obj/machinery/suit_storage_unit/engineering, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "ifR" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "ifU" = ( /obj/structure/cable/pink{ d1 = 2; @@ -25558,7 +25512,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "ifZ" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -25566,29 +25520,29 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "igh" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "igz" = ( /obj/structure/closet/secure_closet/CMO_wardrobe, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "igE" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "igM" = ( /obj/machinery/appliance/cooker/oven, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "ihl" = ( /obj/structure/table/standard, /obj/item/measuring_tape, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "ihn" = ( /obj/machinery/power/smes/buildable{ charge = 5e+006; @@ -25601,17 +25555,17 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "iho" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "ihy" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "ihC" = ( /obj/structure/sink/kitchen{ dir = 8; @@ -25628,7 +25582,7 @@ dir = 8 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "ihQ" = ( /obj/structure/cable/green{ d1 = 2; @@ -25648,7 +25602,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "ihV" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -25657,7 +25611,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "iif" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -25666,7 +25620,7 @@ /obj/structure/cable/green, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "iip" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -25679,14 +25633,15 @@ color = "yellow"; dir = 8 }, +/obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1) +/area/maintenance/Deck3_Dorms_ForCorridor1) "iiF" = ( /obj/effect/floor_decal/spline/fancy{ dir = 6 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "iiZ" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 8 @@ -25703,7 +25658,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "ijk" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -25715,7 +25670,7 @@ dir = 9 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "ijw" = ( /obj/structure/flora/ausbushes/ywflowers, /mob/living/simple_mob/animal/passive/pillbug{ @@ -25723,20 +25678,20 @@ faction = "nanotrasen" }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "ijL" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "ijR" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "ijZ" = ( /obj/structure/cable/green{ d1 = 2; @@ -25754,19 +25709,19 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "ikc" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "iki" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "ikG" = ( /obj/machinery/alarm{ dir = 8; @@ -25774,7 +25729,7 @@ }, /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "ikH" = ( /obj/structure/sign/directions/kitchen{ layer = 3.5; @@ -25782,21 +25737,13 @@ pixel_y = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "ikQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 1 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, -/obj/effect/floor_decal/industrial/arrows/blue, -/obj/machinery/door/airlock/freezer{ - name = "Kitchen cold room"; - req_access = list(28) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/turf/simulated/floor/carpet/brown, +/area/crew_quarters/Chomp_Stage) "ikS" = ( /obj/structure/cable/green{ d1 = 1; @@ -25820,7 +25767,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "ikV" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -25830,12 +25777,12 @@ }, /obj/random/trash, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "ilN" = ( /obj/machinery/vending/wardrobe/atmosdrobe, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "ilS" = ( /obj/structure/cable/green{ d1 = 4; @@ -25849,7 +25796,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "imm" = ( /obj/structure/bed/chair/sofa/left/teal{ dir = 1 @@ -25858,7 +25805,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "imB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 @@ -25877,7 +25824,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "imG" = ( /obj/structure/cable/green{ d1 = 2; @@ -25897,10 +25844,10 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "imS" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "inE" = ( /obj/structure/bookcase, /obj/item/book/manual/atmospipes{ @@ -25940,7 +25887,7 @@ pixel_x = -6 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "inF" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment{ @@ -25953,7 +25900,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "inK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -25962,7 +25909,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "inP" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -25987,17 +25934,17 @@ default_material = "lead" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "inT" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "inY" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "ioc" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -26005,11 +25952,11 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "iom" = ( /obj/structure/sign/warning/airlock, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "ios" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/alarm{ @@ -26020,7 +25967,7 @@ state = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "ioT" = ( /obj/structure/cable/white{ d1 = 4; @@ -26028,11 +25975,11 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "ipc" = ( /obj/effect/floor_decal/techfloor/orange, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "ipi" = ( /obj/machinery/firealarm{ dir = 1; @@ -26042,7 +25989,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "ipu" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -26054,7 +26001,7 @@ req_one_access = list(28) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "ipv" = ( /obj/structure/cable/white{ d1 = 4; @@ -26062,7 +26009,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "ipB" = ( /obj/machinery/computer/security/telescreen/entertainment{ name = "1N-entertainment monitor"; @@ -26073,7 +26020,7 @@ dir = 8 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "ipE" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -26085,11 +26032,11 @@ }, /obj/machinery/light/small, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "ipJ" = ( /obj/structure/table/hardwoodtable, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "ipL" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -26113,23 +26060,23 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "ipU" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "ipX" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "iqf" = ( /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "iqg" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 @@ -26138,12 +26085,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "iqN" = ( /obj/random/mainttoyloot, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "ird" = ( /obj/effect/landmark{ name = "blobstart" @@ -26152,7 +26099,7 @@ dir = 9 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "irl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/ai_slipper, @@ -26162,11 +26109,11 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "irr" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "irZ" = ( /obj/machinery/alarm{ dir = 1; @@ -26177,23 +26124,23 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "iso" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "isv" = ( /obj/structure/toilet{ pixel_y = 12 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "isx" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "isA" = ( /obj/structure/cable/green{ d1 = 1; @@ -26204,7 +26151,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "isF" = ( /obj/structure/window/plastitanium{ color = "white"; @@ -26219,10 +26166,10 @@ dir = 8 }, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "isJ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "iti" = ( /obj/structure/cable/green{ d1 = 1; @@ -26239,7 +26186,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "itj" = ( /obj/machinery/atmospherics/valve/digital{ dir = 1; @@ -26247,7 +26194,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "itk" = ( /obj/structure/cable/green{ d1 = 1; @@ -26263,7 +26210,7 @@ dir = 9 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "its" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -26272,7 +26219,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "itH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -26282,7 +26229,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "itQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -26301,11 +26248,11 @@ dir = 6 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "iue" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "iun" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 @@ -26317,7 +26264,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "iuO" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -26331,7 +26278,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "iuZ" = ( /obj/structure/railing, /obj/machinery/light{ @@ -26342,7 +26289,7 @@ }, /obj/machinery/door/firedoor/multi_tile, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "iva" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -26351,7 +26298,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "ivh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -26367,18 +26314,18 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "ivk" = ( /obj/item/toy/sif{ pixel_y = 9 }, /obj/structure/table/marble, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "ivm" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "ivn" = ( /obj/machinery/firealarm{ dir = 1; @@ -26388,7 +26335,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "ivo" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -26398,23 +26345,23 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "ivH" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, -/turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/turf/simulated/floor/tiled, +/area/hallway/Aft_3_Deck_Central_Corridor_1) "ivZ" = ( /obj/structure/table/steel, /obj/item/binoculars, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "iwi" = ( /obj/item/frame, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "iwp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -26434,14 +26381,27 @@ dir = 9 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "iwG" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) +"iwI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 2; + name = "privacy curtain"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/Chomp_Stage) "ixc" = ( /obj/structure/bed/chair/comfy/beige, /obj/effect/floor_decal/borderfloorblack{ @@ -26451,11 +26411,11 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "ixj" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "ixC" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -26467,7 +26427,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/green/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "ixE" = ( /obj/machinery/door/window/brigdoor/eastright{ req_one_access = list(5,47); @@ -26479,7 +26439,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "ixG" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -26497,7 +26457,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "ixY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -26505,19 +26465,19 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "iyu" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "iyH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "iyI" = ( /obj/structure/cable/green{ d1 = 4; @@ -26541,7 +26501,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "iyP" = ( /obj/structure/cable/green{ d1 = 1; @@ -26558,7 +26518,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "iyW" = ( /obj/structure/cable/green{ d1 = 1; @@ -26577,7 +26537,7 @@ dir = 6 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "izb" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -26600,19 +26560,19 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "izk" = ( /obj/structure/table/standard, /obj/random/coin/sometimes, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "izx" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "izz" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -26633,7 +26593,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "izE" = ( /obj/random/trash, /obj/machinery/atmospherics/valve/shutoff{ @@ -26641,7 +26601,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "izF" = ( /obj/machinery/light{ dir = 8; @@ -26658,7 +26618,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "izK" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -26668,11 +26628,11 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "izL" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "izO" = ( /obj/effect/catwalk_plated/white, /obj/structure/transit_tube{ @@ -26687,15 +26647,15 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall) +/area/engineering/Engine1_Access_Hall) "iAh" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber1) +/area/maintenance/Deck3_Medical_ForChamber1) "iAp" = ( /obj/structure/bed/chair/comfy/purp, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "iAw" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -26711,19 +26671,19 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "iAG" = ( /obj/structure/table/standard, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "iAN" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "iAW" = ( /obj/structure/cable/green{ d1 = 4; @@ -26751,7 +26711,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "iAZ" = ( /obj/structure/bed/chair/sofa/right/sif_ora{ dir = 4 @@ -26761,7 +26721,7 @@ pixel_x = -22 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "iBe" = ( /obj/machinery/shower{ pixel_y = 16 @@ -26775,7 +26735,7 @@ }, /obj/machinery/door/window/southleft, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "iBf" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -26802,13 +26762,13 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "iBl" = ( /obj/structure/sign/department/shield{ desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "iBn" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/yellow, @@ -26827,7 +26787,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "iBB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -26837,7 +26797,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "iBP" = ( /obj/structure/bed/double/padded, /obj/item/bedsheet/medical{ @@ -26853,7 +26813,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "iCa" = ( /obj/structure/closet/emergsuit_wall{ pixel_y = 27; @@ -26867,7 +26827,7 @@ dir = 8 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "iCn" = ( /obj/machinery/atmospherics/valve/digital/open{ dir = 4 @@ -26879,10 +26839,10 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "iCy" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForChamber1) +/area/maintenance/Deck3_Bridge_ForChamber1) "iCJ" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -26900,7 +26860,7 @@ icon_state = "1-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "iCO" = ( /obj/machinery/light{ dir = 8; @@ -26912,33 +26872,16 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "iCR" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "iCX" = ( /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) -"iDp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/medical/Virology) "iDv" = ( /obj/machinery/status_display{ layer = 4; @@ -26953,10 +26896,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "iDw" = ( /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "iDD" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -26964,7 +26907,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "iDM" = ( /obj/structure/railing/grey{ color = "yellow" @@ -26974,21 +26917,21 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "iDQ" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber1) +/area/maintenance/Deck3_Medical_ForChamber1) "iEb" = ( /obj/structure/bed/chair/wood{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "iEn" = ( /obj/structure/table/rack/shelf, /obj/item/bee_smoker{ @@ -27012,7 +26955,7 @@ pixel_x = -6 }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "iEp" = ( /obj/structure/table/standard, /obj/item/uv_light{ @@ -27036,7 +26979,7 @@ pixel_x = -4 }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "iEU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -27049,7 +26992,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "iFp" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/item/clothing/head/greenbandana, @@ -27058,11 +27001,11 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "iFs" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "iFz" = ( /obj/structure/cable/green{ d1 = 1; @@ -27080,14 +27023,14 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "iGr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "iGt" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -27095,7 +27038,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "iGD" = ( /obj/structure/railing/grey{ dir = 4 @@ -27110,11 +27053,7 @@ "iGH" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) -"iGW" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "iHm" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/reinforced/airless, @@ -27123,25 +27062,25 @@ /obj/structure/bed/chair/comfy/orange, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "iHB" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "iHL" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/item/clothing/head/greenbandana, /obj/item/clothing/head/greenbandana, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "iHY" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ dir = 1 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "iIg" = ( /obj/structure/bed/chair/comfy/blue{ dir = 1 @@ -27168,13 +27107,13 @@ icon_state = "0-4" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "iIl" = ( /obj/effect/floor_decal/spline/fancy{ dir = 8 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "iIs" = ( /obj/machinery/power/apc{ dir = 4; @@ -27207,7 +27146,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "iIt" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -27227,7 +27166,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "iIA" = ( /obj/machinery/power/tracker, /obj/structure/cable/yellow{ @@ -27240,7 +27179,7 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftPort) +/area/engineering/Solar_Array_AftPort) "iID" = ( /obj/structure/closet/emcloset, /obj/machinery/firealarm{ @@ -27248,7 +27187,7 @@ name = "N-fire alarm" }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "iIX" = ( /obj/structure/bed/chair/office/dark, /obj/structure/cable/green{ @@ -27257,7 +27196,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "iJa" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -27266,7 +27205,7 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/command, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "iJc" = ( /obj/structure/table/marble, /obj/machinery/chemical_dispenser/bar_coffee/full{ @@ -27281,7 +27220,7 @@ dir = 10 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "iJg" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -27295,7 +27234,6 @@ /obj/machinery/door/airlock/angled_bay/double/glass/command{ dir = 8; name = "Stairwell"; - req_one_access = list(5,1,11,24,19); req_access = null }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -27305,7 +27243,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "iJD" = ( /obj/structure/dogbed{ name = "Poppy's bed" @@ -27315,7 +27253,7 @@ name = "1N-emergency suit storage" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "iJM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -27329,18 +27267,18 @@ }, /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "iJQ" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "iJS" = ( /obj/structure/sign/directions/medical/medeqp{ dir = 4; pixel_y = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "iJW" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 @@ -27353,10 +27291,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "iKn" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "iKs" = ( /obj/structure/table/marble, /obj/item/material/knife, @@ -27368,7 +27306,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "iKA" = ( /obj/structure/cable/green{ d1 = 4; @@ -27387,7 +27325,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "iKC" = ( /obj/machinery/light, /obj/machinery/vending/dinnerware{ @@ -27397,24 +27335,24 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "iKN" = ( /obj/structure/bed/chair/wood{ dir = 8 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "iKR" = ( /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "iKS" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "iLy" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -27437,12 +27375,12 @@ id = "sc-GCbridgeLOCKDOWN" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "iMd" = ( /obj/machinery/vending/cola/soft, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "iMo" = ( /obj/machinery/firealarm{ dir = 1; @@ -27466,7 +27404,7 @@ dir = 4 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "iMv" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -27482,13 +27420,13 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "iMx" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "iMA" = ( /obj/structure/cable/green{ d1 = 1; @@ -27510,7 +27448,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "iML" = ( /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/floor_decal/industrial/outline/blue, @@ -27521,11 +27459,11 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "iMM" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "iNf" = ( /obj/structure/table/sifwoodentable, /obj/item/gps/medical/cmo, @@ -27534,24 +27472,24 @@ pixel_y = 25 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "iNs" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "iNt" = ( /obj/item/toy/plushie/teshari/y_yw, /obj/item/bedsheet/orangedouble, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "iNH" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "iNK" = ( /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "iNZ" = ( /obj/machinery/computer/general_air_control/large_tank_control{ input_tag = "SC-phoronIN"; @@ -27561,11 +27499,11 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "iOb" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "iOf" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -27585,7 +27523,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "iOs" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -27593,27 +27531,27 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "iOv" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "iOx" = ( /obj/structure/bed/double/padded, /obj/item/bedsheet/orangedouble, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "iPa" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber1) +/area/maintenance/Deck3_Medical_ForChamber1) "iPk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "iPA" = ( /obj/structure/table/rack/shelf, /obj/random/pouch, @@ -27622,7 +27560,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortChamber1) +/area/maintenance/Deck3_Dorms_PortChamber1) "iPV" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -27646,7 +27584,7 @@ layer = 3.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "iPZ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -27671,7 +27609,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) +/area/engineering/Engine2_Canister_Storage) "iQh" = ( /obj/machinery/computer/borgupload{ dir = 8 @@ -27683,7 +27621,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "iQA" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 4 @@ -27693,12 +27631,12 @@ /obj/structure/curtain/open/shower, /obj/structure/window/reinforced/tinted/frosted, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "iRi" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "iRw" = ( /obj/structure/cable/green{ d1 = 2; @@ -27716,55 +27654,18 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_03) -"iRF" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/light_switch{ - dir = 1; - name = "S-light switch"; - pixel_x = 11; - pixel_y = -27 - }, -/obj/machinery/button/windowtint{ - id = "sc-WTkitchen"; - name = "S-window tint control"; - pixel_x = -12; - pixel_y = -26; - range = 10 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/orange/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/crew_quarters/sleeping/Dormitory_03) "iRJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "iRK" = ( /obj/structure/table/steel, /obj/item/binoculars, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "iSn" = ( /obj/structure/cable/green{ d1 = 1; @@ -27781,7 +27682,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "iSr" = ( /obj/structure/cable/green{ d1 = 1; @@ -27791,7 +27692,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/green/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "iSE" = ( /obj/structure/table/reinforced, /obj/item/radio{ @@ -27834,10 +27735,10 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "iSF" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "iSQ" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -27850,7 +27751,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "iSU" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -27858,20 +27759,20 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "iSW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "iSZ" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "iTn" = ( /obj/structure/cable/green{ d1 = 4; @@ -27895,10 +27796,10 @@ /turf/simulated/floor/tiled/monotile{ color = "#989898" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "iTY" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "iUl" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -27913,18 +27814,18 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "iUm" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "iUN" = ( /obj/structure/dancepole{ pixel_x = 1 }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "iUS" = ( /obj/machinery/light{ dir = 1; @@ -27932,7 +27833,7 @@ }, /obj/effect/catwalk_plated/techfloor, /turf/simulated/floor/redgrid/animated, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "iUT" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -27951,7 +27852,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall) +/area/engineering/Engine1_Access_Hall) "iUX" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -27966,11 +27867,11 @@ dir = 4 }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "iVi" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "iVl" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -27982,7 +27883,7 @@ }, /obj/machinery/light/small, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "iVn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/ai_slipper, @@ -27992,7 +27893,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "iVs" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -28029,7 +27930,7 @@ dir = 6 }, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "iVE" = ( /obj/structure/window/reinforced/tinted/frosted{ dir = 8 @@ -28038,7 +27939,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "iVS" = ( /obj/structure/cable/green{ d1 = 1; @@ -28055,7 +27956,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "iVU" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -28072,12 +27973,12 @@ }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "iWc" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/portable_atmospherics/canister/nitrogen, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "iWh" = ( /obj/machinery/shower{ dir = 1 @@ -28094,7 +27995,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "iWl" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -28102,7 +28003,7 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "iWt" = ( /obj/machinery/camera/network/security{ dir = 5; @@ -28110,11 +28011,11 @@ network = list("Bridge","Science") }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "iWu" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "iWZ" = ( /obj/machinery/status_display{ layer = 4; @@ -28126,7 +28027,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "iXh" = ( /obj/structure/cable/green{ d1 = 4; @@ -28140,7 +28041,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Cyborg_Station) +/area/bridge/Cyborg_Station) "iXi" = ( /obj/structure/table/glass, /obj/machinery/computer/med_data/laptop{ @@ -28149,11 +28050,11 @@ pixel_x = -9 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "iXp" = ( /obj/structure/closet/secure_closet/personal/cabinet, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "iXz" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 @@ -28170,23 +28071,7 @@ icon_state = "pipe-j2" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) -"iXE" = ( -/obj/item/stool/padded{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Chef" - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/bridge/Captain_Office) "iXG" = ( /obj/item/radio/intercom{ dir = 4; @@ -28206,12 +28091,12 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "iXT" = ( /obj/machinery/suit_storage_unit/security, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "iXW" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -28225,7 +28110,7 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "iYf" = ( /obj/structure/table/glass, /obj/item/defib_kit/loaded, @@ -28248,10 +28133,10 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "iYl" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Engine1_Substation) +/area/engineering/Engine1_Substation) "iYC" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -28262,7 +28147,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "iYG" = ( /obj/structure/bed/double/padded{ pixel_y = 25 @@ -28273,7 +28158,7 @@ }, /obj/item/bedsheet/captaindouble, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "iYO" = ( /obj/machinery/light/small{ dir = 4 @@ -28282,32 +28167,32 @@ dir = 1 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "iYR" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "iZh" = ( /obj/structure/bed/chair/comfy/green, /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "iZQ" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/blue/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "iZX" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "iZZ" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 8 @@ -28331,7 +28216,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "jah" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -28354,7 +28239,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "jaC" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -28362,7 +28247,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "jaM" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -28371,7 +28256,7 @@ icon_state = "2-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "jbe" = ( /obj/structure/bed/chair/sofa/right/orange{ dir = 8 @@ -28385,7 +28270,7 @@ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "jbi" = ( /obj/structure/sign/flag/almach_a/right, /obj/structure/cable/white{ @@ -28394,7 +28279,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "jbB" = ( /obj/structure/cable/green{ d1 = 4; @@ -28409,7 +28294,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "jbO" = ( /obj/structure/bed/chair/sofa/left/brown{ dir = 1 @@ -28418,13 +28303,13 @@ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "jbT" = ( /obj/machinery/washing_machine{ pixel_y = 15 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "jbU" = ( /obj/structure/lattice, /obj/structure/grille/rustic{ @@ -28449,7 +28334,7 @@ }, /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "jch" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -28457,7 +28342,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) +/area/engineering/Engine2_Canister_Storage) "jcH" = ( /obj/structure/cable/green{ d1 = 4; @@ -28465,10 +28350,10 @@ icon_state = "4-8" }, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "jcJ" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "jcN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -28476,7 +28361,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "jdh" = ( /obj/structure/cable/green{ d1 = 1; @@ -28497,10 +28382,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "jdl" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "jdp" = ( /obj/structure/cable/pink{ d1 = 4; @@ -28512,7 +28397,7 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "jdD" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -28532,20 +28417,20 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "jdE" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/structure/sign/poster/nanotrasen, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "jdN" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 }, /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "jdR" = ( /obj/machinery/chemical_dispenser/bar_soft/full{ pixel_y = 14 @@ -28553,11 +28438,11 @@ /obj/structure/table/marble, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "jen" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "jft" = ( /obj/structure/cable/green{ d1 = 1; @@ -28568,7 +28453,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "jfv" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -28585,18 +28470,18 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "jfX" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/structure/sign/poster, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "jga" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "jge" = ( /obj/machinery/button/remote/airlock{ dir = 4; @@ -28605,7 +28490,12 @@ id = "sc-DBCpatient01" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_1) +/area/medical/Patient_1) +"jgh" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Center_Star) "jgo" = ( /obj/machinery/computer/atmos_alert, /obj/effect/floor_decal/borderfloor{ @@ -28615,7 +28505,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "jgw" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -28638,7 +28528,7 @@ density = 0 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "jgF" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -28655,10 +28545,10 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "jgM" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "jgV" = ( /obj/machinery/atmospherics/pipe/manifold/visible/purple{ dir = 8 @@ -28669,16 +28559,16 @@ name = "1W-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "jhb" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "jhg" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "jhi" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -28687,18 +28577,18 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "jho" = ( /obj/machinery/space_heater, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "jhv" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "jhy" = ( /obj/machinery/power/apc{ dir = 8; @@ -28722,7 +28612,7 @@ icon_state = "0-4" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "jhC" = ( /obj/item/gun/energy/locked/frontier/rifle{ pixel_y = 9 @@ -28765,19 +28655,19 @@ dir = 5 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "jhL" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/cargo, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "jhO" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "jhR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor{ @@ -28787,7 +28677,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "jit" = ( /obj/structure/cable/green{ d1 = 4; @@ -28805,7 +28695,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "jiD" = ( /obj/structure/cable/white{ d1 = 1; @@ -28825,7 +28715,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "jiN" = ( /obj/machinery/atmospherics/unary/outlet_injector{ frequency = 1445; @@ -28845,7 +28735,7 @@ "jiS" = ( /obj/machinery/atmospherics/tvalve/mirrored, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "jiV" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -28862,7 +28752,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "jiY" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -28873,7 +28763,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "jjg" = ( /obj/machinery/light{ dir = 8; @@ -28884,7 +28774,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "jji" = ( /obj/structure/closet/emcloset, /obj/machinery/light{ @@ -28894,20 +28784,20 @@ /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "jjl" = ( /obj/item/radio/intercom/locked/ai_private{ dir = 8; pixel_x = -22 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Server_Room) +/area/bridge/Server_Room) "jjx" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "jjB" = ( /obj/machinery/atmospherics/unary/outlet_injector{ frequency = 1441; @@ -28918,7 +28808,7 @@ dir = 4 }, /turf/simulated/floor/reinforced/phoron, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "jjF" = ( /obj/machinery/computer/communications{ dir = 1 @@ -28926,7 +28816,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "jjK" = ( /obj/effect/floor_decal/emblem/nt2, /obj/structure/cable/green{ @@ -28944,7 +28834,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "jjP" = ( /obj/structure/transit_tube{ icon_state = "W-NE" @@ -28970,7 +28860,7 @@ /obj/machinery/light/small, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "jkx" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -28982,7 +28872,7 @@ id_tag = "sc-DBresleevingstall2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "jkC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -28994,10 +28884,10 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "jkH" = ( /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "jkP" = ( /obj/machinery/alarm{ dir = 4; @@ -29009,7 +28899,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "jkR" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -29026,7 +28916,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "jkX" = ( /obj/structure/undies_wardrobe, /obj/item/reagent_containers/food/drinks/cans/waterbottle{ @@ -29034,14 +28924,14 @@ pixel_y = 18 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "jlt" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "jlu" = ( /obj/structure/cable{ d1 = 1; @@ -29062,36 +28952,36 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "jlw" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "jlC" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "jlF" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "jlQ" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortCorridor1) +/area/maintenance/Deck3_Medical_AftPortCorridor1) "jme" = ( /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "jmf" = ( /obj/machinery/seed_extractor, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "jmU" = ( /obj/structure/cable{ d1 = 1; @@ -29099,7 +28989,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "jnb" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -29108,13 +28998,13 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "jnq" = ( /obj/structure/toilet{ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "jnA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -29130,10 +29020,10 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall) +/area/engineering/Engine1_Access_Hall) "jnO" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "jol" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -29142,7 +29032,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) +/area/engineering/Engine2_Canister_Storage) "jor" = ( /obj/structure/sign/levels/engineering/solars{ dir = 4; @@ -29162,24 +29052,24 @@ dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "joD" = ( /obj/effect/graffitispawner, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "joM" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "joP" = ( /obj/structure/bed/chair/office/light, /obj/effect/floor_decal/corner/paleblue{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "joW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -29189,7 +29079,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "jpj" = ( /obj/machinery/power/apc{ dir = 1; @@ -29212,7 +29102,7 @@ icon_state = "0-4" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "jpq" = ( /obj/structure/cable/green{ d1 = 1; @@ -29224,7 +29114,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "jpB" = ( /obj/random/trash, /obj/machinery/atmospherics/binary/passive_gate{ @@ -29232,7 +29122,7 @@ unlocked = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "jqa" = ( /obj/structure/cable/pink{ d1 = 1; @@ -29245,7 +29135,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "jqd" = ( /obj/structure/bed/chair/sofa/left/blue{ dir = 8 @@ -29257,7 +29147,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "jqk" = ( /obj/item/autopsy_scanner, /obj/item/surgical/scalpel, @@ -29272,13 +29162,13 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "jqn" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "jqz" = ( /obj/structure/cable/green{ d1 = 1; @@ -29290,13 +29180,13 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "jqF" = ( /obj/random/trash, /obj/structure/table/steel, /obj/random/mainttoyloot, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "jqQ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -29305,7 +29195,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "jqU" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Engine - Primary Main"; @@ -29328,7 +29218,7 @@ pixel_y = 32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "jqY" = ( /obj/structure/cable/green{ d1 = 1; @@ -29352,7 +29242,7 @@ dir = 9 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "jra" = ( /obj/item/modular_computer/console/preset/sysadmin{ dir = 1 @@ -29361,15 +29251,12 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "jsw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Dorms_ForStarChamber2) "jta" = ( /obj/structure/cable/green{ d1 = 1; @@ -29385,7 +29272,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "jtn" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -29400,7 +29287,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "jtv" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 8 @@ -29431,7 +29318,7 @@ pixel_x = 5 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_1) +/area/medical/Psych_Room_1) "jtL" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -29456,7 +29343,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "jtX" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -29478,7 +29365,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "jub" = ( /obj/structure/railing/grey{ dir = 4 @@ -29490,7 +29377,7 @@ name = "Poppy's bed" }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "jun" = ( /obj/structure/table/glass, /obj/item/defib_kit/loaded, @@ -29513,7 +29400,7 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "juo" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -29527,7 +29414,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "juv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -29538,21 +29425,21 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "jux" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "juP" = ( /obj/machinery/atmospherics/binary/pump/on{ target_pressure = 200 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "juW" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "jve" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -29580,7 +29467,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "jvk" = ( /obj/structure/table/reinforced, /obj/item/tool/wrench/brass, @@ -29611,12 +29498,12 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "jvp" = ( /obj/machinery/atmospherics/unary/cryo_cell, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "jvv" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -29624,16 +29511,16 @@ icon_state = "1-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForPort) +/area/engineering/Solar_Array_ForPort) "jvK" = ( /obj/random/junk, /obj/random/contraband, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "jvU" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "jwk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -29653,7 +29540,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "jwm" = ( /obj/machinery/pointdefense{ id_tag = "PD Secondary" @@ -29665,7 +29552,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftPort) +/area/engineering/Solar_Array_AftPort) "jwC" = ( /obj/machinery/sleeper{ dir = 4 @@ -29673,7 +29560,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "jwY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -29684,7 +29571,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "jxD" = ( /obj/structure/cable/green{ d1 = 4; @@ -29704,7 +29591,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "jxE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -29723,7 +29610,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "jxI" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -29736,25 +29623,25 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "jxW" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "jxY" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 8 }, /obj/structure/flora/rocks2, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "jyd" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "jye" = ( /obj/structure/cable/yellow{ d2 = 8; @@ -29767,7 +29654,7 @@ /turf/simulated/floor/airless{ icon_state = "solarpanel" }, -/area/SouthernCrossV2/Engineering/Solar_Array_ForPort) +/area/engineering/Solar_Array_ForPort) "jyp" = ( /obj/structure/cable/white{ d1 = 1; @@ -29775,7 +29662,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "jyD" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -29795,14 +29682,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "jyH" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "jyX" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 1 @@ -29814,9 +29701,8 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "jzA" = ( -/obj/machinery/light, /obj/machinery/ai_status_display{ name = "1S-AI display"; pixel_y = -32 @@ -29826,7 +29712,7 @@ health = 1e+006 }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "jAg" = ( /obj/structure/cable/white{ d1 = 1; @@ -29854,7 +29740,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "jAv" = ( /obj/machinery/power/apc{ dir = 1; @@ -29895,7 +29781,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "jAy" = ( /obj/structure/table/standard, /obj/item/tool/wirecutters/clippers/trimmers{ @@ -29915,13 +29801,13 @@ pixel_x = 5 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "jBk" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "jBq" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -29934,14 +29820,14 @@ icon_state = "2-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "jBx" = ( /obj/structure/table/standard, /obj/random/pouch, /obj/random/maintenance/morestuff, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "jBJ" = ( /obj/structure/cable/green{ d1 = 1; @@ -29959,14 +29845,14 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "jCc" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "jCo" = ( /obj/structure/bed/chair/sofa/corner/black{ dir = 1 @@ -29976,7 +29862,7 @@ pixel_x = -22 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "jCH" = ( /obj/structure/table/steel, /obj/item/stack/cable_coil/yellow{ @@ -30001,7 +29887,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "jCO" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -30026,7 +29912,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "jDg" = ( /obj/structure/bed/double/padded{ pixel_y = 25 @@ -30042,7 +29928,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "jDD" = ( /obj/structure/cable/green{ d1 = 1; @@ -30060,7 +29946,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "jDJ" = ( /obj/structure/window/plastitanium{ color = "white"; @@ -30074,14 +29960,14 @@ dir = 8 }, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "jEb" = ( /obj/structure/bed/chair/sofa/sif_ora, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "jEj" = ( /obj/structure/bed/double/padded, /obj/structure/bed/double/padded{ @@ -30099,7 +29985,7 @@ dir = 4 }, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "jEr" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/machinery/light{ @@ -30107,23 +29993,13 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "jEN" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) -"jET" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/gate/thin{ - id = "sc-GCkitchen"; - layer = 3.3; - name = "Kitchen Shutters"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Atmospherics_Chamber) "jEU" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -30148,7 +30024,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "jFf" = ( /obj/machinery/atmospherics/binary/passive_gate/on{ dir = 4; @@ -30157,23 +30033,7 @@ target_pressure = 2500 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) -"jFm" = ( -/obj/structure/table/rack/shelf, -/obj/machinery/light/small, -/obj/random/maintenance/engineering, -/obj/random/maintenance/clean, -/obj/random/maintenance/security, -/obj/random/maintenance/misc, -/obj/random/trash, -/obj/random/trash, -/obj/random/flashlight, -/obj/random/drinksoft, -/obj/random/drinksoft, -/obj/random/fishing_junk, -/obj/random/snack, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Engine2_Waste_Handling) "jFq" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 @@ -30184,7 +30044,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "jFL" = ( /obj/machinery/alarm{ dir = 1; @@ -30209,13 +30069,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "jFO" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "jFT" = ( /obj/machinery/airlock_sensor{ pixel_y = 24 @@ -30226,7 +30086,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "jGb" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -30253,30 +30113,30 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "jGj" = ( /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "jGo" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "jGp" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/effect/catwalk_plated/techmaint, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "jGq" = ( /obj/machinery/iv_drip, /obj/item/radio/intercom/department/medbay{ @@ -30285,7 +30145,7 @@ name = "1E-station intercom (Medbay)" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_1) +/area/medical/Patient_1) "jGr" = ( /obj/structure/cable/green{ d1 = 2; @@ -30307,7 +30167,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "jGu" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -30321,7 +30181,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "jGw" = ( /obj/structure/ladder{ pixel_y = 3 @@ -30332,7 +30192,7 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "jGz" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -30344,29 +30204,29 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Substation) +/area/engineering/Engine1_Substation) "jGG" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "jHc" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "jHg" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "jHs" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "jHt" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -30378,7 +30238,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "jHx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor/corner{ @@ -30388,19 +30248,19 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "jHz" = ( /obj/structure/table/standard, /obj/random/toolbox, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "jHB" = ( /obj/structure/sign/department/engine{ layer = 3.5; desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall) +/area/engineering/Engine1_Access_Hall) "jHD" = ( /obj/structure/ladder{ pixel_y = 3 @@ -30416,7 +30276,7 @@ dir = 5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "jHI" = ( /obj/structure/cable/green{ d1 = 1; @@ -30435,12 +30295,12 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "jHT" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortChamber1) +/area/maintenance/Deck3_Dorms_PortChamber1) "jHW" = ( /obj/structure/undies_wardrobe, /obj/item/towel/random{ @@ -30460,7 +30320,7 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "jHZ" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -30470,7 +30330,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "jIh" = ( /obj/structure/cable/green{ d1 = 1; @@ -30486,13 +30346,13 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "jIk" = ( /obj/structure/bed/chair/sofa/corner/sif_ora{ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "jIr" = ( /obj/machinery/atmospherics/binary/pump{ name = "N2 to Mixing" @@ -30502,7 +30362,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "jIs" = ( /obj/structure/sink{ pixel_y = 14 @@ -30511,7 +30371,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "jIz" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -30519,7 +30379,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "jIR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -30527,33 +30387,33 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "jIY" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "jJp" = ( /obj/structure/table/standard, /obj/random/maintenance/misc, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "jJy" = ( /obj/effect/engine_setup/pump_max, /obj/machinery/atmospherics/binary/pump, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "jJL" = ( /obj/structure/table/woodentable, /obj/item/storage/box/nifsofts_engineering{ pixel_y = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "jJP" = ( /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "jJR" = ( /obj/structure/table/steel, /obj/structure/flora/pottedplant/overgrown{ @@ -30566,7 +30426,7 @@ name = "W-fire alarm" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "jJZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -30590,23 +30450,23 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "jKo" = ( /obj/machinery/smartfridge/drying_rack, /obj/item/clothing/suit/storage/apron/overalls, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "jKE" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "jKH" = ( /obj/structure/bed/psych, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_1) +/area/medical/Psych_Room_1) "jKR" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -30614,8 +30474,13 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "jKU" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -30624,7 +30489,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "jKZ" = ( /obj/structure/railing{ dir = 8 @@ -30633,17 +30498,17 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "jLi" = ( /obj/machinery/seed_storage/garden, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "jLk" = ( /obj/random/junk, /obj/structure/table/rack/shelf, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "jLx" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -30652,7 +30517,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "jMa" = ( /obj/machinery/power/apc{ dir = 1; @@ -30675,18 +30540,18 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "jME" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "jMJ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/power/tesla_coil/recaster, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "jMK" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -30695,11 +30560,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "jMU" = ( /obj/structure/sign/painting/public, /turf/simulated/wall/wood, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "jMX" = ( /obj/machinery/light{ dir = 8; @@ -30713,11 +30578,11 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "jNo" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "jNr" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -30734,7 +30599,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "jNw" = ( /obj/structure/sink{ dir = 8; @@ -30750,7 +30615,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "jNz" = ( /obj/machinery/power/apc{ dir = 1; @@ -30762,14 +30627,14 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "jND" = ( /obj/structure/railing, /obj/structure/railing{ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "jNP" = ( /obj/machinery/disposal/wall{ dir = 4; @@ -30780,16 +30645,16 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "jOl" = ( /obj/structure/sign/department/virology{ desc = "Sign of some important station compartment." }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "jOy" = ( /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "jOC" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -30799,7 +30664,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "jOD" = ( /obj/structure/cable/green{ d1 = 4; @@ -30807,7 +30672,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "jOW" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -30816,26 +30681,26 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "jPb" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "jPi" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "jPF" = ( /obj/structure/table/bench/sifwooden, /obj/effect/floor_decal/spline/fancy{ dir = 9 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "jPL" = ( /obj/random/trash, /obj/structure/table/standard, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "jPR" = ( /obj/structure/curtain/open/shower, /obj/structure/window/basic, @@ -30845,7 +30710,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals10, /obj/machinery/door/window/westright, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "jQm" = ( /obj/structure/cable/green{ d1 = 2; @@ -30869,7 +30734,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "jQs" = ( /obj/structure/bed/chair/sofa/left/green, /obj/machinery/computer/security/telescreen/entertainment{ @@ -30880,10 +30745,10 @@ dir = 4 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "jQy" = ( /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "jQG" = ( /obj/machinery/sleeper{ dir = 8 @@ -30891,13 +30756,13 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "jQL" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "jQQ" = ( /obj/structure/cable/pink{ d1 = 1; @@ -30911,7 +30776,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "jQV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -30928,7 +30793,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) +/area/engineering/Engine2_Canister_Storage) "jRl" = ( /obj/structure/cable/white{ d1 = 1; @@ -30941,7 +30806,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "jRm" = ( /obj/structure/sign/directions/engineering/solars{ dir = 4 @@ -30960,13 +30825,13 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reflector/double, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "jSS" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "jTb" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -30993,14 +30858,14 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "jTj" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "jTl" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/light{ @@ -31008,35 +30873,28 @@ name = "1E-light fixture" }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "jTu" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "jTD" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 }, -/obj/machinery/light_switch{ - pixel_x = -27; - pixel_y = 12; - name = "W-light switch"; - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /obj/effect/floor_decal/industrial/loading/blue, +/obj/machinery/disposal/wall{ + dir = 4; + name = "1W-inset disposal unit"; + pixel_x = -34 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "jUf" = ( /obj/structure/table/bench/sifwooden/padded, /obj/item/clothing/mask/smokable/cigarette/cigar, @@ -31045,7 +30903,7 @@ pixel_x = 15 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "jUh" = ( /obj/structure/bed/double/padded, /obj/item/bedsheet/browndouble, @@ -31053,26 +30911,26 @@ name = "1S-light fixture" }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "jUj" = ( /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "jUv" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForChamber1) +/area/maintenance/Deck3_Bridge_ForChamber1) "jUL" = ( /obj/machinery/atmospheric_field_generator/perma/underdoors{ color = "Yellow" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "jUM" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "jUZ" = ( /obj/machinery/alarm{ dir = 4; @@ -31080,14 +30938,14 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "jVb" = ( /obj/machinery/light{ dir = 1; name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "jVj" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -31096,16 +30954,10 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "jVq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "jVt" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -31123,18 +30975,18 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "jVA" = ( /obj/structure/bed/chair/office/light, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "jVD" = ( /obj/machinery/suit_cycler/captain, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "jVO" = ( /obj/structure/cable/pink{ d1 = 1; @@ -31145,7 +30997,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "jVP" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -31154,7 +31006,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "jVW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -31165,7 +31017,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "jWo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -31174,7 +31026,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall) +/area/engineering/Engine1_Access_Hall) "jWv" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -31187,7 +31039,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "jWM" = ( /obj/machinery/computer/power_monitor{ dir = 1 @@ -31203,7 +31055,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "jWS" = ( /obj/machinery/computer/guestpass{ pixel_y = 19; @@ -31216,11 +31068,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "jWT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "jWX" = ( /obj/structure/window/plastitanium{ color = "white"; @@ -31236,7 +31088,7 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "jXa" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -31250,7 +31102,7 @@ req_one_access = list(11) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "jXc" = ( /obj/machinery/ai_status_display{ name = "1W-AI display"; @@ -31263,7 +31115,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "jXl" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -31291,7 +31143,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "jXw" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -31299,17 +31151,17 @@ icon_state = "1-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftPort) +/area/engineering/Solar_Array_AftPort) "jXK" = ( /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "jXT" = ( /obj/structure/sign/directions/roomnum{ pixel_y = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "jYe" = ( /obj/machinery/power/apc{ dir = 4; @@ -31321,13 +31173,13 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "jYj" = ( /obj/structure/toilet{ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "jYL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -31339,7 +31191,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "jYT" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloorwhite{ @@ -31349,7 +31201,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "jYV" = ( /obj/structure/cable{ d1 = 1; @@ -31363,7 +31215,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "jZf" = ( /obj/structure/table/woodentable, /obj/item/radio/intercom{ @@ -31375,7 +31227,7 @@ dir = 4 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "jZn" = ( /obj/structure/table/glass, /obj/structure/reagent_dispensers/virusfood{ @@ -31392,14 +31244,14 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "jZG" = ( /obj/item/squishhammer, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "jZH" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "jZI" = ( /obj/structure/bed/double/padded, /obj/structure/bed/double/padded{ @@ -31410,14 +31262,14 @@ pixel_y = -23 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "jZX" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/engineering, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "kah" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -31425,7 +31277,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "kai" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -31437,24 +31289,24 @@ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "kat" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "kaC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "kaJ" = ( /obj/machinery/ai_status_display, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "kaL" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 8 @@ -31472,19 +31324,19 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "kbv" = ( /obj/structure/table/standard, /obj/random/medical/lite, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "kbw" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "kbB" = ( /obj/structure/bed/chair/sofa/right/yellow, /obj/machinery/alarm{ @@ -31492,7 +31344,7 @@ pixel_x = -22 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "kbF" = ( /obj/structure/cable/green{ d1 = 1; @@ -31509,7 +31361,7 @@ dir = 9 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "kbV" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -31517,10 +31369,10 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "kcG" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "kcI" = ( /obj/structure/disposalpipe/segment, /obj/structure/disposalpipe/segment{ @@ -31535,7 +31387,7 @@ dir = 1 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "kcJ" = ( /obj/structure/disposalpipe/sortjunction{ dir = 4; @@ -31546,7 +31398,7 @@ dir = 6 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "kcL" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -31554,7 +31406,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "kcP" = ( /obj/machinery/atmospherics/omni/atmos_filter{ tag_east = 1; @@ -31563,7 +31415,7 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "kcT" = ( /obj/structure/cable/green{ d1 = 1; @@ -31574,14 +31426,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "kcV" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "kcY" = ( /obj/effect/floor_decal/techfloor/orange, /obj/effect/floor_decal/techfloor/hole/right, @@ -31589,13 +31441,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "kde" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "kdR" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -31604,13 +31456,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "ket" = ( /obj/structure/bed/chair/office/dark, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "kew" = ( /obj/structure/cable/green{ d1 = 1; @@ -31621,7 +31473,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForChamber1) +/area/maintenance/Deck3_Bridge_ForChamber1) "keM" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -31629,7 +31481,7 @@ icon_state = "2-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "keO" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -31640,7 +31492,7 @@ dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "keW" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -31659,11 +31511,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "kfl" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "kfn" = ( /obj/machinery/power/apc{ dir = 8; @@ -31675,7 +31527,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "kfu" = ( /obj/machinery/light{ dir = 8; @@ -31683,7 +31535,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "kfG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -31719,14 +31571,14 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "kfL" = ( /obj/structure/railing/grey{ color = "yellow" }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "kfM" = ( /obj/structure/cable/green{ d1 = 4; @@ -31735,17 +31587,17 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "kfR" = ( /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "kfZ" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "kge" = ( /obj/machinery/vending/wardrobe/chemdrobe, /obj/machinery/light{ @@ -31757,7 +31609,7 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "kgk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -31772,7 +31624,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "kgn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -31788,7 +31640,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) +/area/engineering/Engine2_Canister_Storage) "kgr" = ( /obj/machinery/alarm{ dir = 1; @@ -31801,7 +31653,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "kgA" = ( /obj/structure/cable/green{ d1 = 4; @@ -31816,7 +31668,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "kgC" = ( /obj/structure/table/steel, /obj/item/radio{ @@ -31833,7 +31685,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "kgG" = ( /obj/structure/table/woodentable, /obj/item/radio/intercom{ @@ -31843,13 +31695,13 @@ }, /obj/item/starcaster_news, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "kgP" = ( /obj/structure/particle_accelerator/fuel_chamber{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "kgY" = ( /obj/structure/cable/green{ d1 = 1; @@ -31865,7 +31717,7 @@ dir = 9 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "khG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -31884,12 +31736,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "khR" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "kif" = ( /obj/structure/railing/grey{ color = "yellow" @@ -31901,7 +31753,7 @@ icon_state = "32-2" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Dorms_Substation) +/area/maintenance/Dorms_Substation) "kig" = ( /obj/structure/cable/white{ d1 = 4; @@ -31909,14 +31761,14 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "kiv" = ( /obj/structure/sign/directions/roomnum{ pixel_y = 8; dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "kix" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -31941,7 +31793,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "kiy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -31953,17 +31805,17 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "kiR" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "kiZ" = ( /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kja" = ( /obj/structure/table/sifwoodentable, /obj/item/gps/security/hos, @@ -31974,7 +31826,7 @@ dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "kjb" = ( /obj/structure/cable/green{ d1 = 2; @@ -31989,7 +31841,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "kjD" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -32009,19 +31861,19 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "kjO" = ( /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "kkm" = ( /obj/structure/girder, /obj/item/toy/syndicateballoon, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "kkp" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortCorridor1) +/area/maintenance/Deck3_Medical_AftPortCorridor1) "kkN" = ( /obj/structure/cable{ d1 = 4; @@ -32036,21 +31888,27 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "kle" = ( -/obj/item/reagent_containers/cooking_container/grill, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/structure/disposalpipe/down{ + dir = 2 + }, +/obj/structure/railing/grey{ + color = "yellow" + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/Deck3_Center_Star) "klh" = ( /obj/machinery/vending/assist, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "kll" = ( /obj/machinery/vending/radren, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "klB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -32085,7 +31943,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "klG" = ( /obj/structure/cable/green{ d1 = 1; @@ -32102,11 +31960,11 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "klU" = ( /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kmm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -32119,7 +31977,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "kmO" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -32130,20 +31988,20 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "knK" = ( /obj/machinery/smartfridge/drying_rack{ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "knU" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber1) +/area/maintenance/Deck3_Medical_ForChamber1) "knZ" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Brd-Corridor3"; @@ -32156,7 +32014,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "kol" = ( /obj/structure/table/standard, /obj/item/storage/rollingpapers{ @@ -32179,16 +32037,16 @@ pixel_y = 2 }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kom" = ( /obj/structure/table/rack/shelf/steel, /obj/random/maintenance/engineering, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "koz" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "koD" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -32197,21 +32055,21 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "koN" = ( /obj/structure/ladder{ pixel_y = 3 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "koQ" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "kpk" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/newscaster{ @@ -32225,7 +32083,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "kpp" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -32243,7 +32101,7 @@ icon_state = "1-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "kpr" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -32263,33 +32121,17 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "kpt" = ( -/obj/structure/table/bench/glass, -/obj/structure/flora/pottedplant/bamboo{ - name = "Namala"; - pixel_y = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Stage) "kpC" = ( /obj/machinery/honey_extractor, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kpE" = ( /obj/item/radio/intercom{ dir = 4; @@ -32299,8 +32141,13 @@ /obj/effect/floor_decal/techfloor/orange/corner{ dir = 1 }, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -27; + name = "1S-emergency suit storage" + }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "kpI" = ( /obj/machinery/ai_status_display{ name = "1S-AI display"; @@ -32320,7 +32167,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "kpP" = ( /obj/machinery/atmospherics/binary/pump/on{ dir = 1; @@ -32337,7 +32184,7 @@ }, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "kpS" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -32346,7 +32193,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "kpZ" = ( /obj/structure/bed/double/padded{ pixel_x = 10; @@ -32373,14 +32220,14 @@ dir = 4 }, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "kql" = ( /obj/structure/reagent_dispensers/fueltank, /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "kqq" = ( /obj/structure/lattice, /obj/structure/railing/grey, @@ -32401,7 +32248,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "kqu" = ( /obj/structure/table/rack/shelf/steel, /obj/item/radio/off{ @@ -32445,14 +32292,14 @@ pixel_x = -4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "kqx" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "kqE" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -32477,7 +32324,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "kqN" = ( /obj/machinery/light{ dir = 8; @@ -32495,7 +32342,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "krb" = ( /obj/effect/catwalk_plated/techfloor, /obj/machinery/alarm{ @@ -32514,35 +32361,35 @@ name_tag = "Engine Output" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Substation) +/area/engineering/Engine1_Substation) "krj" = ( /obj/effect/floor_decal/spline/fancy{ dir = 1 }, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "krk" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "krr" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "krt" = ( /obj/structure/table/standard, /obj/random/coin/sometimes, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "krO" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "krZ" = ( /obj/machinery/keycard_auth{ pixel_x = 27 @@ -32551,11 +32398,11 @@ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "ksg" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "ksl" = ( /obj/structure/table/steel, /obj/item/sleevemate{ @@ -32570,10 +32417,10 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "ksm" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "ksn" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -32585,7 +32432,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "ksx" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -32597,7 +32444,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "ksN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -32606,7 +32453,7 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/command, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "ksU" = ( /obj/structure/cable/green{ d1 = 2; @@ -32625,7 +32472,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "ktl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -32637,7 +32484,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "ktn" = ( /obj/structure/table/standard, /obj/item/material/minihoe{ @@ -32657,7 +32504,7 @@ pixel_x = 4 }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "ktq" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -32673,7 +32520,7 @@ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "ktv" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -32687,26 +32534,26 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "kuq" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "kut" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "kuy" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "kuz" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -32715,7 +32562,7 @@ }, /obj/machinery/door/airlock/maintenance/command, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "kuG" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/status_display{ @@ -32723,18 +32570,18 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "kvb" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "kvc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "kvs" = ( /obj/item/toy/plushie/teshari/b_yw, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "kvM" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ frequency = 1381; @@ -32746,7 +32593,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "kwc" = ( /obj/structure/cable/pink{ d1 = 2; @@ -32759,7 +32606,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "kwm" = ( /obj/item/radio/intercom{ dir = 1; @@ -32769,7 +32616,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "kws" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/cable/green{ @@ -32784,7 +32631,7 @@ network = list("Domicile") }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "kwH" = ( /obj/machinery/atmospherics/binary/pump{ name = "CO2 to Connector" @@ -32794,7 +32641,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "kxk" = ( /obj/machinery/computer/general_air_control/supermatter_core{ dir = 1; @@ -32806,7 +32653,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "kxl" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -32818,7 +32665,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "kxy" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -32833,7 +32680,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "kxK" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/firealarm{ @@ -32842,11 +32689,11 @@ pixel_x = 25 }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kxT" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "kyq" = ( /obj/structure/cable/green{ d1 = 1; @@ -32864,13 +32711,13 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "kyu" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "kyx" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -32882,13 +32729,13 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "kyD" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "kyE" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/machinery/light{ @@ -32902,11 +32749,11 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "kzp" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "kzt" = ( /obj/effect/floor_decal/industrial/arrows/yellow{ dir = 4 @@ -32920,17 +32767,17 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall) +/area/engineering/Engine1_Access_Hall) "kzz" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortChamber1) +/area/maintenance/Deck3_Dorms_PortChamber1) "kzA" = ( /obj/structure/sign/directions/medical/morgue{ pixel_y = -9; dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "kAb" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -32939,7 +32786,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "kAi" = ( /obj/machinery/atmospherics/unary/freezer{ icon_state = "freezer"; @@ -32947,7 +32794,7 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "kAk" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -32955,7 +32802,7 @@ id = "sc-WTDorm8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "kAt" = ( /obj/structure/bed/chair/sofa/right/teal{ dir = 8 @@ -32985,7 +32832,7 @@ dir = 9 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "kAw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/black{ dir = 4 @@ -32994,7 +32841,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "kAz" = ( /obj/structure/cable/green{ d1 = 4; @@ -33002,14 +32849,14 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Dorms_Substation) +/area/maintenance/Dorms_Substation) "kAA" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "kAB" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/random/meat, @@ -33021,7 +32868,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "kAF" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -33030,27 +32877,27 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "kAJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "kAP" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "kAS" = ( /obj/structure/bed/chair/sofa/left/sif_ora{ dir = 8 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "kBp" = ( /obj/structure/table/steel, /obj/item/bodybag/cryobag/robobag{ @@ -33084,10 +32931,10 @@ pixel_x = -4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "kBB" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "kBO" = ( /obj/structure/cable/white{ d1 = 4; @@ -33111,7 +32958,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "kCd" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -33129,7 +32976,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall) +/area/engineering/Engine1_Access_Hall) "kCF" = ( /obj/structure/cable/green{ d1 = 2; @@ -33160,17 +33007,7 @@ dir = 6 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Central_Restroom) -"kCR" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/crew_quarters/Central_Restroom) "kDg" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -33179,10 +33016,10 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "kDx" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "kDA" = ( /obj/structure/cable/white{ d1 = 4; @@ -33190,7 +33027,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "kDF" = ( /obj/structure/flora/ausbushes/brflowers, /obj/machinery/firealarm{ @@ -33208,7 +33045,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "kDI" = ( /obj/structure/cable/green{ d1 = 1; @@ -33225,13 +33062,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "kEc" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "kES" = ( /obj/machinery/firealarm{ dir = 4; @@ -33245,7 +33082,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "kET" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -33268,7 +33105,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "kEX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -33281,7 +33118,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "kFd" = ( /obj/machinery/light{ dir = 4; @@ -33295,11 +33132,11 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "kFr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "kFv" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -33310,7 +33147,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "kFy" = ( /obj/machinery/power/emitter, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -33319,7 +33156,7 @@ network = list("engineering","Engine") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "kFH" = ( /obj/structure/cable/green{ d1 = 4; @@ -33337,7 +33174,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "kFY" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/structure/flora/ausbushes/sparsegrass, @@ -33345,13 +33182,13 @@ dir = 1 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kGh" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kGY" = ( /obj/structure/table/standard, /obj/machinery/photocopier/faxmachine{ @@ -33363,7 +33200,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "kHg" = ( /obj/structure/cable{ d1 = 4; @@ -33377,17 +33214,17 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "kHk" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/carpet/blue{ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "kHn" = ( /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "kHt" = ( /obj/structure/cable/green{ d1 = 1; @@ -33405,7 +33242,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "kHC" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 8 @@ -33414,14 +33251,14 @@ dir = 1 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kHP" = ( /obj/structure/table/sifwoodentable, /obj/item/flashlight/lamp/green{ pixel_y = 7 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "kHW" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -33435,14 +33272,14 @@ req_one_access = list(5) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "kIh" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "kIy" = ( /obj/structure/cable/green{ d1 = 4; @@ -33462,7 +33299,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "kII" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/structure/flora/ausbushes/ppflowers, @@ -33470,40 +33307,40 @@ dir = 1 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kIO" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "kIW" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "kIX" = ( /obj/machinery/beehive, /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kJg" = ( /obj/structure/table/sifwoodentable, /obj/item/flame/lighter/supermatter{ pixel_y = 4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "kJi" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "kJA" = ( /obj/machinery/camera/network/security{ dir = 4; @@ -33517,7 +33354,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "kKo" = ( /obj/structure/lattice, /obj/structure/cable{ @@ -33533,11 +33370,11 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "kKA" = ( /obj/structure/sign/warning/lethal_turrets, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "kKO" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -33549,14 +33386,14 @@ icon_state = "pipe-c" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "kLa" = ( /obj/structure/ladder{ pixel_y = 3 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "kLg" = ( /obj/structure/railing/grey{ dir = 1 @@ -33573,7 +33410,7 @@ /obj/random/trash_pile, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "kLr" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -33582,7 +33419,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "kLs" = ( /obj/machinery/firealarm{ dir = 8; @@ -33600,14 +33437,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "kLY" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kMc" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -33630,7 +33467,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "kMd" = ( /obj/structure/table/standard, /obj/item/analyzer/plant_analyzer{ @@ -33650,17 +33487,17 @@ pixel_y = -1 }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kMm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "kMn" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "kMO" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -33676,7 +33513,7 @@ id_tag = "sc-DCbridgedoors" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "kMT" = ( /obj/structure/cable/green{ d1 = 1; @@ -33696,25 +33533,25 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "kMU" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "kNf" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "kNg" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kNj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -33723,11 +33560,11 @@ dir = 8 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "kNr" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "kNF" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -33738,7 +33575,7 @@ network = list("Domicile") }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kNG" = ( /obj/item/clothing/under/medigown, /obj/item/clothing/under/medigown{ @@ -33749,7 +33586,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "kNR" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 9 @@ -33758,13 +33595,13 @@ dir = 10 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "kOa" = ( /obj/structure/sign/directions/dorms{ pixel_y = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "kOj" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -33786,7 +33623,7 @@ name = "Atmospherics Substation" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "kOo" = ( /obj/machinery/camera/network/security{ dir = 8; @@ -33799,8 +33636,13 @@ /obj/effect/floor_decal/corner/white/border{ dir = 4 }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "kOv" = ( /obj/machinery/ai_status_display{ name = "1N-AI display"; @@ -33827,7 +33669,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "kOU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloor{ @@ -33838,7 +33680,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "kPn" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -33863,22 +33705,22 @@ default_material = "lead" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "kPS" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "kPT" = ( /obj/structure/sign/directions/roomnum{ pixel_y = 8; dir = 8 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "kQd" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "kQe" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ frequency = 1381; @@ -33887,14 +33729,14 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "kQk" = ( /obj/effect/floor_decal/corner/black/full{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/reinforced/carbon_dioxide, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "kQo" = ( /obj/machinery/light{ dir = 8; @@ -33910,11 +33752,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "kQp" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "kQF" = ( /obj/structure/cable/green{ d1 = 2; @@ -33923,19 +33765,19 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "kQJ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "kRj" = ( /obj/effect/landmark{ name = "maint_pred" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "kRr" = ( /obj/structure/closet/emergsuit_wall{ pixel_y = 27; @@ -33945,7 +33787,7 @@ dir = 8 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "kRw" = ( /obj/structure/window/reinforced{ dir = 1; @@ -33957,7 +33799,7 @@ dir = 1 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kRM" = ( /obj/structure/cable/green{ d1 = 4; @@ -33971,7 +33813,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "kRT" = ( /obj/item/stool/padded{ dir = 4 @@ -33979,7 +33821,7 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "kRZ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/binary/pump/on{ @@ -33987,14 +33829,14 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "kSf" = ( /obj/structure/table/bench/glass, /obj/effect/floor_decal/spline/fancy{ dir = 5 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "kSk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -34012,7 +33854,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "kSr" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -34022,13 +33864,13 @@ sortType = "Secondary Engine" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "kSx" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "kSB" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -34036,7 +33878,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "kSC" = ( /obj/effect/floor_decal/industrial/warning/color, /obj/structure/cable/white{ @@ -34054,7 +33896,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "kSR" = ( /obj/machinery/alarm{ dir = 4; @@ -34062,7 +33904,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "kSX" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -34072,11 +33914,8 @@ }, /obj/random/junk, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "kTm" = ( -/obj/machinery/computer/arcade{ - dir = 1 - }, /obj/machinery/firealarm{ dir = 4; name = "E-fire alarm"; @@ -34085,8 +33924,11 @@ /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, +/obj/machinery/computer/arcade/orion_trail{ + dir = 8 + }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "kTs" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/structure/window/reinforced{ @@ -34098,7 +33940,7 @@ dir = 1 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kTz" = ( /obj/structure/window/reinforced{ dir = 1; @@ -34111,7 +33953,7 @@ dir = 1 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kTD" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/porta_turret/ai_defense{ @@ -34134,7 +33976,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "kTF" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloorblack{ @@ -34144,7 +33986,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "kTK" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -34152,18 +33994,18 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kTO" = ( /obj/structure/flora/tree/jungle, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "kUj" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "kUz" = ( /obj/structure/cable/green{ d1 = 1; @@ -34189,14 +34031,14 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "kUH" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "kUR" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "kVg" = ( /obj/machinery/door/window/southright{ dir = 1; @@ -34217,7 +34059,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "kVw" = ( /obj/effect/landmark/start{ name = "Cyborg" @@ -34228,12 +34070,12 @@ network = list("Bridge","Science") }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Cyborg_Station) +/area/bridge/Cyborg_Station) "kVy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "kWc" = ( /obj/machinery/disposal/wall{ dir = 8; @@ -34252,7 +34094,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "kWg" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/captain/alt{ @@ -34283,7 +34125,7 @@ pixel_x = -3 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "kWj" = ( /obj/structure/cable/green{ d1 = 4; @@ -34292,7 +34134,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "kWm" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -34312,7 +34154,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForChamber1) +/area/maintenance/Deck3_Bridge_ForChamber1) "kWB" = ( /obj/machinery/power/apc{ dir = 1; @@ -34337,17 +34179,17 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "kWE" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "kWH" = ( /obj/structure/sign/level/three/large, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "kWK" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -34356,33 +34198,33 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "kWZ" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "kXf" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "kXp" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "kXz" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "kXJ" = ( /obj/structure/cable/green{ d1 = 1; @@ -34391,7 +34233,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "kXV" = ( /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 @@ -34401,7 +34243,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "kXZ" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -34417,7 +34259,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) +/area/engineering/Engine2_Canister_Storage) "kYd" = ( /obj/structure/cable/green{ d1 = 1; @@ -34432,7 +34274,7 @@ sortType = "Conference" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "kYk" = ( /obj/effect/catwalk_plated/techfloor, /obj/structure/cable/green{ @@ -34441,7 +34283,7 @@ icon_state = "4-8" }, /turf/simulated/floor/redgrid/animated, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "kYm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -34453,21 +34295,21 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "kYN" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "kZf" = ( /obj/machinery/pipedispenser, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "kZr" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "kZI" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -34484,14 +34326,14 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) +/area/engineering/Engine2_Canister_Storage) "kZN" = ( /obj/structure/table/bench/sifwooden, /obj/effect/floor_decal/spline/fancy{ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "laf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -34500,18 +34342,18 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "laj" = ( /obj/effect/floor_decal/spline/plain, /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "lan" = ( /obj/structure/closet/secure_closet/hop2, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "lap" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -34534,7 +34376,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "law" = ( /obj/machinery/keycard_auth{ pixel_x = -26 @@ -34548,13 +34390,22 @@ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "laA" = ( -/obj/machinery/light{ - dir = 8 +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 2; + name = "privacy curtain"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/Chomp_Stage) "laM" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -34562,7 +34413,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Psych_Room_1) +/area/medical/Psych_Room_1) "laQ" = ( /obj/structure/cable/green{ d1 = 4; @@ -34582,14 +34433,14 @@ /obj/machinery/light/small, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor2) +/area/maintenance/Deck3_Medical_AftCorridor2) "laT" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash_pile, /obj/random/junk, /obj/random/junk, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) +/area/maintenance/Deck3_Dorms_StarChamber2) "laU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -34609,13 +34460,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "lbg" = ( /obj/structure/table/steel, /obj/random/soap, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "lby" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -34638,17 +34489,17 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "lbJ" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/blue/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "lbO" = ( /obj/machinery/vending/cola/soft, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "lbQ" = ( /obj/machinery/power/terminal{ dir = 4 @@ -34662,11 +34513,11 @@ network = list("engineering","Engine") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Substation) +/area/engineering/Engine1_Substation) "lbZ" = ( /obj/structure/sign/level/three/large, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "lcw" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -34674,11 +34525,11 @@ id = "sc-WTresleeving" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "lcC" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "lcD" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -34686,7 +34537,7 @@ /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "lcO" = ( /obj/machinery/power/apc{ dir = 1; @@ -34714,7 +34565,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "lcS" = ( /obj/structure/cable/green{ d1 = 4; @@ -34731,7 +34582,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "lcW" = ( /obj/machinery/atmospherics/binary/pump{ name = "Custom Air to Mixing" @@ -34741,14 +34592,14 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "ldu" = ( /obj/structure/table/steel_reinforced, /obj/structure/window/reinforced, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "ldI" = ( /obj/structure/table/glass, /obj/structure/flora/pottedplant/sticky{ @@ -34756,7 +34607,7 @@ pixel_y = 18 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "ldL" = ( /obj/structure/table/hardwoodtable, /obj/random_multi/single_item/captains_spare_id, @@ -34767,36 +34618,33 @@ dir = 4 }, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "ldN" = ( /obj/machinery/light/small, /obj/structure/table/steel, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "lea" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/corner/lightgrey/border{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/turf/simulated/floor/tiled, +/area/hallway/Central_3_Deck_Hall) "lef" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "lel" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -34808,10 +34656,10 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "len" = ( /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "leC" = ( /obj/structure/bed/chair/sofa/blue, /obj/machinery/firealarm{ @@ -34819,13 +34667,13 @@ pixel_y = 25 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "leS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "lfv" = ( /obj/machinery/vending/wallmed1{ pixel_y = 26; @@ -34838,7 +34686,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "lfC" = ( /obj/structure/cable/green{ d1 = 2; @@ -34847,13 +34695,13 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "lfF" = ( /obj/machinery/doorbell_chime{ id_tag = "sc-ChimeEng" }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "lfV" = ( /obj/machinery/portable_atmospherics/powered/pump/huge, /obj/machinery/atmospherics/portables_connector{ @@ -34864,19 +34712,19 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "lfY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "lgC" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "lgG" = ( /obj/structure/cable/green{ d1 = 4; @@ -34893,7 +34741,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "lhc" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 5 @@ -34902,7 +34750,7 @@ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "lhf" = ( /obj/machinery/ai_status_display{ name = "1N-AI display"; @@ -34913,7 +34761,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "lhh" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -34933,7 +34781,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "lht" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -34941,7 +34789,7 @@ id = "sc-WThead2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "lhB" = ( /obj/structure/cable/white{ d1 = 2; @@ -34949,7 +34797,7 @@ icon_state = "2-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "lhV" = ( /obj/structure/railing/grey{ dir = 8 @@ -34964,7 +34812,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/purple, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "lib" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -34983,7 +34831,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "lic" = ( /obj/item/radio/intercom{ dir = 8; @@ -34991,14 +34839,14 @@ pixel_x = -22 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "lir" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "liI" = ( /obj/machinery/light{ dir = 4; @@ -35011,11 +34859,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "liR" = ( /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "liY" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -35029,19 +34877,19 @@ icon_state = "1-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "ljg" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "ljk" = ( /obj/structure/toilet{ pixel_y = 12 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "ljr" = ( /obj/structure/cable/green{ d1 = 4; @@ -35064,7 +34912,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "ljt" = ( /obj/structure/cable/green{ d1 = 1; @@ -35097,13 +34945,13 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "ljD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "ljJ" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -35111,7 +34959,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "ljQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -35126,7 +34974,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "lke" = ( /obj/structure/window/plastitanium{ dir = 8 @@ -35135,13 +34983,13 @@ /obj/item/melee/cultblade{ icon_state = "longsword" }, -/turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/turf/simulated/floor/wood/alt/parquet/turfpack/airless, +/area/bridge/Captain_Office) "lkh" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "lkx" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -35149,7 +34997,7 @@ id = "sc-WTDorm1" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "lkB" = ( /obj/machinery/atmospherics/binary/pump/high_power{ dir = 8 @@ -35157,11 +35005,11 @@ /obj/effect/engine_setup/pump_max, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "lkF" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "lkH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -35173,7 +35021,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "lkI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -35185,7 +35033,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "llg" = ( /obj/structure/cable/green{ d1 = 2; @@ -35210,7 +35058,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "llp" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -35219,7 +35067,7 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "lmd" = ( /obj/structure/transit_tube{ icon_state = "D-SE" @@ -35228,7 +35076,7 @@ /area/space) "lmy" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "lmF" = ( /obj/structure/ladder{ pixel_y = 3 @@ -35239,7 +35087,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "lmQ" = ( /obj/structure/cable/cyan{ d1 = 2; @@ -35269,7 +35117,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "lmR" = ( /obj/structure/cable/green{ d1 = 1; @@ -35284,10 +35132,10 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "lmX" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "lnk" = ( /obj/machinery/ai_status_display{ name = "1W-AI display"; @@ -35305,7 +35153,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "lnB" = ( /obj/machinery/station_map{ pixel_y = 32 @@ -35317,7 +35165,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "lnO" = ( /obj/structure/cable/green{ d1 = 1; @@ -35331,7 +35179,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "lnT" = ( /obj/structure/cable/green{ d1 = 2; @@ -35358,16 +35206,16 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "lnV" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "lot" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "lou" = ( /obj/structure/extinguisher_cabinet{ dir = 1; @@ -35375,14 +35223,14 @@ pixel_y = -27 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "loI" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "loJ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -35394,7 +35242,7 @@ name = "Dorm seven" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "loO" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -35403,7 +35251,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "loV" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -35411,8 +35259,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "loX" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner{ @@ -35422,7 +35273,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "lpN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -35431,7 +35282,7 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/command, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "lpZ" = ( /obj/structure/table/steel, /obj/item/storage/briefcase/inflatable{ @@ -35459,7 +35310,7 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "lqk" = ( /obj/structure/cable/green{ d1 = 1; @@ -35469,7 +35320,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "lqx" = ( /obj/structure/table/bench/wooden, /obj/structure/cable/white{ @@ -35481,7 +35332,7 @@ dir = 6 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "lqG" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -35490,7 +35341,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "lrg" = ( /obj/structure/bed/padded, /obj/item/bedsheet/medical, @@ -35500,7 +35351,7 @@ network = list("Medical") }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Patient_3) +/area/medical/Patient_3) "lri" = ( /obj/structure/window/reinforced{ dir = 8 @@ -35509,7 +35360,7 @@ dir = 1 }, /turf/simulated/floor/greengrid, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "lrk" = ( /obj/machinery/vending/wallmed1{ dir = 4; @@ -35533,12 +35384,12 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "lrr" = ( /obj/structure/table/hardwoodtable, /obj/item/universal_translator, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "lrU" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 4 @@ -35572,16 +35423,16 @@ }, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Dorms_Substation) +/area/maintenance/Dorms_Substation) "lse" = ( /obj/random/trash, /obj/structure/table/standard, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "lsm" = ( /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "lsr" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -35591,7 +35442,7 @@ dir = 8 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "lsI" = ( /obj/structure/transit_tube{ icon_state = "N-SE" @@ -35605,14 +35456,14 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "lsT" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "lsV" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -35620,14 +35471,14 @@ id = "sc-WTDorm3" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "lsW" = ( /obj/machinery/light{ dir = 1; name = "1N-lighting fixture" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "lsX" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, @@ -35638,7 +35489,7 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "luc" = ( /obj/structure/railing{ dir = 1 @@ -35648,7 +35499,7 @@ name = "1E-light fixture" }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "lui" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -35667,7 +35518,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "lun" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 6 @@ -35688,7 +35539,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "luq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor{ @@ -35698,20 +35549,20 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "luz" = ( /obj/structure/table/rack, /obj/random/flashlight, /obj/random/maintenance/engineering, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "luF" = ( /obj/structure/closet/crate/freezer, /obj/item/virusdish/random, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "lvk" = ( /obj/structure/railing/grey, /obj/structure/lattice, @@ -35730,14 +35581,14 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "lwa" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "lwr" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -35746,7 +35597,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "lwt" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -35754,7 +35605,7 @@ /turf/simulated/floor/boxing{ name = "yoga mat" }, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "lwv" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -35764,7 +35615,7 @@ }, /obj/random/trash, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "lwD" = ( /obj/structure/table/rack, /obj/random/maintenance/engineering, @@ -35772,7 +35623,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "lwF" = ( /obj/structure/table/rack/shelf/steel, /obj/item/stack/cable_coil/random{ @@ -35803,7 +35654,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "lwY" = ( /obj/structure/railing/grey, /obj/structure/lattice, @@ -35819,11 +35670,11 @@ dir = 4 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "lxl" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "lxo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -35834,18 +35685,26 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "lxv" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "lxz" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 2; + name = "privacy curtain"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/Chomp_Stage) "lxJ" = ( /obj/machinery/alarm{ dir = 8; @@ -35853,13 +35712,13 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "lxK" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "lxL" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -35873,7 +35732,7 @@ name = "Engineer" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "lyj" = ( /obj/structure/table/woodentable, /obj/item/dice, @@ -35882,7 +35741,7 @@ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "lyr" = ( /obj/structure/cable/green{ d1 = 2; @@ -35908,7 +35767,7 @@ dir = 8 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "lys" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -35916,7 +35775,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "lyu" = ( /obj/machinery/atmospherics/valve{ name = "Bridge emergency air supply" @@ -35929,7 +35788,12 @@ /obj/effect/floor_decal/industrial/danger/full, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) +"lyw" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Dorms_AftPortChamber1) "lyD" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -35947,7 +35811,7 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "lyQ" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 1 @@ -35965,7 +35829,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "lyY" = ( /obj/structure/cable/green{ d1 = 4; @@ -35979,7 +35843,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "lzc" = ( /obj/structure/cable/green{ d1 = 1; @@ -35996,7 +35860,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "lzD" = ( /obj/effect/catwalk_plated/white, /obj/structure/cable/white{ @@ -36015,13 +35879,13 @@ /turf/simulated/floor/reinforced/airless, /area/space) "lzK" = ( -/obj/machinery/smartfridge/produce, +/obj/machinery/smartfridge/produce/persistent_lossy, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "lzM" = ( /obj/structure/sign/painting/public, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "lzN" = ( /obj/machinery/light{ dir = 4; @@ -36031,11 +35895,11 @@ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "lzT" = ( /obj/structure/table/sifwoodentable, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "lzX" = ( /obj/structure/table/rack/holorack, /obj/item/dnainjector{ @@ -36080,27 +35944,27 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "lAi" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "lAu" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "lAw" = ( /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "lAx" = ( /obj/structure/table/bench/sifwooden, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "lAP" = ( /obj/structure/table/standard, /obj/item/storage/box/beakers{ @@ -36131,7 +35995,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "lBs" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -36140,10 +36004,10 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "lBH" = ( /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "lBL" = ( /obj/structure/table/standard, /obj/item/storage/box/cups{ @@ -36158,7 +36022,7 @@ pixel_x = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "lCg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -36167,10 +36031,10 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "lCh" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "lCs" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -36182,7 +36046,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "lCA" = ( /obj/structure/cable/green{ d1 = 1; @@ -36198,15 +36062,15 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "lCG" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/railing/grey, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "lCK" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "lCS" = ( /obj/structure/bed/double/padded, /obj/item/bedsheet/orangedouble, @@ -36214,7 +36078,7 @@ dir = 1 }, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "lCT" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloorblack{ @@ -36224,14 +36088,14 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "lDi" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "lDj" = ( /obj/structure/table/glass, /obj/item/storage/fancy/vials{ @@ -36263,7 +36127,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "lDo" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -36274,7 +36138,7 @@ name = "Observation Deck" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "lDp" = ( /obj/structure/cable/green{ d1 = 1; @@ -36283,17 +36147,29 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) +"lDw" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 2; + name = "privacy curtain"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/Chomp_Stage) "lDy" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "lDH" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "lDM" = ( /obj/structure/extinguisher_cabinet{ name = "1N-extinguisher cabinet"; @@ -36306,7 +36182,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "lDR" = ( /obj/structure/railing{ dir = 1 @@ -36317,15 +36193,15 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "lEv" = ( /obj/machinery/atmospherics/trinary/atmos_filter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "lEF" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "lEO" = ( /obj/machinery/power/apc{ dir = 4; @@ -36337,7 +36213,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1) +/area/maintenance/Deck3_Dorms_ForCorridor1) "lEX" = ( /obj/machinery/alarm{ dir = 1; @@ -36361,7 +36237,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "lFi" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -36384,7 +36260,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "lFt" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Com-Aft Stairwell2"; @@ -36392,7 +36268,7 @@ dir = 4 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "lFu" = ( /obj/machinery/power/apc{ dir = 4; @@ -36416,7 +36292,7 @@ icon_state = "0-8" }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "lFA" = ( /obj/item/radio/intercom/department/medbay{ dir = 8; @@ -36430,7 +36306,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "lFE" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -36439,7 +36315,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "lFY" = ( /obj/structure/cable/green{ d1 = 4; @@ -36469,7 +36345,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "lGz" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 @@ -36478,7 +36354,7 @@ pixel_y = 3 }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "lGC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -36501,38 +36377,38 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "lGD" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "lGP" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 8 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "lGS" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "lGU" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "lHf" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "lHl" = ( /obj/structure/table/hardwoodtable, /obj/machinery/computer/skills{ @@ -36540,22 +36416,22 @@ }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "lHE" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "lHL" = ( /obj/item/geiger/wall/north, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "lHP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "lHW" = ( /obj/machinery/power/apc{ dir = 4; @@ -36574,15 +36450,15 @@ }, /obj/structure/cable/green, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "lId" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "lIv" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "lIL" = ( /obj/machinery/atmospherics/unary/vent_pump{ external_pressure_bound = 0; @@ -36599,7 +36475,7 @@ use_power = 1 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "lIM" = ( /obj/structure/undies_wardrobe, /obj/machinery/alarm{ @@ -36615,7 +36491,7 @@ pixel_y = 18 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "lIN" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -36623,7 +36499,7 @@ /obj/machinery/portable_atmospherics/powered/pump/huge, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "lJd" = ( /obj/structure/table/standard, /obj/item/towel/random, @@ -36637,14 +36513,14 @@ dir = 4 }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "lJn" = ( /obj/machinery/atmospherics/pipe/cap/visible{ color = "#444444"; dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "lJo" = ( /obj/machinery/computer/general_air_control/large_tank_control{ input_tag = "SC-n2oIN"; @@ -36657,7 +36533,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "lJq" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -36665,7 +36541,7 @@ icon_state = "2-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForPort) +/area/engineering/Solar_Array_ForPort) "lJt" = ( /obj/machinery/light{ dir = 4; @@ -36678,7 +36554,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "lJz" = ( /obj/structure/sign/directions/engineering/solars, /obj/structure/sign/levels/engineering/solars{ @@ -36686,10 +36562,10 @@ pixel_y = -9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "lJN" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "lJP" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -36700,7 +36576,7 @@ }, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "lKg" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -36708,7 +36584,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "lKh" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -36718,16 +36594,16 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "lKk" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start/captain, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "lKs" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "lLb" = ( /obj/structure/table/standard, /obj/machinery/computer/med_data/laptop{ @@ -36743,7 +36619,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "lLg" = ( /obj/structure/cable/green{ d1 = 1; @@ -36760,7 +36636,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "lLm" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -36782,7 +36658,7 @@ /obj/random/junk, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "lLA" = ( /obj/machinery/power/apc{ dir = 4; @@ -36794,7 +36670,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortChamber1) +/area/maintenance/Deck3_Dorms_PortChamber1) "lLJ" = ( /obj/structure/table/steel, /obj/item/radio{ @@ -36810,7 +36686,7 @@ network = list("engineering") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "lLL" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ @@ -36826,14 +36702,14 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "lMd" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "lMs" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging, /turf/space, @@ -36841,7 +36717,7 @@ "lME" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "lMO" = ( /obj/structure/transit_tube{ icon_state = "N-S-Pass" @@ -36851,7 +36727,7 @@ "lMS" = ( /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "lMY" = ( /obj/item/radio/intercom{ dir = 4; @@ -36859,7 +36735,7 @@ pixel_x = 22 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "lNB" = ( /obj/item/towel/random{ pixel_x = -5; @@ -36907,14 +36783,14 @@ }, /obj/structure/table/rack/shelf, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "lOe" = ( /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "lOj" = ( /obj/structure/cable/green{ d1 = 1; @@ -36940,24 +36816,24 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "lOm" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "lOn" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "lOq" = ( /obj/structure/sign/warning/airlock, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "lOz" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -36976,13 +36852,13 @@ pixel_x = 7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "lOA" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "lOB" = ( /obj/effect/floor_decal/industrial/arrows/red, /obj/effect/floor_decal/industrial/arrows/red{ @@ -37009,10 +36885,10 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "lOH" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "lOS" = ( /obj/structure/cable/green{ d1 = 2; @@ -37033,17 +36909,17 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "lPm" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "lPo" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "lPq" = ( /obj/structure/railing/grey{ dir = 4 @@ -37060,7 +36936,7 @@ name = "1E-station intercom (Medbay)" }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "lPC" = ( /obj/structure/window/plastitanium{ color = "white"; @@ -37075,11 +36951,11 @@ dir = 4 }, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "lPG" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "lPJ" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -37103,14 +36979,14 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Patient_2) +/area/medical/Patient_2) "lPN" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "lPX" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "lQt" = ( /obj/machinery/atmospherics/unary/vent_pump{ external_pressure_bound = 0; @@ -37127,7 +37003,7 @@ use_power = 1 }, /turf/simulated/floor/reinforced/carbon_dioxide, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "lQu" = ( /obj/machinery/alarm{ dir = 1; @@ -37138,7 +37014,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "lQC" = ( /obj/structure/cable/green{ d1 = 1; @@ -37163,7 +37039,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "lQK" = ( /obj/structure/table/bench/wooden, /obj/item/toy/chewtoy, @@ -37172,21 +37048,21 @@ dir = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "lQR" = ( /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "lQS" = ( /obj/effect/floor_decal/spline/fancy{ dir = 1 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "lRi" = ( /obj/machinery/atmospherics/pipe/tank/air/full, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "lRm" = ( /obj/machinery/computer/general_air_control/large_tank_control{ input_tag = "SC-n2IN"; @@ -37196,18 +37072,18 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "lRx" = ( /obj/structure/flora/rocks1, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "lRB" = ( /obj/machinery/atmospherics/valve/digital/open{ name = "Mixed Air Outlet Valve" }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "lRR" = ( /obj/machinery/button/remote/airlock{ id = "sc-DBdorm3"; @@ -37216,7 +37092,7 @@ specialfunctions = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "lRV" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -37224,7 +37100,7 @@ /turf/simulated/floor/boxing{ name = "yoga mat" }, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "lSg" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -37232,7 +37108,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "lSj" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -37257,7 +37133,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "lSr" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -37273,10 +37149,10 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "lSN" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "lSQ" = ( /obj/structure/cable/green{ d1 = 4; @@ -37302,17 +37178,17 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "lSX" = ( /obj/structure/table/rack/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "lTq" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortChamber1) +/area/maintenance/Deck3_Dorms_PortChamber1) "lTw" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "lTD" = ( /obj/structure/railing/grey{ dir = 1 @@ -37327,25 +37203,25 @@ /obj/machinery/floodlight, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "lTV" = ( /obj/structure/sign/department/bar{ desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "lTW" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "lUe" = ( /obj/effect/floor_decal/carpet/blue{ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "lUf" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -37356,7 +37232,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "lUl" = ( /obj/structure/railing{ dir = 1 @@ -37367,17 +37243,17 @@ name = "1W-light fixture" }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "lUt" = ( /obj/structure/toilet{ pixel_y = 12 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "lUB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "lUE" = ( /obj/structure/cable/green{ d1 = 1; @@ -37394,7 +37270,7 @@ dir = 6 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "lUK" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -37403,7 +37279,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "lUS" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -37423,7 +37299,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "lUT" = ( /obj/structure/cable/green{ d1 = 1; @@ -37440,7 +37316,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "lVc" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 @@ -37452,14 +37328,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "lVh" = ( /obj/structure/railing, /obj/structure/railing{ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "lVi" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/pants/yogapants, @@ -37489,7 +37365,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "lVv" = ( /obj/structure/table/standard, /obj/item/clothing/ears/earmuffs{ @@ -37510,7 +37386,7 @@ pixel_x = -12 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "lVx" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -37544,7 +37420,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "lVC" = ( /obj/structure/cable/white{ d1 = 1; @@ -37558,11 +37434,11 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "lVI" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "lVM" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/button/remote/airlock{ @@ -37573,7 +37449,7 @@ specialfunctions = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "lVT" = ( /obj/structure/cable/cyan{ d1 = 2; @@ -37596,17 +37472,17 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "lWh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "lWk" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "lWq" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -37615,7 +37491,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "lWu" = ( /obj/machinery/light{ dir = 1; @@ -37643,7 +37519,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "lWz" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -37655,7 +37531,7 @@ name = "Dorm eight" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "lWB" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -37677,7 +37553,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "lWC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -37686,7 +37562,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "lWD" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -37718,7 +37594,7 @@ id = "sc-GCbridgeLOCKDOWN" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "lXx" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -37745,7 +37621,7 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "lXB" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Dmc-Dorms Corridor2"; @@ -37758,13 +37634,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "lXZ" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "lYp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -37774,21 +37650,21 @@ network = list("engineering") }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "lYz" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "lYF" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "lYJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -37808,19 +37684,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "lYL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "lZg" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "lZm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -37836,10 +37712,10 @@ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "lZq" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "lZx" = ( /obj/structure/cable/green{ d1 = 1; @@ -37855,17 +37731,20 @@ dir = 9 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "lZW" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/machinery/light, /obj/structure/flora/ausbushes/sparsegrass, /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, +/obj/machinery/light/spot{ + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "lZX" = ( /obj/structure/closet/emergsuit_wall{ pixel_y = 27; @@ -37879,7 +37758,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "lZZ" = ( /obj/machinery/power/port_gen/pacman, /obj/structure/cable/green{ @@ -37888,7 +37767,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "mag" = ( /obj/effect/catwalk_plated/techfloor, /obj/structure/cable{ @@ -37902,24 +37781,24 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "mau" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "maz" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "maE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/red/border{ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "maG" = ( /obj/machinery/computer/secure_data{ dir = 1 @@ -37935,7 +37814,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "maJ" = ( /obj/structure/table/steel, /obj/item/stack/cable_coil/yellow, @@ -37944,7 +37823,7 @@ pixel_x = 2 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "maM" = ( /obj/structure/bookcase, /obj/item/book/manual/resleeving{ @@ -37976,7 +37855,7 @@ pixel_x = 7 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "maN" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -37991,17 +37870,17 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "maO" = ( /obj/structure/table/woodentable, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "mbm" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "mbu" = ( /obj/structure/cable/green{ d1 = 4; @@ -38025,14 +37904,14 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "mbG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "mbQ" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 @@ -38048,18 +37927,18 @@ dir = 4 }, /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "mbS" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "mcq" = ( /obj/structure/table/steel, /obj/item/tool/screwdriver, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "mcs" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -38081,7 +37960,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "mcL" = ( /obj/structure/cable{ d1 = 1; @@ -38096,16 +37975,16 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "mcQ" = ( /obj/machinery/beehive, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "mcT" = ( /obj/structure/loot_pile/maint/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "mdc" = ( /obj/structure/bed/chair/sofa/beige{ dir = 4 @@ -38116,7 +37995,7 @@ pixel_x = -22 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "mde" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/disposalpipe/segment{ @@ -38125,7 +38004,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "mdh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -38138,7 +38017,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "mdq" = ( /obj/structure/transit_tube{ icon_state = "S-NE" @@ -38171,25 +38050,24 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "mdT" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "meb" = ( /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "meg" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "meo" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "mep" = ( -/obj/machinery/light, /obj/structure/flora/ausbushes/palebush, /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -38199,7 +38077,7 @@ pixel_y = -32 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "meq" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -38211,7 +38089,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "meA" = ( /obj/machinery/alarm{ dir = 8; @@ -38223,7 +38101,7 @@ }, /obj/structure/closet/secure_closet/personal/cabinet, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "meR" = ( /obj/structure/table/glass, /obj/machinery/light{ @@ -38240,11 +38118,11 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "mfp" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "mfC" = ( /obj/structure/bed/chair/oldsofa/right{ dir = 8 @@ -38253,7 +38131,7 @@ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "mfN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -38262,17 +38140,17 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/command, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "mgf" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "mgv" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "mgF" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/structure/flora/ausbushes/fullgrass, @@ -38280,7 +38158,7 @@ dir = 8 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "mgH" = ( /obj/machinery/shower{ pixel_y = 16 @@ -38297,7 +38175,7 @@ }, /obj/structure/curtain/open/shower/medical, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "mgK" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -38306,11 +38184,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "mgL" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "mgR" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Eng-2nd Engine1"; @@ -38325,15 +38203,15 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "mgW" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "mhc" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "mhi" = ( /obj/machinery/disposal/wall{ dir = 4; @@ -38344,20 +38222,23 @@ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "mhm" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "mhn" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/machinery/light, /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, +/obj/machinery/light/spot{ + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "mhr" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -38383,7 +38264,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "mht" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -38392,11 +38273,11 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "mhC" = ( /mob/living/simple_mob/animal/passive/chicken, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "mhK" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -38409,7 +38290,7 @@ /obj/structure/table/rack/shelf, /obj/random/pouch, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "mhP" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -38422,7 +38303,7 @@ icon_state = "1-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "mhS" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Solar - AftStar"; @@ -38436,7 +38317,7 @@ pixel_y = -32 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "mhT" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/random/drinkbottle, @@ -38447,7 +38328,7 @@ /obj/random/drinksoft, /obj/random/drinksoft, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "mio" = ( /obj/structure/cable/green{ d1 = 1; @@ -38456,11 +38337,11 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "mit" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "miC" = ( /obj/structure/toilet{ dir = 8 @@ -38479,7 +38360,7 @@ id = "sc-DBresleevingstall3" }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "miE" = ( /obj/structure/undies_wardrobe, /obj/machinery/alarm{ @@ -38495,22 +38376,22 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "miH" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "miM" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "miO" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "miU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -38533,7 +38414,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "mji" = ( /obj/machinery/alarm{ dir = 4; @@ -38547,14 +38428,9 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "mjm" = ( /obj/structure/table/glass, -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 27; - name = "1E-emergency suit storage" - }, /obj/machinery/alarm{ pixel_y = 22 }, @@ -38563,7 +38439,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "mjn" = ( /obj/structure/bed/chair/sofa/right/blue{ dir = 1 @@ -38572,14 +38448,14 @@ dir = 8 }, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "mjz" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "mjB" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/pink{ @@ -38591,7 +38467,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "mjG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -38606,10 +38482,33 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "mjJ" = ( -/obj/structure/table/steel, -/obj/structure/bedsheetbin, +/obj/structure/closet/crate, +/obj/item/storage/box/lights/mixed, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/radio{ + frequency = 1487; + icon_state = "med_walkietalkie"; + name = "Medbay Emergency Radio Link" + }, +/obj/item/radio{ + frequency = 1487; + icon_state = "med_walkietalkie"; + name = "Medbay Emergency Radio Link" + }, +/obj/item/tool/crowbar/red, +/obj/item/tool/crowbar/red, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle{ + pixel_y = 2 + }, +/obj/item/clothing/mask/muzzle{ + pixel_y = -2 + }, +/obj/item/circuitboard/resleeving_control, /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -38617,16 +38516,16 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "mjP" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "mjR" = ( /obj/structure/sink/puddle, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "mkb" = ( /obj/structure/railing{ dir = 8 @@ -38635,7 +38534,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "mkg" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/firealarm{ @@ -38643,7 +38542,7 @@ pixel_y = 25 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "mkp" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -38663,7 +38562,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Patient_2) +/area/medical/Patient_2) "mku" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -38676,7 +38575,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "mkx" = ( /obj/structure/table/rack/shelf/steel, /obj/item/radio/off{ @@ -38720,7 +38619,7 @@ pixel_x = -4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "mkG" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -38732,14 +38631,14 @@ name = "Dorm ten" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "mkJ" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/maintenance/misc, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "mkP" = ( /obj/structure/table/glass, /obj/item/antibody_scanner{ @@ -38755,7 +38654,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "mlm" = ( /obj/structure/railing/grey{ dir = 1 @@ -38778,7 +38677,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "mly" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -38790,7 +38689,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "mlL" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -38813,19 +38712,19 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall) +/area/engineering/Engine1_Access_Hall) "mlO" = ( /obj/structure/window/reinforced{ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "mlV" = ( /obj/structure/toilet{ pixel_y = 12 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "mlW" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -38836,12 +38735,12 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "mlX" = ( /obj/machinery/suit_cycler/refit_only, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "mme" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -38852,7 +38751,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "mmh" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -38863,7 +38762,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Substation) +/area/engineering/Engine1_Substation) "mml" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -38871,11 +38770,11 @@ /obj/effect/catwalk_plated, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "mmp" = ( /obj/structure/bed/chair/sofa/green, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "mmr" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -38887,24 +38786,16 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "mmz" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "mmB" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Construction_Area) -"mmK" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/icecream_vat, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Construction_Area) "mmM" = ( /obj/effect/landmark/event_spawn/morphspawn, /obj/structure/cable/white{ @@ -38913,7 +38804,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "mmN" = ( /obj/machinery/pointdefense{ id_tag = "PD Secondary" @@ -38925,13 +38816,13 @@ icon_state = "0-4" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForPort) +/area/engineering/Solar_Array_ForPort) "mmP" = ( /obj/structure/bed/chair/sofa/corner/blue{ dir = 1 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "mmX" = ( /obj/structure/transit_tube{ icon_state = "W-SE" @@ -38950,7 +38841,7 @@ dir = 6 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "mno" = ( /obj/structure/bed/chair/sofa/left/black{ dir = 4 @@ -38980,13 +38871,21 @@ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "mnq" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) +"mny" = ( +/obj/machinery/light/spot{ + dir = 8; + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Dinner_2) "mnF" = ( /obj/structure/cable/green{ d1 = 2; @@ -39004,7 +38903,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "mnR" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, @@ -39014,7 +38913,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "mnU" = ( /obj/structure/cable/green{ d1 = 1; @@ -39027,7 +38926,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "moj" = ( /obj/structure/cable/pink{ d1 = 4; @@ -39037,7 +38936,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "moy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -39046,7 +38945,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) +/area/engineering/Engine2_Canister_Storage) "moz" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -39060,13 +38959,13 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "moL" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "moO" = ( /obj/structure/railing/grey{ color = "yellow" @@ -39076,7 +38975,7 @@ }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "moT" = ( /obj/machinery/computer/atmos_alert{ dir = 1 @@ -39085,7 +38984,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "mpp" = ( /obj/structure/cable/white{ d1 = 1; @@ -39093,10 +38992,10 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "mps" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "mpu" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -39109,14 +39008,14 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "mpw" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "mpD" = ( /mob/living/simple_mob/animal/passive/dog/corgi/puppy/wiggle, /obj/structure/dogbed{ @@ -39127,7 +39026,7 @@ name = "1E-newscaster" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "mpQ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -39139,7 +39038,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "mpW" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -39153,7 +39052,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "mqd" = ( /obj/structure/cable/green{ d1 = 4; @@ -39169,7 +39068,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "mqf" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -39177,18 +39076,18 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "mqp" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "mqy" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4 }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "mqE" = ( /obj/structure/cable/green{ d1 = 1; @@ -39200,7 +39099,7 @@ dir = 9 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "mqH" = ( /obj/structure/cable/green{ d1 = 1; @@ -39214,21 +39113,21 @@ dir = 5 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "mqI" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "mqS" = ( /obj/item/bedsheet/mimedouble, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "mre" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "mrm" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/atmospherics/portables_connector, @@ -39249,7 +39148,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "mrt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -39260,7 +39159,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "mrF" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -39271,13 +39170,13 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "mrH" = ( /obj/effect/floor_decal/spline/fancy{ dir = 9 }, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "mrI" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/structure/cable/green{ @@ -39289,17 +39188,17 @@ dir = 4 }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "mrM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Cyborg_Station) +/area/bridge/Cyborg_Station) "mrN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "mrO" = ( /obj/structure/cable{ d1 = 4; @@ -39313,11 +39212,11 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "mrR" = ( /obj/structure/closet/wardrobe/suit, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "mrZ" = ( /obj/structure/railing{ dir = 1 @@ -39328,7 +39227,7 @@ name = "E-fire alarm" }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "mse" = ( /obj/machinery/disposal, /obj/structure/window/reinforced, @@ -39338,13 +39237,13 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "msq" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "msu" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -39366,22 +39265,22 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "msv" = ( /obj/random/trash, /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "msL" = ( /obj/random/tank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "msT" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "mtj" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -39392,7 +39291,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "mtz" = ( /obj/structure/ladder{ pixel_y = 3 @@ -39403,7 +39302,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "mtD" = ( /obj/structure/cable/green{ d1 = 1; @@ -39422,7 +39321,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "mtW" = ( /obj/machinery/atmospherics/unary/outlet_injector{ frequency = 1441; @@ -39430,10 +39329,10 @@ use_power = 1 }, /turf/simulated/floor/reinforced/oxygen, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "muw" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "muA" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -39445,13 +39344,13 @@ req_one_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Dorms_Substation) +/area/maintenance/Dorms_Substation) "muZ" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "mvi" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -39460,24 +39359,24 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "mvw" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "mvK" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "mvR" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/machinery/atmospherics/binary/pump/high_power/on{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "mwn" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -39487,13 +39386,13 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "mwJ" = ( /obj/structure/toilet{ pixel_y = 12 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "mwU" = ( /obj/machinery/alarm{ dir = 4; @@ -39501,7 +39400,7 @@ }, /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "mwV" = ( /obj/structure/bed/chair/sofa/left/black{ dir = 1 @@ -39510,7 +39409,7 @@ dir = 4 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "mwZ" = ( /obj/structure/cable/pink{ d1 = 4; @@ -39523,16 +39422,16 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "mxa" = ( /obj/structure/closet/secure_closet/personal/cabinet, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "mxe" = ( /obj/structure/table/woodentable, /obj/item/reagent_containers/food/snacks/chips, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "mxq" = ( /obj/structure/cable/green{ d1 = 4; @@ -39542,7 +39441,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "mxH" = ( /obj/structure/cable/green{ d1 = 1; @@ -39564,7 +39463,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "mxJ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -39576,15 +39475,15 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "myf" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "myk" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "myI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -39596,10 +39495,10 @@ req_one_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "myX" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "mzt" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -39607,7 +39506,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "mzB" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -39622,7 +39521,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "mzF" = ( /obj/structure/cable/green{ d1 = 1; @@ -39637,35 +39536,21 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "mzL" = ( /obj/structure/reflector, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) -"mzR" = ( -/obj/machinery/smartfridge/drinks/showcase, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Engine_Tech_Storage) "mzY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "mAu" = ( /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "mAN" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -39674,7 +39559,7 @@ dir = 1 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "mAS" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -39683,7 +39568,7 @@ dir = 4 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "mAV" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ @@ -39691,7 +39576,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "mBa" = ( /obj/machinery/airlock_sensor{ pixel_y = 24 @@ -39702,7 +39587,7 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/map_helper/airlock/sensor/chamber_sensor, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "mBe" = ( /obj/structure/cable/green{ d1 = 4; @@ -39727,12 +39612,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "mBo" = ( /obj/structure/table/standard, /obj/random/pouch, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "mBK" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -39742,7 +39627,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "mBR" = ( /obj/structure/cable/green{ d1 = 2; @@ -39770,10 +39655,10 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "mBU" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "mCp" = ( /obj/structure/bed/chair/sofa/orange{ dir = 4 @@ -39783,10 +39668,10 @@ pixel_x = -22 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "mCr" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "mCE" = ( /obj/random/trash, /obj/machinery/camera/network/security{ @@ -39795,7 +39680,7 @@ network = list("Commons") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "mCK" = ( /obj/machinery/atmospherics/unary/outlet_injector{ frequency = 1441; @@ -39807,14 +39692,14 @@ dir = 8 }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "mCP" = ( /obj/structure/table/bench/sifwooden, /obj/item/flashlight/lantern{ pixel_y = 6 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "mCS" = ( /obj/structure/table/steel, /obj/machinery/cell_charger{ @@ -39837,13 +39722,13 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "mCV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "mDg" = ( /obj/structure/cable/green{ d1 = 1; @@ -39867,7 +39752,7 @@ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "mDn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -39876,16 +39761,16 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "mDu" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "mDE" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "mDF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -39908,12 +39793,12 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "mDM" = ( /obj/machinery/suit_cycler/refit_only, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "mEd" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/random/meat, @@ -39925,25 +39810,25 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "mEf" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "mEk" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "mEm" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "mEx" = ( /obj/structure/lattice, /obj/structure/railing/grey{ @@ -39965,15 +39850,15 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "mEC" = ( /obj/structure/table/standard, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "mEG" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "mEY" = ( /obj/structure/railing/grey{ color = "yellow" @@ -39988,19 +39873,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) -"mFn" = ( -/obj/machinery/appliance/cooker/grill, -/obj/machinery/firealarm{ - dir = 1; - name = "S-fire alarm"; - pixel_y = -25 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Atmospherics_Substation) "mFz" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -40009,7 +39882,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "mFG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -40018,13 +39891,13 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "mFJ" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "mFN" = ( /obj/structure/bed/chair/sofa/blue, /obj/machinery/computer/security/telescreen/entertainment{ @@ -40036,14 +39909,14 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "mFO" = ( /obj/machinery/atmospherics/valve/digital{ name = "secondary TEG valve" }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "mFQ" = ( /obj/machinery/disposal, /obj/item/radio/intercom{ @@ -40056,7 +39929,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "mFY" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -40065,7 +39938,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "mGm" = ( /obj/machinery/light{ dir = 8; @@ -40073,12 +39946,12 @@ name = "1W-light fixture" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "mGn" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "mGv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -40092,21 +39965,7 @@ network = list("Bridge","Science") }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) -"mGN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/bridge/AI_Core_Chamber) "mGO" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -40123,7 +39982,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "mHK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -40131,7 +39990,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "mIm" = ( /obj/structure/cable/green{ d1 = 1; @@ -40141,7 +40000,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/blue/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "mIn" = ( /obj/machinery/power/tracker, /obj/structure/cable/yellow{ @@ -40154,12 +40013,12 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "mIP" = ( /obj/structure/sign/painting/public, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/wall, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "mIV" = ( /obj/structure/cable/green{ d1 = 4; @@ -40170,7 +40029,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "mIW" = ( /obj/effect/floor_decal/borderfloorwhite/corner2{ dir = 6 @@ -40185,7 +40044,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "mJd" = ( /obj/structure/cable/green{ d1 = 4; @@ -40199,7 +40058,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "mJF" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -40211,18 +40070,18 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "mJH" = ( /obj/structure/sign/warning/airlock, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "mJJ" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "mJP" = ( /obj/structure/cable/white{ d1 = 4; @@ -40236,7 +40095,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "mKg" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 10 @@ -40246,19 +40105,19 @@ name = "1E-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "mKm" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "mKo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "mKs" = ( /obj/structure/sink{ dir = 4; @@ -40273,20 +40132,20 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "mKx" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "mKF" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "mKK" = ( /obj/structure/bed/double/padded{ pixel_y = 25 @@ -40304,10 +40163,10 @@ }, /obj/item/bedsheet/mimedouble, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "mKL" = ( /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "mKT" = ( /obj/machinery/shower{ pixel_y = 16 @@ -40324,7 +40183,23 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) +"mKX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Dinner_2) "mLq" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/borderfloor/corner2, @@ -40332,14 +40207,14 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "mLA" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "mLI" = ( /obj/random/tank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "mLL" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -40348,7 +40223,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "mLT" = ( /obj/structure/bed/chair/comfy/brown{ dir = 4 @@ -40359,7 +40234,7 @@ dir = 8 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "mLW" = ( /obj/structure/cable/green{ d1 = 4; @@ -40370,29 +40245,16 @@ dir = 8 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "mLZ" = ( /obj/structure/closet/secure_closet/psych, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "mMn" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/hatch, -/obj/structure/grille, -/obj/structure/window/titanium/full, -/obj/structure/window/titanium, -/obj/structure/window/titanium{ - dir = 4 - }, -/obj/structure/window/titanium{ - dir = 1 - }, -/obj/structure/window/titanium{ - dir = 8 - }, -/obj/structure/sign/double/barsign, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/obj/structure/lattice, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/airless, +/area/space) "mMo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -40405,12 +40267,12 @@ icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "mMM" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "mMR" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ @@ -40418,11 +40280,11 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "mMV" = ( /obj/machinery/status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "mNb" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -40448,7 +40310,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "mNf" = ( /obj/structure/sink{ dir = 4; @@ -40463,7 +40325,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "mNi" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -40473,20 +40335,20 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "mNv" = ( /obj/structure/table/rack/shelf/steel{ pixel_y = -3 }, /obj/structure/curtain/black, /turf/simulated/floor/tiled/steel_dirty, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "mNG" = ( /obj/structure/table/standard, /obj/random/maintenance/misc, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "mNM" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -40506,20 +40368,20 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "mOv" = ( /obj/structure/bed/chair/sofa/left/yellow{ dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "mOA" = ( /obj/structure/table/rack, /obj/random/tech_supply, /obj/random/tech_supply/component, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "mOD" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -40528,7 +40390,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "mOO" = ( /obj/structure/cable/pink{ d1 = 4; @@ -40539,7 +40401,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "mOY" = ( /obj/structure/cable/green{ d1 = 1; @@ -40551,7 +40413,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "mPf" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -40576,7 +40438,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall) +/area/engineering/Engine1_Access_Hall) "mPy" = ( /obj/machinery/status_display{ layer = 4; @@ -40584,7 +40446,7 @@ name = "N-status display" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "mQf" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -40593,7 +40455,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortChamber1) +/area/maintenance/Deck3_Dorms_PortChamber1) "mQj" = ( /obj/machinery/power/apc{ dir = 8; @@ -40602,7 +40464,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "mQo" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/structure/lattice, @@ -40619,13 +40481,13 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "mRd" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "mRC" = ( /obj/structure/cable/green{ d1 = 4; @@ -40639,7 +40501,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "mRI" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -40649,13 +40511,13 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "mRX" = ( /obj/structure/closet/secure_closet/captains{ name = "station director's locker" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "mSu" = ( /obj/machinery/media/jukebox, /obj/structure/sign/securearea{ @@ -40665,14 +40527,14 @@ pixel_y = 32 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "mSM" = ( /obj/structure/bed/double, /obj/item/bedsheet/greendouble, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "mSQ" = ( /obj/structure/closet/emcloset, /obj/machinery/firealarm{ @@ -40682,27 +40544,27 @@ /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "mTe" = ( /obj/machinery/light/small{ dir = 8 }, /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "mTm" = ( /obj/structure/table/hardwoodtable, /obj/item/flame/lighter/supermatter, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "mTB" = ( /obj/effect/engine_setup/pump_max, /obj/machinery/atmospherics/binary/pump/high_power{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "mTF" = ( /obj/structure/cable/green{ d1 = 1; @@ -40711,7 +40573,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "mTT" = ( /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/floor_decal/industrial/outline/blue, @@ -40719,7 +40581,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "mUh" = ( /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/borderfloor/corner2{ @@ -40729,7 +40591,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "mUl" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -40746,13 +40608,13 @@ }, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "mUo" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "mUq" = ( /obj/structure/cable/green{ d1 = 4; @@ -40763,14 +40625,14 @@ dir = 4 }, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "mUC" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "mVi" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "mVv" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/machinery/alarm{ @@ -40778,7 +40640,7 @@ pixel_y = -22 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "mVB" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -40789,7 +40651,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "mVO" = ( /obj/structure/cable{ d1 = 4; @@ -40803,7 +40665,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "mVT" = ( /obj/structure/sink{ dir = 4; @@ -40818,7 +40680,7 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "mWq" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -40827,7 +40689,7 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1) +/area/maintenance/Deck3_Dorms_ForCorridor1) "mWL" = ( /obj/machinery/computer/general_air_control/large_tank_control{ input_tag = "SC-wasteIN"; @@ -40837,7 +40699,7 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "mWW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -40850,11 +40712,11 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "mXc" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "mXe" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -40862,7 +40724,7 @@ id = "sc-WTDorm9" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "mXj" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -40879,12 +40741,12 @@ }, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "mXp" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "mXB" = ( /obj/random/cargopod, /obj/machinery/camera/network/security{ @@ -40893,7 +40755,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "mXD" = ( /obj/structure/table/standard, /obj/machinery/vending/wallmed1{ @@ -40905,7 +40767,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "mXH" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -40922,7 +40784,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) +/area/engineering/Engine2_Canister_Storage) "mXN" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -40935,7 +40797,7 @@ icon_state = "2-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForPort) +/area/engineering/Solar_Array_ForPort) "mXU" = ( /obj/structure/cable/green{ d1 = 2; @@ -40959,7 +40821,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "mXX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -40973,7 +40835,7 @@ dir = 5 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "mXZ" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -40985,16 +40847,16 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "mYj" = ( /obj/structure/sign/warning/radioactive, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "mYD" = ( /obj/structure/girder, /obj/item/bikehorn/rubberducky/red, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "mYV" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Dmc-Dorms Corridor1"; @@ -41007,22 +40869,22 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "mZb" = ( /obj/structure/closet/secure_closet/personal/patient, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Medical/Patient_3) +/area/medical/Patient_3) "mZl" = ( /obj/structure/table/standard, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "mZp" = ( /obj/effect/floor_decal/carpet/blue{ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "mZu" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 6 @@ -41033,7 +40895,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "mZP" = ( /obj/machinery/light{ dir = 4; @@ -41062,7 +40924,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "mZV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -41071,7 +40933,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "nai" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -41081,7 +40943,7 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "naj" = ( /obj/machinery/firealarm{ dir = 8; @@ -41095,7 +40957,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "nao" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -41105,7 +40967,7 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "naq" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -41116,7 +40978,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "naz" = ( /obj/machinery/pointdefense{ id_tag = "PD Secondary" @@ -41128,13 +40990,13 @@ icon_state = "0-8" }, /turf/simulated/floor/plating/turfpack/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "naB" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume, /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "naF" = ( /obj/item/storage/box/lights/mixed{ pixel_x = 8; @@ -41166,10 +41028,10 @@ pixel_x = 7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "naP" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "naW" = ( /obj/machinery/light{ dir = 1; @@ -41181,7 +41043,7 @@ icon_state = "4-8" }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "nbg" = ( /obj/structure/table/glass, /obj/item/storage/box/gloves{ @@ -41211,7 +41073,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "nbi" = ( /obj/machinery/light{ dir = 1; @@ -41224,11 +41086,11 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "nbk" = ( /obj/random/contraband, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "nbo" = ( /obj/effect/floor_decal/industrial/warning/color, /turf/simulated/floor/reinforced/airless, @@ -41236,12 +41098,12 @@ "nbz" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "nbA" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "nbE" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -41255,13 +41117,13 @@ name = "Psychiatrist" }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_1) +/area/medical/Psych_Room_1) "nbG" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "nbO" = ( /obj/item/radio/intercom/department/medbay{ dir = 8; @@ -41276,19 +41138,19 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "nbY" = ( /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "nci" = ( /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "ncv" = ( /obj/structure/sign/directions/engineering/solars{ dir = 5; @@ -41299,19 +41161,19 @@ pixel_y = -9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "ncF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "ncG" = ( /obj/structure/table/woodentable, /obj/item/deck/egy, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "ncI" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -41322,7 +41184,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "ncP" = ( /obj/effect/floor_decal/industrial/warning{ layer = 3 @@ -41343,7 +41205,7 @@ pixel_y = 24 }, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "ndB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -41365,7 +41227,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "ndI" = ( /obj/machinery/light{ dir = 1; @@ -41378,7 +41240,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "ndR" = ( /obj/structure/sign/directions/engineering/solars{ dir = 4 @@ -41392,7 +41254,7 @@ pixel_y = 9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "neu" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -41405,7 +41267,7 @@ icon_state = "1-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftPort) +/area/engineering/Solar_Array_AftPort) "nev" = ( /obj/effect/floor_decal/industrial/warning/color, /obj/structure/cable/white{ @@ -41419,7 +41281,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "nfd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -41437,7 +41299,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "nfe" = ( /obj/item/stool/padded{ dir = 4 @@ -41449,12 +41311,12 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "nfD" = ( /obj/random/junk, /obj/structure/table/rack/shelf, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "nfF" = ( /obj/structure/table/standard, /obj/item/pipe_painter{ @@ -41469,7 +41331,7 @@ pixel_x = 14 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "nfH" = ( /obj/machinery/light{ dir = 8; @@ -41480,11 +41342,11 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "nge" = ( /obj/structure/closet/secure_closet/personal/patient, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Medical/Patient_2) +/area/medical/Patient_2) "ngJ" = ( /obj/effect/floor_decal/borderfloorblack/corner2{ dir = 1 @@ -41499,7 +41361,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "ngL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -41517,10 +41379,10 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "ngU" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "ngV" = ( /obj/machinery/power/apc{ dir = 8; @@ -41529,13 +41391,13 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "nhg" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "nhh" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -41544,16 +41406,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "nhu" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "nhx" = ( /obj/effect/floor_decal/corner/red/full, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/reinforced/nitrogen, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "nhz" = ( /obj/structure/railing/grey{ dir = 8 @@ -41571,7 +41433,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor2) +/area/maintenance/Deck3_Medical_AftCorridor2) "nhG" = ( /obj/structure/cable/green{ d1 = 1; @@ -41581,14 +41443,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "nhL" = ( /obj/structure/railing/grey{ color = "yellow" }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "nhN" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -41599,7 +41461,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "nhV" = ( /obj/structure/cable/pink{ d1 = 1; @@ -41607,7 +41469,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "nhX" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -41626,10 +41488,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "nic" = ( /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "nik" = ( /obj/machinery/power/terminal{ dir = 4 @@ -41639,7 +41501,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "nil" = ( /obj/machinery/power/apc{ dir = 1; @@ -41661,7 +41523,7 @@ icon_state = "2-8" }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "niB" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/disposalpipe/segment{ @@ -41669,7 +41531,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "niE" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -41678,15 +41540,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber1) -"niI" = ( -/obj/machinery/light{ - dir = 4; - layer = 3 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/maintenance/Deck3_Medical_ForChamber1) "niM" = ( /obj/structure/bed/double/padded{ pixel_x = 10; @@ -41710,7 +41564,7 @@ pixel_x = 20 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "njd" = ( /obj/machinery/light{ dir = 8; @@ -41718,11 +41572,11 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "njj" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "njr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -41734,21 +41588,21 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "njv" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "njz" = ( /obj/machinery/ai_status_display, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "njY" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "nkd" = ( /obj/structure/sign/painting/public, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "nkg" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -41764,11 +41618,11 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "nkx" = ( /obj/machinery/porta_turret/ai_defense, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "nkF" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -41797,7 +41651,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "nkK" = ( /obj/structure/bed/chair/sofa/brown{ dir = 8 @@ -41809,7 +41663,7 @@ dir = 4 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "nlf" = ( /obj/structure/cable{ d1 = 1; @@ -41825,7 +41679,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "nll" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 @@ -41838,7 +41692,7 @@ dir = 4 }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "nlo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 @@ -41850,7 +41704,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "nlq" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -41858,7 +41712,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "nlt" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -41867,14 +41721,14 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "nlE" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/effect/floor_decal/corner/brown/diagonal{ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "nlH" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -41901,7 +41755,7 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "nlI" = ( /obj/machinery/power/generator{ anchored = 1; @@ -41910,7 +41764,7 @@ /obj/structure/cable/pink, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "nmj" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -41919,7 +41773,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "nmo" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 @@ -41933,7 +41787,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "nmr" = ( /obj/structure/bed/double/padded, /obj/item/bedsheet/medical{ @@ -41946,7 +41800,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "nmK" = ( /obj/structure/cable/green{ d1 = 4; @@ -41963,7 +41817,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "nmO" = ( /obj/structure/cable/pink{ d1 = 1; @@ -41971,32 +41825,32 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "nnf" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "nnB" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/machinery/atmospherics/unary/vent_pump/high_volume, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "nom" = ( /obj/structure/closet/secure_closet/hos_wardrobe, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "noy" = ( /obj/structure/table/standard, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "noT" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "npi" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -42004,13 +41858,13 @@ id = "sc-WThead4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "npv" = ( /obj/structure/sink{ pixel_y = 16 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "npz" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -42024,7 +41878,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "npP" = ( /obj/structure/cable/green{ d1 = 4; @@ -42050,7 +41904,7 @@ dir = 6 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Medical/Patient_2) +/area/medical/Patient_2) "npS" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ frequency = 1381; @@ -42065,14 +41919,14 @@ /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "nqg" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "nqt" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -42086,7 +41940,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "nqE" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -42105,7 +41959,7 @@ dir = 5 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "nrn" = ( /obj/structure/cable/green{ d1 = 1; @@ -42119,7 +41973,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "nrs" = ( /obj/structure/reagent_dispensers/water_cooler/full{ dir = 1 @@ -42129,11 +41983,11 @@ pixel_y = -22 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "nrt" = ( /obj/structure/sign/level/three/large, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "nrx" = ( /obj/structure/table/steel, /obj/item/binoculars, @@ -42143,7 +41997,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "nrB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -42164,7 +42018,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "nrJ" = ( /obj/structure/closet/emergsuit_wall{ dir = 1; @@ -42181,11 +42035,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) -"nrR" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central2, -/turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/crew_quarters/Observation_Lounge) "nrZ" = ( /obj/structure/cable/pink{ d1 = 1; @@ -42193,7 +42043,7 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "nse" = ( /obj/machinery/meter, /obj/item/geiger/wall/north, @@ -42201,10 +42051,10 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "nso" = ( /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "nst" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -42218,14 +42068,15 @@ }, /obj/machinery/access_button{ pixel_y = -24; - dir = 1 + dir = 1; + req_one_access = list(1,19) }, /obj/effect/map_helper/airlock/door/ext_door, /obj/effect/map_helper/airlock/button/ext_button{ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "nsv" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -42239,14 +42090,14 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "nsw" = ( /obj/structure/sign/directions/medical/virology{ dir = 4; pixel_y = -9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "nsT" = ( /obj/structure/bed/double/padded, /obj/structure/bed/double/padded{ @@ -42264,7 +42115,7 @@ dir = 4 }, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "nsX" = ( /obj/structure/cable/green{ d1 = 1; @@ -42277,7 +42128,7 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "ntc" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -42293,28 +42144,23 @@ name = "Construction Area" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "nto" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "ntp" = ( /obj/machinery/portable_atmospherics/powered/pump, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "nts" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "nuH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -42322,8 +42168,9 @@ /obj/effect/floor_decal/corner/paleblue/border{ dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "nuL" = ( /obj/structure/cable/white{ d1 = 1; @@ -42347,7 +42194,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "nuZ" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 @@ -42356,14 +42203,14 @@ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "nvi" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 4 }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "nvl" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -42371,7 +42218,7 @@ /obj/machinery/portable_atmospherics/powered/scrubber/huge, /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "nvI" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -42380,7 +42227,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "nvL" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -42388,7 +42235,7 @@ icon_state = "1-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "nvQ" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -42396,26 +42243,26 @@ /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "nwj" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "nwD" = ( /obj/machinery/camera/network/security{ dir = 4; c_tag = "D3-Com-Aft Hall2"; network = list("Commons") }, -/turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/turf/simulated/floor/tiled, +/area/hallway/Aft_3_Deck_Central_Corridor_1) "nwN" = ( /obj/structure/girder/reinforced, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "nwO" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -42424,7 +42271,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "nwU" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -42433,10 +42280,10 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "nxf" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "nxg" = ( /obj/machinery/light{ dir = 4; @@ -42454,7 +42301,7 @@ pixel_x = 24 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "nxo" = ( /obj/structure/cable/green{ d1 = 1; @@ -42465,15 +42312,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "nxp" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "nxA" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "nxF" = ( /obj/structure/closet/emergsuit_wall{ dir = 1; @@ -42481,7 +42328,7 @@ name = "1S-emergency suit storage" }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "nxM" = ( /obj/machinery/status_display, /obj/structure/cable/white{ @@ -42490,7 +42337,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "nxS" = ( /obj/machinery/alarm{ dir = 4; @@ -42501,7 +42348,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "nxY" = ( /obj/structure/cable/yellow{ d2 = 8; @@ -42514,7 +42361,7 @@ /turf/simulated/floor/airless{ icon_state = "solarpanel" }, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "nyp" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/spline/plain{ @@ -42534,7 +42381,7 @@ /turf/simulated/floor/tiled/steel_ridged{ color = "#989898" }, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "nyt" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -42559,7 +42406,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "nyv" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -42576,7 +42423,8 @@ }, /obj/machinery/access_button{ pixel_y = -24; - dir = 1 + dir = 1; + req_one_access = list(1,19) }, /obj/effect/map_helper/airlock/door/int_door, /obj/effect/map_helper/airlock/button/int_button{ @@ -42589,14 +42437,14 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "nyD" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "nza" = ( /obj/effect/floor_decal/industrial/warning/color/corner{ dir = 1 @@ -42637,7 +42485,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "nzK" = ( /obj/structure/table/reinforced, /obj/item/storage/box/ids{ @@ -42652,8 +42500,8 @@ pixel_x = 6; pixel_y = 9 }, -/turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/turf/simulated/floor/tiled/dark, +/area/bridge/Control_Atrium) "nzU" = ( /obj/machinery/vending/loadout/uniform, /obj/machinery/light{ @@ -42675,7 +42523,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "nAa" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -42685,7 +42533,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "nAf" = ( /obj/structure/railing{ dir = 1 @@ -42696,7 +42544,7 @@ name = "1W-light fixture" }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "nAk" = ( /obj/machinery/light{ dir = 8; @@ -42704,7 +42552,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "nAt" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -42728,7 +42576,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "nAK" = ( /obj/item/stool/padded{ dir = 4 @@ -42738,13 +42586,13 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "nAO" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "nAZ" = ( /obj/machinery/firealarm{ dir = 4; @@ -42766,7 +42614,7 @@ dir = 5 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "nBd" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -42775,21 +42623,24 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) -"nBp" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/disposalpipe/segment{ +/area/bridge/Deck3_Corridor) +"nBA" = ( +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 +/obj/machinery/light{ + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_3_Deck_Hall) "nBF" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -42808,7 +42659,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/beige/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "nCz" = ( /obj/structure/table/woodentable, /obj/machinery/computer/security/telescreen/entertainment{ @@ -42820,7 +42671,7 @@ dir = 4 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "nCA" = ( /obj/machinery/vending/wallmed1{ dir = 4; @@ -42838,7 +42689,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "nCM" = ( /obj/structure/cable/green{ d1 = 1; @@ -42853,7 +42704,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "nCY" = ( /obj/machinery/light/floortube{ dir = 4; @@ -42866,10 +42717,10 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "nDa" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "nDd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -42878,7 +42729,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "nDi" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 @@ -42890,7 +42741,7 @@ dir = 9 }, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "nDs" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -42907,17 +42758,17 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "nDx" = ( /obj/structure/sign/painting/public, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "nEg" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "nED" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "nEO" = ( /obj/structure/railing, /obj/machinery/light{ @@ -42925,7 +42776,7 @@ name = "1E-light fixture" }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "nES" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -42937,7 +42788,7 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "nEW" = ( /obj/random/junk, /obj/structure/cable/white{ @@ -42946,7 +42797,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "nFb" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -42957,11 +42808,11 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "nFd" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "nFn" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -42971,20 +42822,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "nFs" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "nFH" = ( /obj/machinery/ai_status_display, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "nFL" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "nFP" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/map_helper/airlock/atmos/chamber_pump, @@ -42995,7 +42846,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "nFS" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -43016,7 +42867,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "nGa" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/hazardvest{ @@ -43043,7 +42894,7 @@ pixel_y = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "nGc" = ( /obj/structure/cable/green{ d1 = 4; @@ -43055,7 +42906,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "nGg" = ( /obj/machinery/power/apc{ dir = 4; @@ -43086,7 +42937,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "nGi" = ( /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 @@ -43096,13 +42947,13 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "nGl" = ( /obj/effect/floor_decal/spline/fancy{ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "nGm" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -43116,7 +42967,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "nGv" = ( /obj/structure/cable/green{ d1 = 4; @@ -43132,15 +42983,19 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "nGx" = ( /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "nGN" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/status_display{ @@ -43149,7 +43004,7 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "nHj" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -43162,7 +43017,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "nHx" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -43184,14 +43039,14 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "nHA" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "nHD" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/small{ @@ -43207,7 +43062,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "nHM" = ( /obj/structure/cable/green{ d1 = 2; @@ -43221,7 +43076,7 @@ dir = 6 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "nHO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -43242,19 +43097,14 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) -"nHS" = ( -/obj/machinery/appliance/mixer/candy, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/maintenance/Deck3_Dorms_AftCorridor1) "nHT" = ( /obj/structure/table/standard, /obj/random/unidentified_medicine, /obj/random/maintenance/misc, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "nHV" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -43265,14 +43115,14 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "nIc" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "nIj" = ( /obj/structure/table/steel, /obj/item/stack/cable_coil/yellow, @@ -43281,7 +43131,7 @@ pixel_x = 2 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "nIp" = ( /obj/effect/floor_decal/techfloor{ dir = 5 @@ -43296,7 +43146,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "nIu" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 9 @@ -43309,7 +43159,7 @@ dir = 6 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "nIE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -43333,16 +43183,16 @@ opacity = 0 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "nIK" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "nJi" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "nJo" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -43365,7 +43215,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "nJE" = ( /obj/machinery/vending/coffee, /obj/machinery/light{ @@ -43377,17 +43227,22 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "nJU" = ( -/obj/item/clothing/suit/storage/hooded/foodcostume/turnip{ - pixel_x = 1 +/obj/structure/closet/firecloset/full/atmos{ + req_one_access = list(10) }, -/obj/item/clothing/head/hood_vr/turnip_hood{ - pixel_x = 1 +/obj/item/taperoll/engineering{ + pixel_x = -4; + pixel_y = -8 }, -/obj/structure/closet/wardrobe/mixed, +/obj/item/taperoll/engineering{ + pixel_x = -2; + pixel_y = -6 + }, +/obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Central_Engineering_Post) "nKQ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -43396,24 +43251,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) -"nKZ" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "nLt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -43422,7 +43260,7 @@ dir = 5 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "nLH" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -43430,7 +43268,7 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftPort) +/area/engineering/Solar_Array_AftPort) "nLQ" = ( /obj/machinery/power/apc{ dir = 8; @@ -43454,7 +43292,7 @@ icon_state = "0-4" }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "nLS" = ( /obj/structure/bed/chair/comfy/orange{ dir = 1 @@ -43466,7 +43304,7 @@ }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "nLX" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 10 @@ -43478,7 +43316,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "nMm" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -43489,7 +43327,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "nMn" = ( /obj/structure/table/standard, /obj/item/storage/box/monkeycubes{ @@ -43517,13 +43355,13 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "nMq" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "nMy" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -43532,7 +43370,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "nMY" = ( /obj/structure/table/hardwoodtable, /obj/item/clothing/glasses/omnihud/all{ @@ -43551,7 +43389,7 @@ pixel_x = 32 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "nNi" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloorwhite{ @@ -43561,7 +43399,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "nNn" = ( /obj/structure/cable/green{ d1 = 4; @@ -43582,7 +43420,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "nNp" = ( /obj/structure/table/sifwoodentable, /obj/item/flashlight/lamp/green{ @@ -43592,7 +43430,7 @@ dir = 9 }, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "nNF" = ( /obj/structure/ladder{ pixel_y = 3 @@ -43600,10 +43438,10 @@ /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "nNL" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "nNW" = ( /obj/structure/railing/grey{ color = "yellow" @@ -43613,20 +43451,20 @@ dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "nOi" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "nOy" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "nOD" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "nOE" = ( /obj/structure/sign/warning/deathsposal{ pixel_x = 32 @@ -43640,21 +43478,20 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "nPk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 9 }, /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 1; icon_state = "pipe-c" }, -/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "nPl" = ( /obj/structure/table/rack, /obj/random/tech_supply/component, @@ -43662,7 +43499,7 @@ /obj/random/tech_supply, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "nPt" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -43680,22 +43517,22 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "nPu" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1) +/area/maintenance/Deck3_Dorms_ForCorridor1) "nPP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "nQc" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "nQq" = ( /obj/machinery/disposal/wall{ dir = 4; @@ -43709,20 +43546,20 @@ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "nQB" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "nQC" = ( /obj/structure/sign/directions/engineering/solars{ dir = 8; pixel_y = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "nQU" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "nQZ" = ( /obj/effect/floor_decal/spline/plain, /obj/machinery/light{ @@ -43731,7 +43568,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "nRi" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 @@ -43739,7 +43576,7 @@ /obj/machinery/meter, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "nRk" = ( /obj/structure/cable/green{ d1 = 4; @@ -43756,7 +43593,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "nRD" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -43764,7 +43601,7 @@ /obj/machinery/atmospherics/binary/pump, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "nRE" = ( /obj/structure/cable/green{ d1 = 4; @@ -43783,7 +43620,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "nRI" = ( /obj/machinery/shower{ pixel_y = 16 @@ -43800,7 +43637,7 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "nRP" = ( /obj/structure/table/rack/steel, /obj/random/maintenance/cargo, @@ -43810,7 +43647,7 @@ /obj/random/maintenance/clean, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "nRS" = ( /obj/machinery/atmospherics/unary/outlet_injector{ frequency = 1441; @@ -43821,7 +43658,7 @@ dir = 4 }, /turf/simulated/floor/reinforced/carbon_dioxide, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "nSE" = ( /obj/machinery/atmospherics/unary/vent_pump{ external_pressure_bound = 0; @@ -43838,7 +43675,7 @@ use_power = 1 }, /turf/simulated/floor/reinforced/n20, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "nSM" = ( /obj/structure/cable/yellow{ d2 = 4; @@ -43851,7 +43688,7 @@ /turf/simulated/floor/airless{ icon_state = "solarpanel" }, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "nSN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -43874,7 +43711,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "nSS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -43887,7 +43724,7 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "nTh" = ( /obj/machinery/light/floortube{ dir = 8; @@ -43900,14 +43737,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "nTk" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /obj/machinery/portable_atmospherics/canister/oxygen/prechilled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "nTn" = ( /obj/effect/catwalk_plated/techfloor, /obj/structure/cable/white{ @@ -43916,16 +43753,16 @@ icon_state = "4-8" }, /turf/simulated/floor/greengrid, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "nTu" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "nTw" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "nTA" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/blast/multi_tile/three_tile_hor{ @@ -43936,11 +43773,11 @@ opacity = 0 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "nTH" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "nTW" = ( /obj/effect/floor_decal/industrial/warning/color, /obj/machinery/atmospherics/pipe/simple/visible/black{ @@ -43955,7 +43792,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "nUr" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -43983,14 +43820,14 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "nUv" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "nUL" = ( /obj/structure/cable/cyan{ d2 = 4; @@ -44012,7 +43849,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "nUX" = ( /obj/structure/table/bench/sifwooden/padded, /obj/random/drinkbottle{ @@ -44020,7 +43857,7 @@ pixel_x = 2 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "nVa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -44028,13 +43865,13 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "nVl" = ( /obj/structure/toilet{ pixel_y = 12 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "nVn" = ( /obj/structure/table/standard, /obj/structure/flora/pottedplant/smallcactus{ @@ -44049,20 +43886,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) -"nVv" = ( -/obj/structure/table/marble, -/obj/item/material/knife/butch{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/material/kitchen/rollingpin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/crew_quarters/Dorm_Foyer) "nVH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -44072,14 +43896,14 @@ /obj/effect/catwalk_plated, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "nVI" = ( /obj/effect/floor_decal/spline/plain, /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "nVK" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -44088,7 +43912,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "nVL" = ( /obj/structure/sign/directions/engineering/solars, /obj/structure/sign/levels/engineering/solars{ @@ -44099,16 +43923,7 @@ "nVM" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) -"nVQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Solar_Control_AftPort) "nVV" = ( /obj/structure/bed/chair/sofa/right/blue{ dir = 4 @@ -44120,11 +43935,11 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "nWh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "nWk" = ( /obj/structure/table/woodentable, /obj/item/toy/snake_popper, @@ -44132,7 +43947,7 @@ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "nWq" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -44155,7 +43970,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "nWP" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 6 @@ -44172,17 +43987,17 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "nWV" = ( /obj/structure/flora/tree/jungle_small, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "nXC" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/green/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "nYi" = ( /obj/structure/bed/chair/sofa/blue, /obj/machinery/computer/security/telescreen/entertainment{ @@ -44194,7 +44009,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "nYl" = ( /obj/machinery/power/apc{ dir = 8; @@ -44212,7 +44027,7 @@ icon_state = "0-4" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Server_Room) +/area/bridge/Server_Room) "nYp" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -44227,7 +44042,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "nYw" = ( /obj/structure/cable/green{ d1 = 2; @@ -44242,7 +44057,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/beige/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "nYA" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -44264,7 +44079,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "nYK" = ( /obj/structure/cable/pink{ d1 = 2; @@ -44275,7 +44090,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "nYO" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -44304,7 +44119,7 @@ pixel_x = 5 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "nYW" = ( /obj/machinery/shower{ pixel_y = 16 @@ -44318,7 +44133,7 @@ /obj/machinery/door/window/southright, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "nZm" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -44327,7 +44142,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "nZp" = ( /obj/structure/bed/chair/sofa/purp{ dir = 4 @@ -44341,13 +44156,7 @@ dir = 4 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_08) -"nZD" = ( -/obj/structure/sign/goldenplaque{ - pixel_y = -32 - }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/sleeping/Dormitory_08) "nZG" = ( /obj/structure/table/standard, /obj/fiftyspawner/steel, @@ -44362,10 +44171,10 @@ pixel_x = 2 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "nZV" = ( /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "oas" = ( /obj/item/storage/secure/safe{ pixel_x = 35; @@ -44374,10 +44183,10 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "oaL" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "oaW" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -44388,17 +44197,17 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "obc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "obq" = ( /obj/random/mainttoyloot, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "obC" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 1 @@ -44411,11 +44220,11 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "obF" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortChamber1) +/area/maintenance/Deck3_Dorms_PortChamber1) "obU" = ( /obj/structure/bed/chair/comfy/blue, /obj/machinery/firealarm{ @@ -44431,7 +44240,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "ocg" = ( /obj/structure/cable/green{ d1 = 1; @@ -44451,18 +44260,18 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "oci" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "ocl" = ( /obj/structure/closet/radiation, /obj/item/clothing/glasses/meson, /obj/item/clothing/glasses/meson, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "ocq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -44482,13 +44291,13 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "ocu" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "ocy" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -44511,12 +44320,12 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "ocC" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "ocD" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -44525,11 +44334,11 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "ocL" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "ocO" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -44543,7 +44352,7 @@ icon_state = "2-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "oda" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -44553,7 +44362,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "odb" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -44561,18 +44370,18 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "odf" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "odv" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "odB" = ( /obj/structure/cable/white{ d1 = 2; @@ -44580,7 +44389,7 @@ icon_state = "2-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "odE" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -44591,7 +44400,7 @@ dir = 4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "odR" = ( /obj/machinery/suit_storage_unit/engineering, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -44600,7 +44409,7 @@ network = list("engineering") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "odS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -44611,7 +44420,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "odW" = ( /obj/structure/cable/white{ d1 = 1; @@ -44625,7 +44434,7 @@ dir = 10 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "oek" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -44633,11 +44442,11 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "oeu" = ( /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "oex" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -44649,7 +44458,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "oeC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -44664,7 +44473,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "oeW" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -44674,7 +44483,7 @@ dir = 4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "oeX" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -44691,11 +44500,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "off" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "ofh" = ( /obj/structure/cable/white{ d1 = 1; @@ -44703,11 +44512,11 @@ icon_state = "1-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "ofM" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "ofN" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -44738,7 +44547,7 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "ofT" = ( /obj/structure/cable/green{ d1 = 4; @@ -44758,13 +44567,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "oga" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor2) +/area/maintenance/Deck3_Medical_AftCorridor2) "ogb" = ( /obj/structure/bed/chair/comfy/orange{ dir = 1 @@ -44785,7 +44594,7 @@ dir = 4 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "ogh" = ( /obj/machinery/power/apc{ dir = 8; @@ -44815,7 +44624,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "ogj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -44826,10 +44635,10 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "ogk" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "ogs" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -44850,7 +44659,7 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "ogB" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/map_helper/airlock/atmos/chamber_pump, @@ -44858,7 +44667,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "ogT" = ( /obj/structure/cable{ d1 = 1; @@ -44868,7 +44677,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "ogU" = ( /obj/structure/cable{ d1 = 4; @@ -44886,7 +44695,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "ohf" = ( /obj/machinery/light{ dir = 1; @@ -44894,13 +44703,13 @@ }, /obj/structure/bed/chair/comfy/blue, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_1) +/area/medical/Patient_1) "ohH" = ( /obj/random/trash, /obj/structure/table/standard, /obj/random/soap, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "ohL" = ( /obj/structure/cable/green{ d1 = 4; @@ -44919,7 +44728,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "ohT" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -44929,7 +44738,7 @@ name = "Botanist" }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "oif" = ( /obj/machinery/computer/cloning{ dir = 8 @@ -44951,13 +44760,13 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "ois" = ( /obj/effect/floor_decal/spline/fancy{ dir = 1 }, /turf/simulated/floor/water/deep/pool, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "oiQ" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -44968,7 +44777,7 @@ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "ojb" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -44977,7 +44786,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "ojq" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -44998,7 +44807,7 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "ojz" = ( /obj/machinery/alarm{ dir = 1; @@ -45011,7 +44820,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "ojN" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -45020,7 +44829,7 @@ /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "ojQ" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -45035,7 +44844,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall) +/area/engineering/Engine1_Access_Hall) "ojT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -45047,7 +44856,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "ojY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -45071,10 +44880,10 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "okd" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "oks" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 @@ -45083,7 +44892,7 @@ name = "Pancracia" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "okt" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/steeldecal/steel_decals9, @@ -45097,7 +44906,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "okK" = ( /obj/structure/closet/wardrobe/mixed, /obj/machinery/light{ @@ -45106,7 +44915,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "olf" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1 @@ -45116,7 +44925,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "olg" = ( /obj/structure/bed/chair/sofa/right/brown{ dir = 8 @@ -45129,7 +44938,7 @@ dir = 5 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "olk" = ( /obj/effect/floor_decal/industrial/warning/color/corner{ dir = 1 @@ -45168,11 +44977,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "olx" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortCorridor1) +/area/maintenance/Deck3_Medical_AftPortCorridor1) "oly" = ( /obj/machinery/disposal/wall/cleaner{ name = "1E-Resleeving lost & found bin"; @@ -45183,10 +44995,10 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "omc" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "ome" = ( /obj/machinery/power/apc{ dir = 4; @@ -45204,13 +45016,13 @@ icon_state = "0-8" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Cyborg_Station) +/area/bridge/Cyborg_Station) "omi" = ( /obj/structure/loot_pile/maint/trash, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "omn" = ( /obj/machinery/light{ dir = 8; @@ -45219,7 +45031,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "omJ" = ( /obj/machinery/atmospherics/valve/digital{ dir = 4; @@ -45227,7 +45039,7 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "omS" = ( /obj/item/radio/intercom/department/medbay{ dir = 4; @@ -45237,7 +45049,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "omZ" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -45247,7 +45059,7 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "onf" = ( /obj/machinery/atmospherics/valve{ name = "Engineering emergency air supply" @@ -45255,7 +45067,7 @@ /obj/effect/floor_decal/industrial/danger/full, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "oni" = ( /obj/structure/cable/green{ d1 = 1; @@ -45272,13 +45084,13 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "onu" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor2) +/area/maintenance/Deck3_Medical_AftCorridor2) "onG" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "onQ" = ( /obj/machinery/ai_status_display{ name = "1N-AI display"; @@ -45310,12 +45122,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "onR" = ( /obj/structure/loot_pile/maint/junk, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "oog" = ( /obj/structure/cable/green{ d1 = 1; @@ -45331,7 +45143,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "oot" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -45370,10 +45182,10 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "ooS" = ( /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "ooU" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -45399,13 +45211,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "opj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -45413,7 +45220,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "opn" = ( /obj/structure/cable/green{ d1 = 2; @@ -45427,7 +45234,7 @@ dir = 10 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_1) +/area/medical/Patient_1) "opv" = ( /obj/machinery/light{ dir = 1; @@ -45440,7 +45247,7 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "opy" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -45453,10 +45260,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "opA" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine1_Substation) +/area/engineering/Engine1_Substation) "opX" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 @@ -45465,7 +45272,7 @@ dir = 1 }, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "opZ" = ( /obj/item/stool/padded{ dir = 8 @@ -45473,14 +45280,14 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "oql" = ( /obj/structure/table/bench/marble, /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "oqt" = ( /obj/structure/cable{ d1 = 1; @@ -45494,13 +45301,13 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "oqA" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 }, -/turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/turf/simulated/floor/tiled, +/area/bridge/Control_Atrium) "oqC" = ( /obj/machinery/suit_storage_unit/engineering, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -45508,11 +45315,11 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "orc" = ( /obj/structure/sign/warning/compressed_gas, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "orh" = ( /obj/structure/cable/green{ d1 = 1; @@ -45529,7 +45336,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "ori" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/sign/small/warning/emerg_only{ @@ -45537,14 +45344,14 @@ pixel_x = 32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "ort" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "orE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -45555,7 +45362,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "orM" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -45584,7 +45391,7 @@ opacity = 0 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "orO" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/machinery/light{ @@ -45593,7 +45400,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "orR" = ( /obj/effect/floor_decal/spline/fancy/wood, /mob/living/simple_mob/animal/passive/fish/koi{ @@ -45601,7 +45408,7 @@ }, /obj/structure/railing/grey, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "osd" = ( /obj/structure/disposalpipe/junction/yjunction{ dir = 1 @@ -45613,7 +45420,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "osg" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/catwalk_plated/techmaint, @@ -45621,7 +45428,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "osG" = ( /obj/structure/cable/green{ d1 = 1; @@ -45638,7 +45445,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "osI" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -45647,14 +45454,14 @@ }, /obj/effect/catwalk_plated/techfloor, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Substation) +/area/engineering/Engine1_Substation) "osL" = ( /obj/structure/bed/chair/sofa/left/sif_ora, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "osR" = ( /obj/structure/table/sifwoodentable, /obj/machinery/alarm{ @@ -45662,12 +45469,12 @@ pixel_x = -22 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "osV" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "ott" = ( /obj/machinery/atmospherics/unary/vent_pump{ external_pressure_bound = 0; @@ -45684,14 +45491,14 @@ use_power = 1 }, /turf/simulated/floor/reinforced/nitrogen, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "otQ" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "otX" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/power/apc/hyper{ @@ -45709,11 +45516,11 @@ icon_state = "0-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "oug" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "ouh" = ( /obj/structure/cable/green{ d1 = 1; @@ -45723,7 +45530,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "oum" = ( /obj/structure/cable/green{ d1 = 4; @@ -45738,27 +45545,22 @@ dir = 1 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "ouE" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "ouJ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "ouN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "ouO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -45767,7 +45569,7 @@ icon_state = "2-8" }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "ouV" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -45794,11 +45596,11 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "ouY" = ( /obj/structure/dispenser, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "ove" = ( /obj/structure/table/rack/shelf/steel, /obj/item/storage/box/bloodpacks{ @@ -45826,16 +45628,7 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) -"ovA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/medical/Surgery_Storage) "ovH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -45853,7 +45646,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "ovO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -45862,10 +45655,10 @@ dir = 9 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "owh" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "owj" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -45890,13 +45683,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "owk" = ( /obj/structure/toilet{ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "owr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -45907,7 +45700,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "owD" = ( /obj/structure/cable/green{ d1 = 4; @@ -45927,7 +45720,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "owI" = ( /obj/item/stool/padded{ dir = 4 @@ -45939,7 +45732,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "owK" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -45948,7 +45741,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "owV" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -45957,7 +45750,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "owX" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -45976,20 +45769,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "oxh" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "oxk" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "oxp" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -45998,7 +45791,7 @@ dir = 9 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "oxB" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -46006,7 +45799,7 @@ id = "sc-WTpatient04" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "oxL" = ( /obj/structure/cable/green{ d1 = 1; @@ -46024,11 +45817,11 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "oxN" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "oxQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -46041,13 +45834,13 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "oyH" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "oyN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -46058,13 +45851,13 @@ id_tag = "Med Lockdown" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "ozj" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "ozl" = ( /obj/machinery/light{ dir = 4; @@ -46102,7 +45895,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "ozz" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -46112,10 +45905,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "ozS" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "ozU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -46139,7 +45932,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "ozX" = ( /obj/machinery/alarm{ dir = 4; @@ -46151,17 +45944,17 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "ozZ" = ( /obj/machinery/door/window/northright, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "oAF" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "oAJ" = ( /obj/structure/closet/emcloset, /obj/machinery/light{ @@ -46169,7 +45962,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "oAW" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -46193,11 +45986,11 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "oBp" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "oBv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -46205,22 +45998,22 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "oBG" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "oBP" = ( /obj/structure/closet/wardrobe/virology_white, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "oCg" = ( /obj/item/radio/intercom{ dir = 8; name = "1W-Station Intercom (General)"; pixel_x = -22 }, -/turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/turf/simulated/floor/tiled, +/area/hallway/Aft_3_Deck_Central_Corridor_1) "oCp" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -46229,7 +46022,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "oCE" = ( /obj/structure/railing/grey{ color = "yellow" @@ -46243,7 +46036,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "oDg" = ( /obj/machinery/recharge_station, /obj/structure/closet/emergsuit_wall{ @@ -46260,11 +46053,11 @@ id = "sc-DBresleevingstall2" }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "oDj" = ( /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "oDo" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -46275,7 +46068,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "oDt" = ( /obj/structure/window/basic{ dir = 8 @@ -46298,7 +46091,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "oDC" = ( /obj/structure/cable/white{ d1 = 4; @@ -46306,12 +46099,12 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "oDP" = ( /obj/structure/table/standard, /obj/random/toolbox, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "oDR" = ( /obj/item/modular_computer/console/preset/command{ dir = 1 @@ -46320,7 +46113,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "oDY" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -46332,7 +46125,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "oEE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -46352,7 +46145,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "oEO" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 4 @@ -46362,13 +46155,13 @@ /obj/structure/curtain/open/shower, /obj/structure/window/reinforced/tinted/frosted, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "oEP" = ( -/obj/structure/table/marble, -/obj/item/book/codex/chef_recipes, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "oFF" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Eng-2nd Engine3"; @@ -46376,7 +46169,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "oFO" = ( /obj/structure/cable/green{ d1 = 1; @@ -46393,7 +46186,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "oGh" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -46410,7 +46203,7 @@ }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "oGv" = ( /obj/effect/floor_decal/industrial/warning/color/corner{ dir = 4 @@ -46435,7 +46228,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "oGN" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 10 @@ -46445,16 +46238,16 @@ id = "wloop_atm_meter" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "oHa" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "oHc" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/porta_turret/ai_defense, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "oHd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -46473,7 +46266,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "oHo" = ( /obj/structure/window/reinforced{ dir = 8 @@ -46482,30 +46275,21 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "oHP" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/spline/plain{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "oIl" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -46519,25 +46303,25 @@ }, /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "oIp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "oIx" = ( /obj/machinery/light/small{ dir = 8 }, /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "oIC" = ( /obj/structure/table/steel, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "oIF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -46558,7 +46342,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "oIQ" = ( /obj/machinery/alarm{ dir = 4; @@ -46571,7 +46355,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "oIU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -46595,7 +46379,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "oJi" = ( /obj/machinery/disease2/diseaseanalyser, /obj/effect/floor_decal/borderfloorwhite{ @@ -46607,20 +46391,20 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "oJn" = ( /obj/structure/loot_pile/maint/trash, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "oJs" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "oJw" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -46629,13 +46413,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "oJx" = ( /obj/machinery/doorbell_chime{ id_tag = "sc-ChimeEng" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "oJC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -46662,14 +46446,14 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "oJV" = ( /obj/machinery/atmospherics/tvalve/digital/mirrored{ name = "Filtered Waste Gas Ejection Switch" }, /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "oJX" = ( /obj/structure/ladder{ pixel_y = 3 @@ -46686,25 +46470,25 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "oKg" = ( /obj/machinery/power/terminal{ dir = 4 }, /obj/structure/cable/yellow, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "oKh" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "oKm" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 8 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "oKs" = ( /obj/structure/table/woodentable, /obj/item/paper_bin{ @@ -46725,7 +46509,7 @@ pixel_x = 6 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "oKA" = ( /obj/structure/bed/chair/comfy/orange, /obj/machinery/alarm{ @@ -46736,7 +46520,7 @@ dir = 5 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "oKM" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -46752,7 +46536,7 @@ id = "sc-WTcaptainbridge" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "oKR" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -46769,7 +46553,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "oKU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -46784,7 +46568,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1) +/area/maintenance/Deck3_Dorms_ForCorridor1) "oKY" = ( /obj/machinery/smartfridge/secure/virology, /obj/effect/floor_decal/borderfloorwhite{ @@ -46796,7 +46580,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "oLa" = ( /obj/structure/sign/warning/high_voltage, /obj/structure/cable/white{ @@ -46805,7 +46589,7 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "oLm" = ( /obj/structure/table/woodentable, /obj/item/book/manual/virology, @@ -46818,7 +46602,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "oLr" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -46832,7 +46616,8 @@ /obj/machinery/door/airlock/angled_bay/double/glass/command{ dir = 8; name = "Airlock bay"; - req_access = list(1) + req_access = null; + req_one_access = list(1,19) }, /obj/structure/cable/green{ d1 = 4; @@ -46846,12 +46631,12 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "oLx" = ( /obj/random/trash, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) +/area/maintenance/Deck3_Dorms_StarChamber2) "oLA" = ( /obj/structure/bed/chair/comfy/brown{ dir = 8 @@ -46860,7 +46645,7 @@ dir = 4 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "oLL" = ( /obj/machinery/disease2/isolator, /obj/effect/floor_decal/borderfloorwhite{ @@ -46872,7 +46657,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "oLW" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -46881,11 +46666,11 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "oLY" = ( /obj/machinery/vending/snack, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "oMt" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -46904,7 +46689,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "oMy" = ( /obj/machinery/ai_status_display{ name = "1S-AI display"; @@ -46916,7 +46701,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "oMC" = ( /obj/structure/cable/green{ d1 = 1; @@ -46927,7 +46712,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "oML" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -46937,7 +46722,7 @@ }, /obj/random/junk, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "oNd" = ( /obj/effect/catwalk_plated/white, /obj/structure/lattice, @@ -46958,13 +46743,13 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "oNk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "oNG" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -46973,23 +46758,21 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "oNI" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/catwalk_plated/techmaint, -/obj/random/junk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "oNY" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -46997,7 +46780,7 @@ id = "sc-WThead6" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "oOk" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -47013,39 +46796,39 @@ /area/space) "oOx" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) +/area/engineering/Engine2_Canister_Storage) "oOz" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "oOB" = ( /obj/structure/table/standard, /obj/random/junk, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "oON" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "oOY" = ( /obj/structure/sign/directions/kitchen{ layer = 3.5; dir = 1 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1) +/area/maintenance/Deck3_Dorms_ForCorridor1) "oPd" = ( /turf/simulated/floor/reinforced/phoron, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "oPi" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "oPl" = ( /obj/machinery/alarm{ dir = 4; @@ -47053,7 +46836,7 @@ }, /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "oPH" = ( /obj/structure/cable/cyan{ d1 = 2; @@ -47071,7 +46854,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "oPU" = ( /obj/structure/cable/green{ d1 = 1; @@ -47088,7 +46871,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "oPW" = ( /obj/machinery/alarm{ dir = 1; @@ -47096,7 +46879,7 @@ }, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "oQe" = ( /obj/item/taperecorder{ pixel_y = 8; @@ -47111,13 +46894,13 @@ pixel_x = -5 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "oQl" = ( /obj/machinery/portable_atmospherics/canister/empty, /obj/structure/window/reinforced, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "oQM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -47134,18 +46917,18 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "oQZ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) +/area/engineering/Engine2_Canister_Storage) "oRe" = ( /obj/machinery/light/floortube{ pixel_y = -2 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "oRh" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 4 @@ -47164,7 +46947,7 @@ pixel_y = -9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "oRH" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 1 @@ -47181,7 +46964,7 @@ "oRW" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "oSc" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -47191,7 +46974,7 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "oSB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -47205,19 +46988,19 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "oSC" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/structure/sign/poster/nanotrasen, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "oSL" = ( /obj/effect/floor_decal/spline/fancy{ dir = 6 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "oSW" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -47227,7 +47010,7 @@ color = "yellow" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "oTc" = ( /obj/machinery/power/apc{ dir = 1; @@ -47240,11 +47023,11 @@ }, /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "oTf" = ( /obj/item/bedsheet/cosmos, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "oTk" = ( /obj/structure/table/standard, /obj/structure/cable/green{ @@ -47257,18 +47040,18 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "oTl" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "oTq" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "oTG" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -47276,31 +47059,31 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "oTJ" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "oUd" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "oUk" = ( /obj/machinery/atmospherics/pipe/tank/air{ dir = 1; start_pressure = 4559.63 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "oUq" = ( /obj/machinery/keycard_auth{ pixel_x = -26 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "oUA" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -47309,7 +47092,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "oUG" = ( /obj/structure/cable/green{ d1 = 1; @@ -47325,11 +47108,11 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "oUS" = ( /obj/structure/table/sifwoodentable, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "oUT" = ( /obj/item/toy/figure/station{ pixel_x = -1; @@ -47337,7 +47120,7 @@ }, /obj/structure/table/marble, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "oUU" = ( /obj/structure/cable/yellow{ d2 = 4; @@ -47350,12 +47133,12 @@ /turf/simulated/floor/airless{ icon_state = "solarpanel" }, -/area/SouthernCrossV2/Engineering/Solar_Array_ForPort) +/area/engineering/Solar_Array_ForPort) "oVm" = ( /obj/machinery/floodlight, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "oVr" = ( /obj/structure/table/wooden_reinforced, /obj/item/storage/box/cups{ @@ -47374,7 +47157,7 @@ pixel_y = -22 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "oVy" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/porta_turret/ai_defense{ @@ -47392,7 +47175,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "oWj" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -47405,7 +47188,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "oWv" = ( /obj/machinery/disease2/incubator, /obj/effect/floor_decal/borderfloorwhite{ @@ -47417,7 +47200,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "oWw" = ( /obj/structure/cable/green{ d1 = 2; @@ -47431,7 +47214,7 @@ dir = 10 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "oWy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -47439,7 +47222,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "oWN" = ( /obj/structure/toilet{ dir = 8 @@ -47455,7 +47238,7 @@ id = "sc-DBresleevingstall1" }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "oXg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -47470,13 +47253,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "oXh" = ( /obj/structure/bed/chair/backed_grey{ color = "grey" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "oXi" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -47488,7 +47271,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "oXo" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -47502,20 +47285,20 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "oXG" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /obj/machinery/portable_atmospherics/canister/empty, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "oXO" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "oXS" = ( /obj/structure/table/standard, /obj/effect/map_helper/airlock/sensor/chamber_sensor, @@ -47524,14 +47307,14 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "oYa" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "oYs" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -47540,13 +47323,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "oYt" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "oYu" = ( /obj/structure/cable/green{ d1 = 1; @@ -47561,11 +47344,11 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "oYQ" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "oYU" = ( /obj/machinery/light{ dir = 8; @@ -47586,7 +47369,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "oYY" = ( /obj/machinery/shower{ dir = 1 @@ -47600,17 +47383,17 @@ /obj/machinery/door/window/northright, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "oZi" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "oZu" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "oZB" = ( /obj/effect/floor_decal/industrial/warning/tile, /turf/simulated/floor/plating/turfpack/airless, @@ -47622,7 +47405,7 @@ icon_state = "4-8" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "oZK" = ( /obj/structure/cable/green{ d1 = 4; @@ -47640,7 +47423,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "oZR" = ( /obj/structure/cable/green{ d1 = 4; @@ -47655,17 +47438,17 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "oZT" = ( /obj/structure/table/standard, /obj/random/maintenance/cargo, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "oZU" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "pac" = ( /obj/structure/ladder{ pixel_y = 3 @@ -47676,7 +47459,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "pas" = ( /obj/structure/cable/green{ d1 = 1; @@ -47686,7 +47469,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) +"pau" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/sign/poster/custom{ + dir = 8 + }, +/turf/simulated/open, +/area/crew_quarters/Chomp_Dinner_1) "paF" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -47701,7 +47493,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "paP" = ( /obj/structure/bed/chair/wood{ dir = 8; @@ -47711,7 +47503,7 @@ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "pbh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -47727,7 +47519,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "pbj" = ( /obj/structure/cable/green{ d1 = 2; @@ -47742,26 +47534,26 @@ icon_state = "pipe-c" }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "pbl" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Server_Room) +/area/bridge/Server_Room) "pbE" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "pbI" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "pbN" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "pbV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -47773,23 +47565,23 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "pcf" = ( /obj/machinery/doorbell_chime{ id_tag = "sc-ChimeMed" }, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Patient_2) +/area/medical/Patient_2) "pcr" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "pcM" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "pdb" = ( /obj/random/junk, /obj/structure/table/rack/steel, @@ -47800,7 +47592,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "pdz" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -47810,7 +47602,7 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "pdU" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 6 @@ -47825,7 +47617,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "pdW" = ( /obj/structure/cable/green{ d1 = 4; @@ -47844,14 +47636,14 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "pdZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "pef" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -47864,14 +47656,14 @@ id = "sc-WTheadmeeting" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "pei" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "peN" = ( /obj/machinery/power/apc{ dir = 1; @@ -47894,7 +47686,7 @@ name = "N-light switch" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Substation) +/area/engineering/Engine1_Substation) "peP" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -47903,7 +47695,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "peV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -47920,7 +47712,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "peW" = ( /obj/random/trash, /obj/structure/table/rack, @@ -47928,17 +47720,17 @@ /obj/random/maintenance/cargo, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "pfq" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "pfx" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "pfE" = ( /obj/structure/cable{ d1 = 1; @@ -47947,7 +47739,7 @@ }, /obj/effect/catwalk_plated/techfloor, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Substation) +/area/engineering/Engine1_Substation) "pfH" = ( /obj/structure/transit_tube, /turf/simulated/floor/reinforced/airless, @@ -47960,7 +47752,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "pfQ" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4; @@ -47970,7 +47762,7 @@ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "pfW" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -48000,14 +47792,14 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "pga" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "pgC" = ( /obj/effect/floor_decal/industrial/hatch, /obj/machinery/atmospheric_field_generator/perma/underdoors{ @@ -48017,7 +47809,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "pgJ" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 5 @@ -48033,12 +47825,12 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "pgQ" = ( /obj/effect/catwalk_plated, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "phb" = ( /obj/structure/lattice, /obj/structure/grille/rustic{ @@ -48053,7 +47845,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "phH" = ( /obj/machinery/power/apc{ dir = 1; @@ -48069,7 +47861,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "piu" = ( /obj/machinery/pointdefense{ id_tag = "PD Secondary" @@ -48084,14 +47876,14 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "pja" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "pjb" = ( /obj/structure/cable/green{ d1 = 1; @@ -48109,11 +47901,11 @@ dir = 1 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "pjh" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortChamber1) +/area/maintenance/Deck3_Dorms_PortChamber1) "pjq" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Brd-Corridor1"; @@ -48126,7 +47918,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "pjr" = ( /obj/structure/ladder{ pixel_y = 3 @@ -48137,7 +47929,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "pjx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -48157,11 +47949,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "pkj" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "pkl" = ( /obj/structure/cable/green{ d1 = 4; @@ -48176,7 +47968,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "pko" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -48188,10 +47980,10 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "pkC" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "pkD" = ( /obj/structure/cable/green{ d1 = 4; @@ -48207,13 +47999,13 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "pkH" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "pkQ" = ( /turf/simulated/floor/wood/alt/broken, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "pkS" = ( /obj/structure/cable/green{ d1 = 1; @@ -48229,7 +48021,7 @@ dir = 9 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "pld" = ( /obj/structure/table/steel, /obj/item/stack/cable_coil/yellow{ @@ -48240,7 +48032,7 @@ }, /obj/item/stack/cable_coil/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "plL" = ( /obj/structure/extinguisher_cabinet{ dir = 4; @@ -48254,28 +48046,28 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "plM" = ( /obj/structure/girder/reinforced, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "plP" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "plR" = ( /obj/effect/floor_decal/spline/fancy{ dir = 5 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "plS" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "pmk" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -48287,7 +48079,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "pmm" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -48304,7 +48096,7 @@ }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "pmn" = ( /obj/structure/railing/grey{ dir = 4 @@ -48322,7 +48114,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "pmD" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -48336,7 +48128,7 @@ }, /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "pmO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -48345,7 +48137,7 @@ dir = 6 }, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "pmU" = ( /obj/effect/floor_decal/industrial/arrows/yellow{ dir = 1 @@ -48356,7 +48148,7 @@ name = "Construction site" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "pmY" = ( /obj/structure/sign/flag/nt/left, /obj/structure/cable/white{ @@ -48365,7 +48157,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "pnf" = ( /obj/structure/cable/green{ d1 = 1; @@ -48377,7 +48169,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "pnr" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -48388,17 +48180,17 @@ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "pnQ" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "pob" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "poc" = ( /obj/structure/railing/grey, /obj/structure/railing/grey{ @@ -48417,25 +48209,25 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "pos" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "ppd" = ( /obj/structure/loot_pile/maint/junk, /obj/random/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) +/area/maintenance/Deck3_Dorms_StarChamber2) "ppf" = ( /obj/machinery/light{ dir = 1; name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "ppx" = ( /obj/structure/bed/double/padded, /obj/structure/bed/double/padded{ @@ -48444,32 +48236,23 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "ppD" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/dropper{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/reagent_containers/dropper{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "ppK" = ( /obj/structure/table/woodentable, /obj/machinery/computer/med_data/laptop, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_1) +/area/medical/Psych_Room_1) "ppV" = ( /obj/item/radio/intercom{ name = "1S-Station Intercom (General)"; pixel_y = -22 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "pqg" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -48479,7 +48262,7 @@ name = "Botanist" }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "pqC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -48506,15 +48289,16 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "pqM" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "pqS" = ( /obj/structure/table/steel_reinforced, +/obj/item/binoculars, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "pqT" = ( /obj/structure/bed/chair/bay/chair/padded/red/bignest, /obj/structure/cable/green{ @@ -48523,31 +48307,54 @@ icon_state = "4-8" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "pro" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "prA" = ( -/obj/machinery/vending/boozeomat, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/cell_charger{ + pixel_y = 11 }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 +/obj/item/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 6; + pixel_y = -3 }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 +/obj/item/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 6; + pixel_y = 4 }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/obj/machinery/recharger{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/structure/table/steel, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/engineering/Central_Engineering_Post) "prH" = ( /obj/machinery/light{ dir = 1; name = "1N-lighting fixture" }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "prP" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 10 @@ -48561,7 +48368,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "prX" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/machinery/light{ @@ -48571,17 +48378,58 @@ dir = 1 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "psc" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall) +/area/engineering/Engine1_Access_Hall) "psu" = ( -/obj/machinery/light/small{ +/obj/item/stack/material/phoron{ + amount = 25; + pixel_x = 9; + pixel_y = -9 + }, +/obj/item/t_scanner/upgraded{ + pixel_x = 11; + pixel_y = 3 + }, +/obj/item/clothing/glasses/meson{ + pixel_x = -6; + pixel_y = -13 + }, +/obj/item/clothing/glasses/welding{ + pixel_x = -6; + pixel_y = -8 + }, +/obj/structure/closet/crate/large/nanotrasen{ + req_one_access = list(10) + }, +/obj/item/stack/material/plasteel{ + amount = 30; + pixel_y = 1; + pixel_x = -8 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_y = 4; + pixel_x = -8 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/clothing/gloves/yellow{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/multitool{ + pixel_x = 4 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/foodcart, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Central_Engineering_Post) "psz" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -48601,7 +48449,7 @@ icon_state = "E-W-Pass" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "psC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -48609,13 +48457,13 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "psP" = ( /obj/structure/table/standard, /obj/random/coin/sometimes, /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "psW" = ( /obj/structure/cable/pink{ d1 = 1; @@ -48628,7 +48476,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "ptg" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -48637,16 +48485,16 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "ptq" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "ptJ" = ( /obj/structure/particle_accelerator/power_box{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "ptS" = ( /obj/structure/table/sifwoodentable, /obj/machinery/computer/security/telescreen/entertainment{ @@ -48660,7 +48508,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "ptV" = ( /obj/structure/railing/grey{ color = "yellow" @@ -48670,7 +48518,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Dorms_Substation) +/area/maintenance/Dorms_Substation) "puH" = ( /obj/machinery/newscaster{ name = "1W-newscaster"; @@ -48688,14 +48536,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "puL" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "puR" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "puU" = ( /obj/effect/floor_decal/industrial/arrows/red, /obj/effect/floor_decal/industrial/arrows/red{ @@ -48706,7 +48554,7 @@ id_tag = "sc-DCbridgedoors" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "puW" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -48730,16 +48578,16 @@ /obj/structure/table/woodentable, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "pvd" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "pvp" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "pvt" = ( /obj/effect/catwalk_plated/white, /obj/structure/cable/white{ @@ -48752,7 +48600,7 @@ "pvC" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "pvH" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -48766,14 +48614,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "pvJ" = ( /obj/structure/railing{ dir = 8 }, /obj/structure/railing, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "pvS" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -48788,7 +48636,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "pvY" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloorblack{ @@ -48798,7 +48646,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "pwa" = ( /obj/structure/railing, /obj/machinery/camera/network/security{ @@ -48806,7 +48654,7 @@ network = list("Commons") }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "pwc" = ( /obj/structure/cable/green{ d1 = 1; @@ -48827,11 +48675,11 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "pwe" = ( /obj/structure/flora/lily1, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "pwg" = ( /obj/structure/cable/green{ d1 = 4; @@ -48839,7 +48687,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "pwF" = ( /obj/structure/railing/grey{ color = "yellow" @@ -48862,7 +48710,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "pwP" = ( /obj/structure/bed/double/padded, /obj/item/bedsheet/clowndouble, @@ -48871,7 +48719,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "pwS" = ( /obj/structure/table/rack/shelf/steel, /obj/item/storage/toolbox/mechanical{ @@ -48898,7 +48746,7 @@ pixel_x = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "pwV" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -48923,7 +48771,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "pxx" = ( /obj/machinery/shower{ dir = 1 @@ -48939,7 +48787,7 @@ }, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "pxy" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -48956,10 +48804,10 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "pxJ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1) +/area/maintenance/Deck3_Dorms_ForCorridor1) "pxR" = ( /obj/structure/cable/green{ d1 = 4; @@ -48968,7 +48816,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Dorms_Substation) +/area/maintenance/Dorms_Substation) "pye" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -48994,7 +48842,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall) +/area/engineering/Engine1_Access_Hall) "pyf" = ( /obj/structure/cable/green{ d1 = 1; @@ -49022,7 +48870,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "pyq" = ( /obj/structure/cable/green{ d1 = 1; @@ -49051,7 +48899,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "pyF" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -49074,13 +48922,13 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "pyK" = ( /obj/random/trash_pile, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "pyY" = ( /obj/structure/cable/green{ d1 = 4; @@ -49095,10 +48943,10 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "pzb" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "pzk" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -49113,13 +48961,13 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "pzp" = ( /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "pzv" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "pzD" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 @@ -49127,12 +48975,12 @@ /obj/machinery/meter, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "pzH" = ( /obj/structure/table/steel, /obj/item/binoculars, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "pAa" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -49146,7 +48994,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "pAd" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/map_helper/airlock/atmos/chamber_pump, @@ -49155,7 +49003,7 @@ }, /obj/machinery/atmospherics/unary/vent_pump/high_volume, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "pAf" = ( /obj/effect/catwalk_plated, /obj/structure/cable/green{ @@ -49164,7 +49012,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "pAl" = ( /obj/structure/cable/white{ d1 = 1; @@ -49172,7 +49020,7 @@ icon_state = "1-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "pAo" = ( /obj/structure/cable/green{ d1 = 1; @@ -49190,7 +49038,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "pAp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -49207,7 +49055,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "pAs" = ( /obj/structure/cable/white{ d1 = 4; @@ -49215,14 +49063,14 @@ icon_state = "4-8" }, /turf/simulated/wall, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "pAw" = ( /obj/structure/table/rack/steel, /obj/random/maintenance/medical, /obj/random/maintenance/medical, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "pAy" = ( /obj/structure/cable/green{ d1 = 4; @@ -49233,16 +49081,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "pAz" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "pAE" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "pAS" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -49263,7 +49111,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "pAU" = ( /obj/item/modular_computer/console/preset/research, /obj/machinery/firealarm{ @@ -49278,13 +49126,13 @@ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "pBm" = ( /obj/structure/table/glass, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "pBz" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -49293,7 +49141,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "pBH" = ( /obj/machinery/computer/general_air_control/large_tank_control{ input_tag = "SC-co2IN"; @@ -49306,17 +49154,17 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "pBM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "pCS" = ( /obj/structure/frame, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "pDc" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1; @@ -49387,17 +49235,17 @@ dir = 1 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "pDz" = ( /obj/structure/sign/warning/lethal_turrets, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "pDX" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "pEb" = ( /obj/machinery/atmospherics/binary/pump/on{ target_pressure = 200; @@ -49405,11 +49253,11 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "pEh" = ( /obj/random/cargopod, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "pEj" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -49418,7 +49266,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "pEm" = ( /obj/structure/bed/chair{ dir = 8 @@ -49427,7 +49275,7 @@ name = "Atmospheric Technician" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "pEE" = ( /obj/structure/cable/green{ d1 = 4; @@ -49453,13 +49301,13 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "pEH" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "pES" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 9 @@ -49473,18 +49321,18 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "pFB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/effect/floor_decal/corner/lime/diagonal, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "pFO" = ( /obj/machinery/gear_painter, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "pGc" = ( /obj/machinery/firealarm{ dir = 4; @@ -49506,7 +49354,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "pGh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -49514,7 +49362,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "pGm" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -49523,7 +49371,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "pGp" = ( /obj/item/radio/intercom{ dir = 8; @@ -49538,7 +49386,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "pGt" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/black, /turf/simulated/floor/reinforced/airless, @@ -49562,7 +49410,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "pGF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -49582,7 +49430,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "pGG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -49592,7 +49440,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "pGS" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -49606,21 +49454,21 @@ icon_state = "1-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "pGV" = ( /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "pGW" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Bridge Substation Bypass" }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "pHc" = ( /obj/structure/closet/emergsuit_wall{ pixel_y = 27; @@ -49635,7 +49483,7 @@ dir = 4 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "pHp" = ( /obj/machinery/shower{ pixel_y = 16 @@ -49649,7 +49497,7 @@ /obj/machinery/door/window/southleft, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "pHw" = ( /obj/structure/railing{ dir = 1 @@ -49659,7 +49507,7 @@ name = "1E-light fixture" }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "pHF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloorwhite{ @@ -49669,22 +49517,22 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "pIr" = ( /obj/structure/table/rack/steel, /obj/random/maintenance/engineering, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "pIw" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 5 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "pIA" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "pID" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -49698,7 +49546,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "pII" = ( /obj/structure/cable{ d1 = 4; @@ -49712,7 +49560,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "pIX" = ( /obj/structure/cable/green{ d1 = 1; @@ -49720,7 +49568,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "pJf" = ( /obj/machinery/alarm{ dir = 1; @@ -49730,7 +49578,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "pJw" = ( /obj/machinery/vending/loadout/overwear, /obj/effect/floor_decal/borderfloorwhite{ @@ -49740,7 +49588,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "pJL" = ( /obj/effect/floor_decal/techfloor{ dir = 9 @@ -49754,7 +49602,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "pJT" = ( /obj/structure/window/plastitanium{ dir = 4 @@ -49770,14 +49618,14 @@ layer = 3; name = "1W-light fixture" }, -/turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/turf/simulated/floor/wood/alt/parquet/turfpack/airless, +/area/bridge/Captain_Office) "pJW" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "pKe" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -49786,20 +49634,20 @@ dir = 9 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "pKh" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "pKv" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "pKB" = ( /obj/effect/floor_decal/spline/fancy{ dir = 10 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "pKH" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/red, @@ -49808,7 +49656,7 @@ "pKJ" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "pKM" = ( /obj/structure/cable/green{ d1 = 1; @@ -49819,17 +49667,17 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "pKN" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "pKT" = ( /mob/living/bot/farmbot, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "pLe" = ( /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "pLh" = ( /obj/effect/floor_decal/industrial/arrows/yellow, /obj/effect/floor_decal/industrial/arrows/yellow{ @@ -49841,7 +49689,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "pLF" = ( /obj/structure/cable/green{ d1 = 1; @@ -49855,13 +49703,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "pLV" = ( /obj/structure/bed/chair/wood{ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "pLY" = ( /obj/item/storage/toolbox/lunchbox/nt/filled, /obj/machinery/light{ @@ -49872,18 +49720,18 @@ starts_with = null }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "pLZ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "pMd" = ( /obj/structure/table/steel, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "pMo" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -49903,7 +49751,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "pMu" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -49914,7 +49762,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "pMy" = ( /obj/structure/sign/levels/engineering/solars{ dir = 4; @@ -49928,11 +49776,11 @@ pixel_y = -9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "pMG" = ( /obj/structure/sign/painting/public, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "pMH" = ( /obj/item/modular_computer/console/preset/engineering, /obj/effect/floor_decal/borderfloorblack/corner{ @@ -49942,20 +49790,20 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "pML" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/structure/sign/poster/custom, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "pMP" = ( /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "pNg" = ( /obj/structure/sign/nosmoking_1, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "pNy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -49971,7 +49819,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "pNB" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/random{ @@ -49998,28 +49846,51 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "pOe" = ( /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "pOf" = ( /obj/machinery/portable_atmospherics/canister/empty, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "pOt" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) +"pOL" = ( +/obj/structure/table/woodentable, +/obj/item/stack/material/cardboard{ + amount = 25 + }, +/obj/item/tape_roll{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/item/packageWrap{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/packageWrap{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/machinery/status_display{ + name = "S-status display"; + pixel_y = -32 + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "pOU" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "pPh" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "pPk" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -50029,7 +49900,7 @@ name = "Medical Doctor" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "pPL" = ( /obj/structure/table/rack/shelf, /obj/item/bodybag/cryobag/robobag{ @@ -50072,7 +49943,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "pPN" = ( /obj/machinery/power/apc{ dir = 1; @@ -50094,7 +49965,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "pQa" = ( /obj/effect/floor_decal/industrial/hatch, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -50102,7 +49973,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "pQl" = ( /obj/structure/cable/white{ d1 = 1; @@ -50110,7 +49981,7 @@ icon_state = "1-8" }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "pQL" = ( /obj/machinery/power/terminal, /obj/structure/cable{ @@ -50118,7 +49989,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Dorms_Substation) +/area/maintenance/Dorms_Substation) "pQQ" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/grille, @@ -50143,7 +50014,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "pQS" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -50152,7 +50023,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "pQT" = ( /obj/structure/cable/green{ d1 = 4; @@ -50166,13 +50037,13 @@ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "pRm" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "pRD" = ( /obj/machinery/light/small{ dir = 1 @@ -50180,7 +50051,7 @@ /obj/random/mainttoyloot, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "pRI" = ( /obj/structure/window/basic{ dir = 8 @@ -50200,21 +50071,21 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "pRL" = ( /obj/structure/bed/chair/oldsofa/left{ dir = 8 }, /obj/effect/floor_decal/carpet/blue, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "pRO" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "pRR" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "pRZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -50224,7 +50095,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "pSa" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -50237,7 +50108,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "pSf" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -50254,7 +50125,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "pSn" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -50263,13 +50134,13 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "pTg" = ( /obj/structure/loot_pile/maint/technical, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "pTi" = ( /obj/structure/window/plastitanium{ dir = 1 @@ -50277,18 +50148,17 @@ /obj/structure/window/plastitanium{ dir = 4 }, -/obj/item/toy/plushie/nymph{ - pixel_x = -2; - pixel_y = 3 - }, /obj/structure/table/darkglass, /obj/machinery/camera/network/security{ dir = 5; c_tag = "D3-Brd-Captain Office1"; network = list("Bridge") }, -/turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/obj/item/grenade/spawnergrenade/casino/otie/chubby{ + pixel_x = -1 + }, +/turf/simulated/floor/wood/alt/parquet/turfpack/airless, +/area/bridge/Captain_Office) "pTs" = ( /obj/structure/cable/green{ d1 = 2; @@ -50308,7 +50178,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "pTD" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 1 @@ -50325,11 +50195,11 @@ pixel_y = -9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "pTW" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "pUa" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -50338,7 +50208,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "pUf" = ( /obj/structure/cable/green{ d1 = 4; @@ -50350,14 +50220,14 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "pUj" = ( /obj/structure/table/bench/marble, /obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "pUB" = ( /obj/effect/floor_decal/industrial/warning/color, /obj/structure/railing/grey{ @@ -50369,7 +50239,7 @@ /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "pVj" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor/corner{ @@ -50379,21 +50249,21 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "pVm" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "pVD" = ( /obj/structure/table/darkglass, /obj/item/flashlight/lantern{ pixel_y = 9 }, /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "pVE" = ( /obj/structure/cable/green{ d1 = 4; @@ -50410,7 +50280,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "pVJ" = ( /obj/structure/bed/chair/sofa/right/purp{ dir = 4 @@ -50419,14 +50289,14 @@ dir = 4 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "pVN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/beige/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "pVV" = ( /obj/structure/cable/green{ d1 = 1; @@ -50439,7 +50309,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "pVY" = ( /obj/machinery/power/apc{ dir = 4; @@ -50473,7 +50343,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "pWc" = ( /obj/structure/bed/chair/oldsofa/right{ dir = 1 @@ -50486,7 +50356,7 @@ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "pWo" = ( /obj/machinery/computer/id_restorer{ pixel_y = -27; @@ -50495,17 +50365,14 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "pWH" = ( /obj/effect/floor_decal/spline/fancy{ dir = 5 }, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "pWI" = ( -/obj/machinery/computer/arcade{ - dir = 1 - }, /obj/item/radio/intercom{ name = "1S-Station Intercom (General)"; pixel_y = -22 @@ -50513,14 +50380,17 @@ /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, +/obj/item/stool/padded{ + dir = 8 + }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "pWK" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "pWM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -50537,11 +50407,11 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "pXa" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "pXb" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 1 @@ -50551,7 +50421,7 @@ id_tag = "SC-o2_sensor" }, /turf/simulated/floor/reinforced/oxygen, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "pXf" = ( /obj/structure/cable/green{ d1 = 1; @@ -50574,7 +50444,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "pXm" = ( /obj/structure/bed/double/padded, /obj/structure/bed/double/padded{ @@ -50585,7 +50455,7 @@ pixel_y = -23 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "pXp" = ( /obj/machinery/light{ dir = 4; @@ -50593,7 +50463,7 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "pXw" = ( /obj/structure/cable/green{ d1 = 1; @@ -50605,7 +50475,7 @@ dir = 5 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "pXC" = ( /obj/structure/cable/white{ d1 = 1; @@ -50613,7 +50483,7 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "pXJ" = ( /obj/structure/cable/green{ d1 = 1; @@ -50625,7 +50495,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "pYa" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -50634,7 +50504,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "pYv" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/steeldecal/steel_decals9, @@ -50653,10 +50523,10 @@ network = list("Medical") }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "pYE" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "pYT" = ( /obj/structure/cable/green{ d1 = 1; @@ -50666,23 +50536,23 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "pZl" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "pZq" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "pZA" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "pZU" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "qaj" = ( /obj/machinery/light{ dir = 1; @@ -50695,7 +50565,7 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "qao" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -50715,16 +50585,16 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "qaU" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Psych_Room_1) +/area/medical/Psych_Room_1) "qaV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "qba" = ( /obj/structure/cable/green{ d1 = 1; @@ -50738,7 +50608,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "qbh" = ( /obj/machinery/atmospherics/unary/outlet_injector{ frequency = 1441; @@ -50749,7 +50619,7 @@ dir = 4 }, /turf/simulated/floor/reinforced/nitrogen, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "qbw" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 @@ -50758,7 +50628,14 @@ dir = 1 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) +"qbz" = ( +/obj/structure/railing, +/obj/structure/sign/poster/custom{ + dir = 4 + }, +/turf/simulated/open, +/area/crew_quarters/Chomp_Dinner_2) "qbV" = ( /obj/machinery/status_display{ layer = 4; @@ -50771,7 +50648,7 @@ name = "Braeburn" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "qbY" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -50780,13 +50657,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "qcQ" = ( /obj/machinery/light_construct/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "qcT" = ( /obj/structure/table/steel, /obj/machinery/microwave{ @@ -50799,7 +50676,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "qda" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -50807,7 +50684,7 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "qdj" = ( /obj/machinery/firealarm{ dir = 8; @@ -50815,7 +50692,7 @@ pixel_x = -25 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "qdq" = ( /obj/structure/cable/green{ d1 = 1; @@ -50836,25 +50713,25 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "qdr" = ( /obj/effect/graffitispawner, /obj/random/trash_pile, /obj/random/junk, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "qdY" = ( /obj/machinery/light/small, /obj/random/junk, -/obj/structure/cable/green{ +/obj/effect/catwalk_plated/techmaint, +/obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "qdZ" = ( /obj/machinery/power/apc{ dir = 1; @@ -50871,7 +50748,7 @@ name = "N-light switch" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "qeo" = ( /obj/structure/window/plastitanium{ color = "white"; @@ -50879,7 +50756,7 @@ desc = "A dense soft cushion laminated on the wall" }, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "qew" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -50899,7 +50776,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "qfa" = ( /obj/structure/cable/green{ d1 = 1; @@ -50916,17 +50793,17 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "qff" = ( /obj/structure/cable/yellow, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "qfg" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "qfL" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 @@ -50941,7 +50818,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "qgd" = ( /obj/machinery/computer/general_air_control{ frequency = 1445; @@ -50955,7 +50832,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "qgk" = ( /obj/structure/table/standard, /obj/machinery/light{ @@ -50977,7 +50854,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "qgn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -50996,7 +50873,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "qgy" = ( /obj/machinery/clonepod/full, /obj/structure/disposalpipe/segment{ @@ -51017,7 +50894,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "qgS" = ( /obj/machinery/power/apc{ dir = 1; @@ -51035,7 +50912,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "qhf" = ( /obj/machinery/computer/security/engineering{ dir = 4 @@ -51051,7 +50928,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "qhh" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/map_helper/airlock/atmos/chamber_pump, @@ -51062,7 +50939,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "qho" = ( /obj/structure/cable/green{ d1 = 2; @@ -51076,7 +50953,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "qhq" = ( /obj/structure/cable/green{ d1 = 4; @@ -51093,7 +50970,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "qht" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -51104,7 +50981,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "qhw" = ( /obj/machinery/vending/wallmed1{ dir = 4; @@ -51118,7 +50995,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "qhz" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -51127,7 +51004,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "qhA" = ( /obj/structure/cable/green{ d1 = 1; @@ -51147,7 +51024,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "qhQ" = ( /obj/structure/cable{ d1 = 1; @@ -51165,19 +51042,19 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "qhW" = ( /obj/machinery/atmospherics/pipe/cap/visible{ color = "#00ffff"; dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "qik" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "qim" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -51186,7 +51063,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "qis" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -51198,7 +51075,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "qit" = ( /obj/structure/cable/green{ d1 = 2; @@ -51220,7 +51097,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "qiA" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -51239,7 +51116,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "qiL" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -51260,14 +51137,14 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "qiN" = ( /obj/structure/extinguisher_cabinet{ name = "1N-extinguisher cabinet"; pixel_y = 28 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "qiO" = ( /obj/structure/window/basic{ dir = 8 @@ -51280,7 +51157,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "qiV" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume, /obj/effect/map_helper/airlock/atmos/chamber_pump, @@ -51289,7 +51166,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "qja" = ( /obj/structure/railing/grey{ dir = 1 @@ -51299,14 +51176,14 @@ "qjs" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "qjx" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "qjy" = ( /obj/structure/sign/flag/vir/right, /obj/structure/cable/white{ @@ -51315,7 +51192,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "qjG" = ( /obj/structure/cable/white{ d1 = 2; @@ -51323,7 +51200,7 @@ icon_state = "2-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "qjI" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -51335,20 +51212,20 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "qjJ" = ( /obj/item/frame, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "qjP" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "qkf" = ( /obj/random/trash, /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "qko" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -51361,20 +51238,20 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "qkt" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "qkA" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "qkC" = ( /obj/machinery/alarm{ dir = 1; @@ -51382,17 +51259,17 @@ }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "qkL" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "qkP" = ( /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "qld" = ( /obj/structure/table/glass, /obj/item/storage/laundry_basket, @@ -51402,24 +51279,24 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "qle" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "qlf" = ( /obj/structure/bed/chair/sofa/left/green{ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "qlr" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "qlI" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -51432,7 +51309,7 @@ icon_state = "2-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "qlN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -51455,7 +51332,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "qlY" = ( /obj/machinery/alarm{ dir = 1; @@ -51468,7 +51345,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "qmb" = ( /obj/structure/sink{ dir = 4; @@ -51483,7 +51360,7 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "qmc" = ( /obj/structure/table/rack/shelf/steel, /obj/item/suit_cooling_unit{ @@ -51526,7 +51403,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "qmA" = ( /obj/machinery/computer/guestpass{ dir = 4; @@ -51540,7 +51417,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "qmU" = ( /obj/machinery/light{ dir = 1; @@ -51562,7 +51439,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "qng" = ( /obj/structure/cable{ d1 = 1; @@ -51576,7 +51453,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "qnr" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -51586,7 +51463,7 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "qnM" = ( /obj/machinery/disposal/wall{ dir = 4; @@ -51600,11 +51477,11 @@ dir = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "qnU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "qnV" = ( /obj/machinery/power/apc{ dir = 1; @@ -51627,11 +51504,11 @@ icon_state = "0-2" }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Patient_1) +/area/medical/Patient_1) "qoi" = ( /obj/structure/filingcabinet, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "qoP" = ( /obj/machinery/light{ dir = 4; @@ -51641,7 +51518,14 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) +"qoS" = ( +/obj/machinery/light/spot{ + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Lounge) "qph" = ( /obj/structure/table/wooden_reinforced, /obj/item/storage/box/donut{ @@ -51656,7 +51540,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "qpl" = ( /obj/structure/railing/grey, /turf/space, @@ -51666,7 +51550,7 @@ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "qps" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -51675,11 +51559,11 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_1) +/area/medical/Patient_1) "qpD" = ( /obj/structure/table/steel, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "qqA" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -51688,21 +51572,21 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "qqO" = ( /obj/machinery/light{ dir = 1; name = "1N-lighting fixture" }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_1) +/area/medical/Psych_Room_1) "qqR" = ( /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "qqS" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "qqU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -51733,7 +51617,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "qqW" = ( /obj/structure/railing/grey{ color = "yellow" @@ -51743,7 +51627,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "qrh" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -51752,7 +51636,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "qrj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -51761,14 +51645,14 @@ dir = 10 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "qru" = ( /obj/machinery/pipedispenser/disposal, /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "qrz" = ( /obj/machinery/alarm{ dir = 8; @@ -51792,14 +51676,14 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "qrB" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "qrE" = ( /obj/structure/cable/green{ d1 = 4; @@ -51819,7 +51703,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "qrZ" = ( /obj/machinery/camera/network/research{ c_tag = "D3-Med-Lounge3"; @@ -51833,12 +51717,12 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "qss" = ( /obj/effect/catwalk_plated, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "qsN" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -51847,11 +51731,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "qsY" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortCorridor1) +/area/maintenance/Deck3_Medical_AftPortCorridor1) "qtn" = ( /obj/effect/floor_decal/industrial/arrows/yellow{ dir = 4 @@ -51860,7 +51744,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "qtx" = ( /obj/machinery/atmospherics/valve/digital{ name = "Custom Mix Inlet Valve" @@ -51870,7 +51754,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "qtS" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/alarm{ @@ -51878,7 +51762,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "qtU" = ( /obj/structure/railing/grey{ color = "yellow" @@ -51888,7 +51772,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "qul" = ( /obj/structure/cable/green{ d1 = 2; @@ -51896,14 +51780,14 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "quu" = ( /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "quN" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -51946,7 +51830,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "qvg" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -51958,7 +51842,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "qvB" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -51969,7 +51853,7 @@ dir = 4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "qvE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -51988,7 +51872,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "qvU" = ( /obj/structure/transit_tube{ icon_state = "D-NE" @@ -51998,14 +51882,14 @@ "qwe" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "qwl" = ( /obj/structure/bed/psych{ pixel_y = 9 }, /obj/structure/bed/psych, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "qwq" = ( /obj/structure/cable/green{ d1 = 4; @@ -52023,7 +51907,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "qwD" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -52032,11 +51916,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "qwF" = ( /obj/machinery/computer/timeclock/premade/east, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "qwG" = ( /obj/structure/cable/pink{ d1 = 4; @@ -52050,7 +51934,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "qwU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -52058,7 +51942,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "qxc" = ( /obj/structure/cable/green{ d1 = 4; @@ -52077,7 +51961,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "qxt" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Eng-Atmos4"; @@ -52085,7 +51969,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "qxw" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -52103,15 +51987,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "qyr" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/shield_capacitor{ dir = 1 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "qys" = ( /obj/machinery/alarm{ dir = 4; @@ -52131,19 +52014,19 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "qyx" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/unary/cryo_cell, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "qyy" = ( /obj/structure/table/woodentable, /obj/item/flashlight/lamp/green{ on = 0 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "qyD" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -52167,7 +52050,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "qyI" = ( /obj/structure/cable/green{ d1 = 4; @@ -52183,7 +52066,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "qyO" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -52211,15 +52094,15 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "qzn" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "qzo" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "qzs" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -52228,15 +52111,15 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "qzw" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "qzC" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "qzG" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -52251,7 +52134,7 @@ icon_state = "4-8" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "qzJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -52276,13 +52159,13 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "qzK" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "qzL" = ( /obj/structure/cable/green{ d1 = 2; @@ -52300,7 +52183,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "qzM" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -52313,7 +52196,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "qzT" = ( /obj/effect/floor_decal/corner/purple/full{ dir = 1 @@ -52322,15 +52205,7 @@ dir = 4 }, /turf/simulated/floor/reinforced/phoron, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) -"qzY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Atmospherics_Chamber) "qAc" = ( /obj/structure/bed/padded, /obj/item/bedsheet/medical, @@ -52340,7 +52215,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "qAk" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -52354,7 +52229,7 @@ /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "qAy" = ( /obj/structure/railing/grey{ dir = 4 @@ -52375,11 +52250,11 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "qAM" = ( /obj/structure/table/bench/wooden, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "qBa" = ( /obj/structure/railing, /obj/machinery/light{ @@ -52387,7 +52262,7 @@ name = "1E-light fixture" }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "qBq" = ( /obj/machinery/alarm{ dir = 8; @@ -52398,18 +52273,18 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortChamber1) +/area/maintenance/Deck3_Dorms_PortChamber1) "qBK" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "qBN" = ( /obj/machinery/atmospherics/unary/cryo_cell, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "qBP" = ( /obj/machinery/atmospherics/valve/digital{ dir = 1; @@ -52422,7 +52297,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "qBZ" = ( /obj/structure/table/steel, /obj/item/radio{ @@ -52439,24 +52314,24 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "qCl" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "qCG" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "qCI" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "qCN" = ( /obj/structure/railing/grey{ dir = 4 @@ -52476,7 +52351,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "qCS" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -52486,7 +52361,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "qCU" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -52503,7 +52378,7 @@ }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "qDd" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -52514,7 +52389,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "qDy" = ( /obj/structure/cable/white{ d1 = 1; @@ -52522,7 +52397,7 @@ icon_state = "1-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "qDO" = ( /obj/effect/floor_decal/corner/white/diagonal{ dir = 4 @@ -52530,26 +52405,26 @@ /obj/effect/floor_decal/corner/red, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/reinforced/n20, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "qDY" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "qEc" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Com-Star Stairwell2"; network = list("Commons") }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "qEC" = ( /obj/structure/table/standard, /obj/random/maintenance/misc, /obj/random/soap, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "qED" = ( /obj/structure/cable/white{ d1 = 4; @@ -52562,14 +52437,14 @@ icon_state = "2-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "qEL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "qEY" = ( /obj/machinery/light{ dir = 1; @@ -52582,7 +52457,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "qFl" = ( /obj/machinery/computer/timeclock/premade/west, /obj/effect/floor_decal/borderfloorblack{ @@ -52593,7 +52468,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "qFy" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4 @@ -52601,7 +52476,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/engine_setup/pump_max, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "qFG" = ( /obj/machinery/alarm{ dir = 8; @@ -52609,7 +52484,7 @@ }, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "qFK" = ( /obj/structure/undies_wardrobe, /obj/item/reagent_containers/food/drinks/cans/waterbottle{ @@ -52621,18 +52496,18 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "qGo" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/greengrid, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "qGB" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "qGE" = ( /obj/structure/cable{ d1 = 1; @@ -52647,7 +52522,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall) +/area/engineering/Engine1_Access_Hall) "qGK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -52655,7 +52530,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "qHj" = ( /obj/structure/undies_wardrobe, /obj/item/reagent_containers/food/drinks/cans/waterbottle{ @@ -52667,7 +52542,7 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "qHV" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -52682,7 +52557,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "qHW" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -52707,14 +52582,14 @@ default_material = "lead" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "qIe" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/machinery/atmospherics/binary/pump/high_power/on{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "qIf" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -52726,7 +52601,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "qIj" = ( /obj/structure/cable/white{ d1 = 1; @@ -52734,7 +52609,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "qIk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -52758,14 +52633,14 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "qIs" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Brd-Control Room2"; network = list("Bridge") }, -/turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/turf/simulated/floor/tiled/dark, +/area/bridge/Control_Atrium) "qIt" = ( /obj/structure/table/rack, /obj/random/tech_supply, @@ -52773,7 +52648,7 @@ /obj/random/maintenance/medical, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "qIv" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ frequency = 1381; @@ -52781,7 +52656,7 @@ pixel_y = 24 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "qIw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -52790,7 +52665,7 @@ /obj/effect/catwalk_plated, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "qIy" = ( /obj/machinery/power/apc{ dir = 1; @@ -52802,7 +52677,7 @@ icon_state = "0-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "qII" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -52816,7 +52691,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "qIN" = ( /obj/structure/sign/directions/medical/morgue{ pixel_y = -9; @@ -52830,7 +52705,7 @@ dir = 8 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "qIS" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -52842,7 +52717,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "qJr" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -52853,7 +52728,7 @@ }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "qJs" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -52865,12 +52740,26 @@ /obj/effect/floor_decal/corner/green/bordercorner{ dir = 4 }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 27; + name = "N-light switch" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "qJy" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "qJZ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -52884,15 +52773,15 @@ }, /obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "qKe" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "qKh" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "qKB" = ( /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/borderfloor/corner2{ @@ -52902,17 +52791,17 @@ dir = 1 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "qKL" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "qKM" = ( /obj/structure/flora/lily3, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "qKU" = ( /obj/machinery/shower{ dir = 1 @@ -52929,14 +52818,14 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "qKZ" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "qLf" = ( /obj/machinery/photocopier/faxmachine{ department = "Bridge"; @@ -52944,7 +52833,7 @@ }, /obj/structure/table/wooden_reinforced, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "qLm" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -52953,7 +52842,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "qLr" = ( /obj/machinery/computer/rcon{ dir = 1 @@ -52961,7 +52850,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "qLt" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -52977,7 +52866,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "qLC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -52991,7 +52880,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "qLH" = ( /obj/structure/bed/chair/sofa/corner/brown{ dir = 1 @@ -53003,7 +52892,7 @@ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "qLM" = ( /obj/structure/flora/pottedplant/large{ pixel_y = 10; @@ -53012,7 +52901,7 @@ /obj/structure/table/woodentable, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "qLN" = ( /obj/structure/cable/green{ d1 = 4; @@ -53030,7 +52919,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "qLU" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -53046,11 +52935,11 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "qLY" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "qMb" = ( /obj/structure/cable/green{ d1 = 1; @@ -53071,10 +52960,10 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "qMf" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "qMm" = ( /obj/machinery/atmospherics/valve/digital{ name = "CO2 Outlet Valve" @@ -53084,7 +52973,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "qMr" = ( /obj/structure/window/plastitanium{ dir = 8 @@ -53101,8 +52990,8 @@ c_tag = "D3-Brd-Captain Office2"; network = list("Bridge") }, -/turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/turf/simulated/floor/wood/alt/parquet/turfpack/airless, +/area/bridge/Captain_Office) "qMu" = ( /obj/structure/table/rack/shelf/steel, /obj/item/radio/off{ @@ -53146,7 +53035,7 @@ pixel_x = -4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "qMF" = ( /obj/random/trash, /obj/structure/railing/grey{ @@ -53157,7 +53046,7 @@ dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "qMP" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -53168,7 +53057,7 @@ }, /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "qMY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor{ @@ -53178,11 +53067,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "qNj" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "qNG" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -53193,7 +53082,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "qNH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -53205,7 +53094,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "qOl" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -53214,12 +53103,12 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "qOw" = ( /obj/machinery/r_n_d/protolathe/service, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "qPf" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -53235,21 +53124,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForChamber1) +/area/maintenance/Deck3_Bridge_ForChamber1) "qQg" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "qQk" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "qQv" = ( /obj/machinery/oxygen_pump/mobile/stabilizer, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "qQC" = ( /obj/machinery/shower{ pixel_y = 16 @@ -53266,11 +53155,11 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "qQZ" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "qRa" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 8 @@ -53279,7 +53168,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "qRl" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/carpet/blue{ @@ -53290,10 +53179,10 @@ dir = 10 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "qRA" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "qRE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -53304,7 +53193,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/blue/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "qRF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -53321,7 +53210,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "qRN" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Com-Aft Stairwell3"; @@ -53329,7 +53218,7 @@ dir = 8 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "qSn" = ( /obj/structure/railing/grey{ dir = 4 @@ -53355,7 +53244,7 @@ /obj/machinery/door/window/eastleft, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "qSt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -53364,7 +53253,7 @@ dir = 5 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "qSC" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -53374,7 +53263,7 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "qSZ" = ( /obj/structure/sign/flag/sol/right, /obj/structure/cable/white{ @@ -53383,14 +53272,14 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "qTc" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortChamber1) +/area/maintenance/Deck3_Dorms_PortChamber1) "qTg" = ( /obj/structure/table/bench/marble, /obj/item/flashlight/lamp/green{ @@ -53399,7 +53288,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "qTj" = ( /obj/structure/cable/green{ d1 = 1; @@ -53410,10 +53299,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "qTm" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "qTC" = ( /obj/structure/railing/grey{ dir = 4 @@ -53433,7 +53322,7 @@ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "qTR" = ( /obj/structure/table/glass, /obj/machinery/light{ @@ -53449,13 +53338,13 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "qTV" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "qUl" = ( /obj/structure/railing/grey{ dir = 1 @@ -53471,7 +53360,7 @@ dir = 4 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "qUq" = ( /obj/structure/cable{ d1 = 2; @@ -53493,7 +53382,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "qUs" = ( /obj/machinery/alarm{ dir = 1; @@ -53513,8 +53402,11 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "qUB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -53525,14 +53417,14 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "qUQ" = ( /obj/machinery/atmospherics/binary/pump{ name = "O2 to Connector" }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "qUV" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/red{ @@ -53541,12 +53433,11 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/angled_bay/double/glass/command{ name = "Command Gym"; - req_access = null; - req_one_access = list(19,1) + req_access = null }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "qVi" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 5 @@ -53559,7 +53450,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "qVo" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -53568,7 +53459,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "qVy" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -53576,25 +53467,25 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "qVX" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "qWl" = ( /obj/machinery/atmospherics/valve/digital/open{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "qWu" = ( /obj/machinery/transhuman/autoresleever, /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "qWD" = ( /obj/structure/cable/green{ d1 = 1; @@ -53603,7 +53494,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "qWW" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -53612,11 +53503,11 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "qXq" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "qXt" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -53628,19 +53519,19 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "qXA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "qXC" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "qXY" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -53665,7 +53556,7 @@ opacity = 0 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "qYd" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -53677,7 +53568,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "qYh" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 5 @@ -53692,7 +53583,7 @@ pixel_x = 22 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "qYQ" = ( /obj/structure/table/bench/wooden, /obj/item/storage/briefcase/clutch{ @@ -53701,22 +53592,22 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "qZw" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "qZD" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "qZW" = ( /obj/structure/table/steel, /obj/item/reagent_containers/food/drinks/flask/barflask, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "qZX" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 28; @@ -53729,7 +53620,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "qZZ" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -53739,13 +53630,13 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/beige/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "rab" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "rae" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -53756,13 +53647,13 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "rai" = ( /obj/structure/sign/department/shield{ desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "rar" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, @@ -53775,7 +53666,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "rav" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/brass{ @@ -53783,7 +53674,7 @@ pixel_x = 3 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "raC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -53824,7 +53715,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "raV" = ( /obj/structure/cable/green{ d1 = 1; @@ -53832,7 +53723,7 @@ icon_state = "1-2" }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "rbj" = ( /obj/machinery/computer/transhuman/resleeving{ dir = 1 @@ -53843,14 +53734,14 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "rbp" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "rbz" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -53859,7 +53750,7 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "rbB" = ( /obj/structure/table/rack/shelf, /obj/item/storage/box/donkpockets{ @@ -53926,7 +53817,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "rbF" = ( /obj/structure/bed/chair/sofa/corner/blue, /obj/structure/closet/emergsuit_wall{ @@ -53934,11 +53825,11 @@ name = "1N-emergency suit storage" }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "rbO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "rbQ" = ( /obj/machinery/power/apc{ dir = 1; @@ -53950,31 +53841,31 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "rbR" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "rbU" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "rcf" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "rcB" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "rcO" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "rcT" = ( /obj/structure/table/bench/sifwooden, /obj/item/flashlight/lamp/green{ @@ -53982,7 +53873,7 @@ on = 0 }, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "rcU" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -53996,15 +53887,18 @@ req_one_access = list(5) }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "rdk" = ( /obj/effect/floor_decal/industrial/arrows{ dir = 1 }, /obj/effect/floor_decal/industrial/arrows, -/obj/machinery/door/airlock/angled_bay/external/glass/red, +/obj/machinery/door/airlock/angled_bay/hatch/engineering{ + name = "Solars access"; + req_access = null + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "rdp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -54012,11 +53906,11 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "rdD" = ( /obj/machinery/vending/hydroseeds, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "rdH" = ( /obj/structure/bed/chair/comfy/brown, /obj/item/radio/intercom{ @@ -54028,20 +53922,20 @@ dir = 5 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "rdO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "rdY" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "rem" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -54068,11 +53962,11 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "reI" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "reM" = ( /obj/structure/table/steel, /obj/item/binoculars, @@ -54081,13 +53975,13 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "reN" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "reO" = ( /obj/structure/cable/green{ d1 = 2; @@ -54113,20 +54007,20 @@ dir = 6 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_1) +/area/medical/Psych_Room_1) "reP" = ( /obj/effect/landmark{ name = "xeno_spawn"; pixel_x = -1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "reT" = ( /obj/random/trash_pile, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "rfa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -54141,7 +54035,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "rfe" = ( /obj/structure/cable/pink{ d1 = 4; @@ -54152,11 +54046,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "rfg" = ( /obj/structure/sign/warning/radioactive, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "rfp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -54180,25 +54074,25 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "rfG" = ( -/turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/turf/simulated/floor/tiled, +/area/hallway/Aft_3_Deck_Central_Corridor_1) "rfJ" = ( /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "rfS" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "rfX" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor2) +/area/maintenance/Deck3_Medical_AftCorridor2) "rgj" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -54206,7 +54100,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "rgy" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -54241,11 +54135,11 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "rgB" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "rgE" = ( /obj/machinery/light{ dir = 4; @@ -54266,7 +54160,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "rgO" = ( /obj/effect/catwalk_plated, /obj/machinery/camera/network/security{ @@ -54275,7 +54169,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "rgV" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -54300,19 +54194,19 @@ layer = 3.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "rhn" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "rhw" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "rhR" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -54320,7 +54214,7 @@ id = "sc-WTbotkitchen" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "rhY" = ( /obj/structure/cable/green{ d1 = 4; @@ -54331,19 +54225,19 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "rih" = ( /obj/machinery/light_construct{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "rin" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "riB" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ @@ -54351,7 +54245,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "riF" = ( /obj/structure/cable/green{ d1 = 1; @@ -54382,13 +54276,13 @@ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "riP" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "riY" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 6 @@ -54407,26 +54301,26 @@ dir = 8 }, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "rjA" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "rjM" = ( /obj/structure/bed/chair/sofa/right/yellow{ dir = 4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "rjS" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "rjW" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "rki" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 4; @@ -54437,7 +54331,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "rkH" = ( /obj/structure/cable/green{ d1 = 4; @@ -54455,7 +54349,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "rkL" = ( /obj/structure/cable/green{ d1 = 1; @@ -54471,7 +54365,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "rkX" = ( /obj/structure/cable/green{ d1 = 1; @@ -54480,16 +54374,12 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - name = "Chomp Kitchen"; - sortType = "Chomp Kitchen" - }, /obj/effect/floor_decal/spline/plain{ dir = 4 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "rlj" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ @@ -54497,7 +54387,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "rlC" = ( /obj/structure/closet/secure_closet/psych, /obj/machinery/camera/network/research{ @@ -54505,13 +54395,13 @@ network = list("Medical") }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_1) +/area/medical/Psych_Room_1) "rlD" = ( /obj/structure/table/woodentable, /obj/item/flame/candle/black, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "rmc" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -54520,7 +54410,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "rmf" = ( /obj/machinery/power/terminal{ dir = 4 @@ -54530,7 +54420,15 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) +"rmg" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/shuttle/blue{ + pixel_x = -1; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/Chomp_Stage) "rmj" = ( /obj/structure/closet/emergsuit_wall{ dir = 8; @@ -54538,7 +54436,7 @@ name = "1W-emergency suit storage" }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "rmA" = ( /obj/structure/window/plastitanium{ color = "white"; @@ -54554,7 +54452,7 @@ }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "rmO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -54570,7 +54468,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "rmQ" = ( /obj/machinery/light{ dir = 4; @@ -54585,7 +54483,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "rna" = ( /obj/structure/cable/green{ d1 = 4; @@ -54608,11 +54506,11 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "rng" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor2) +/area/maintenance/Deck3_Medical_AftCorridor2) "rnk" = ( /obj/structure/table/woodentable, /obj/machinery/computer/security/telescreen/entertainment{ @@ -54629,7 +54527,7 @@ dir = 4 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "rnm" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -54639,12 +54537,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "rnE" = ( /obj/structure/table/standard, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "rnG" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/cable/white{ @@ -54665,7 +54563,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "rnN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -54688,19 +54586,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "rnU" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "rod" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "roB" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -54708,12 +54606,12 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "roG" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/green, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "roQ" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ dir = 4; @@ -54721,7 +54619,7 @@ }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "roY" = ( /obj/machinery/power/terminal{ dir = 1 @@ -54736,11 +54634,11 @@ name_tag = "Engine Output" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "rpc" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "rpg" = ( /obj/structure/cable/green{ d1 = 1; @@ -54758,7 +54656,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "rpi" = ( /obj/machinery/station_map{ dir = 1; @@ -54770,7 +54668,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "rpl" = ( /obj/machinery/light{ dir = 1; @@ -54798,7 +54696,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "rpp" = ( /obj/structure/table/rack/shelf, /obj/item/reagent_containers/glass/bucket/wood{ @@ -54818,7 +54716,7 @@ pixel_x = 6 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "rpx" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -54826,7 +54724,7 @@ /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "rpB" = ( /obj/structure/cable/green{ d1 = 1; @@ -54839,7 +54737,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "rpD" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -54847,7 +54745,7 @@ }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "rpJ" = ( /obj/machinery/light{ dir = 4; @@ -54873,7 +54771,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "rpL" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -54896,14 +54794,14 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "rpO" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "rpR" = ( /obj/effect/floor_decal/industrial/warning/color/corner, /turf/simulated/floor/reinforced/airless, @@ -54918,7 +54816,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "rpW" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -54927,7 +54825,16 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) +"rpY" = ( +/obj/structure/table/hardwoodtable, +/obj/machinery/light/spot{ + dir = 1; + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "rqh" = ( /obj/item/handcuffs/legcuffs/fuzzy, /obj/item/handcuffs/legcuffs{ @@ -54973,21 +54880,21 @@ }, /obj/structure/curtain/medical, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "rqi" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "rqw" = ( /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "rqC" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash_pile, /obj/random/junk, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) +/area/maintenance/Deck3_Dorms_StarChamber2) "rqF" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -54996,14 +54903,9 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "rqQ" = ( /obj/structure/table/glass, -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 27; - name = "1E-emergency suit storage" - }, /obj/machinery/alarm{ pixel_y = 22 }, @@ -55012,21 +54914,26 @@ dir = 8 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "rqT" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "rrK" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) +"rsu" = ( +/obj/machinery/vending/snack, +/obj/structure/sign/poster/nanotrasen, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "rsx" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -55043,7 +54950,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "rth" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -55055,7 +54962,7 @@ req_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "rtM" = ( /obj/machinery/iv_drip, /obj/item/reagent_containers/blood/prelabeled/OMinus{ @@ -55084,7 +54991,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "rtU" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -55106,13 +55013,13 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "rub" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/misc, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "ruj" = ( /obj/machinery/power/apc{ dir = 8; @@ -55140,26 +55047,19 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "rul" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "ruy" = ( /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "ruA" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/shuttle/blue{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Center_Port) "ruF" = ( /obj/structure/sign/directions/engineering/atmospherics{ pixel_y = -9; @@ -55173,7 +55073,7 @@ pixel_y = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "rvd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -55194,7 +55094,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "rvl" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -55204,7 +55104,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "rvn" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -55228,7 +55128,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_1) +/area/medical/Psych_Room_1) "rvp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloorblack{ @@ -55238,7 +55138,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "rvv" = ( /obj/structure/bed/chair/sofa/left/sif_ora, /obj/machinery/alarm{ @@ -55248,13 +55148,13 @@ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "rvz" = ( /obj/effect/floor_decal/spline/fancy{ dir = 6 }, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "rvD" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -55263,10 +55163,10 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "rvI" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "rvJ" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/button/remote/airlock{ @@ -55277,7 +55177,7 @@ specialfunctions = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "rvK" = ( /obj/structure/cable/green{ d1 = 1; @@ -55295,26 +55195,26 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "rvL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "rvM" = ( /obj/machinery/keycard_auth{ pixel_x = -26 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "rwO" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "rwU" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "rwX" = ( /obj/structure/sign/levels/engineering/solars{ dir = 1; @@ -55328,7 +55228,7 @@ "rwZ" = ( /obj/random/junk, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortCorridor1) +/area/maintenance/Deck3_Medical_AftPortCorridor1) "rxc" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -55356,7 +55256,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "rxi" = ( /obj/structure/sign/levels/engineering/solars{ dir = 4; @@ -55370,7 +55270,7 @@ dir = 6 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "rxk" = ( /obj/effect/floor_decal/industrial/warning{ layer = 3 @@ -55401,7 +55301,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "rxv" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/effect/floor_decal/borderfloorwhite{ @@ -55413,7 +55313,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "rxL" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -55424,7 +55324,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "rxM" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 9 @@ -55445,7 +55345,7 @@ }, /obj/structure/table/bench/marble, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "rys" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -55455,11 +55355,11 @@ dir = 8 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "ryB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "ryK" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -55478,11 +55378,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "ryS" = ( /obj/structure/sign/warning/secure_area, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "ryZ" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/button/remote/airlock{ @@ -55495,7 +55395,7 @@ dir = 8 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "rzc" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/suit/straight_jacket{ @@ -55529,7 +55429,7 @@ }, /obj/structure/curtain/medical, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "rzl" = ( /obj/structure/cable/green{ d1 = 1; @@ -55538,31 +55438,12 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_10) -"rzo" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/nachos, -/obj/machinery/computer/security/telescreen/entertainment{ - name = "1W-entertainment monitor"; - pixel_x = -32; - pixel_y = -4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/door/blast/gate/thin{ - id = "sc-GCkitchen"; - layer = 3.3; - name = "Kitchen Shutters"; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/crew_quarters/sleeping/Dormitory_10) "rzA" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "rzD" = ( /obj/machinery/alarm{ dir = 1; @@ -55571,7 +55452,7 @@ /obj/structure/table/standard, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "rzU" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 10 @@ -55587,7 +55468,7 @@ /obj/item/clothing/mask/gas, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "rBT" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -55604,7 +55485,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "rCE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -55635,7 +55516,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "rCL" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -55652,14 +55533,14 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "rCN" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "rCR" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -55673,7 +55554,7 @@ }, /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "rCY" = ( /obj/structure/cable/green{ d1 = 1; @@ -55685,18 +55566,18 @@ dir = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "rDo" = ( /obj/machinery/computer/timeclock/premade/north, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "rDw" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/plain{ dir = 5 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "rDE" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -55706,13 +55587,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "rDW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "rEy" = ( /obj/structure/cable/white{ d1 = 1; @@ -55720,7 +55601,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "rEC" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow, @@ -55735,7 +55616,7 @@ pixel_y = -27 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "rEL" = ( /obj/structure/railing/grey{ dir = 1 @@ -55747,15 +55628,15 @@ /obj/random/junk, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "rFw" = ( /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "rFD" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "rFJ" = ( /obj/machinery/vending/wallmed1{ name = "1N-NanoMed"; @@ -55764,7 +55645,7 @@ /obj/structure/table/glass, /obj/item/toy/eight_ball, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "rFL" = ( /obj/machinery/portable_atmospherics/canister/empty, /obj/structure/window/reinforced, @@ -55776,10 +55657,10 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "rFQ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "rGf" = ( /obj/structure/cable/green{ d1 = 1; @@ -55791,7 +55672,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "rGl" = ( /obj/machinery/light{ dir = 1; @@ -55800,14 +55681,14 @@ /obj/structure/table/sifwoodentable, /obj/item/modular_computer/laptop/preset/custom_loadout/standard, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "rGv" = ( /obj/structure/table/woodentable, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "rGJ" = ( /obj/structure/railing/grey, /obj/structure/railing/grey{ @@ -55837,7 +55718,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "rHt" = ( /obj/structure/closet/emergsuit_wall{ pixel_y = 27; @@ -55852,14 +55733,14 @@ dir = 4 }, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "rHD" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "rHG" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 @@ -55872,14 +55753,14 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "rHJ" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Eng-Atmos Phoron"; network = list("engineering") }, /turf/simulated/floor/reinforced/phoron, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "rHN" = ( /obj/structure/cable/green{ d1 = 4; @@ -55890,7 +55771,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "rIf" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor{ @@ -55907,14 +55788,14 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "rIF" = ( /obj/machinery/atmospherics/valve/digital{ name = "Emergency Cooling Valve 2" }, /obj/effect/floor_decal/industrial/outline, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "rIR" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 1 @@ -55923,13 +55804,13 @@ dir = 8 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "rIY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "rJb" = ( /obj/machinery/atmospherics/binary/pump/on{ target_pressure = 200; @@ -55937,7 +55818,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "rJr" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -55961,21 +55842,21 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Patient_3) +/area/medical/Patient_3) "rJt" = ( /obj/item/radio/intercom/locked/ai_private{ pixel_y = -22 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "rJw" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "rJz" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "rJS" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -56002,7 +55883,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "rKc" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -56019,7 +55900,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "rKh" = ( /obj/machinery/status_display{ layer = 4; @@ -56028,7 +55909,7 @@ }, /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "rKA" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -56044,7 +55925,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "rKJ" = ( /obj/structure/cable/green{ d1 = 1; @@ -56059,7 +55940,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "rKL" = ( /obj/structure/cable/green{ d1 = 1; @@ -56067,7 +55948,7 @@ icon_state = "1-2" }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "rKO" = ( /obj/structure/table/steel, /obj/item/stack/cable_coil/yellow, @@ -56076,7 +55957,7 @@ pixel_x = 2 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "rKQ" = ( /obj/structure/cable/green{ d1 = 4; @@ -56095,7 +55976,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/blue/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "rLC" = ( /obj/machinery/light{ dir = 4; @@ -56105,7 +55986,7 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "rLI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -56114,7 +55995,7 @@ }, /obj/machinery/door/airlock/maintenance/engi, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "rLN" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -56132,7 +56013,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "rMh" = ( /obj/machinery/alarm{ dir = 1; @@ -56141,7 +56022,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "rMu" = ( /obj/structure/cable/green{ d1 = 1; @@ -56153,10 +56034,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "rMA" = ( /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "rMC" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -56164,13 +56045,13 @@ }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "rMD" = ( /obj/structure/sign/department/ai{ desc = "Sign of some important station compartment." }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "rMJ" = ( /obj/machinery/disease2/incubator, /obj/machinery/light{ @@ -56186,7 +56067,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "rMZ" = ( /obj/structure/table/marble, /obj/machinery/chemical_dispenser/bar_soft/full{ @@ -56197,37 +56078,32 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "rNf" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, /obj/effect/floor_decal/industrial/arrows/yellow{ dir = 1 }, -/obj/machinery/door/airlock/maintenance/common, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, +/obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "rNz" = ( /obj/effect/catwalk_plated, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "rNB" = ( /obj/machinery/disposal/wall{ name = "1N-inset disposal unit"; pixel_y = 34 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "rNC" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -56235,7 +56111,7 @@ id = "sc-WTDorm4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "rNM" = ( /obj/structure/cable/green{ d1 = 1; @@ -56261,18 +56137,18 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "rNN" = ( /obj/item/grenade/confetti/party_ball, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "rNS" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "rNY" = ( /obj/machinery/disease2/isolator, /obj/machinery/light{ @@ -56288,13 +56164,13 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "rOA" = ( /obj/structure/bed/chair/sofa/corner/sif_ora{ dir = 4 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "rPo" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -56304,11 +56180,11 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "rPp" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "rPJ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -56317,18 +56193,18 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "rPK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "rQi" = ( /obj/structure/sign/warning/airlock, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "rQm" = ( /obj/structure/table/marble, /obj/machinery/light{ @@ -56336,14 +56212,14 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "rQJ" = ( /obj/random/trash, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "rQK" = ( /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_1) +/area/medical/Patient_1) "rQP" = ( /obj/structure/bed/chair/sofa/blue, /obj/item/radio/intercom{ @@ -56355,25 +56231,25 @@ name = "Medical Doctor" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "rQV" = ( /obj/structure/table/steel, /obj/random/coin/sometimes, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "rQW" = ( /obj/structure/table/rack/steel, /obj/random/maintenance/engineering, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "rRF" = ( /obj/structure/morgue{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "rRU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -56382,14 +56258,14 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "rSg" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "rSm" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -56397,14 +56273,14 @@ /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "rSq" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "rTn" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -56417,7 +56293,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "rTx" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 @@ -56426,14 +56302,14 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "rTy" = ( /obj/structure/cable/cyan{ d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "rTA" = ( /obj/machinery/pointdefense{ id_tag = "PD Secondary" @@ -56451,7 +56327,7 @@ dir = 8 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "rTF" = ( /obj/structure/window/plastitanium{ color = "white"; @@ -56467,7 +56343,7 @@ dir = 9 }, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "rTI" = ( /obj/structure/cable/green{ d1 = 4; @@ -56481,7 +56357,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "rUg" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -56501,7 +56377,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "rUr" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/suit_cycler/engineering{ @@ -56509,7 +56385,7 @@ req_access = null }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "rUw" = ( /obj/structure/lattice, /obj/structure/railing/grey{ @@ -56517,7 +56393,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "rUC" = ( /obj/structure/cable/green{ d1 = 1; @@ -56529,21 +56405,21 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "rUF" = ( /obj/structure/table/reinforced, /obj/item/folder/white, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "rUK" = ( /obj/structure/grille/rustic{ health = 25; name = "reinforced grille" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "rUS" = ( /obj/item/radio/intercom/department/medbay{ dir = 4; @@ -56551,14 +56427,14 @@ name = "1E-station intercom (Medbay)" }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "rUT" = ( /obj/structure/sign/directions/kitchen{ layer = 3.5; dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Central_Engineering_Post) "rVb" = ( /obj/structure/cable/green{ d1 = 1; @@ -56571,7 +56447,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "rVl" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -56603,7 +56479,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "rVm" = ( /obj/machinery/vending/loadout/uniform, /obj/machinery/status_display{ @@ -56618,7 +56494,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "rVy" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -56634,7 +56510,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "rVD" = ( /obj/machinery/light/small, /obj/effect/floor_decal/borderfloor{ @@ -56644,7 +56520,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "rVR" = ( /obj/structure/table/reinforced, /obj/item/flash, @@ -56657,7 +56533,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "rWe" = ( /obj/structure/cable/green{ d1 = 4; @@ -56670,12 +56546,12 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "rWE" = ( /obj/structure/table/steel, /obj/random/flashlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "rWM" = ( /obj/machinery/shower{ pixel_y = 16 @@ -56687,15 +56563,18 @@ /obj/effect/floor_decal/steeldecal/steel_decals10, /obj/machinery/door/window/westleft, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "rXr" = ( /obj/effect/floor_decal/industrial/arrows{ dir = 1 }, /obj/effect/floor_decal/industrial/arrows, -/obj/machinery/door/airlock/angled_bay/external/glass/red, +/obj/machinery/door/airlock/angled_bay/hatch/engineering{ + name = "Solars access"; + req_access = null + }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "rXM" = ( /obj/machinery/alarm{ dir = 4; @@ -56703,7 +56582,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "rXN" = ( /obj/structure/cable/white{ d1 = 1; @@ -56716,7 +56595,7 @@ icon_state = "2-8" }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "rXO" = ( /obj/structure/cable/green{ d1 = 4; @@ -56736,7 +56615,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "rXX" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -56755,7 +56634,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "rYj" = ( /obj/structure/undies_wardrobe, /obj/item/reagent_containers/food/drinks/cans/waterbottle{ @@ -56767,24 +56646,24 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "rYu" = ( /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "rYI" = ( /obj/structure/ladder{ pixel_y = 3 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "rYN" = ( /obj/machinery/atmospherics/tvalve/digital/bypass{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "rYR" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -56793,21 +56672,21 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "rYY" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "rZc" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/spline/fancy{ dir = 8 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "rZd" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -56820,15 +56699,15 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "rZf" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "rZh" = ( /obj/effect/landmark/event_spawn/morphspawn, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "rZi" = ( /obj/structure/cable/green{ d1 = 4; @@ -56844,19 +56723,19 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "rZl" = ( /obj/effect/floor_decal/techfloor/orange, /obj/structure/particle_accelerator/particle_emitter/left{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "rZq" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/canister/phoron, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) +/area/engineering/Engine2_Canister_Storage) "rZr" = ( /obj/structure/table/hardwoodtable, /obj/item/toy/figure/captain, @@ -56870,7 +56749,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "rZz" = ( /obj/structure/cable/white{ d1 = 4; @@ -56883,7 +56762,7 @@ icon_state = "2-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "rZE" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -56902,7 +56781,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "rZF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -56912,23 +56791,23 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "rZO" = ( /obj/effect/floor_decal/corner/black/full, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/reinforced/carbon_dioxide, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "sab" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "saw" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "saz" = ( /obj/structure/railing/grey{ dir = 4 @@ -56941,14 +56820,14 @@ /obj/structure/table/steel, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "sbr" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 }, /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "sbs" = ( /obj/structure/transit_tube_pod, /obj/structure/transit_tube{ @@ -56968,14 +56847,14 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "sbH" = ( /obj/machinery/atmospherics/valve/digital/open{ name = "Oxygen Outlet Valve" }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "sbJ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment{ @@ -56988,13 +56867,13 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "scy" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "scA" = ( /obj/machinery/disposal/wall{ dir = 4; @@ -57008,7 +56887,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "scL" = ( /obj/structure/bed/chair/comfy/beige, /obj/effect/floor_decal/borderfloorblack{ @@ -57018,18 +56897,18 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "scU" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "sdk" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "sdr" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -57054,7 +56933,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "sdA" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -57063,7 +56942,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "sdG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -57080,39 +56959,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_11) -"sdM" = ( -/obj/machinery/computer/guestpass{ - dir = 1; - name = "1S-guest pass terminal"; - pixel_y = -19 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/crew_quarters/sleeping/Dormitory_11) "sdO" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -57120,7 +56967,7 @@ icon_state = "1-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForPort) +/area/engineering/Solar_Array_ForPort) "sdP" = ( /obj/structure/railing{ dir = 4 @@ -57129,52 +56976,47 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "sdR" = ( /obj/random/trash_pile, /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "sdS" = ( /obj/item/modular_computer/console/preset/civilian{ dir = 1 }, /obj/structure/window/reinforced/tinted/frosted, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "sei" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) -"sem" = ( -/obj/machinery/appliance/mixer/cereal, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/crew_quarters/Chomp_Dinner_1) "ser" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "seu" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "sev" = ( /obj/machinery/blackbox_recorder, /turf/simulated/floor/bluegrid, -/area/SouthernCrossV2/Bridge/Server_Room) +/area/bridge/Server_Room) "seE" = ( /obj/effect/floor_decal/spline/fancy{ dir = 8 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "seF" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -57191,10 +57033,10 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "seR" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "sfe" = ( /obj/structure/cable/green{ d1 = 1; @@ -57216,7 +57058,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "sff" = ( /obj/structure/table/hardwoodtable, /obj/structure/sign/nanotrasen{ @@ -57224,7 +57066,7 @@ pixel_x = 16 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "sfB" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/camera/network/security{ @@ -57233,7 +57075,7 @@ }, /obj/structure/closet/firecloset/full/atmos, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Dorms_Substation) +/area/maintenance/Dorms_Substation) "sfP" = ( /obj/structure/table/standard, /obj/machinery/recharger, @@ -57244,7 +57086,7 @@ dir = 4 }, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "sfY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -57271,7 +57113,7 @@ }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "sgc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/white{ @@ -57280,13 +57122,13 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "sgm" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "sgq" = ( /obj/structure/table/standard, /obj/item/haircomb{ @@ -57307,7 +57149,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "sgy" = ( /obj/structure/railing/grey{ dir = 1 @@ -57323,7 +57165,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "sha" = ( /obj/structure/cable/green{ d1 = 1; @@ -57331,7 +57173,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) +/area/maintenance/Deck3_Dorms_StarChamber2) "sht" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -57341,30 +57183,15 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "shz" = ( /obj/structure/railing, /obj/structure/railing{ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "shU" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - dir = 4; - name = "W-light switch"; - pixel_x = -27; - pixel_y = 12 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -57372,10 +57199,10 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "shV" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "siv" = ( /obj/structure/railing, /obj/machinery/light{ @@ -57384,7 +57211,7 @@ name = "1W-light fixture" }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "siK" = ( /obj/structure/cable/green{ d1 = 1; @@ -57395,7 +57222,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "siU" = ( /obj/machinery/alarm{ dir = 8; @@ -57406,7 +57233,7 @@ }, /obj/machinery/portable_atmospherics/canister/empty/nitrogen, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "sjb" = ( /obj/structure/table/rack/shelf, /obj/item/bodybag/cryobag/robobag{ @@ -57453,14 +57280,14 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "sjw" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "sjB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -57484,7 +57311,7 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "sjC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -57494,7 +57321,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "sjD" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 4 @@ -57510,12 +57337,12 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "skF" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "skG" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -57526,19 +57353,19 @@ icon_state = "1-8" }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Patient_3) +/area/medical/Patient_3) "skH" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "skU" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "slk" = ( /obj/structure/railing/grey{ color = "yellow" @@ -57548,7 +57375,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "slo" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -57568,7 +57395,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "slG" = ( /obj/structure/cable/green{ d1 = 1; @@ -57587,7 +57414,7 @@ icon_state = "2-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "sma" = ( /obj/machinery/power/apc{ dir = 8; @@ -57611,26 +57438,26 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "smc" = ( /turf/simulated/floor/glass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "smd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "smi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "smm" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "smo" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -57639,7 +57466,7 @@ }, /obj/structure/bed/chair/office/light, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "smp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloorwhite/corner{ @@ -57649,7 +57476,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "smq" = ( /obj/machinery/power/apc{ dir = 8; @@ -57661,7 +57488,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortCorridor1) +/area/maintenance/Deck3_Medical_AftPortCorridor1) "sms" = ( /obj/machinery/disposal/wall{ dir = 8; @@ -57678,7 +57505,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "smy" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -57691,21 +57518,21 @@ icon_state = "1-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "smz" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "smF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "smH" = ( /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "smS" = ( /obj/structure/closet/emergsuit_wall{ dir = 1; @@ -57722,7 +57549,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "snf" = ( /obj/random/junk, /obj/machinery/atmospherics/pipe/simple/hidden/universal{ @@ -57730,12 +57557,12 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "snp" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "snz" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -57751,14 +57578,14 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "snD" = ( /obj/machinery/floor_light/prebuilt, /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "snH" = ( /obj/random/trash, /obj/random/junk, @@ -57768,14 +57595,14 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "snS" = ( /obj/structure/table/rack/shelf, /obj/random/flashlight, /obj/random/maintenance/misc, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "snX" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -57784,13 +57611,23 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) +"soc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Dinner_1) "son" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "soF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -57801,7 +57638,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/lime/diagonal, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "soJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -57813,12 +57650,12 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "soL" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "soW" = ( /obj/item/bedsheet/captaindouble, /obj/machinery/light{ @@ -57826,7 +57663,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "soZ" = ( /obj/effect/floor_decal/corner/purple/full, /obj/effect/floor_decal/corner/orange{ @@ -57834,7 +57671,7 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/reinforced/phoron, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "spe" = ( /obj/item/radio/intercom/locked/ai_private{ dir = 4; @@ -57844,7 +57681,7 @@ name = "Cyborg" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Cyborg_Station) +/area/bridge/Cyborg_Station) "spi" = ( /obj/structure/cable/green{ d1 = 4; @@ -57862,7 +57699,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "spk" = ( /obj/machinery/power/apc{ dir = 1; @@ -57891,7 +57728,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "sps" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -57903,14 +57740,14 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "spz" = ( /obj/machinery/newscaster{ name = "1W-newscaster"; pixel_x = -28 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "spK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -57925,7 +57762,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "spN" = ( /obj/structure/cable/green{ d1 = 1; @@ -57942,7 +57779,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "sqf" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -57956,14 +57793,14 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "sqh" = ( /obj/structure/ladder{ pixel_y = 3 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "sqk" = ( /obj/machinery/atmospherics/unary/heat_exchanger{ dir = 8 @@ -57973,7 +57810,7 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "sqn" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -57981,7 +57818,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "sqw" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -58001,7 +57838,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "sqK" = ( /obj/machinery/power/apc{ dir = 8; @@ -58029,10 +57866,10 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "sqX" = ( /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "sra" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 4 @@ -58045,10 +57882,10 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "srC" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "srK" = ( /obj/structure/bed/chair/comfy/blue{ dir = 4 @@ -58057,18 +57894,18 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Medical/Patient_3) +/area/medical/Patient_3) "ssl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/blue/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "ssq" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "ssw" = ( /obj/machinery/firealarm{ dir = 1; @@ -58076,20 +57913,20 @@ pixel_y = -25 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "ssB" = ( /obj/machinery/atmospherics/tvalve/mirrored{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "ssC" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "stg" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -58110,7 +57947,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "stF" = ( /obj/structure/table/rack/shelf/steel, /obj/item/storage/toolbox/mechanical{ @@ -58137,7 +57974,7 @@ pixel_x = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "sub" = ( /obj/structure/cable/green{ d1 = 1; @@ -58155,7 +57992,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "suc" = ( /obj/structure/disposalpipe/segment, /obj/machinery/camera/network/research{ @@ -58170,17 +58007,17 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "sud" = ( /obj/machinery/light{ name = "1S-light fixture" }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "sun" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "suw" = ( /obj/machinery/newscaster{ name = "1W-newscaster"; @@ -58193,7 +58030,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "suB" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -58207,7 +58044,7 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber1) +/area/maintenance/Deck3_Medical_ForChamber1) "suJ" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -58219,17 +58056,17 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "suQ" = ( /obj/structure/bed/chair/comfy/blue{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "suU" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "suX" = ( /obj/machinery/power/apc{ dir = 4; @@ -58253,7 +58090,7 @@ icon_state = "0-8" }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "svm" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ @@ -58263,7 +58100,7 @@ dir = 10 }, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "svo" = ( /obj/structure/bed/chair/sofa/teal{ dir = 8 @@ -58277,37 +58114,16 @@ dir = 8 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "svw" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/lights/mixed, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/radio{ - frequency = 1487; - icon_state = "med_walkietalkie"; - name = "Medbay Emergency Radio Link" - }, -/obj/item/radio{ - frequency = 1487; - icon_state = "med_walkietalkie"; - name = "Medbay Emergency Radio Link" - }, -/obj/item/tool/crowbar/red, -/obj/item/tool/crowbar/red, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle{ - pixel_y = 2 - }, -/obj/item/clothing/mask/muzzle{ - pixel_y = -2 - }, -/obj/item/circuitboard/resleeving_control, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/computer/rdconsole/medical{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "svN" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -58325,7 +58141,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "svX" = ( /obj/structure/closet/emergsuit_wall{ pixel_y = 27; @@ -58339,26 +58155,36 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "swf" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "swg" = ( /obj/machinery/iv_drip, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "swv" = ( /obj/structure/frame, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "swQ" = ( /obj/machinery/ai_slipper{ icon_state = "motion0" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) +"swY" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/Central_Engineering_Post) "sxg" = ( /obj/machinery/alarm{ dir = 8; @@ -58367,12 +58193,12 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/beige/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "sxl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "sxn" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -58380,7 +58206,7 @@ }, /obj/machinery/light/small, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1) +/area/maintenance/Deck3_Dorms_ForCorridor1) "sxo" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -58395,7 +58221,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "sxw" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor/corner{ @@ -58408,7 +58234,7 @@ dir = 10 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "sxE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -58420,11 +58246,11 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "sxL" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "sxR" = ( /obj/structure/bed/chair/sofa/left/yellow{ dir = 8 @@ -58437,7 +58263,7 @@ dir = 8 }, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "syp" = ( /obj/structure/cable/green{ d1 = 2; @@ -58465,7 +58291,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "syI" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/structure/sign/poster/nanotrasen{ @@ -58473,7 +58299,7 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "syM" = ( /obj/structure/cable/green{ d1 = 1; @@ -58496,7 +58322,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "szd" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -58505,7 +58331,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "szC" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -58516,12 +58342,12 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "sAc" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "sAq" = ( /obj/structure/bed/chair/sofa/right/brown{ dir = 1 @@ -58533,7 +58359,7 @@ dir = 8 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "sAL" = ( /obj/structure/bed/chair/comfy/black, /obj/item/radio/intercom{ @@ -58545,20 +58371,20 @@ dir = 5 }, /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "sAM" = ( /obj/machinery/recharge_station, /turf/simulated/floor/bluegrid, -/area/SouthernCrossV2/Bridge/Cyborg_Station) +/area/bridge/Cyborg_Station) "sBa" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "sBq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "sBY" = ( /obj/machinery/light/small{ dir = 8 @@ -58567,17 +58393,17 @@ dir = 1 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "sCc" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "sCn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "sCA" = ( /obj/machinery/vending/loadout/costume, /obj/effect/floor_decal/borderfloorwhite/corner{ @@ -58587,7 +58413,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "sCH" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -58598,7 +58424,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "sCL" = ( /obj/machinery/light/floortube{ dir = 8; @@ -58621,7 +58447,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "sCU" = ( /obj/structure/cable/green{ d1 = 4; @@ -58642,7 +58468,7 @@ /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "sCW" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Eng-2nd Engine6"; @@ -58654,7 +58480,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "sDu" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -58674,13 +58500,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "sDx" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 8 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "sDz" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -58689,13 +58515,13 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "sEa" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortCorridor1) +/area/maintenance/Deck3_Medical_AftPortCorridor1) "sEc" = ( /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "sEd" = ( /obj/structure/bed/chair/office/light, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -58705,7 +58531,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "sEf" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/disposalpipe/segment, @@ -58715,7 +58541,7 @@ icon_state = "1-2" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "sEn" = ( /obj/structure/ladder{ pixel_y = 3 @@ -58726,7 +58552,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "sEq" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -58747,7 +58573,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "sEv" = ( /obj/effect/catwalk_plated/white, /obj/structure/lattice, @@ -58762,11 +58588,11 @@ /obj/machinery/power/grounding_rod, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "sER" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "sFc" = ( /obj/structure/cable/green{ d1 = 4; @@ -58784,10 +58610,10 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "sFo" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "sFx" = ( /obj/machinery/air_sensor{ frequency = 1438; @@ -58797,7 +58623,7 @@ /turf/simulated/floor/reinforced/nitrogen{ nitrogen = 82.1472 }, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "sFA" = ( /obj/structure/cable/green{ d1 = 4; @@ -58817,11 +58643,11 @@ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "sFC" = ( /obj/structure/railing, /turf/simulated/open, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "sFO" = ( /obj/machinery/camera/network/security{ dir = 9; @@ -58829,7 +58655,7 @@ network = list("Bridge","Science") }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Server_Room) +/area/bridge/Server_Room) "sFT" = ( /obj/structure/cable/green{ d1 = 2; @@ -58859,7 +58685,7 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "sGb" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -58868,30 +58694,30 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "sGl" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/spline/fancy{ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "sGm" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "sGr" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/door/airlock/angled_bay/elevator/glass, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "sGT" = ( /obj/structure/bed/chair/oldsofa/right{ dir = 4 }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "sGW" = ( /obj/effect/landmark/start{ name = "AI" @@ -58936,7 +58762,7 @@ pixel_x = 24 }, /turf/simulated/floor/greengrid, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "sGX" = ( /obj/machinery/button/remote/airlock{ dir = 1; @@ -58946,7 +58772,7 @@ specialfunctions = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "sHc" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -58966,7 +58792,7 @@ locked = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "sHh" = ( /obj/machinery/computer/rcon{ dir = 4 @@ -58978,11 +58804,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "sHv" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "sIi" = ( /obj/machinery/alarm{ dir = 8; @@ -58990,12 +58816,12 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "sIj" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "sIk" = ( /obj/structure/cable/green{ d1 = 1; @@ -59006,7 +58832,7 @@ dir = 1 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_1) +/area/medical/Psych_Room_1) "sIm" = ( /obj/machinery/power/apc{ dir = 8; @@ -59030,7 +58856,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "sIt" = ( /obj/structure/cable/green{ d1 = 1; @@ -59047,7 +58873,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "sIA" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -59059,14 +58885,7 @@ id_tag = "sc-DBresleevingstall3" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Restrooms) -"sII" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/medical/Restrooms) "sIJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -59084,7 +58903,7 @@ }, /obj/structure/transit_tube, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "sIO" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -59094,11 +58913,11 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "sIP" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "sJb" = ( /obj/machinery/alarm{ dir = 8; @@ -59106,7 +58925,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "sJA" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -59126,7 +58945,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "sJF" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -59143,7 +58962,7 @@ }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "sJM" = ( /obj/structure/window/reinforced/tinted/frosted{ dir = 8 @@ -59156,20 +58975,20 @@ name = "1N-AI display" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "sJT" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "sJU" = ( /obj/structure/sign/directions/dorms{ pixel_y = 9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1) +/area/maintenance/Deck3_Dorms_ForCorridor1) "sKt" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -59178,7 +58997,7 @@ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "sKH" = ( /obj/structure/ladder{ pixel_y = 3 @@ -59189,7 +59008,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "sKW" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -59198,14 +59017,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "sLg" = ( /obj/structure/railing, /obj/structure/railing{ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "sLi" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 8 @@ -59218,17 +59037,14 @@ /turf/simulated/floor/reinforced/airless, /area/space) "sLk" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ +/obj/effect/catwalk_plated/techmaint, +/obj/structure/cable{ + d1 = 4; d2 = 8; - icon_state = "0-8" + icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "sLp" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -59242,12 +59058,12 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "sLM" = ( /obj/structure/sign/painting/public, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/wall, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "sLV" = ( /obj/effect/floor_decal/industrial/warning/color/corner{ dir = 1 @@ -59267,7 +59083,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "sMl" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -59285,26 +59101,7 @@ icon_state = "1-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftPort) -"sMo" = ( -/obj/structure/table/marble, -/obj/machinery/reagentgrinder{ - pixel_y = 20 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/beaker/measuring_cup{ - pixel_y = 4; - pixel_x = -9 - }, -/obj/item/reagent_containers/glass/beaker/measuring_cup{ - pixel_x = -5 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Solar_Array_AftPort) "sMp" = ( /obj/item/modular_computer/console/preset/medical{ dir = 1 @@ -59312,14 +59109,14 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "sMJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "sMO" = ( /obj/machinery/alarm{ dir = 4; @@ -59332,13 +59129,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "sMS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "sMW" = ( /obj/structure/cable/green{ d1 = 2; @@ -59363,7 +59160,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "sMX" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -59381,7 +59178,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor2) +/area/maintenance/Deck3_Medical_AftCorridor2) "sMY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -59417,7 +59214,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "sNh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -59426,21 +59223,21 @@ dir = 8 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "sNB" = ( /obj/structure/table/steel, /obj/item/binoculars, /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "sND" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "sOg" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -59456,15 +59253,15 @@ id = "sc-WTheadmedpost" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "sOw" = ( /obj/effect/graffitispawner, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "sOE" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "sOF" = ( /obj/structure/cable/green{ d1 = 2; @@ -59484,22 +59281,22 @@ icon_state = "1-8" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "sOH" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "sOI" = ( /obj/structure/sign/calendar{ pixel_y = 30 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "sOU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "sPi" = ( /obj/machinery/vending/wallmed1{ dir = 1; @@ -59507,7 +59304,7 @@ name = "1S-NanoMed" }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "sPm" = ( /obj/structure/cable/green{ d1 = 4; @@ -59523,7 +59320,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "sPu" = ( /obj/structure/cable/green{ d1 = 4; @@ -59546,14 +59343,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "sPI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "sPM" = ( /obj/structure/bed/chair/sofa/right/yellow{ dir = 8 @@ -59583,7 +59380,7 @@ dir = 9 }, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "sPW" = ( /obj/structure/closet/l3closet/medical, /obj/machinery/camera/network/research{ @@ -59596,8 +59393,9 @@ /obj/effect/floor_decal/corner/paleblue/border{ dir = 1 }, +/obj/item/bodybag/large, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "sQc" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -59622,14 +59420,14 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "sQM" = ( /obj/structure/sign/directions/roomnum{ pixel_y = -8; dir = 9 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "sQS" = ( /obj/effect/floor_decal/carpet/blue{ dir = 4 @@ -59641,7 +59439,7 @@ dir = 5 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "sRk" = ( /obj/structure/cable/green{ d1 = 1; @@ -59653,12 +59451,12 @@ dir = 9 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "sRw" = ( /obj/structure/table/woodentable, /obj/item/starcaster_news, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "sRP" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -59672,7 +59470,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "sSh" = ( /obj/effect/floor_decal/industrial/warning/color/corner{ dir = 4 @@ -59688,14 +59486,14 @@ dir = 9 }, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "sSl" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "sSm" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -59705,7 +59503,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "sSF" = ( /obj/structure/cable/green{ d1 = 1; @@ -59718,24 +59516,24 @@ icon_state = "1-8" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "sSH" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "sSL" = ( /obj/structure/urinal{ pixel_y = 28 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "sTe" = ( /obj/item/frame, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "sTq" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 9 @@ -59749,7 +59547,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "sTy" = ( /obj/machinery/power/apc{ dir = 8; @@ -59758,7 +59556,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "sUd" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -59785,14 +59583,14 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "sUf" = ( /obj/structure/sign/small/warning/emerg_only{ desc = "Ladder for emergency use only"; pixel_x = -32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "sUk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -59809,7 +59607,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "sUx" = ( /obj/structure/window/plastitanium{ color = "white"; @@ -59826,7 +59624,7 @@ dir = 1 }, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "sUC" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -59834,7 +59632,7 @@ id = "sc-WTDorm2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "sUF" = ( /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 @@ -59844,13 +59642,13 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "sUG" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "sUX" = ( /obj/structure/table/glass, /obj/machinery/computer/med_data/laptop{ @@ -59863,12 +59661,12 @@ id = "sc-DBCpatient04" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Medical/Patient_2) +/area/medical/Patient_2) "sVm" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "sVv" = ( /obj/effect/floor_decal/corner/purple/full{ dir = 8 @@ -59877,7 +59675,7 @@ dir = 1 }, /turf/simulated/floor/reinforced/phoron, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "sVC" = ( /obj/structure/cable/green{ d1 = 1; @@ -59889,17 +59687,17 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "sVK" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1) +/area/maintenance/Deck3_Dorms_ForCorridor1) "sVX" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "sVY" = ( /obj/structure/cable/green{ d1 = 1; @@ -59910,7 +59708,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "sWb" = ( /obj/structure/cable/green{ d1 = 2; @@ -59924,7 +59722,7 @@ dir = 10 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "sWi" = ( /obj/structure/cable/cyan{ d2 = 4; @@ -59943,19 +59741,19 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "sWn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "sWr" = ( /obj/structure/bed/chair/comfy/brown, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_1) +/area/medical/Psych_Room_1) "sWC" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "sWO" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -59968,7 +59766,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "sXw" = ( /obj/machinery/light{ dir = 1; @@ -59990,7 +59788,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "sXJ" = ( /obj/machinery/camera/network/research{ c_tag = "D3-Med-Stairwell2"; @@ -59998,7 +59796,7 @@ network = list("Medical") }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "sXT" = ( /obj/structure/railing, /obj/machinery/camera/network/security{ @@ -60006,20 +59804,20 @@ network = list("Commons") }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "sYr" = ( /obj/structure/bed/chair/comfy/orange{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "sYx" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "sYA" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -60028,7 +59826,7 @@ icon_state = "1-2" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "sYQ" = ( /obj/structure/closet/emergsuit_wall{ dir = 1; @@ -60038,7 +59836,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "sYV" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -60049,11 +59847,11 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "sZg" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "sZt" = ( /obj/machinery/vending/nifsoft_shop{ dir = 8 @@ -60065,16 +59863,11 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "sZu" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "sZF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorwhite/corner2, @@ -60085,8 +59878,14 @@ /obj/effect/floor_decal/corner/white/bordercorner2{ dir = 9 }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "sZT" = ( /obj/structure/cable/green{ d1 = 1; @@ -60098,7 +59897,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "tad" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -60106,7 +59905,7 @@ id = "sc-WTDorm10" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "tag" = ( /obj/structure/bed/chair/sofa/orange{ dir = 1 @@ -60116,11 +59915,11 @@ name = "1S-entertainment monitor" }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "tao" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "tat" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -60133,7 +59932,7 @@ id = "sc-WTheadmedpost" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "tav" = ( /obj/structure/table/reinforced, /obj/item/storage/box/jaffacake{ @@ -60143,11 +59942,11 @@ /obj/item/storage/box/custardcream{ pixel_y = 1 }, -/turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/turf/simulated/floor/tiled/dark, +/area/bridge/Control_Atrium) "tay" = ( /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "taE" = ( /obj/structure/cable/green{ d1 = 1; @@ -60165,17 +59964,17 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "taH" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "taO" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "taY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -60198,7 +59997,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "tbb" = ( /obj/machinery/power/terminal{ dir = 1 @@ -60213,7 +60012,7 @@ icon_state = "0-8" }, /turf/simulated/floor/greengrid, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "tbe" = ( /obj/structure/cable/green{ d1 = 1; @@ -60231,7 +60030,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "tbl" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -60240,7 +60039,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "tbt" = ( /obj/machinery/atmospherics/valve/shutoff{ dir = 4; @@ -60248,7 +60047,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "tbC" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -60256,10 +60055,10 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "tbD" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "tbM" = ( /obj/structure/railing/grey{ color = "yellow" @@ -60269,7 +60068,7 @@ dir = 4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "tbQ" = ( /obj/effect/floor_decal/industrial/hatch, /obj/machinery/atmospheric_field_generator/perma/underdoors{ @@ -60286,7 +60085,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "tca" = ( /obj/machinery/floodlight, /obj/structure/cable/white{ @@ -60295,7 +60094,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "tci" = ( /obj/structure/table/rack/holorack, /obj/machinery/door/window/brigdoor/northright, @@ -60319,17 +60118,25 @@ pixel_x = -1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "tcr" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) +"tcs" = ( +/obj/machinery/light/spot{ + dir = 4; + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Dinner_1) "tct" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "tcw" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -60339,7 +60146,7 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "tcA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -60350,13 +60157,13 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "tcM" = ( /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "tdn" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -60365,7 +60172,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "tdq" = ( /obj/effect/landmark{ name = "lightsout" @@ -60375,7 +60182,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "tdH" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -60384,7 +60191,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "tdK" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -60396,7 +60203,7 @@ name = "Dorm four" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "tdX" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -60404,11 +60211,11 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "teh" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "teo" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -60426,10 +60233,10 @@ icon_state = "1-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForPort) +/area/engineering/Solar_Array_ForPort) "tev" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "tew" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -60441,7 +60248,7 @@ }, /obj/machinery/bluespace_beacon, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "tez" = ( /obj/structure/lattice, /obj/structure/railing/grey, @@ -60465,7 +60272,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "tfe" = ( /obj/machinery/vending/wardrobe/engidrobe, /obj/machinery/light{ @@ -60474,7 +60281,7 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "tfh" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -60483,18 +60290,18 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "tfk" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "tfl" = ( /obj/structure/sign/warning/airlock, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "tfo" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -60502,7 +60309,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "tfz" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -60533,12 +60340,12 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "tfA" = ( /obj/structure/table/steel, /obj/random/cash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "tfH" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/grille, @@ -60568,7 +60375,7 @@ id = "SC-GCaicore" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "tfI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -60600,7 +60407,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "tfQ" = ( /obj/structure/table/rack/shelf/steel, /obj/item/suit_cooling_unit{ @@ -60643,7 +60450,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "tfU" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -60669,13 +60476,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Psych_Room_1) +/area/medical/Psych_Room_1) "tgc" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "tgj" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "tgt" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -60683,28 +60490,28 @@ id = "sc-WTDorm7" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "tgI" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "tgM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "tgT" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "thf" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "thw" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -60712,7 +60519,7 @@ }, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "thx" = ( /obj/machinery/computer/med_data{ dir = 1 @@ -60728,7 +60535,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "thB" = ( /obj/machinery/shower{ pixel_y = 16 @@ -60740,7 +60547,7 @@ /obj/machinery/door/window/westright, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "thC" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -60767,7 +60574,7 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "thN" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -60798,14 +60605,14 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "thU" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "tia" = ( /obj/structure/table/glass, /obj/item/starcaster_news, @@ -60813,13 +60620,7 @@ dir = 1 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Lounge) -"tih" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/medical/Lounge) "tiu" = ( /obj/structure/cable/green{ d1 = 2; @@ -60846,13 +60647,13 @@ }, /obj/effect/floor_decal/corner/white/bordercorner2, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "tiw" = ( /obj/machinery/light_construct/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "tiB" = ( /obj/structure/sign/directions/engineering/solars{ dir = 8 @@ -60865,7 +60666,7 @@ pixel_y = -9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "tiC" = ( /obj/structure/sink{ dir = 8; @@ -60879,7 +60680,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "tiK" = ( /obj/structure/table/rack/holorack, /obj/machinery/door/window/brigdoor/northleft, @@ -60903,14 +60704,14 @@ pixel_x = -1 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "tiZ" = ( /obj/machinery/papershredder, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "tja" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -60920,7 +60721,7 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "tjF" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/pink, @@ -60931,46 +60732,26 @@ anchored = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "tjZ" = ( /obj/machinery/shower{ dir = 1 }, /turf/simulated/floor/water/deep/pool, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "tkg" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "tkx" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) -"tkE" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/pie, -/obj/machinery/computer/security/telescreen/entertainment{ - name = "1E-entertainment monitor"; - pixel_x = 32; - pixel_y = -4 - }, -/obj/machinery/door/blast/gate/thin{ - id = "sc-GCkitchen"; - layer = 3.3; - name = "Kitchen Shutters"; - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - layer = 3 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/crew_quarters/Observation_Lounge) "tkI" = ( /obj/structure/cable/green{ d1 = 1; @@ -60987,11 +60768,11 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "tkJ" = ( /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "tkK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -61002,7 +60783,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "tkO" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -61010,18 +60791,18 @@ /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "tkT" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "tkY" = ( /obj/machinery/atmospherics/binary/pump/on{ target_pressure = 200; dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "tld" = ( /obj/machinery/firealarm{ dir = 8; @@ -61034,7 +60815,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "tle" = ( /obj/machinery/photocopier/faxmachine{ department = "Captain's Office"; @@ -61046,7 +60827,7 @@ }, /obj/structure/table/hardwoodtable, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "tll" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner2, @@ -61057,7 +60838,7 @@ dir = 1 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "tlm" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden{ @@ -61066,7 +60847,7 @@ /obj/effect/catwalk_plated, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "tln" = ( /obj/machinery/alarm{ dir = 1; @@ -61078,13 +60859,13 @@ /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "tls" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "tlB" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -61093,11 +60874,11 @@ icon_state = "4-8" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "tlF" = ( /obj/structure/girder, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "tlG" = ( /obj/structure/table/woodentable, /obj/structure/flora/pottedplant/large{ @@ -61105,7 +60886,7 @@ name = "Roco" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "tlM" = ( /obj/structure/lattice, /obj/structure/railing/grey{ @@ -61113,22 +60894,22 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "tlQ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/reflector/single, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "tmF" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "tmS" = ( /obj/structure/bed/chair, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "tmY" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -61145,7 +60926,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "tmZ" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 1 @@ -61157,7 +60938,7 @@ /obj/machinery/door/window/eastright, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "tnc" = ( /obj/machinery/shower{ pixel_y = 16 @@ -61171,36 +60952,15 @@ /obj/machinery/door/window/southleft, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "tno" = ( /obj/machinery/photocopier, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "tnv" = ( -/obj/machinery/door/firedoor/border_only, -/obj/effect/floor_decal/industrial/hatch, -/obj/structure/grille, -/obj/structure/window/titanium/full, -/obj/structure/window/titanium, -/obj/structure/window/titanium{ - dir = 4 - }, -/obj/structure/window/titanium{ - dir = 1 - }, -/obj/structure/window/titanium{ - dir = 8 - }, -/obj/machinery/door/blast/multi_tile/three_tile_hor{ - icon_state = "open"; - layer = 3.5; - id = "sc-GCbridgeLOCKDOWN"; - density = 0; - opacity = 0 - }, -/obj/structure/sign/double/barsign, +/obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/maintenance/Deck3_Center_Star) "tnz" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -61208,7 +60968,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "tnF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -61227,7 +60987,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "tnH" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 4 @@ -61236,7 +60996,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "tnW" = ( /obj/structure/cable/green{ d1 = 4; @@ -61247,34 +61007,18 @@ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "toJ" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "toW" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) -"toX" = ( -/obj/structure/railing/grey{ - color = "yellow"; - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 32; - icon_state = "32-1" - }, -/obj/structure/lattice, -/obj/structure/railing/grey{ - color = "yellow"; - dir = 8 - }, -/turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Medical_ForPortChamber1) "toY" = ( /obj/machinery/shower{ dir = 1 @@ -61293,7 +61037,7 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "tpf" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -61304,23 +61048,23 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "tpp" = ( -/obj/machinery/computer/arcade{ - dir = 1 - }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, +/obj/item/stool/padded{ + dir = 8 + }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "tpy" = ( /obj/machinery/atmospherics/tvalve/bypass{ dir = 1 }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "tpO" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Bridge Subgrid"; @@ -61339,7 +61083,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "tpQ" = ( /obj/effect/catwalk_plated, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -61349,7 +61093,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "tpT" = ( /obj/machinery/firealarm{ dir = 1; @@ -61360,7 +61104,7 @@ dir = 8 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "tpU" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, @@ -61378,13 +61122,13 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "tqh" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "trw" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -61393,7 +61137,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "trH" = ( /obj/effect/catwalk_plated/white, /obj/structure/cable/white{ @@ -61410,17 +61154,17 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "tsf" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "tsy" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "ttn" = ( /obj/structure/cable{ d1 = 1; @@ -61432,7 +61176,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "ttw" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 1 @@ -61451,7 +61195,7 @@ dir = 4 }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "ttG" = ( /obj/structure/railing/grey{ dir = 8 @@ -61462,8 +61206,10 @@ /obj/random/trash, /obj/random/trash_pile, /obj/random/trash, +/obj/random/junk, +/obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "ttJ" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5, /obj/structure/noticeboard{ @@ -61471,12 +61217,12 @@ dir = 4 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "tvd" = ( /obj/structure/bed/chair/bay/chair/padded/red/smallnest, /obj/item/digestion_remains/skull/teshari, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "tvp" = ( /obj/structure/cable/pink{ d1 = 1; @@ -61484,7 +61230,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "tvI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -61509,7 +61255,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor2) +/area/maintenance/Deck3_Medical_AftCorridor2) "tvK" = ( /obj/structure/cable/green{ d1 = 2; @@ -61527,7 +61273,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "tvL" = ( /obj/structure/table/reinforced, /obj/item/folder/yellow, @@ -61535,15 +61281,15 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "tvS" = ( /obj/structure/table/sifwoodentable, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "twp" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "twr" = ( /obj/machinery/light{ dir = 4; @@ -61552,7 +61298,7 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "twu" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -61560,15 +61306,20 @@ id = "sc-WTpadded" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "twv" = ( /obj/structure/railing, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "txl" = ( -/obj/machinery/gibber, -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/obj/machinery/power/port_gen/pacman, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/engineering/Central_Engineering_Post) "txm" = ( /obj/machinery/light{ dir = 8; @@ -61582,10 +61333,10 @@ }, /obj/item/geiger/wall/west, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "txw" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "txS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -61594,7 +61345,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall) +/area/engineering/Engine1_Access_Hall) "tyt" = ( /obj/structure/sign/flag/nt/right{ pixel_y = 32 @@ -61604,14 +61355,14 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "tyW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "tzb" = ( /obj/machinery/cell_charger{ pixel_y = 11 @@ -61634,10 +61385,10 @@ }, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "tzt" = ( /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "tzH" = ( /obj/structure/cable/green{ d1 = 4; @@ -61652,7 +61403,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor1) +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "tzJ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -61669,7 +61420,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortChamber1) +/area/maintenance/Deck3_Dorms_PortChamber1) "tzP" = ( /obj/machinery/disposal, /obj/effect/floor_decal/industrial/warning/full, @@ -61681,7 +61432,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "tAb" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -61712,7 +61463,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "tAf" = ( /obj/machinery/power/apc{ dir = 1; @@ -61724,7 +61475,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "tAo" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -61736,14 +61487,14 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "tAE" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "tAO" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 8 @@ -61754,7 +61505,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "tAX" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; @@ -61764,7 +61515,7 @@ name = "Chemist" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "tAY" = ( /obj/machinery/sleep_console, /obj/effect/floor_decal/borderfloorwhite{ @@ -61776,7 +61527,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "tBh" = ( /obj/structure/bed/chair{ dir = 8 @@ -61785,7 +61536,7 @@ name = "Engineer" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "tBq" = ( /obj/structure/cable/green{ d1 = 2; @@ -61815,16 +61566,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "tBw" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "tBM" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "tBT" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4 @@ -61832,7 +61583,7 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "tCd" = ( /obj/item/modular_computer/console/preset/engineering{ dir = 4 @@ -61844,7 +61595,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "tCJ" = ( /obj/structure/extinguisher_cabinet{ name = "1N-extinguisher cabinet"; @@ -61857,13 +61608,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "tCO" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "tCS" = ( /obj/structure/bed/chair/sofa/left/teal{ dir = 8 @@ -61876,7 +61627,7 @@ dir = 8 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "tDd" = ( /obj/machinery/vending/loadout/clothing, /obj/machinery/light{ @@ -61890,26 +61641,27 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "tDh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "tDp" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) +"tDI" = ( +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "tDY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -61918,7 +61670,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "tEc" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 @@ -61926,27 +61678,27 @@ /turf/simulated/floor/boxing{ name = "yoga mat" }, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "tEm" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "tEu" = ( /obj/structure/table/standard, /obj/random/medical/pillbottle, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "tEC" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "tEM" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "tEU" = ( /obj/structure/window/reinforced{ dir = 1; @@ -61955,7 +61707,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/purple, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "tFp" = ( /obj/machinery/status_display{ pixel_y = -32; @@ -61967,7 +61719,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "tFr" = ( /obj/structure/cable/green{ d1 = 1; @@ -61993,18 +61745,18 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "tFt" = ( /obj/structure/table/steel, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "tFv" = ( /obj/random/crate, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "tFI" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -62013,11 +61765,11 @@ }, /obj/machinery/door/airlock/maintenance/medical, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "tFO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "tFP" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -62031,7 +61783,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "tFY" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -62043,21 +61795,21 @@ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "tFZ" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "tGp" = ( /obj/structure/railing{ dir = 4 }, /obj/structure/railing, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "tGr" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -62065,7 +61817,7 @@ network = list("Commons") }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "tGH" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -62073,16 +61825,16 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "tGU" = ( /obj/structure/table/woodentable, /obj/item/toy/chewtoy/tall, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "tHb" = ( /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "tHm" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -62102,7 +61854,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "tHD" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ @@ -62110,7 +61862,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "tIc" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -62119,7 +61871,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber1) +/area/maintenance/Deck3_Medical_ForChamber1) "tIh" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -62128,11 +61880,22 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "tIi" = ( -/obj/machinery/vending/cola/soft, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Central" + }, +/obj/structure/sign/warning/high_voltage{ + pixel_x = 32 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/engineering/Central_Engineering_Post) "tIU" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -62155,7 +61918,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "tIZ" = ( /obj/machinery/atmospherics/valve/digital{ dir = 1; @@ -62166,7 +61929,7 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "tJr" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Solar - ForPort"; @@ -62182,7 +61945,7 @@ icon_state = "0-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "tJw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -62192,8 +61955,9 @@ /obj/effect/floor_decal/corner/beige/border{ dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "tJB" = ( /obj/structure/cable/green{ d1 = 4; @@ -62208,7 +61972,7 @@ /obj/random/junk, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "tJG" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -62221,7 +61985,7 @@ req_access = null }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "tKl" = ( /obj/structure/table/glass, /obj/item/radio{ @@ -62242,7 +62006,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "tKm" = ( /obj/structure/cable/green{ d1 = 1; @@ -62258,7 +62022,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "tKo" = ( /obj/structure/lattice, /obj/structure/railing/grey, @@ -62274,7 +62038,7 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "tKC" = ( /obj/structure/lattice, /obj/structure/railing/grey, @@ -62297,7 +62061,7 @@ dir = 4 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "tLi" = ( /obj/effect/floor_decal/corner/black/full{ dir = 1 @@ -62307,7 +62071,7 @@ network = list("engineering") }, /turf/simulated/floor/reinforced/carbon_dioxide, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "tLl" = ( /obj/structure/closet/emergsuit_wall{ pixel_y = 27; @@ -62323,7 +62087,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "tLB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -62340,7 +62104,8 @@ }, /obj/machinery/access_button{ pixel_y = -24; - dir = 1 + dir = 1; + req_one_access = list(1,19) }, /obj/effect/map_helper/airlock/door/int_door, /obj/effect/map_helper/airlock/button/int_button{ @@ -62353,7 +62118,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "tLN" = ( /obj/machinery/power/apc{ dir = 1; @@ -62377,7 +62142,7 @@ icon_state = "0-2" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "tLY" = ( /obj/structure/cable/green{ d1 = 1; @@ -62394,7 +62159,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "tMc" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -62414,7 +62179,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "tMf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -62428,11 +62193,11 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "tMn" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "tMD" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -62441,18 +62206,13 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "tMI" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ pixel_x = -1; pixel_y = 1 }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -62466,18 +62226,18 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "tMW" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "tNl" = ( /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "tNr" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "tNV" = ( /obj/structure/undies_wardrobe, /obj/machinery/alarm{ @@ -62493,7 +62253,7 @@ pixel_y = 18 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "tOm" = ( /obj/structure/cable/green{ d1 = 2; @@ -62509,22 +62269,27 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "tOx" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 }, /obj/effect/catwalk_plated/techmaint, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "tOD" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "tOS" = ( /obj/structure/table/woodentable, /obj/item/book/manual/supermatter_engine{ @@ -62532,11 +62297,11 @@ }, /obj/item/toy/chewtoy, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "tOU" = ( /obj/structure/flora/rocks2, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "tPm" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -62555,13 +62320,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "tPH" = ( /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "tQa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ @@ -62569,7 +62334,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "tQk" = ( /obj/structure/closet/emergsuit_wall{ dir = 1; @@ -62582,31 +62347,26 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "tQo" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "tQK" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "tQO" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/spline/plain/corner{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "tQW" = ( /obj/structure/table/marble, /obj/item/storage/box/glasses/coffeecup{ @@ -62627,7 +62387,7 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "tRd" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor/corner{ @@ -62640,7 +62400,7 @@ dir = 5 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "tRt" = ( /obj/structure/cable{ d1 = 1; @@ -62656,7 +62416,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "tRw" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -62670,7 +62430,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "tRN" = ( /obj/machinery/firealarm{ dir = 8; @@ -62684,7 +62444,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "tRV" = ( /obj/structure/table/standard, /obj/machinery/recharger{ @@ -62707,11 +62467,11 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "tSn" = ( /obj/random/cargopod, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "tSp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -62722,7 +62482,21 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) +"tSE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/Central_3_Deck_Hall) "tSF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -62742,7 +62516,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "tSG" = ( /obj/structure/cable/green{ d1 = 1; @@ -62760,7 +62534,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "tSO" = ( /obj/structure/extinguisher_cabinet{ name = "1N-extinguisher cabinet"; @@ -62774,7 +62548,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "tSX" = ( /obj/structure/cable/green{ d1 = 4; @@ -62789,23 +62563,23 @@ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "tTr" = ( /turf/simulated/wall/durasteel, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "tUi" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "tUw" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "tUX" = ( /obj/structure/table/glass, /obj/machinery/computer/med_data/laptop{ @@ -62818,7 +62592,7 @@ id = "sc-DBCpatient02" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Medical/Patient_3) +/area/medical/Patient_3) "tUY" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloorblack{ @@ -62828,14 +62602,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "tVb" = ( /obj/structure/table/rack/shelf, /obj/random/tech_supply, /obj/random/tech_supply/component, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "tVe" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -62846,7 +62620,7 @@ name = "Dorms" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "tVk" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, @@ -62856,7 +62630,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "tVq" = ( /obj/structure/railing{ dir = 8 @@ -62866,7 +62640,7 @@ pixel_y = 32 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "tVE" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Substation - Bridge" @@ -62881,7 +62655,7 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "tVT" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -62893,7 +62667,7 @@ id_tag = "sc-DBCstall2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "tVZ" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -62903,7 +62677,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "tWG" = ( /obj/machinery/firealarm{ dir = 8; @@ -62911,7 +62685,7 @@ name = "W-fire alarm" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "tWI" = ( /obj/structure/cable/green{ d1 = 1; @@ -62928,13 +62702,13 @@ dir = 5 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "tWL" = ( /obj/random/trash, /obj/machinery/atmospherics/binary/pump/high_power, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "tWS" = ( /obj/structure/cable/green{ d1 = 4; @@ -62942,17 +62716,22 @@ icon_state = "4-8" }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "tWU" = ( /obj/machinery/ai_status_display{ name = "1N-AI display"; pixel_y = 32 }, -/turf/simulated/floor/glass, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/obj/machinery/light/spot{ + dir = 1; + color = "#ccc9ff"; + desc = "An extra bright lighting fixture." + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Lounge) "tWX" = ( /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "tWY" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -62983,7 +62762,7 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "tXb" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -62992,7 +62771,7 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "tXd" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -63003,13 +62782,13 @@ name = "Garden" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "tXn" = ( /obj/effect/floor_decal/spline/fancy{ dir = 10 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "tXE" = ( /obj/machinery/door/window/brigdoor/westright{ req_one_access = list(5,47); @@ -63021,7 +62800,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "tXL" = ( /obj/structure/cable/pink{ d1 = 1; @@ -63034,17 +62813,17 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "tXO" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "tXV" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "tXX" = ( /obj/machinery/airlock_sensor{ pixel_y = -24; @@ -63058,7 +62837,7 @@ /obj/effect/map_helper/airlock/sensor/chamber_sensor, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "tYn" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -63070,7 +62849,7 @@ "tYr" = ( /obj/item/toy/plushie/teshari/w_yw, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "tYv" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor{ @@ -63081,26 +62860,22 @@ }, /obj/item/t_scanner/advanced, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "tYA" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "tYE" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "tYZ" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "tZd" = ( /obj/structure/table/rack/shelf/steel, /obj/item/stack/cable_coil/random{ @@ -63128,11 +62903,11 @@ pixel_y = -5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "tZh" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "tZj" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /obj/machinery/atmospherics/portables_connector{ @@ -63151,10 +62926,10 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "tZq" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "tZs" = ( /obj/structure/cable/green{ d1 = 1; @@ -63171,22 +62946,22 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "tZK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "tZQ" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "uaG" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftStarCorridor1) +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "uaQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -63195,16 +62970,16 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "ubi" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "ubn" = ( /obj/effect/catwalk_plated, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "ubw" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/steeldecal/steel_decals10{ @@ -63214,20 +62989,14 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "ubE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) -"ubW" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Construction_Area) "ucc" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -63241,7 +63010,7 @@ icon_state = "2-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "ucr" = ( /obj/structure/table/hardwoodtable, /obj/machinery/holoplant{ @@ -63250,14 +63019,14 @@ name = "Miralo" }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "uct" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "ucy" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -63270,24 +63039,24 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "ucA" = ( /obj/effect/floor_decal/spline/fancy{ dir = 9 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "ucG" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "udi" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1) +/area/maintenance/Deck3_Dorms_ForCorridor1) "udk" = ( /obj/machinery/atmospherics/unary/heat_exchanger{ dir = 4 @@ -63296,7 +63065,7 @@ dir = 5 }, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "udn" = ( /obj/machinery/computer/med_data/laptop{ dir = 1; @@ -63308,7 +63077,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "udw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -63319,7 +63088,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "udG" = ( /obj/structure/sign/warning/radioactive, /obj/structure/cable/white{ @@ -63333,7 +63102,7 @@ icon_state = "1-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "udR" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -63347,12 +63116,12 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "udT" = ( /obj/machinery/power/tesla_coil, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "uee" = ( /obj/structure/bed/chair/oldsofa/left{ dir = 1 @@ -63365,7 +63134,7 @@ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "uep" = ( /obj/structure/cable/green{ d1 = 4; @@ -63379,7 +63148,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "ueu" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -63406,7 +63175,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "ueA" = ( /obj/machinery/atmospherics/omni/atmos_filter{ tag_east = 2; @@ -63417,7 +63186,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/engine_setup/atmo_filter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "ueC" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner2, @@ -63428,10 +63197,10 @@ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "ueI" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "ueN" = ( /obj/machinery/light{ dir = 4 @@ -63447,7 +63216,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "ueP" = ( /obj/structure/cable/green{ d1 = 1; @@ -63458,20 +63227,7 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) -"ueQ" = ( -/obj/structure/table/marble, -/obj/machinery/cash_register/civilian{ - dir = 8 - }, -/obj/machinery/door/blast/gate/thin{ - id = "sc-GCkitchen"; - layer = 3.3; - name = "Kitchen Shutters"; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/harbor/Aft_3_Deck_Airlock_Access) "ueV" = ( /obj/item/radio/intercom{ dir = 1; @@ -63497,7 +63253,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "ufa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -63508,7 +63264,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "ufc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63529,7 +63285,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "ufl" = ( /obj/structure/cable/green{ d1 = 1; @@ -63544,7 +63300,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "ufx" = ( /obj/structure/closet/l3closet/medical, /obj/effect/floor_decal/borderfloorblack{ @@ -63553,13 +63309,14 @@ /obj/effect/floor_decal/corner/paleblue/border{ dir = 5 }, +/obj/item/bodybag/large, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "ufZ" = ( /obj/structure/table/standard, /obj/random/flashlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "ugd" = ( /obj/machinery/door/firedoor/multi_tile/glass{ dir = 1 @@ -63575,7 +63332,7 @@ name = "Dorms" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "uge" = ( /obj/machinery/shower{ dir = 1 @@ -63589,7 +63346,7 @@ /obj/machinery/door/window/northright, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "ugq" = ( /obj/structure/bed/double/padded, /obj/structure/bed/double/padded{ @@ -63600,14 +63357,14 @@ pixel_y = -25 }, /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "ugN" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "ugV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -63619,18 +63376,18 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "ugX" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "uhf" = ( /obj/structure/closet/wardrobe/xenos, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "uhg" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/steeldecal/steel_decals9, @@ -63645,14 +63402,14 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "uhp" = ( /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "uhz" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "uhA" = ( /obj/structure/table/rack/shelf/steel, /obj/item/radio/off{ @@ -63696,7 +63453,7 @@ pixel_x = -4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "uip" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -63704,11 +63461,11 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "uiC" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "uiG" = ( /obj/structure/cable/green{ d1 = 1; @@ -63720,7 +63477,7 @@ dir = 5 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "uiK" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -63732,13 +63489,13 @@ }, /obj/machinery/light/small, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "uiU" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "uiX" = ( /obj/machinery/alarm{ dir = 8; @@ -63754,7 +63511,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "uju" = ( /obj/structure/sign/flag/nt/right, /obj/structure/cable/white{ @@ -63763,27 +63520,13 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Captain_Office) -"ujy" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/shuttle/blue{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/bridge/Captain_Office) "ujB" = ( /obj/random/junk, /obj/structure/table/steel, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "ujU" = ( /obj/machinery/computer/general_air_control/supermatter_core{ dir = 4; @@ -63799,7 +63542,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "ujW" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -63816,14 +63559,14 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "uks" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "ukC" = ( /obj/structure/bed/chair/office/dark, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "ukE" = ( /obj/structure/table/sifwoodentable, /obj/item/gps/engineering/ce, @@ -63840,18 +63583,17 @@ dir = 8 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "ukQ" = ( -/obj/structure/extinguisher_cabinet{ - dir = 1; - name = "1S-extinguisher cabinet"; - pixel_y = -27 +/obj/structure/bed/chair/backed_grey{ + color = "grey"; + dir = 1 }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite/corner, -/obj/effect/floor_decal/corner/orange/bordercorner, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/carpet/brown, +/area/crew_quarters/Chomp_Stage) "ull" = ( /obj/machinery/atmospherics/valve/digital/open{ name = "Nitrogen Outlet Valve" @@ -63862,11 +63604,11 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "ulv" = ( /obj/structure/table/standard, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "uly" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -63885,7 +63627,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "ulH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -63894,7 +63636,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "ulO" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -63903,32 +63645,32 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "ulX" = ( /obj/effect/catwalk_plated, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "umm" = ( /obj/machinery/power/emitter, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "umq" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/beige/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "umu" = ( /obj/machinery/light/small, /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "umw" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "umx" = ( /obj/machinery/power/apc{ dir = 1; @@ -63945,11 +63687,11 @@ name = "N-light switch" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "umB" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "umX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/white{ @@ -63958,7 +63700,7 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "und" = ( /obj/structure/sign/directions/engineering/solars{ dir = 8 @@ -63967,14 +63709,14 @@ pixel_y = -9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "uni" = ( /obj/structure/sign/department/atmos{ layer = 3.5; desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "unk" = ( /obj/machinery/light{ dir = 1; @@ -63987,7 +63729,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "unn" = ( /obj/structure/window/basic{ dir = 8 @@ -64000,7 +63742,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "unv" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -64010,11 +63752,11 @@ name = "1E-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "unA" = ( /obj/structure/table/rack/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "unE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -64028,17 +63770,16 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "unF" = ( -/obj/machinery/r_n_d/protolathe/medical, -/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/glass, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "unX" = ( /obj/machinery/vending/wardrobe/scidrobe, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "uob" = ( /obj/effect/floor_decal/spline/fancy/wood, /mob/living/simple_mob/animal/passive/fish/koi{ @@ -64046,18 +63787,18 @@ }, /obj/structure/railing/grey, /turf/simulated/floor/water/deep/indoors, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "uoj" = ( /obj/structure/bed/double/padded, /obj/item/bedsheet/hosdouble, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "uoq" = ( /obj/item/material/ashtray/glass, /obj/structure/table/steel, /obj/random/maintenance/foodstuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "uot" = ( /obj/effect/floor_decal/borderfloorblack/corner{ dir = 8 @@ -64066,7 +63807,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "uov" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -64075,11 +63816,11 @@ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "uoy" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "uoG" = ( /obj/machinery/atmospherics/omni/atmos_filter{ tag_east = 1; @@ -64088,13 +63829,13 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "uoU" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "uoZ" = ( /obj/item/stack/material/cardboard{ amount = 25 @@ -64120,7 +63861,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "upp" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 4; @@ -64135,7 +63876,7 @@ /turf/simulated/floor/reinforced/nitrogen{ nitrogen = 82.1472 }, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "upr" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -64152,11 +63893,11 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "upB" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "upJ" = ( /obj/structure/table/standard, /obj/item/communicator, @@ -64166,32 +63907,32 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "uqb" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "uqc" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "uqk" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "uql" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "uqx" = ( /obj/machinery/firealarm{ dir = 4; @@ -64205,7 +63946,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "uri" = ( /obj/structure/railing/grey{ color = "yellow" @@ -64215,7 +63956,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "urv" = ( /obj/structure/sink{ dir = 4; @@ -64230,7 +63971,7 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "urA" = ( /obj/structure/table/standard, /obj/item/starcaster_news, @@ -64239,7 +63980,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "urH" = ( /obj/machinery/light/small{ dir = 4 @@ -64250,7 +63991,7 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "urV" = ( /obj/structure/window/reinforced{ dir = 1; @@ -64260,7 +64001,7 @@ dir = 9 }, /turf/simulated/floor/grass2, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "urW" = ( /obj/structure/bed/chair/sofa/yellow{ dir = 4 @@ -64271,7 +64012,7 @@ name = "1W-emergency suit storage" }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "usd" = ( /obj/machinery/pointdefense{ id_tag = "PD Secondary" @@ -64292,12 +64033,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "usi" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "usq" = ( /obj/structure/table/wooden_reinforced, /obj/item/modular_computer/laptop/preset/custom_loadout/advanced{ @@ -64308,7 +64049,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "uss" = ( /obj/structure/table/steel, /obj/item/storage/box/flare{ @@ -64341,21 +64082,17 @@ network = list("Bridge") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "usz" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) -"usH" = ( -/obj/machinery/smartfridge/produce/persistent_lossy, -/turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/maintenance/Deck3_Dorms_StarCorridor2) "usM" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "usN" = ( /obj/structure/extinguisher_cabinet{ dir = 1; @@ -64363,7 +64100,7 @@ pixel_y = -27 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "ute" = ( /obj/machinery/alarm{ dir = 4; @@ -64378,20 +64115,20 @@ }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "utu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "uty" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "utB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -64399,7 +64136,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "utP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -64414,7 +64151,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "utQ" = ( /obj/machinery/shower{ dir = 1 @@ -64430,7 +64167,7 @@ }, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "uul" = ( /obj/item/bedsheet/greendouble{ pixel_y = 33 @@ -64441,7 +64178,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "uur" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -64450,7 +64187,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "uuw" = ( /obj/item/clothing/under/medigown, /obj/item/clothing/under/medigown{ @@ -64465,7 +64202,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "uuD" = ( /obj/machinery/alarm{ dir = 4; @@ -64489,14 +64226,14 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "uuP" = ( /obj/machinery/iv_drip, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "uvG" = ( /obj/structure/cable{ d1 = 1; @@ -64513,10 +64250,10 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "uvI" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "uvM" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -64524,7 +64261,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "uvN" = ( /obj/structure/window/plastitanium{ color = "white"; @@ -64541,7 +64278,7 @@ dir = 1 }, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "uvR" = ( /obj/structure/cable/green{ d1 = 1; @@ -64557,14 +64294,14 @@ dir = 9 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "uvS" = ( /obj/structure/closet/wardrobe/captain{ name = "station director's wardrobe" }, /obj/item/storage/lockbox/medal, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "uwl" = ( /obj/structure/cable/green{ d1 = 1; @@ -64585,7 +64322,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "uwr" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -64594,7 +64331,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "uwA" = ( /obj/structure/closet/emergsuit_wall{ pixel_y = 27; @@ -64607,25 +64344,31 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) -"uwW" = ( -/obj/machinery/appliance/cooker/grill, -/obj/machinery/status_display{ - name = "S-status display"; - pixel_y = -32 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/crew_quarters/Dorm_Corridor_2) "uxl" = ( /obj/structure/sign/directions/roomnum{ pixel_y = 8; dir = 6 }, /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) +"uxn" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/curtain/black{ + icon_state = "open"; + layer = 2; + name = "privacy curtain"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/Chomp_Stage) "uxo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -64637,10 +64380,10 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "uxE" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "uxR" = ( /obj/structure/cable/green{ d1 = 4; @@ -64657,22 +64400,22 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "uxT" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "uxY" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "uye" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "uyo" = ( /obj/structure/cable/green{ d1 = 1; @@ -64688,14 +64431,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "uyp" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "uyw" = ( /obj/machinery/door/window/northleft{ dir = 4; @@ -64704,14 +64447,14 @@ req_one_access = list(35,28) }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "uyA" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "uyR" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -64734,12 +64477,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "uzc" = ( /obj/structure/table/steel, /obj/item/binoculars, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "uzi" = ( /obj/structure/window/basic{ dir = 8 @@ -64759,14 +64502,14 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "uzx" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "uzH" = ( /obj/machinery/power/apc{ dir = 1; @@ -64789,7 +64532,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "uzM" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -64798,31 +64541,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) -"uzY" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/industrial/arrows/blue{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/arrows/blue, -/obj/machinery/door/airlock/angled_bay/standard/glass/common{ - dir = 4; - name = "Kitchen"; - req_access = list(28) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/medical/Virology) "uAe" = ( /obj/machinery/atmospherics/pipe/tank/air/full, /obj/effect/floor_decal/industrial/hatch/blue, @@ -64831,25 +64550,25 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "uAl" = ( /obj/item/bedsheet/mime, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "uAw" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "uAA" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "uAC" = ( /obj/machinery/power/apc{ dir = 4; @@ -64881,7 +64600,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "uAL" = ( /obj/structure/cable/pink{ d1 = 4; @@ -64892,7 +64611,7 @@ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "uBr" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -64901,7 +64620,7 @@ dir = 1 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "uBs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -64909,21 +64628,21 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "uBt" = ( /obj/structure/table/rack/shelf, /obj/random/maintenance/cargo, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "uBu" = ( /obj/machinery/vending/magivend, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "uBy" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "uBR" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -64947,7 +64666,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "uCi" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/effect/floor_decal/techfloor{ @@ -64964,11 +64683,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "uCo" = ( /obj/structure/cable/green{ d1 = 4; @@ -64982,38 +64698,26 @@ dir = 4 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "uCu" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_10) -"uDd" = ( -/obj/effect/catwalk_plated/white, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/crew_quarters/sleeping/Dormitory_10) "uDe" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 1; - pixel_y = -10 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/turf/simulated/floor/carpet/brown, +/area/crew_quarters/Chomp_Stage) "uDf" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "uDp" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "uDu" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/random{ @@ -65040,7 +64744,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForChamber1) +/area/maintenance/Deck3_Bridge_ForChamber1) "uDx" = ( /obj/effect/floor_decal/industrial/hatch, /obj/machinery/atmospheric_field_generator/perma/underdoors{ @@ -65065,7 +64769,7 @@ layer = 3.5 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "uDF" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -65077,7 +64781,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "uDO" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -65097,7 +64801,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "uDZ" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -65114,7 +64818,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "uEb" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -65127,7 +64831,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "uEI" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/white, @@ -65149,7 +64853,7 @@ }, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "uEQ" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -65163,17 +64867,17 @@ icon_state = "1-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "uER" = ( /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "uET" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "uEW" = ( /obj/structure/cable/white{ d1 = 4; @@ -65181,7 +64885,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "uEX" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -65194,11 +64898,11 @@ name = "E-fire alarm" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "uFg" = ( /obj/random/mainttoyloot, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "uFm" = ( /obj/machinery/alarm{ dir = 8; @@ -65211,21 +64915,21 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "uFE" = ( /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "uFJ" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "uFP" = ( /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall) +/area/engineering/Engine1_Access_Hall) "uFR" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -65233,7 +64937,7 @@ icon_state = "1-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "uFS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -65241,7 +64945,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "uFU" = ( /obj/structure/cable/green{ d1 = 2; @@ -65261,7 +64965,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "uFW" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -65275,7 +64979,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "uGj" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -65294,22 +64998,13 @@ /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) -"uGm" = ( -/obj/item/stool/baystool/padded{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/engineering/Atmospherics_Chamber) "uHu" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "uHI" = ( /obj/structure/sign/directions/engineering/solars{ pixel_y = 9 @@ -65318,7 +65013,7 @@ pixel_y = -9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "uIm" = ( /obj/machinery/firealarm{ dir = 8; @@ -65336,13 +65031,8 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "uIq" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -65357,11 +65047,11 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "uIt" = ( /obj/machinery/vending/sol, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "uJg" = ( /obj/structure/bed/chair/sofa/yellow{ dir = 8 @@ -65375,7 +65065,7 @@ dir = 8 }, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "uJV" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -65384,7 +65074,7 @@ icon_state = "2-4" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "uKq" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -65393,19 +65083,19 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "uKE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "uKF" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortCorridor1) +/area/maintenance/Deck3_Medical_AftPortCorridor1) "uKX" = ( /obj/item/storage/toolbox/electrical{ pixel_x = -2; @@ -65424,7 +65114,7 @@ pixel_x = 3 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "uLn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -65457,7 +65147,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "uLp" = ( /obj/structure/cable{ d1 = 4; @@ -65475,7 +65165,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "uLr" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -65488,7 +65178,7 @@ id = "sc-WTcaptainbridge" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "uLx" = ( /obj/machinery/computer/shutoff_monitor, /obj/effect/floor_decal/borderfloor{ @@ -65498,7 +65188,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "uLM" = ( /obj/structure/cable/green{ d1 = 2; @@ -65511,12 +65201,12 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/obj/structure/disposalpipe/junction, /obj/effect/floor_decal/spline/plain{ dir = 4 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "uLN" = ( /obj/structure/cable/white{ d1 = 1; @@ -65524,14 +65214,14 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/milspec/raised, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "uMh" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "uMq" = ( /obj/structure/bed/double/padded{ pixel_x = 10; @@ -65556,18 +65246,18 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "uMG" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/effect/floor_decal/spline/fancy/wood/corner, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "uMH" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "uMP" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -65576,11 +65266,11 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "uNb" = ( /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "uNf" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 10 @@ -65590,7 +65280,7 @@ "uNr" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "uNv" = ( /obj/structure/undies_wardrobe, /obj/item/reagent_containers/food/drinks/cans/waterbottle{ @@ -65606,7 +65296,7 @@ pixel_x = -7 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "uNy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -65621,18 +65311,18 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "uNC" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "uNJ" = ( /obj/machinery/ai_status_display{ pixel_y = 32; name = "1N-AI display" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "uNL" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -65650,7 +65340,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "uNQ" = ( /obj/structure/cable/green{ d1 = 4; @@ -65664,10 +65354,10 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "uNS" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "uNT" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/floor_decal/industrial/hatch/blue, @@ -65677,11 +65367,11 @@ name = "1W-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "uOc" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "uOh" = ( /obj/structure/girder/reinforced{ default_material = "lead" @@ -65692,7 +65382,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "uOo" = ( /obj/structure/railing/grey{ dir = 8 @@ -65710,7 +65400,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "uOA" = ( /obj/machinery/shower{ dir = 1 @@ -65729,42 +65419,48 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "uOJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/bed/chair/backed_grey{ + color = "grey"; + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/turf/simulated/floor/carpet/brown, +/area/crew_quarters/Chomp_Stage) "uOV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "uPq" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "uPE" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "uPL" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "uQd" = ( /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) +"uQe" = ( +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Medical_ForPortChamber1) "uQf" = ( /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "uQn" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -65792,7 +65488,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "uQw" = ( /obj/structure/table/bench/marble, /obj/machinery/alarm{ @@ -65800,7 +65496,7 @@ pixel_x = 22 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "uQC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -65829,7 +65525,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "uQF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -65856,25 +65552,25 @@ }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "uQK" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "uQU" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/random/junk, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "uQW" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "uRe" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/borderfloor/corner2{ @@ -65883,20 +65579,25 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "uRh" = ( /obj/structure/railing/grey{ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "uRl" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "uRm" = ( /obj/machinery/vending/loadout/accessory, /obj/machinery/light{ @@ -65904,7 +65605,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "uRz" = ( /obj/structure/bed/chair/wood{ dir = 8 @@ -65925,7 +65626,7 @@ dir = 6 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "uRB" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -65934,7 +65635,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "uRE" = ( /obj/structure/cable/yellow{ d2 = 4; @@ -65947,7 +65648,7 @@ /turf/simulated/floor/airless{ icon_state = "solarpanel" }, -/area/SouthernCrossV2/Engineering/Solar_Array_AftPort) +/area/engineering/Solar_Array_AftPort) "uRF" = ( /obj/structure/cable/white{ d1 = 1; @@ -65955,7 +65656,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "uRK" = ( /obj/structure/sign/directions/engineering/solars{ dir = 1; @@ -65966,18 +65667,18 @@ pixel_y = 9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "uRY" = ( /obj/machinery/air_sensor{ frequency = 1441; id_tag = "SC-phoron_sensor" }, /turf/simulated/floor/reinforced/phoron, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "uSc" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "uSd" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -65989,7 +65690,7 @@ id_tag = "sc-DBresleevingstall1" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "uSe" = ( /obj/structure/cable/green{ d1 = 4; @@ -66005,7 +65706,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals10, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "uSw" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -66013,14 +65714,14 @@ id = "sc-WTDorm6" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "uSF" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "uSG" = ( /obj/structure/cable/cyan, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "uSH" = ( /obj/machinery/vending/wardrobe/genedrobe, /obj/machinery/light{ @@ -66028,14 +65729,14 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "uSU" = ( /obj/machinery/atmospherics/binary/pump{ name = "Phoron to Connector" }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "uSW" = ( /obj/structure/sign/directions/bar{ pixel_y = 9; @@ -66052,7 +65753,7 @@ dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "uSX" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/catwalk_plated/techmaint, @@ -66061,7 +65762,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "uTc" = ( /obj/structure/table/glass, /obj/item/storage/laundry_basket, @@ -66069,15 +65770,15 @@ pixel_y = 5 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "uTy" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) +/area/maintenance/Deck3_Dorms_StarChamber2) "uTK" = ( /obj/machinery/washing_machine, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "uTN" = ( /obj/machinery/airlock_sensor{ pixel_y = -24; @@ -66091,12 +65792,12 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/map_helper/airlock/sensor/chamber_sensor, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "uTT" = ( /obj/structure/table/woodentable, /obj/item/book/manual/wiki/engineering_construction, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "uTY" = ( /obj/machinery/computer/atmoscontrol, /obj/effect/floor_decal/borderfloor{ @@ -66106,10 +65807,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "uUi" = ( /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "uUk" = ( /obj/machinery/light{ dir = 8; @@ -66120,7 +65821,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "uUl" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -66129,7 +65830,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "uUo" = ( /obj/machinery/light{ dir = 4; @@ -66137,7 +65838,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "uUU" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -66145,7 +65846,7 @@ /obj/machinery/portable_atmospherics/powered/pump/filled, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "uVb" = ( /obj/structure/cable/green{ d1 = 1; @@ -66161,7 +65862,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "uVg" = ( /obj/structure/extinguisher_cabinet{ dir = 1; @@ -66169,14 +65870,14 @@ pixel_y = -27 }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "uVl" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "uVo" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Substation - Atmospherics"; @@ -66190,7 +65891,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "uVw" = ( /obj/effect/floor_decal/industrial/arrows/red{ dir = 4 @@ -66204,7 +65905,8 @@ /obj/machinery/door/airlock/angled_bay/double/glass/command{ dir = 8; name = "Airlock bay"; - req_access = list(1) + req_access = null; + req_one_access = list(1,19) }, /obj/structure/cable/green{ d1 = 4; @@ -66221,7 +65923,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "uVz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -66233,17 +65935,17 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "uVA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "uVF" = ( /obj/structure/sign/warning/airlock, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "uVP" = ( /obj/structure/bed/chair/comfy/orange{ dir = 4 @@ -66252,13 +65954,13 @@ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "uVQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "uWm" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -66272,17 +65974,17 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Medical/Patient_2) +/area/medical/Patient_2) "uWp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "uWv" = ( /obj/effect/graffitispawner, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "uWE" = ( /obj/structure/morgue{ dir = 8 @@ -66293,14 +65995,14 @@ name = "1E-station intercom (Medbay)" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "uWI" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "uWK" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -66311,7 +66013,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "uWM" = ( /obj/structure/cable/green{ d1 = 2; @@ -66326,7 +66028,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_For) +/area/hallway/Stairwell_For) "uWT" = ( /obj/effect/floor_decal/industrial/arrows/yellow{ dir = 4 @@ -66335,7 +66037,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "uWU" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -66347,7 +66049,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "uXs" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -66359,11 +66061,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "uXw" = ( /obj/structure/table/woodentable, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "uXC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -66374,7 +66076,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "uXD" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -66382,7 +66084,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "uXE" = ( /obj/structure/cable/green{ d1 = 1; @@ -66403,7 +66105,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "uXM" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -66415,7 +66117,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "uYk" = ( /obj/structure/bed/chair/sofa/left/black{ dir = 4 @@ -66424,7 +66126,7 @@ dir = 4 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "uYm" = ( /obj/machinery/button/remote/airlock{ id = "sc-DBdorm4"; @@ -66433,7 +66135,7 @@ specialfunctions = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "uYr" = ( /obj/item/stool/padded, /obj/machinery/light{ @@ -66441,11 +66143,11 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "uYu" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "uYx" = ( /obj/structure/table/glass, /obj/item/reagent_containers/syringe/antiviral{ @@ -66488,7 +66190,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "uYz" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -66497,7 +66199,7 @@ /obj/effect/floor_decal/industrial/arrows/red, /obj/machinery/door/airlock/maintenance/command, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "uYD" = ( /obj/structure/closet/emergsuit_wall{ pixel_y = 27; @@ -66513,17 +66215,17 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "uYL" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "uZq" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/white/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "uZs" = ( /obj/structure/table/woodentable, /obj/item/paper_bin{ @@ -66545,7 +66247,7 @@ pixel_x = 5 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "uZK" = ( /obj/effect/floor_decal/industrial/hatch/blue, /obj/machinery/camera/network/security{ @@ -66558,7 +66260,7 @@ }, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "uZQ" = ( /obj/machinery/mass_driver{ dir = 8; @@ -66569,11 +66271,11 @@ layer = 4 }, /turf/simulated/floor/greengrid/nitrogen, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "uZX" = ( /obj/structure/railing, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "vae" = ( /obj/structure/bed/chair/oldsofa/corner{ dir = 4 @@ -66584,7 +66286,7 @@ name = "1W-emergency suit storage" }, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "vag" = ( /obj/structure/bed/chair/oldsofa/left, /obj/machinery/button/remote/airlock{ @@ -66597,7 +66299,7 @@ dir = 4 }, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "vao" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -66622,7 +66324,7 @@ default_material = "lead" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "vau" = ( /obj/structure/loot_pile/surface/medicine_cabinet/fresh{ pixel_y = 25 @@ -66630,7 +66332,7 @@ /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "vaz" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -66661,11 +66363,11 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "vaD" = ( /obj/machinery/appliance/cooker/oven, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "vaG" = ( /obj/machinery/light/small{ dir = 1 @@ -66675,13 +66377,13 @@ /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "vaX" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "vbb" = ( /obj/structure/table/marble, /obj/structure/sink/countertop{ @@ -66699,7 +66401,7 @@ pixel_x = -4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "vbo" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 4 @@ -66710,14 +66412,14 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "vbK" = ( /obj/structure/table/marble, /obj/machinery/microwave{ pixel_y = 19 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "vbN" = ( /obj/structure/cable/green{ d1 = 4; @@ -66732,7 +66434,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "vck" = ( /obj/structure/cable/green{ d1 = 2; @@ -66749,7 +66451,7 @@ name = "blobstart" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Medical/Patient_2) +/area/medical/Patient_2) "vcl" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -66765,7 +66467,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "vcK" = ( /obj/structure/table/woodentable, /obj/item/paper_bin{ @@ -66787,12 +66489,12 @@ pixel_x = -7 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "vdi" = ( /obj/machinery/power/rad_collector, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "vdm" = ( /obj/machinery/firealarm{ pixel_y = -25; @@ -66806,13 +66508,13 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "vdV" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "vec" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, @@ -66822,7 +66524,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "vee" = ( /obj/structure/window/plastitanium{ color = "white"; @@ -66835,14 +66537,14 @@ network = list("Medical") }, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "veg" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/structure/closet/emcloset, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "veo" = ( /obj/machinery/shower{ pixel_y = 16 @@ -66859,7 +66561,7 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "vex" = ( /obj/structure/cable/pink{ d1 = 4; @@ -66867,7 +66569,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "vez" = ( /obj/structure/cable/yellow{ d2 = 8; @@ -66880,7 +66582,7 @@ /turf/simulated/floor/airless{ icon_state = "solarpanel" }, -/area/SouthernCrossV2/Engineering/Solar_Array_AftPort) +/area/engineering/Solar_Array_AftPort) "veY" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -66899,7 +66601,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "vfm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -66908,7 +66610,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "vfq" = ( /obj/structure/cable/white{ d1 = 2; @@ -66916,7 +66618,7 @@ icon_state = "2-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "vfw" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/pink, @@ -66924,7 +66626,7 @@ anchored = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "vfQ" = ( /obj/item/radio/intercom{ dir = 1; @@ -66938,13 +66640,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "vfS" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "vgq" = ( /obj/machinery/light{ dir = 1; @@ -66953,7 +66655,7 @@ /obj/structure/bed/chair/comfy/blue, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Medical/Patient_2) +/area/medical/Patient_2) "vgB" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -66962,7 +66664,7 @@ dir = 8 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "vgC" = ( /obj/structure/sink{ dir = 1; @@ -66979,7 +66681,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "vgD" = ( /obj/structure/cable/green{ d1 = 4; @@ -67000,7 +66702,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "vgZ" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -67032,11 +66734,11 @@ opacity = 0 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "vhe" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "vhg" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -67052,13 +66754,13 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "vhq" = ( /obj/structure/bed/chair/comfy/orange{ dir = 1 }, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "vht" = ( /obj/machinery/alarm{ dir = 8; @@ -67066,7 +66768,7 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "vhy" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -67075,13 +66777,13 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "vhO" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "vic" = ( /obj/structure/railing{ dir = 1 @@ -67090,14 +66792,14 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "vid" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 10 }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "vik" = ( /obj/machinery/light{ dir = 1; @@ -67105,7 +66807,7 @@ }, /obj/machinery/vending/cigarette, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "vip" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -67114,7 +66816,7 @@ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "vis" = ( /obj/structure/cable/green{ d1 = 4; @@ -67137,21 +66839,21 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "vix" = ( /obj/structure/sign/directions/engineering/solars{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "viM" = ( /obj/structure/closet/secure_closet/RD_wardrobe, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "viP" = ( /obj/random/mainttoyloot, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "viX" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -67164,14 +66866,14 @@ icon_state = "1-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "vjg" = ( /obj/structure/table/bench/glass, /obj/effect/floor_decal/spline/fancy{ dir = 9 }, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "vjp" = ( /obj/machinery/disposal/wall{ name = "1N-inset disposal unit"; @@ -67184,10 +66886,10 @@ dir = 8 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "vjD" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "vjS" = ( /obj/structure/cable/green{ d1 = 4; @@ -67201,11 +66903,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "vjX" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "vkg" = ( /obj/random/trash, /obj/machinery/power/apc{ @@ -67218,16 +66920,16 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) +/area/maintenance/Deck3_Dorms_StarChamber2) "vky" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "vkF" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "vkH" = ( /obj/structure/table/sifwoodentable, /obj/machinery/newscaster{ @@ -67235,18 +66937,18 @@ pixel_y = -30 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "vkN" = ( /obj/machinery/vending/loadout/uniform, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "vkQ" = ( /obj/machinery/atmospherics/unary/heater/sauna{ icon_state = "heater_1"; use_power = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "vlf" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -67257,7 +66959,7 @@ name = "Auto Resleever" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "vlk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -67268,19 +66970,19 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "vll" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "vly" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "vlA" = ( /obj/item/tool/wirecutters/brass, /obj/structure/table/steel, @@ -67294,7 +66996,7 @@ pixel_x = -6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "vlR" = ( /obj/machinery/button/remote/airlock{ dir = 8; @@ -67320,14 +67022,14 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "vlU" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "vmw" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -67348,7 +67050,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "vmy" = ( /obj/machinery/status_display, /obj/structure/cable/white{ @@ -67357,7 +67059,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "vmA" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable{ @@ -67366,7 +67068,7 @@ icon_state = "1-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "vmB" = ( /obj/structure/bed/chair/sofa/black{ dir = 4 @@ -67380,7 +67082,7 @@ dir = 4 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "vmE" = ( /obj/effect/floor_decal/industrial/warning/color, /obj/machinery/atmospherics/pipe/manifold/visible/black{ @@ -67397,22 +67099,22 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "vmQ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "vmS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "vmW" = ( /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "vnb" = ( /obj/structure/cable/green{ d1 = 2; @@ -67420,7 +67122,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "vni" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -67437,22 +67139,21 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "vnp" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "vnC" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "vnT" = ( -/obj/random/trash_pile, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/obj/structure/sign/poster/nanotrasen, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Lounge) "vnV" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -67463,7 +67164,7 @@ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "voc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -67477,13 +67178,13 @@ dir = 1 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "vog" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "voq" = ( /obj/structure/table/woodentable, /obj/machinery/computer/security/telescreen/entertainment{ @@ -67492,7 +67193,7 @@ pixel_y = -4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "voL" = ( /obj/structure/table/rack/steel, /obj/random/maintenance/cargo, @@ -67502,7 +67203,7 @@ /obj/random/maintenance/clean, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "voP" = ( /obj/structure/table/woodentable, /obj/item/paper_bin{ @@ -67536,7 +67237,7 @@ dir = 4 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "vpl" = ( /obj/machinery/power/apc{ dir = 1; @@ -67548,11 +67249,11 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "vpu" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "vpF" = ( /obj/machinery/light/small{ dir = 4 @@ -67563,18 +67264,24 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "vpW" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "vqf" = ( /obj/structure/table/bench/sifwooden, /obj/item/flashlight/lamp{ on = 0 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) +"vqh" = ( +/obj/random/trash_pile, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Medical_PortChamber2) "vqq" = ( /obj/structure/cable/green{ d1 = 4; @@ -67585,7 +67292,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "vqs" = ( /obj/structure/cable/green{ d1 = 2; @@ -67603,14 +67310,14 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "vqw" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Dmc-Observatory2"; network = list("Domicile") }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "vqS" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -67630,20 +67337,20 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "vqW" = ( /obj/structure/table/bench/sifwooden/padded, /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "vrt" = ( /obj/structure/table/standard, /obj/random/coin/sometimes, /obj/random/maintenance/misc, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "vrx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -67658,7 +67365,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "vrQ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -67688,7 +67395,7 @@ default_material = "lead" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "vse" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -67696,15 +67403,15 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "vsj" = ( /obj/machinery/camera/network/security{ dir = 8; c_tag = "D3-Com-Aft Hall3"; network = list("Commons") }, -/turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/turf/simulated/floor/tiled, +/area/hallway/Aft_3_Deck_Central_Corridor_1) "vsp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -67713,7 +67420,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "vsu" = ( /obj/structure/table/woodentable, /obj/item/storage/box/nifsofts_medical{ @@ -67728,7 +67435,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "vsw" = ( /obj/structure/cable/pink{ d1 = 1; @@ -67745,28 +67452,28 @@ req_one_access = list(56) }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "vsE" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "vsI" = ( /obj/item/stool/padded{ dir = 1 }, /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "vtd" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "vtf" = ( /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "vti" = ( /obj/machinery/power/apc{ dir = 8; @@ -67778,12 +67485,12 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "vto" = ( /obj/structure/table/steel, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "vtt" = ( /obj/structure/bed/chair/comfy/orange{ dir = 4 @@ -67797,7 +67504,7 @@ dir = 1 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "vtD" = ( /obj/structure/cable{ d1 = 4; @@ -67811,21 +67518,21 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "vum" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "vus" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "vuJ" = ( /obj/structure/table/woodentable, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_2) +/area/medical/Psych_Room_2) "vuW" = ( /obj/structure/cable/green{ d1 = 1; @@ -67834,7 +67541,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "vve" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -67847,7 +67554,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "vvy" = ( /obj/structure/table/marble, /obj/item/material/knife{ @@ -67859,7 +67566,7 @@ }, /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "vvG" = ( /obj/structure/cable/green{ d1 = 2; @@ -67883,15 +67590,15 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "vvH" = ( /obj/machinery/the_singularitygen/tesla, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "vvI" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "vvM" = ( /obj/structure/sink{ pixel_y = 14 @@ -67905,7 +67612,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "vvN" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -67916,20 +67623,20 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "vwy" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "vwC" = ( /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "vwH" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "vwM" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 @@ -67937,7 +67644,7 @@ /turf/simulated/floor/boxing{ name = "yoga mat" }, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "vwW" = ( /obj/machinery/power/apc{ dir = 4; @@ -67955,7 +67662,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "vxh" = ( /obj/structure/cable/green{ d1 = 1; @@ -67966,13 +67673,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "vxm" = ( /obj/structure/sign/directions/engineering/solars{ dir = 1 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "vxq" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -67981,11 +67688,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "vxz" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "vxE" = ( /obj/effect/floor_decal/emblem/nt1, /obj/structure/cable/green{ @@ -68008,15 +67715,15 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "vxI" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "vxP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "vyl" = ( /obj/effect/floor_decal/industrial/warning/color/corner{ dir = 4 @@ -68039,11 +67746,11 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "vyq" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "vyu" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -68051,19 +67758,19 @@ id = "sc-WThead3" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "vyw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "vyx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "vyE" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -68087,11 +67794,11 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "vzh" = ( /obj/machinery/papershredder, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "vzs" = ( /obj/structure/cable/green{ d1 = 4; @@ -68108,7 +67815,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "vzv" = ( /obj/structure/cable/green{ d1 = 2; @@ -68122,11 +67829,11 @@ dir = 6 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "vzW" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "vAd" = ( /obj/structure/cable/green{ d1 = 1; @@ -68136,7 +67843,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "vAk" = ( /obj/structure/cable/green{ d1 = 1; @@ -68157,7 +67864,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "vAp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -68184,7 +67891,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "vAr" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -68196,7 +67903,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "vAs" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/carpet/blue{ @@ -68209,7 +67916,7 @@ dir = 9 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "vAu" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -68236,20 +67943,20 @@ pixel_y = 31 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "vAz" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1 }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "vAA" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "vAI" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/effect/floor_decal/borderfloorwhite/corner{ @@ -68259,7 +67966,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "vAY" = ( /obj/structure/cable/green{ d1 = 4; @@ -68282,11 +67989,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "vBg" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "vBj" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Eng-2nd Engine5"; @@ -68296,31 +68003,31 @@ /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "vBA" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "vBD" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "vBM" = ( /obj/structure/sign/nosmoking_1, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Patient_3) +/area/medical/Patient_3) "vBO" = ( /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "vBV" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "vCb" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -68339,7 +68046,7 @@ id = "sc-GCbridgeLOCKDOWN" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "vCk" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -68350,19 +68057,19 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "vCq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "vCP" = ( /obj/effect/floor_decal/industrial/outline/cut_corners/yellow, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "vCX" = ( /obj/structure/cable/green{ d1 = 1; @@ -68381,14 +68088,19 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) +"vDg" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Bridge_AftStarCorridor1) "vDk" = ( /obj/structure/table/marble, /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "vDn" = ( /obj/machinery/power/apc{ dir = 1; @@ -68400,7 +68112,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "vDp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -68414,28 +68126,28 @@ }, /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "vDv" = ( /obj/machinery/atmospherics/binary/pump{ name = "CO2 to Mixing" }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "vDy" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "vDz" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "vDD" = ( /obj/effect/floor_decal/emblem/nt3, /obj/structure/cable/green{ @@ -68453,7 +68165,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "vDX" = ( /obj/machinery/light{ dir = 8; @@ -68472,11 +68184,11 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "vDY" = ( /obj/structure/sign/warning/airlock, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "vEf" = ( /obj/structure/cable/green{ d1 = 4; @@ -68494,21 +68206,21 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "vEv" = ( /obj/structure/table/marble, /obj/machinery/chemical_dispenser/bar_soft/full{ pixel_y = 22 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "vEw" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "vEA" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -68519,7 +68231,7 @@ name = "Breakroom Access" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "vEE" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner2, @@ -68530,14 +68242,14 @@ dir = 1 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "vEG" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "vEP" = ( /obj/structure/bed/chair/sofa/right/black{ dir = 4 @@ -68551,7 +68263,7 @@ dir = 6 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "vFa" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -68571,7 +68283,7 @@ pixel_y = -14 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "vFh" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -68580,7 +68292,7 @@ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "vFj" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -68611,7 +68323,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "vFo" = ( /obj/item/radio/intercom{ dir = 8; @@ -68619,11 +68331,11 @@ pixel_x = -22 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "vFA" = ( /obj/structure/closet/lawcloset, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "vGg" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -68632,32 +68344,32 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "vGI" = ( /obj/random/junk, /obj/structure/table/standard, /obj/random/maintenance/misc, /obj/random/maintenance/morestuff, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "vGJ" = ( /obj/machinery/light/small{ dir = 1 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "vGT" = ( /obj/machinery/atmospherics/tvalve/digital{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "vHd" = ( /obj/structure/table/woodentable, /obj/item/paicard, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "vHp" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -68665,7 +68377,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "vHt" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -68684,7 +68396,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "vHB" = ( /obj/structure/bed/chair/sofa/corner/green{ dir = 4 @@ -68693,22 +68405,22 @@ dir = 8 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "vHG" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "vIb" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "vIf" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "vIr" = ( /obj/structure/table/bench/marble, /obj/effect/floor_decal/spline/plain{ @@ -68718,7 +68430,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "vIu" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -68726,7 +68438,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "vID" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -68761,7 +68473,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "vIP" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -68792,7 +68504,7 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "vIQ" = ( /obj/item/stool/padded{ dir = 1 @@ -68803,7 +68515,7 @@ pixel_x = 22 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "vJa" = ( /obj/structure/cable/green{ d1 = 4; @@ -68816,14 +68528,14 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "vJb" = ( /obj/structure/table/standard, /obj/item/phone{ pixel_y = 3 }, /turf/simulated/floor/bluegrid, -/area/SouthernCrossV2/Bridge/Cyborg_Station) +/area/bridge/Cyborg_Station) "vJc" = ( /obj/structure/table/reinforced, /obj/item/tool/wrench, @@ -68834,7 +68546,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) +/area/engineering/Engine2_Canister_Storage) "vJd" = ( /obj/structure/sink{ dir = 8; @@ -68850,7 +68562,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "vJf" = ( /obj/structure/bed/chair/oldsofa/right{ dir = 4 @@ -68866,7 +68578,24 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) +"vJr" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/arrows/yellow, +/obj/effect/floor_decal/industrial/arrows/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance/int{ + name = "Kitchen Maintenance"; + req_one_access = list(28) + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/Central_Engineering_Post) "vJv" = ( /obj/item/radio/intercom{ dir = 4; @@ -68882,7 +68611,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "vJH" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -68896,12 +68625,12 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "vJS" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "vJW" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/effect/floor_decal/borderfloorwhite/corner{ @@ -68911,10 +68640,10 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "vJX" = ( /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "vJY" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Engine - Secondary Core"; @@ -68932,14 +68661,14 @@ pixel_y = 32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Substation) +/area/engineering/Engine1_Substation) "vJZ" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_1) +/area/medical/Patient_1) "vKr" = ( /obj/structure/bed/chair/sofa/left/green{ dir = 8 @@ -68948,30 +68677,27 @@ dir = 6 }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "vKL" = ( /obj/structure/table/steel, /obj/random/cash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "vKN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "vLr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "vLx" = ( -/obj/machinery/computer/arcade{ - dir = 1 - }, /obj/item/radio/intercom{ name = "1S-Station Intercom (General)"; pixel_y = -22 @@ -68979,8 +68705,11 @@ /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, +/obj/machinery/computer/arcade/battle{ + dir = 4 + }, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "vLz" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -68998,7 +68727,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "vLA" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/techfloor/corner{ @@ -69009,7 +68738,7 @@ dir = 9 }, /turf/simulated/floor/tiled/steel_ridged, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "vLC" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ @@ -69019,7 +68748,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "vLE" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -69028,20 +68757,20 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "vLO" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "vLY" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "vMd" = ( /obj/structure/sink{ dir = 8; @@ -69057,23 +68786,23 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "vMm" = ( /obj/structure/table/standard, /obj/random/medical/pillbottle, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "vMs" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "vMt" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "vMA" = ( /obj/machinery/power/apc{ dir = 8; @@ -69091,7 +68820,7 @@ icon_state = "0-2" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "vMB" = ( /obj/structure/table/glass, /obj/item/storage/box/gloves{ @@ -69117,7 +68846,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "vNr" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -69129,7 +68858,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "vNs" = ( /obj/structure/bed/chair/wood, /obj/machinery/disposal/wall{ @@ -69141,7 +68870,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "vNu" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -69167,7 +68896,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "vNy" = ( /obj/structure/cable{ d1 = 1; @@ -69179,7 +68908,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "vNY" = ( /obj/structure/closet/emergsuit_wall{ dir = 8; @@ -69189,7 +68918,7 @@ /obj/structure/flora/pottedplant/flower, /obj/structure/table/bench/marble, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "vOj" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -69198,7 +68927,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortCorridor1) +/area/maintenance/Deck3_Medical_AftPortCorridor1) "vOJ" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -69208,7 +68937,7 @@ dir = 5 }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "vOQ" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -69217,7 +68946,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "vOR" = ( /obj/structure/cable{ d1 = 1; @@ -69234,7 +68963,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "vOT" = ( /obj/machinery/atmospherics/unary/heat_exchanger{ dir = 4 @@ -69243,14 +68972,14 @@ dir = 4 }, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "vPp" = ( /obj/structure/table/woodentable, /obj/item/reagent_containers/food/snacks/baguette{ name = "Stale Baguette" }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "vPu" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/structure/sign/poster/nanotrasen{ @@ -69258,7 +68987,7 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "vPD" = ( /obj/machinery/disposal/wall{ dir = 4; @@ -69272,14 +69001,14 @@ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "vPX" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "vQk" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -69301,13 +69030,13 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "vQT" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "vRg" = ( /obj/machinery/light{ dir = 8; @@ -69318,19 +69047,19 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "vRi" = ( /obj/machinery/cell_charger, /obj/structure/table/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "vRq" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "vRw" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -69363,29 +69092,29 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "vSi" = ( /obj/structure/bed/chair/sofa/sif_ora, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "vSl" = ( /obj/structure/sign/department/medbay{ layer = 3.5; desc = "Sign of some important station compartment." }, /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor2) +/area/maintenance/Deck3_Medical_AftCorridor2) "vSq" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ dir = 1 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "vSs" = ( /obj/machinery/ai_status_display, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "vSz" = ( /obj/structure/bed/chair/sofa/corner/yellow{ dir = 4 @@ -69395,7 +69124,7 @@ pixel_y = 28 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "vSG" = ( /obj/structure/cable/green{ d1 = 1; @@ -69412,33 +69141,29 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "vSI" = ( /obj/structure/closet/emergsuit_wall{ pixel_y = 27; name = "1N-emergency suit storage" }, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "vSL" = ( /obj/structure/closet/secure_closet/personal/cabinet, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "vTb" = ( /obj/structure/toilet{ pixel_y = 12 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "vTg" = ( -/obj/structure/railing, -/obj/machinery/light{ - dir = 8; - layer = 3; - name = "1W-light fixture" - }, -/turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Medical_AftPortChamber1) "vTj" = ( /obj/structure/cable/green{ d1 = 1; @@ -69450,7 +69175,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "vTu" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/cap/visible{ @@ -69458,7 +69183,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "vTA" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 @@ -69467,10 +69192,10 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "vTE" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "vTF" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -69481,11 +69206,11 @@ network = list("Domicile") }, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "vTH" = ( /obj/structure/girder, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "vTI" = ( /obj/structure/cable/green{ d1 = 1; @@ -69494,7 +69219,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "vTY" = ( /obj/effect/floor_decal/corner/blue/diagonal{ dir = 4 @@ -69508,7 +69233,7 @@ output = 7 }, /turf/simulated/floor/reinforced/airmix, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "vUb" = ( /obj/machinery/camera/network/security{ dir = 1; @@ -69516,7 +69241,7 @@ network = list("Domicile") }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "vUd" = ( /obj/structure/bed/chair/sofa/brown{ dir = 4 @@ -69528,7 +69253,7 @@ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "vUj" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -69538,7 +69263,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "vUl" = ( /obj/structure/cable/green{ d1 = 4; @@ -69556,7 +69281,7 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "vUr" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows{ @@ -69570,7 +69295,11 @@ }, /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) +"vUt" = ( +/obj/machinery/vending/sol, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "vUL" = ( /obj/effect/floor_decal/industrial/arrows, /obj/effect/floor_decal/industrial/arrows{ @@ -69587,21 +69316,35 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "vVl" = ( /obj/random/tank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) +"vVp" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/arrows/yellow, +/obj/effect/floor_decal/industrial/arrows/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance/int, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/Deck3_Center_Port) "vVx" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/glass, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "vVU" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "vWb" = ( /obj/machinery/power/solar_control{ auto_start = 2; @@ -69613,7 +69356,7 @@ icon_state = "0-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "vWd" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -69627,7 +69370,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "vWT" = ( /obj/machinery/airlock_sensor{ pixel_y = 24 @@ -69637,13 +69380,13 @@ /obj/effect/map_helper/airlock/sensor/chamber_sensor, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "vWV" = ( /obj/effect/floor_decal/spline/fancy{ dir = 10 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "vWX" = ( /obj/machinery/vending/loadout/overwear, /obj/machinery/light{ @@ -69651,7 +69394,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "vXc" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -69662,13 +69405,13 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "vXe" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "vXl" = ( /obj/structure/table/woodentable, /obj/item/radio/intercom{ @@ -69677,25 +69420,25 @@ pixel_x = 22 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "vXz" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortCorridor1) +/area/maintenance/Deck3_Medical_AftPortCorridor1) "vXB" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "vXD" = ( /obj/random/trash, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "vXH" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "vXJ" = ( /obj/structure/cable/green{ d1 = 2; @@ -69713,18 +69456,18 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "vXP" = ( /obj/machinery/clonepod/transhuman/full, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "vXU" = ( /obj/machinery/suit_cycler/refit_only, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "vYb" = ( /obj/structure/railing/grey{ dir = 8 @@ -69747,7 +69490,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber1) +/area/maintenance/Deck3_Medical_ForChamber1) "vYr" = ( /obj/structure/cable{ d1 = 1; @@ -69769,14 +69512,14 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Substation) +/area/engineering/Engine1_Substation) "vYC" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "vYJ" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "vYL" = ( /obj/structure/cable{ d1 = 4; @@ -69784,7 +69527,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "vZb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -69792,10 +69535,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "vZm" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "vZr" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -69817,7 +69560,7 @@ layer = 3.5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "vZX" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -69827,7 +69570,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "waf" = ( /obj/structure/cable/white{ d1 = 4; @@ -69835,7 +69578,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "wai" = ( /obj/structure/flora/pottedplant/tall{ pixel_y = 10; @@ -69853,7 +69596,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "wam" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -69867,16 +69610,16 @@ icon_state = "2-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "wap" = ( /obj/structure/bed/double/padded, /obj/item/bedsheet/purpledouble, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "wat" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor1) +/area/maintenance/Deck3_Bridge_ForStarCorridor1) "waW" = ( /obj/structure/bed/double, /obj/item/bedsheet/mimedouble, @@ -69884,7 +69627,7 @@ pixel_y = 32 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Patient_1) +/area/medical/Patient_1) "waX" = ( /obj/structure/lattice, /obj/effect/catwalk_plated/techmaint, @@ -69897,7 +69640,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/random/trash, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "wbf" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -69905,12 +69648,12 @@ }, /obj/effect/floor_decal/corner/lime/diagonal, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Botanical_Shop) +/area/crew_quarters/Botanical_Shop) "wbl" = ( /obj/structure/table/glass, /obj/structure/bedsheetbin, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "wbm" = ( /obj/machinery/firealarm{ name = "N-fire alarm"; @@ -69926,23 +69669,19 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall) -"wbq" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Engine1_Access_Hall) "wbH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "wbX" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "wbY" = ( /obj/structure/bed/padded, /obj/item/bedsheet/medical, @@ -69955,7 +69694,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "wce" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -69988,7 +69727,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "wcv" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -69997,14 +69736,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "wcK" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 1 }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "wcY" = ( /obj/item/radio/intercom{ dir = 8; @@ -70023,14 +69762,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "wdk" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "wdu" = ( /obj/structure/cable/green{ d1 = 2; @@ -70053,7 +69792,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "wdv" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, /obj/machinery/meter, @@ -70064,16 +69803,16 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "wdC" = ( /obj/machinery/vending/cola/soft, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "wdO" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "wdV" = ( /obj/structure/cable/white{ d1 = 2; @@ -70081,7 +69820,7 @@ icon_state = "2-8" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "weg" = ( /obj/item/paper_bin{ pixel_x = 5 @@ -70109,7 +69848,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "weB" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/grille, @@ -70139,7 +69878,7 @@ id = "SC-GCaicore" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "weC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -70149,13 +69888,13 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "weN" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /obj/random/maintenance/cargo, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarCorridor2) +/area/maintenance/Deck3_Bridge_ForStarCorridor2) "wfg" = ( /obj/item/radio/intercom{ dir = 8; @@ -70170,12 +69909,12 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "wfj" = ( /obj/random/crate, /obj/item/petrifier, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/area/maintenance/Deck3_Medical_ForPortChamber1) "wfs" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -70184,7 +69923,7 @@ }, /obj/machinery/door/airlock/maintenance/int, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "wfu" = ( /obj/item/radio/intercom{ dir = 8; @@ -70202,7 +69941,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "wfw" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -70210,11 +69949,39 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "wfE" = ( /obj/structure/sign/nosmoking_2/burnt, /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) +"wfP" = ( +/obj/structure/table/woodentable, +/obj/item/paper_bin{ + pixel_x = 5 + }, +/obj/item/folder{ + pixel_x = -6 + }, +/obj/item/folder{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/pen/blue{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/pen/multi{ + pixel_x = 5 + }, +/obj/item/pen/red{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/structure/sign/scenery/fakefireaxe{ + pixel_y = -29 + }, +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "wfR" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/portable_atmospherics/canister/oxygen, @@ -70224,7 +69991,7 @@ name = "N-fire alarm" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "wfT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -70235,7 +70002,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "wfV" = ( /obj/machinery/station_map{ pixel_y = 32; @@ -70248,10 +70015,10 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "wfX" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "wga" = ( /obj/machinery/door/window/westright, /obj/structure/cable/green{ @@ -70260,7 +70027,7 @@ icon_state = "4-8" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "wgb" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -70279,7 +70046,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "wgt" = ( /obj/structure/cable/green{ d1 = 1; @@ -70297,16 +70064,16 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "wgy" = ( /obj/machinery/vending/loadout/costume, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "wgM" = ( /obj/structure/table/steel, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "whj" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Eng-Atmos1"; @@ -70314,7 +70081,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "whC" = ( /obj/structure/cable{ d1 = 2; @@ -70324,7 +70091,7 @@ /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "whE" = ( /obj/structure/cable/green{ d1 = 4; @@ -70339,27 +70106,27 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "whK" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "whO" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "wik" = ( /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "wit" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForCorridor1) +/area/maintenance/Deck3_Dorms_ForCorridor1) "wiE" = ( /obj/machinery/atmospherics/pipe/cap/visible{ color = "#5c1ec0"; @@ -70367,13 +70134,13 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "wiR" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "wja" = ( /obj/machinery/iv_drip, /obj/machinery/power/apc{ @@ -70401,7 +70168,7 @@ icon_state = "0-4" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Medical/Patient_3) +/area/medical/Patient_3) "wjf" = ( /obj/machinery/firealarm{ dir = 1; @@ -70415,7 +70182,7 @@ dir = 8 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "wjh" = ( /obj/structure/cable/green{ d1 = 4; @@ -70426,32 +70193,32 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "wjn" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ name = "Engineer" }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "wjB" = ( /obj/effect/catwalk_plated, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "wjD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "wjE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "wjL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -70466,7 +70233,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "wjV" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -70475,7 +70242,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "wld" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -70484,7 +70251,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "wle" = ( /obj/structure/table/bench/wooden, /obj/item/flashlight/lamp/clown{ @@ -70496,7 +70263,7 @@ pixel_x = 22 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "wlj" = ( /obj/structure/railing/grey{ color = "yellow" @@ -70506,11 +70273,11 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "wlk" = ( /obj/effect/catwalk_plated/techfloor, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Substation) +/area/engineering/Engine1_Substation) "wlX" = ( /obj/machinery/alarm{ dir = 4; @@ -70527,7 +70294,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "wma" = ( /obj/machinery/alarm{ dir = 4; @@ -70535,26 +70302,26 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "wmi" = ( /obj/structure/bed/chair/comfy/blue, /obj/effect/floor_decal/spline/fancy{ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "wmr" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "wmu" = ( /obj/structure/flora/ausbushes/brflowers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "wmx" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber1) +/area/maintenance/Deck3_Medical_ForChamber1) "wmy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -70562,7 +70329,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/beige/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "wmP" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/cable/green{ @@ -70572,7 +70339,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "wnf" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 6 @@ -70589,7 +70356,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "wnv" = ( /obj/structure/cable{ d1 = 1; @@ -70602,26 +70369,26 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Dorms_Substation) +/area/maintenance/Dorms_Substation) "wnx" = ( /obj/structure/loot_pile/surface/medicine_cabinet/fresh{ pixel_y = 25 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber1) +/area/maintenance/Deck3_Medical_ForStarChamber1) "wnH" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "wnQ" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "wnR" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "woe" = ( /obj/machinery/light/floortube{ dir = 8; @@ -70639,7 +70406,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "wof" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -70648,7 +70415,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "wok" = ( /obj/structure/cable/green{ d1 = 1; @@ -70668,7 +70435,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "wol" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloorwhite, @@ -70678,18 +70445,23 @@ /obj/effect/floor_decal/corner/white/bordercorner2{ dir = 9 }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "woC" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "woS" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "wpa" = ( /obj/structure/table/steel, /obj/machinery/camera/network/security{ @@ -70705,11 +70477,11 @@ pixel_y = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "wpp" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "wpr" = ( /obj/structure/cable/green{ d1 = 1; @@ -70717,7 +70489,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "wpu" = ( /obj/structure/cable/white{ d1 = 1; @@ -70745,7 +70517,7 @@ icon_state = "E-W-Pass" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "wpU" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -70754,7 +70526,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "wqb" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/corner/blue{ @@ -70765,7 +70537,7 @@ network = list("engineering") }, /turf/simulated/floor/reinforced/airmix, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "wqe" = ( /obj/structure/cable/green{ d1 = 1; @@ -70777,13 +70549,13 @@ dir = 5 }, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "wqg" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "wqn" = ( /obj/structure/railing/grey{ dir = 1 @@ -70825,7 +70597,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "wre" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -70834,7 +70606,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "wrk" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -70854,7 +70626,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Central_Restroom) +/area/crew_quarters/Central_Restroom) "wro" = ( /obj/machinery/power/apc{ dir = 1; @@ -70866,7 +70638,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "wrx" = ( /obj/structure/table/rack/steel, /obj/random/maintenance/misc, @@ -70874,11 +70646,11 @@ /obj/random/maintenance/engineering, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "wry" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "wrC" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -70900,7 +70672,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "wrU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -70908,12 +70680,12 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "wsh" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "wsw" = ( /obj/structure/cable/green{ d1 = 1; @@ -70930,11 +70702,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "wsG" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "wsJ" = ( /obj/machinery/power/apc{ dir = 1; @@ -70957,7 +70729,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "wsL" = ( /obj/structure/particle_accelerator/end_cap{ dir = 8 @@ -70969,7 +70741,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "wsV" = ( /obj/machinery/computer/scan_consolenew{ dir = 8 @@ -70987,15 +70759,15 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "wtj" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "wtq" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) +/area/maintenance/Deck3_Dorms_StarChamber2) "wty" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 @@ -71004,7 +70776,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "wtF" = ( /obj/machinery/light{ dir = 1; @@ -71017,7 +70789,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "wtQ" = ( /obj/structure/cable/green{ d1 = 4; @@ -71028,19 +70800,19 @@ dir = 5 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "wtR" = ( /obj/structure/bed/chair/wood{ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "wuc" = ( /obj/effect/landmark{ name = "maint_pred" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "wuj" = ( /obj/machinery/atmospherics/pipe/cap/visible{ color = "#00ff00" @@ -71049,10 +70821,10 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "wul" = ( /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "wuI" = ( /obj/structure/table/woodentable, /obj/machinery/computer/security/telescreen/entertainment{ @@ -71065,7 +70837,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "wuJ" = ( /obj/structure/cable/green{ d1 = 1; @@ -71093,7 +70865,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "wvf" = ( /obj/machinery/atmospherics/binary/pump/on{ name = "Air to Ports" @@ -71109,7 +70881,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "wvs" = ( /obj/structure/table/rack/shelf/steel, /obj/item/storage/box/syringegun{ @@ -71143,7 +70915,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "wvz" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -71153,12 +70925,12 @@ }, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "wvD" = ( /obj/random/trash, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "wvG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -71169,23 +70941,23 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_1_Corridor) +/area/engineering/Deck3_1_Corridor) "wvJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "wvZ" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "wwd" = ( /obj/structure/bed/chair/sofa/right/sif_ora, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "wwo" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -71193,11 +70965,11 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "wwv" = ( /obj/structure/sign/level/three/large, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "wwM" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -71221,13 +70993,13 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "wxt" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "wxB" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -71236,32 +71008,17 @@ icon_state = "1-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "wxE" = ( /obj/structure/dispenser/oxygen, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "wxU" = ( /obj/machinery/vending/snack, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "wyr" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/light_switch{ - pixel_x = 27; - pixel_y = -12; - name = "E-light switch"; - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -71269,7 +71026,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "wyH" = ( /obj/structure/cable/green{ d1 = 4; @@ -71277,13 +71034,13 @@ icon_state = "4-8" }, /turf/simulated/floor/wood/alt/broken, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "wyT" = ( /obj/effect/floor_decal/spline/fancy{ dir = 5 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "wyV" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -71295,13 +71052,13 @@ name = "Medical Doctor" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "wzl" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber1) +/area/maintenance/Deck3_Engineering_AftStarChamber1) "wzt" = ( /obj/structure/cable/white{ d1 = 2; @@ -71309,7 +71066,7 @@ icon_state = "2-4" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "wzy" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -71318,17 +71075,17 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) "wzA" = ( /obj/effect/floor_decal/spline/fancy{ dir = 4 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "wzO" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "wzX" = ( /obj/structure/bed/double/padded, /obj/item/bedsheet/double, @@ -71336,18 +71093,18 @@ dir = 4 }, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "wAy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 9 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "wAG" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/closet/crate/solar, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "wAH" = ( /obj/item/radio/intercom{ dir = 1; @@ -71361,7 +71118,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "wAN" = ( /obj/structure/cable/white{ d1 = 1; @@ -71369,7 +71126,7 @@ icon_state = "1-2" }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "wAQ" = ( /obj/item/geiger/wall/east, /obj/effect/floor_decal/borderfloorblack{ @@ -71379,18 +71136,18 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "wAW" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/bodybag/large, /obj/effect/floor_decal/borderfloorblack{ dir = 10 }, /obj/effect/floor_decal/corner/paleblue/border{ dir = 10 }, +/obj/machinery/r_n_d/protolathe/medical, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "wBa" = ( /obj/structure/cable/green{ d1 = 2; @@ -71406,10 +71163,10 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Dorms_Substation) +/area/maintenance/Dorms_Substation) "wBn" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "wBp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -71418,7 +71175,7 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "wBu" = ( /obj/structure/table/wooden_reinforced, /obj/item/retail_scanner/command{ @@ -71433,7 +71190,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "wBw" = ( /obj/machinery/shower{ pixel_y = 16 @@ -71445,7 +71202,7 @@ /obj/machinery/door/window/westright, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "wBF" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/yellow{ @@ -71454,14 +71211,14 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "wBQ" = ( /obj/effect/catwalk_plated, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "wBR" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -71478,7 +71235,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "wCh" = ( /obj/structure/window/plastitanium{ dir = 8 @@ -71487,16 +71244,13 @@ dir = 1 }, /obj/structure/table/darkglass, -/obj/item/grenade/spawnergrenade/casino/otie/chubby{ - pixel_y = -1; - pixel_x = 4 - }, /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, -/turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/obj/item/soulstone, +/turf/simulated/floor/wood/alt/parquet/turfpack/airless, +/area/bridge/Captain_Office) "wCi" = ( /obj/structure/cable/cyan{ d1 = 2; @@ -71529,7 +71283,7 @@ name = "Engine Hallway Access" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "wCK" = ( /obj/machinery/light/small{ dir = 8 @@ -71541,14 +71295,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Aft) +/area/hallway/Stairwell_Aft) "wDo" = ( /obj/structure/sign/directions/engineering/atmospherics{ pixel_y = -9; dir = 1 }, /turf/simulated/wall, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "wDF" = ( /obj/structure/dispenser/phoron, /obj/machinery/alarm{ @@ -71559,10 +71313,10 @@ /obj/effect/floor_decal/corner/lightorange/border, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) +/area/engineering/Engine2_Canister_Storage) "wDV" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "wEC" = ( /obj/structure/cable/green{ d1 = 4; @@ -71577,7 +71331,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "wEE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -71618,7 +71372,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "wFc" = ( /obj/structure/cable/green{ d1 = 1; @@ -71635,7 +71389,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForChamber1) +/area/maintenance/Deck3_Bridge_ForChamber1) "wFf" = ( /obj/effect/catwalk_plated, /obj/machinery/button/remote/blast_door{ @@ -71646,20 +71400,20 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "wFk" = ( /obj/structure/closet/secure_closet/personal/cabinet, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "wFl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "wFm" = ( /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "wFq" = ( /obj/machinery/disposal/wall{ dir = 1; @@ -71670,7 +71424,7 @@ dir = 8 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "wFC" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -71679,14 +71433,14 @@ dir = 4 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "wFS" = ( /obj/machinery/light/small{ dir = 1 }, /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "wFZ" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/button/remote/airlock{ @@ -71697,18 +71451,13 @@ specialfunctions = 4 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "wGk" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/borderfloor/corner2, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -71716,15 +71465,20 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central2{ dir = 1 }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "wGB" = ( /obj/item/modular_computer/console/preset/command{ dir = 1 }, /obj/structure/window/reinforced/tinted/frosted, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "wGF" = ( /obj/structure/cable/green{ d1 = 1; @@ -71738,11 +71492,11 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "wGL" = ( /obj/structure/closet/secure_closet/personal/cabinet, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "wGS" = ( /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 @@ -71752,23 +71506,23 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "wGW" = ( /obj/structure/table/wooden_reinforced, /obj/effect/floor_decal/spline/fancy{ dir = 1 }, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "wGX" = ( /obj/structure/bed/chair/bay/chair/padded/red/smallnest, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "wHk" = ( /obj/structure/railing, /obj/structure/lattice, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "wHN" = ( /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/borderfloor/corner2{ @@ -71778,11 +71532,11 @@ dir = 1 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "wHO" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "wHS" = ( /obj/structure/cable/cyan{ d1 = 2; @@ -71796,11 +71550,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) +/area/engineering/Engine2_Canister_Storage) "wHW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "wIl" = ( /obj/structure/table/woodentable, /obj/machinery/firealarm{ @@ -71812,7 +71566,7 @@ name = "1S-light fixture" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "wIm" = ( /obj/machinery/sleeper{ dir = 8 @@ -71826,7 +71580,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "wIK" = ( /obj/machinery/power/apc{ dir = 4; @@ -71838,7 +71592,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "wIR" = ( /obj/structure/cable/green{ d1 = 1; @@ -71853,14 +71607,14 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "wIV" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "wJd" = ( /obj/structure/closet/secure_closet/personal/cabinet, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "wJg" = ( /obj/structure/cable/green{ d1 = 1; @@ -71884,14 +71638,14 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "wJl" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "wJt" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -71918,7 +71672,7 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "wJE" = ( /obj/structure/cable/green{ d1 = 4; @@ -71937,33 +71691,16 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor2) +/area/maintenance/Deck3_Medical_AftCorridor2) "wJV" = ( /obj/structure/table/standard, /obj/random/maintenance/medical, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortChamber1) -"wJY" = ( -/obj/structure/table/marble, -/obj/machinery/microwave{ - pixel_y = 18 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/maintenance/Deck3_Dorms_PortChamber1) "wKh" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor2) +/area/maintenance/Deck3_Engineering_AftStarCorridor2) "wKi" = ( /obj/machinery/computer/general_air_control{ frequency = 1441; @@ -71977,13 +71714,13 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Atmospherics_Control_Room) +/area/engineering/Atmospherics_Control_Room) "wKm" = ( /obj/structure/bed/chair/wood{ dir = 1 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "wKG" = ( /obj/structure/bed/chair/oldsofa{ dir = 8 @@ -71994,7 +71731,7 @@ pixel_x = 22 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "wKP" = ( /obj/structure/cable/pink{ d1 = 4; @@ -72006,7 +71743,7 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "wLg" = ( /obj/structure/table/sifwoodentable, /obj/item/gps/science/rd, @@ -72015,7 +71752,7 @@ pixel_y = 25 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "wLz" = ( /obj/structure/table/steel, /obj/item/storage/box/flare{ @@ -72043,7 +71780,7 @@ pixel_x = -5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "wLB" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Engine - Secondary Main"; @@ -72061,13 +71798,13 @@ pixel_y = 32 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Substation) +/area/engineering/Engine1_Substation) "wLN" = ( /obj/structure/bed/chair/sofa/left/beige{ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "wLU" = ( /obj/machinery/vending/snack, /obj/machinery/light{ @@ -72079,11 +71816,11 @@ }, /obj/effect/floor_decal/borderfloorblack/full, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "wLV" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "wMb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -72093,7 +71830,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "wMi" = ( /obj/effect/floor_decal/industrial/arrows/blue, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -72113,7 +71850,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "wMq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -72122,7 +71859,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "wMC" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -72144,7 +71881,7 @@ pixel_y = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "wMD" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil/random{ @@ -72171,7 +71908,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "wMN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -72183,7 +71920,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "wMP" = ( /obj/structure/table/marble, /obj/item/storage/box/glasses/coffeecup{ @@ -72203,7 +71940,7 @@ pixel_x = -10 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "wMX" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -72230,7 +71967,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "wNb" = ( /obj/structure/railing, /obj/machinery/light{ @@ -72240,7 +71977,7 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "wNx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -72249,12 +71986,12 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "wNz" = ( /obj/structure/loot_pile/maint/junk, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "wNN" = ( /obj/structure/table/hardwoodtable, /obj/item/hand_tele{ @@ -72271,7 +72008,7 @@ pixel_x = 22 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "wOb" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -72291,7 +72028,7 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "wOh" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -72299,7 +72036,7 @@ id = "sc-WThead1" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "wOi" = ( /obj/structure/railing/grey{ dir = 4 @@ -72322,7 +72059,7 @@ dir = 9 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Medical/Patient_3) +/area/medical/Patient_3) "wOJ" = ( /obj/effect/floor_decal/industrial/warning/color, /obj/machinery/atmospherics/pipe/simple/visible/black{ @@ -72333,7 +72070,7 @@ "wOW" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "wPe" = ( /obj/item/radio/intercom{ dir = 8; @@ -72347,7 +72084,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "wPn" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -72358,23 +72095,23 @@ dir = 4 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "wPv" = ( /obj/structure/fitness/weightlifter, /turf/simulated/floor/boxing/gym, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "wPw" = ( /obj/structure/bed/chair/comfy/blue{ dir = 1 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "wPJ" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "wPR" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/reinforced/airless, @@ -72384,7 +72121,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Engine1_Control_Room) +/area/engineering/Engine1_Control_Room) "wQd" = ( /obj/machinery/shower{ dir = 1 @@ -72400,7 +72137,7 @@ }, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "wQh" = ( /obj/structure/cable/green{ d1 = 1; @@ -72413,7 +72150,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "wQH" = ( /obj/effect/floor_decal/industrial/warning{ layer = 3 @@ -72426,17 +72163,17 @@ dir = 6 }, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "wRh" = ( /obj/structure/bed/chair/oldsofa{ dir = 1 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "wRm" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/carpet/sblucarpet, -/area/SouthernCrossV2/Medical/Psych_Room_1) +/area/medical/Psych_Room_1) "wRo" = ( /obj/machinery/power/apc{ dir = 8; @@ -72460,7 +72197,7 @@ icon_state = "0-4" }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "wRt" = ( /obj/machinery/power/apc{ dir = 8; @@ -72472,7 +72209,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "wRD" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -72489,7 +72226,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "wRF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -72513,11 +72250,11 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "wRG" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Chamber1) +/area/maintenance/Deck3_Dorms_ForPort_Chamber1) "wRH" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -72528,7 +72265,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "wSi" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4; @@ -72537,7 +72274,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "wSp" = ( /obj/structure/window/reinforced{ dir = 8 @@ -72619,7 +72356,7 @@ network = list("Bridge","Science") }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/AI_Upload_Hall) +/area/bridge/AI_Upload_Hall) "wSq" = ( /obj/structure/cable/green{ d1 = 1; @@ -72631,16 +72368,16 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "wSr" = ( /obj/structure/table/standard, /obj/random/tool/powermaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "wSt" = ( /obj/machinery/vending/wardrobe/lawdrobe, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "wSA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -72648,7 +72385,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "wSC" = ( /obj/structure/table/glass, /obj/structure/bedsheetbin, @@ -72661,7 +72398,7 @@ dir = 10 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "wSF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -72670,11 +72407,11 @@ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "wSI" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "wSU" = ( /obj/machinery/portable_atmospherics/canister/phoron, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -72684,49 +72421,7 @@ pixel_x = 25 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine2_Canister_Storage) -"wTa" = ( -/obj/structure/table/marble, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/item/packageWrap{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/packageWrap, -/obj/item/clothing/head/hairnet{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/item/clothing/head/hairnet{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/toy/figure/chef{ - pixel_y = 7; - pixel_x = -6 - }, -/obj/item/clothing/head/hairnet{ - pixel_x = -1; - pixel_y = 8 - }, -/obj/item/clothing/head/hairnet{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/engineering/Engine2_Canister_Storage) "wTj" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -72746,14 +72441,14 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "wTn" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/area/harbor/Star_3_Deck_Airlock_Access) "wTp" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -72783,7 +72478,7 @@ default_material = "lead" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Access_Hall) +/area/engineering/Engine2_Access_Hall) "wTt" = ( /obj/structure/cable/green{ d1 = 1; @@ -72800,7 +72495,7 @@ dir = 5 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "wTu" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 6 @@ -72812,14 +72507,14 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "wTy" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "wUh" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -72840,7 +72535,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "wUl" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -72859,7 +72554,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "wUB" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -72877,10 +72572,10 @@ icon_state = "4-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_ForStar) +/area/engineering/Solar_Array_ForStar) "wUP" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "wUU" = ( /obj/machinery/shower{ dir = 1 @@ -72894,16 +72589,13 @@ /obj/machinery/door/window/northright, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "wUV" = ( -/obj/item/radio/intercom{ - name = "1S-Station Intercom (General)"; - pixel_y = -22 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, -/obj/machinery/chem_master/condimaster, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/turf/simulated/floor/carpet/brown, +/area/crew_quarters/Chomp_Stage) "wVc" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -72930,7 +72622,7 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "wVz" = ( /obj/structure/table/woodentable, /obj/item/toy/eight_ball, @@ -72938,12 +72630,12 @@ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "wVH" = ( /obj/item/toy/nanotrasenballoon, /obj/structure/table/marble, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "wVM" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -72954,11 +72646,11 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "wVX" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "wWa" = ( /obj/structure/cable/green{ d1 = 1; @@ -72976,7 +72668,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "wWb" = ( /obj/machinery/power/apc{ dir = 8; @@ -72985,11 +72677,11 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "wWi" = ( /obj/effect/graffitispawner, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "wWn" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -72998,7 +72690,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "wWp" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -73022,26 +72714,26 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Port) +/area/hallway/Stairwell_Port) "wWP" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "wXo" = ( /obj/machinery/status_display, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "wYp" = ( /obj/machinery/pointdefense_control{ id_tag = "PD Secondary" }, /turf/simulated/floor/bluegrid, -/area/SouthernCrossV2/Bridge/Server_Room) +/area/bridge/Server_Room) "wYv" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "wYA" = ( /obj/machinery/power/apc{ dir = 8; @@ -73050,7 +72742,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber3) +/area/maintenance/Deck3_Engineering_AftStarChamber3) "wYH" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -73070,14 +72762,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "wYO" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "wYP" = ( /obj/structure/cable/green{ d1 = 1; @@ -73087,28 +72779,31 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, -/obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, /obj/effect/floor_decal/corner/beige/bordercorner{ dir = 4 }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "wYT" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "wYU" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "wZe" = ( /obj/structure/cable/green{ d1 = 2; @@ -73133,14 +72828,13 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "wZl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/effect/floor_decal/stairs/wood_stairs{ + dir = 8 }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/turf/simulated/floor/wood/alt, +/area/crew_quarters/Chomp_Stage) "wZy" = ( /obj/structure/cable/green{ d1 = 1; @@ -73159,7 +72853,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "wZL" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 8 @@ -73168,11 +72862,11 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "wZN" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "xab" = ( /obj/structure/railing/grey{ color = "yellow" @@ -73181,7 +72875,7 @@ /obj/machinery/atmospherics/pipe/zpipe/down/supply, /obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "xac" = ( /obj/structure/cable/green{ d1 = 1; @@ -73195,7 +72889,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "xad" = ( /obj/structure/cable/green{ d1 = 1; @@ -73205,11 +72899,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "xam" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "xaF" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -73218,7 +72912,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "xbf" = ( /obj/structure/bed/chair/office/light, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -73228,7 +72922,7 @@ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "xbg" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor/glass, @@ -73252,7 +72946,7 @@ default_material = "lead" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "xbs" = ( /obj/structure/cable/green{ d1 = 4; @@ -73274,22 +72968,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "xbu" = ( /obj/random/trash_pile, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber2) -"xbv" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/maintenance/Deck3_Dorms_StarChamber2) "xbx" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -73309,18 +72993,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "xbD" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "xbI" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "xbN" = ( /obj/structure/cable/green{ d1 = 4; @@ -73335,7 +73019,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "xbY" = ( /obj/structure/sink{ dir = 4; @@ -73350,7 +73034,7 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "xce" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/structure/cable/green{ @@ -73360,15 +73044,15 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/grass, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "xcm" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/beige/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "xco" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "xcG" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -73379,20 +73063,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "xcP" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/gate/thin{ - id = "sc-GCkitchen"; - layer = 3.3; - name = "Kitchen Shutters"; - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/effect/floor_decal/industrial/hatch/blue, +/turf/simulated/floor/plating, +/area/engineering/Central_Engineering_Post) "xcU" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -73402,19 +73078,19 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "xdc" = ( /obj/structure/toilet{ pixel_y = 12 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "xdf" = ( /obj/machinery/pointdefense_control{ id_tag = "PD Primary" }, /turf/simulated/floor/bluegrid, -/area/SouthernCrossV2/Bridge/Server_Room) +/area/bridge/Server_Room) "xdo" = ( /obj/structure/window/plastitanium{ dir = 8 @@ -73425,8 +73101,8 @@ pixel_y = 5; icon_state = "technomancer_core_old" }, -/turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/turf/simulated/floor/wood/alt/parquet/turfpack/airless, +/area/bridge/Captain_Office) "xdq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -73434,7 +73110,7 @@ /obj/machinery/portable_atmospherics/canister/air, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "xdD" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/disposalpipe/segment, @@ -73445,7 +73121,7 @@ network = list("Commons") }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "xdI" = ( /obj/structure/railing{ dir = 8 @@ -73455,7 +73131,7 @@ network = list("Medical") }, /turf/simulated/open, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "xdJ" = ( /obj/machinery/atm{ name = "1W-Automatic Teller Machine"; @@ -73469,8 +73145,9 @@ /obj/effect/floor_decal/corner/beige/bordercorner{ dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "xei" = ( /obj/structure/table/steel, /obj/machinery/light{ @@ -73491,7 +73168,7 @@ pixel_x = -12 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine3_Control_Room) +/area/engineering/Engine3_Control_Room) "xeq" = ( /obj/structure/cable/green{ d1 = 1; @@ -73509,7 +73186,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "xes" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 9 @@ -73520,7 +73197,7 @@ /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/corner/green/bordercorner, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "xex" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -73532,7 +73209,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "xeL" = ( /obj/structure/cable{ d1 = 1; @@ -73546,7 +73223,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "xeN" = ( /obj/machinery/door/window/northleft{ layer = 2.9 @@ -73555,7 +73232,7 @@ dir = 1 }, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "xeQ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -73576,7 +73253,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "xeT" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -73587,11 +73264,11 @@ icon_state = "1-2" }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "xfg" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber1) +/area/maintenance/Deck3_Medical_ForChamber1) "xfi" = ( /obj/structure/cable/green{ d1 = 1; @@ -73602,14 +73279,14 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "xfF" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, /turf/simulated/floor/carpet/tealcarpet, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "xgb" = ( /obj/structure/cable/green{ d1 = 1; @@ -73628,7 +73305,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "xgf" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -73637,11 +73314,11 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "xgk" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "xgl" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -73660,7 +73337,7 @@ dir = 9 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Cyborg_Station) +/area/bridge/Cyborg_Station) "xgw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -73671,7 +73348,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_09) +/area/crew_quarters/sleeping/Dormitory_09) "xgH" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/effect/floor_decal/corner/white{ @@ -73682,7 +73359,7 @@ id_tag = "SC-n2o_sensor" }, /turf/simulated/floor/reinforced/n20, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "xgI" = ( /obj/structure/sign/directions/engineering/solars{ dir = 1; @@ -73693,7 +73370,7 @@ pixel_y = 9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Engineering/Solar_Control_ForPort) +/area/engineering/Solar_Control_ForPort) "xgK" = ( /obj/structure/window/reinforced{ dir = 1; @@ -73708,22 +73385,22 @@ dir = 1 }, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "xgV" = ( /obj/machinery/space_heater, /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber1) +/area/maintenance/Deck3_Medical_AftPortChamber1) "xhg" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "xhm" = ( /obj/structure/closet/firecloset/full/atmos, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "xht" = ( /obj/structure/transit_tube_pod, /obj/structure/transit_tube{ @@ -73739,7 +73416,7 @@ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "xhJ" = ( /obj/structure/window/reinforced/tinted/frosted{ dir = 8 @@ -73748,7 +73425,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "xiD" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 @@ -73757,11 +73434,17 @@ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "xiI" = ( -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/obj/structure/bed/chair/backed_grey{ + color = "grey"; + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/carpet/brown, +/area/crew_quarters/Chomp_Stage) "xiO" = ( /obj/machinery/airlock_sensor{ pixel_y = 24 @@ -73769,7 +73452,7 @@ /obj/effect/map_helper/airlock/sensor/chamber_sensor, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "xiP" = ( /obj/machinery/power/apc{ dir = 8; @@ -73782,11 +73465,11 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Port_3_Deck_Airlock_Access) +/area/harbor/Port_3_Deck_Airlock_Access) "xiQ" = ( /obj/machinery/floodlight, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarCorridor1) +/area/maintenance/Deck3_Engineering_AftStarCorridor1) "xiT" = ( /obj/machinery/atmospherics/unary/vent_pump/engine{ dir = 4; @@ -73802,7 +73485,7 @@ /turf/simulated/floor/reinforced/nitrogen{ nitrogen = 82.1472 }, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "xiW" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -73814,7 +73497,7 @@ }, /obj/machinery/bluespace_beacon, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "xjc" = ( /obj/structure/sign/directions/engineering/reactor{ dir = 8 @@ -73824,7 +73507,7 @@ pixel_y = 9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "xjz" = ( /obj/machinery/firealarm{ dir = 8; @@ -73836,10 +73519,10 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "xjF" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "xjG" = ( /obj/item/modular_computer/console/preset/civilian, /obj/effect/floor_decal/borderfloorblack{ @@ -73849,13 +73532,13 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "xjR" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "xjX" = ( /obj/structure/cable/green{ d1 = 2; @@ -73871,7 +73554,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "xkb" = ( /obj/effect/catwalk_plated, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -73881,7 +73564,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "xko" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -73894,7 +73577,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "xku" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -73904,7 +73587,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "xkS" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/machinery/light{ @@ -73913,7 +73596,7 @@ name = "1W-light fixture" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "xkT" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -73933,7 +73616,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftPortChamber2) +/area/maintenance/Deck3_Medical_AftPortChamber2) "xkW" = ( /obj/structure/table/woodentable, /obj/item/deck/cah{ @@ -73946,20 +73629,20 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/oracarpet, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "xli" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "xlk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "xlo" = ( /obj/structure/cable/green{ d1 = 4; @@ -73973,7 +73656,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "xlt" = ( /obj/machinery/atmospheric_field_generator/perma/underdoors{ color = "Yellow" @@ -73986,13 +73669,13 @@ id_tag = "sc-DBsauna" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "xlN" = ( /obj/structure/bed/chair/sofa/right/green{ dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "xlY" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -74000,10 +73683,10 @@ }, /obj/machinery/light/small, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "xmc" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber1) +/area/maintenance/Deck3_Dorms_ForStarChamber1) "xmh" = ( /obj/structure/undies_wardrobe, /obj/machinery/alarm{ @@ -74019,7 +73702,7 @@ pixel_y = 18 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "xml" = ( /obj/structure/table/rack/shelf, /obj/item/storage/toolbox/emergency{ @@ -74067,7 +73750,7 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "xmL" = ( /obj/structure/cable/green{ d1 = 1; @@ -74080,29 +73763,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) -"xmQ" = ( -/obj/structure/table/rack/shelf, -/obj/random/maintenance/engineering, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/obj/random/maintenance/morestuff, -/obj/random/medical/lite, -/obj/random/trash, -/obj/random/drinkbottle, -/obj/random/drinkbottle, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/bridge/Embassy) "xmR" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber2) +/area/maintenance/Deck3_Medical_PortChamber2) "xnf" = ( /obj/structure/railing{ dir = 4 }, /obj/structure/railing, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "xnk" = ( /obj/structure/table/sifwoodentable, /obj/item/flashlight/lamp/clown{ @@ -74110,7 +73781,7 @@ on = 0 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "xnq" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -74126,23 +73797,27 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Access_Hall) +/area/engineering/Engine1_Access_Hall) "xnt" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "xnB" = ( -/obj/machinery/light/small{ - dir = 1 +/obj/structure/ladder{ + pixel_y = 3 }, -/obj/structure/table/rack/steel, -/turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/sign/small/warning/emerg_only{ + desc = "Ladder for emergency use only"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/Deck3_Center_Star) "xnN" = ( /obj/structure/table/steel, /obj/item/tool/wrench, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "xnP" = ( /obj/effect/floor_decal/industrial/warning/color/corner{ dir = 8 @@ -74165,7 +73840,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_4) +/area/crew_quarters/Dorm_Corridor_4) "xob" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -74185,7 +73860,7 @@ desc = "A heavily reinforced gate, sector lockdown!" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Port_3_Deck_Stairwell) +/area/hallway/Port_3_Deck_Stairwell) "xoh" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/corner/blue{ @@ -74193,7 +73868,7 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/reinforced/airmix, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "xom" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -74201,7 +73876,7 @@ }, /obj/machinery/light/small, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "xoy" = ( /obj/structure/table/steel, /obj/item/stack/cable_coil/yellow, @@ -74210,12 +73885,12 @@ pixel_x = 2 }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_ForStar) +/area/engineering/Solar_Control_ForStar) "xoK" = ( /obj/effect/floor_decal/techfloor/orange, /obj/effect/floor_decal/techfloor/hole, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "xoU" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -74228,20 +73903,20 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "xpa" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 9 }, /obj/machinery/meter, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "xpe" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "xpl" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -74263,7 +73938,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "xpo" = ( /obj/structure/cable/green{ d1 = 1; @@ -74285,7 +73960,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "xpu" = ( /obj/structure/sign/flag/nt/left{ pixel_y = 32 @@ -74295,12 +73970,12 @@ network = list("Bridge") }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "xpv" = ( /obj/effect/floor_decal/corner/lime/full, /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "xpL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -74309,7 +73984,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "xpM" = ( /obj/structure/cable{ d1 = 1; @@ -74327,7 +74002,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "xpO" = ( /obj/machinery/atmospherics/tvalve/mirrored{ dir = 4; @@ -74335,7 +74010,7 @@ }, /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "xpQ" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/machinery/camera/network/security{ @@ -74344,14 +74019,14 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "xqC" = ( /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "xqE" = ( /obj/effect/catwalk_plated/techmaint, -/turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber1) +/turf/simulated/floor/glass/reinforced, +/area/maintenance/Deck3_Medical_ForPortChamber1) "xqN" = ( /obj/structure/cable/green{ d1 = 4; @@ -74368,7 +74043,7 @@ dir = 1 }, /turf/simulated/floor/tiled/kafel_full/blue, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "xqW" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ frequency = 1381; @@ -74380,10 +74055,10 @@ /obj/effect/floor_decal/industrial/outline/blue, /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "xrc" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "xrh" = ( /obj/structure/cable/green{ d1 = 4; @@ -74399,7 +74074,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/beige/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "xrp" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ @@ -74407,7 +74082,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "xrr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 5 @@ -74422,14 +74097,14 @@ dir = 8 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "xrz" = ( /obj/structure/bed/chair/backed_grey{ color = "grey"; dir = 4 }, /turf/simulated/floor/tiled/kafel_full/green, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "xrD" = ( /obj/machinery/power/apc{ dir = 4; @@ -74441,40 +74116,35 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "xrZ" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "xsj" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "xso" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "xsr" = ( /obj/structure/sign/directions/dorms{ pixel_y = -9 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "xsz" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ pixel_x = -1; pixel_y = 1 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -74486,7 +74156,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "xsF" = ( /obj/machinery/alarm{ dir = 1; @@ -74509,12 +74179,12 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "xsJ" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "xsQ" = ( /obj/effect/floor_decal/techfloor/orange, /obj/effect/floor_decal/techfloor/hole, @@ -74522,14 +74192,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "xsY" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "xti" = ( /obj/structure/bed/double/padded{ pixel_y = 25 @@ -74543,13 +74213,13 @@ dir = 4 }, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "xtj" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 6 }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "xtm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -74564,7 +74234,7 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "xtq" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -74575,28 +74245,28 @@ dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "xtt" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "xtR" = ( /obj/machinery/atmospherics/trinary/atmos_filter{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "xuO" = ( /obj/structure/girder, /obj/random/curseditem, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Chamber1) +/area/maintenance/Deck3_Bridge_ForPort_Chamber1) "xvb" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "xvd" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, @@ -74609,7 +74279,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "xvg" = ( /obj/structure/table/glass, /obj/machinery/alarm{ @@ -74619,14 +74289,14 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "xvk" = ( /obj/structure/sign/directions/command{ dir = 4; layer = 3.5 }, /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "xvl" = ( /obj/structure/sink{ dir = 8; @@ -74642,7 +74312,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "xvr" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ @@ -74650,7 +74320,7 @@ }, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "xvu" = ( /obj/structure/cable/green{ d1 = 1; @@ -74670,43 +74340,43 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "xvC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "xvG" = ( /obj/machinery/airlock_sensor{ pixel_y = 24 }, /obj/effect/map_helper/airlock/sensor/chamber_sensor, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "xvN" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 6 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "xvY" = ( /obj/machinery/light{ dir = 4; name = "1E-light fixture" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "xwj" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForPort_Corridor1) +/area/maintenance/Deck3_Dorms_ForPort_Corridor1) "xwB" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "xwE" = ( /obj/structure/cable/green{ d1 = 1; @@ -74723,14 +74393,14 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/RD_Quarters) +/area/bridge/sleeping/RD_Quarters) "xwQ" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "xwX" = ( /obj/structure/cable/green{ d1 = 2; @@ -74744,7 +74414,7 @@ dir = 10 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "xxk" = ( /obj/machinery/power/apc{ dir = 4; @@ -74768,7 +74438,7 @@ icon_state = "0-8" }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "xxD" = ( /obj/structure/sink{ dir = 8; @@ -74783,7 +74453,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_08) +/area/crew_quarters/sleeping/Dormitory_08) "xxJ" = ( /obj/machinery/light{ dir = 8; @@ -74794,7 +74464,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "xyc" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -74811,21 +74481,21 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "xyg" = ( /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "xym" = ( /obj/structure/disposalpipe/segment, /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "xys" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "xyB" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/shuttle/blue{ @@ -74838,7 +74508,7 @@ sortType = "Bridge" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "xyE" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -74855,14 +74525,14 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "xyN" = ( /obj/structure/table/glass, /obj/item/storage/box/monkeycubes/farwacubes, /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "xyW" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -74871,12 +74541,17 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_2) +/area/crew_quarters/Dorm_Corridor_2) +"xzh" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/Deck3_Bridge_ForPort_Corridor1) "xzq" = ( /obj/structure/table/glass, /obj/item/binoculars, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "xzs" = ( /obj/structure/table/sifwoodentable, /obj/machinery/computer/security/telescreen/entertainment{ @@ -74885,7 +74560,7 @@ pixel_y = -4 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "xzy" = ( /obj/structure/cable/green{ d1 = 1; @@ -74906,24 +74581,24 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Dorms_Substation) +/area/maintenance/Dorms_Substation) "xzD" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "xzO" = ( /obj/structure/bed/chair/comfy/blue{ dir = 1 }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) "xAc" = ( /obj/effect/floor_decal/spline/fancy{ dir = 5 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "xAo" = ( /obj/structure/bed/chair/oldsofa{ dir = 8 @@ -74934,7 +74609,7 @@ name = "1E-entertainment monitor" }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "xAy" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -74949,36 +74624,17 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "xAP" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/mint{ - pixel_x = -4; - pixel_y = -3 +/obj/structure/bed/chair/backed_grey{ + color = "grey"; + dir = 1 }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 6; - pixel_y = 9 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/condiment/spacespice{ - pixel_x = 9; - pixel_y = 1 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/turf/simulated/floor/carpet/brown, +/area/crew_quarters/Chomp_Stage) "xAS" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -74988,7 +74644,7 @@ dir = 10 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "xBe" = ( /obj/machinery/camera/network/security{ c_tag = "D3-Eng-2nd Engine4"; @@ -74996,7 +74652,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "xBt" = ( /obj/structure/cable{ d1 = 2; @@ -75013,7 +74669,7 @@ color = "#989898" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Substation) +/area/engineering/Engine1_Substation) "xBF" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -75040,7 +74696,7 @@ pixel_y = -2 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "xBS" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -75058,12 +74714,12 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "xCe" = ( /obj/machinery/light/small, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForStarChamber1) +/area/maintenance/Deck3_Bridge_ForStarChamber1) "xCo" = ( /obj/machinery/power/solar_control{ auto_start = 2; @@ -75073,14 +74729,14 @@ }, /obj/structure/cable/yellow, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftPort) +/area/engineering/Solar_Control_AftPort) "xCv" = ( /obj/structure/table/bench/wooden, /obj/effect/floor_decal/spline/fancy{ dir = 4 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "xCQ" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -75097,7 +74753,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "xDc" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/effect/floor_decal/borderfloorwhite{ @@ -75107,7 +74763,7 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "xDf" = ( /obj/structure/bed/chair/sofa/corner/yellow, /obj/machinery/computer/security/telescreen/entertainment{ @@ -75115,13 +74771,13 @@ pixel_y = 28 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "xDk" = ( /obj/machinery/atmospherics/pipe/cap/visible{ color = "#00ff00" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "xDm" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -75131,10 +74787,10 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "xDu" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "xDw" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -75151,20 +74807,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) -"xDD" = ( -/obj/structure/table/marble, -/obj/machinery/cash_register/civilian{ - dir = 4 - }, -/obj/machinery/door/blast/gate/thin{ - id = "sc-GCkitchen"; - layer = 3.3; - name = "Kitchen Shutters"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/harbor/Aft_3_Deck_Airlock_Access) "xDE" = ( /obj/machinery/power/apc{ dir = 4; @@ -75179,11 +74822,11 @@ pixel_y = -12 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "xDJ" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "xDN" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -75203,7 +74846,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Secretary_Quarters) +/area/bridge/sleeping/Secretary_Quarters) "xEs" = ( /obj/structure/railing{ dir = 1 @@ -75212,7 +74855,7 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "xEA" = ( /obj/structure/cable/white{ d1 = 4; @@ -75220,7 +74863,7 @@ icon_state = "4-8" }, /turf/simulated/floor/greengrid, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "xEB" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -75237,7 +74880,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "xEN" = ( /obj/structure/cable/green{ d1 = 1; @@ -75257,14 +74900,14 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central2, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "xFd" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "xFr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -75273,7 +74916,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "xFs" = ( /obj/machinery/pointdefense{ id_tag = "PD Secondary" @@ -75290,10 +74933,10 @@ /obj/effect/catwalk_plated/techmaint, /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "xFT" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "xFU" = ( /obj/machinery/alarm{ dir = 4; @@ -75316,13 +74959,13 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Genetics_Lab) +/area/medical/Genetics_Lab) "xGc" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Medical/Patient_2) +/area/medical/Patient_2) "xGf" = ( /turf/simulated/floor/greengrid, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "xGh" = ( /obj/effect/floor_decal/industrial/warning/color{ dir = 5 @@ -75332,7 +74975,7 @@ "xGn" = ( /obj/structure/closet/wardrobe/pjs, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "xGu" = ( /obj/machinery/atmospherics/binary/pump/high_power/on{ name = "Waste Gas Purge pump"; @@ -75340,23 +74983,23 @@ }, /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "xGv" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "xGI" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "xGM" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Star) +/area/maintenance/Deck3_Center_Star) "xHi" = ( /obj/structure/sink{ dir = 4; @@ -75367,7 +75010,7 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "xHH" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -75376,13 +75019,13 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "xHI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "xHM" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -75401,7 +75044,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "xHV" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -75434,7 +75077,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "xHZ" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -75445,7 +75088,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "xIm" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -75459,20 +75102,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) -"xIo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/maintenance/Deck3_Medical_ForStarChamber3) "xIq" = ( /obj/machinery/alarm{ dir = 4; @@ -75485,7 +75115,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Engineering/Deck3_2_Corridor) +/area/engineering/Deck3_2_Corridor) "xIA" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/effect/floor_decal/techfloor{ @@ -75498,14 +75128,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "xIE" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "xII" = ( /obj/structure/bed/chair/wood{ dir = 4 @@ -75513,14 +75143,14 @@ /obj/effect/landmark/start/visitor, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "xIN" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/spline/fancy{ dir = 6 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "xIR" = ( /obj/structure/bed/chair/sofa/corner/brown{ dir = 8 @@ -75532,14 +75162,14 @@ dir = 4 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "xJc" = ( /obj/structure/railing, /obj/structure/railing{ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/crew_quarters/Chomp_Dinner_2) "xJe" = ( /obj/structure/table/standard, /obj/item/storage/box/lights/bulbs{ @@ -75559,7 +75189,7 @@ pixel_x = -7 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_StarCorridor1) +/area/maintenance/Deck3_Medical_StarCorridor1) "xJn" = ( /obj/structure/table/rack/shelf, /obj/item/storage/toolbox/emergency{ @@ -75607,7 +75237,7 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) +/area/medical/Aft_Medical_Post) "xJC" = ( /obj/structure/railing/grey{ color = "yellow" @@ -75623,31 +75253,31 @@ name = "Lockdown Gate" }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftCorridor1) +/area/maintenance/Deck3_Medical_AftCorridor1) "xJH" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/area/bridge/Captain_Office) "xJQ" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "xJY" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine1_Chamber) +/area/engineering/Engine1_Chamber) "xKh" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "xKn" = ( /obj/machinery/shower{ pixel_y = 16 @@ -75661,7 +75291,7 @@ }, /obj/machinery/door/window/southright, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Medical/Restrooms) +/area/medical/Restrooms) "xKo" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -75693,7 +75323,7 @@ opacity = 0 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "xKv" = ( /obj/structure/railing/grey{ color = "yellow" @@ -75702,7 +75332,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_StarChamber1) +/area/maintenance/Deck3_Engineering_StarChamber1) "xKS" = ( /obj/structure/table/rack/shelf, /obj/item/towel/random{ @@ -75734,23 +75364,23 @@ name = "1W-light fixture" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "xKX" = ( /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "xLd" = ( /obj/structure/toilet{ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "xLu" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/wood/sif, -/area/SouthernCrossV2/Bridge/Breakroom) +/area/bridge/Breakroom) "xLA" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -75763,11 +75393,11 @@ icon_state = "1-8" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "xLJ" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForChamber1) +/area/maintenance/Deck3_Bridge_ForChamber1) "xLL" = ( /obj/structure/bed/chair/sofa/right/sif_ora, /obj/machinery/power/apc{ @@ -75788,24 +75418,17 @@ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "xLP" = ( -/obj/structure/ladder{ - pixel_y = 3 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/small/warning/emerg_only{ - desc = "Ladder for emergency use only"; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Harbor/Star_3_Deck_Airlock_Access) +/obj/machinery/holoposter, +/turf/simulated/wall, +/area/crew_quarters/Chomp_Stage) "xLV" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "xMa" = ( /obj/structure/sink{ dir = 4; @@ -75820,20 +75443,20 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "xMf" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "xMh" = ( /obj/structure/bed/chair/bay/chair/padded/red/bignest, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "xMi" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber1) +/area/maintenance/Deck3_Engineering_ForStarChamber1) "xMl" = ( /obj/structure/cable/green{ d1 = 2; @@ -75858,30 +75481,30 @@ }, /obj/effect/catwalk_plated/techmaint, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_PortCorridor1) +/area/maintenance/Deck3_Dorms_PortCorridor1) "xMw" = ( /obj/structure/bed/padded, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "xMx" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "xMM" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "xMO" = ( /obj/machinery/atmospherics/valve/shutoff{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForStarChamber2) +/area/maintenance/Deck3_Engineering_ForStarChamber2) "xMR" = ( /obj/item/radio/intercom{ dir = 1; @@ -75915,18 +75538,18 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_3) +/area/crew_quarters/Dorm_Corridor_3) "xNr" = ( /obj/machinery/light{ name = "1S-light fixture" }, /turf/simulated/floor/carpet/gaycarpet, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "xNt" = ( /obj/structure/dispenser/oxygen, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/Aft_3_Deck_Airlock_Access) +/area/harbor/Aft_3_Deck_Airlock_Access) "xNK" = ( /obj/structure/ladder{ pixel_y = 3 @@ -75937,7 +75560,7 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "xNQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -75946,7 +75569,7 @@ dir = 4 }, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "xNT" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -75955,7 +75578,7 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "xNU" = ( /obj/effect/floor_decal/industrial/arrows/blue{ dir = 4 @@ -75964,7 +75587,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Star_3_Deck_Stairwell) +/area/hallway/Star_3_Deck_Stairwell) "xOb" = ( /obj/structure/cable/white{ d1 = 1; @@ -75973,7 +75596,7 @@ }, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "xOc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -75985,7 +75608,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Observation_Atrium) +/area/crew_quarters/Observation_Atrium) "xOq" = ( /obj/structure/cable/green{ d1 = 4; @@ -76002,7 +75625,7 @@ dir = 8 }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "xOD" = ( /obj/structure/cable/green{ d1 = 1; @@ -76016,7 +75639,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "xOH" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -76025,7 +75648,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "xPg" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 8 @@ -76035,7 +75658,7 @@ network = list("engineering") }, /turf/simulated/floor/reinforced/oxygen, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "xPk" = ( /obj/machinery/computer/timeclock/premade/south, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -76044,7 +75667,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "xPx" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -76067,18 +75690,18 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "xPF" = ( /obj/effect/catwalk_plated/techmaint, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "xPH" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Surgery_Storage) +/area/medical/Surgery_Storage) "xPI" = ( /obj/machinery/shower{ dir = 1 @@ -76097,15 +75720,15 @@ dir = 8 }, /turf/simulated/floor/tiled/kafel_full, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "xPM" = ( /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber3) +/area/maintenance/Deck3_Medical_ForStarChamber3) "xPN" = ( /obj/structure/dispenser/oxygen, /obj/effect/floor_decal/industrial/hatch/blue, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "xQe" = ( /obj/structure/railing{ dir = 1 @@ -76114,15 +75737,15 @@ dir = 8 }, /turf/simulated/open, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "xQf" = ( /obj/structure/bed/chair/bay/chair/padded/red/bignest, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "xQs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "xQF" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -76140,7 +75763,7 @@ icon_state = "1-2" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "xQK" = ( /obj/machinery/vending/altevian, /obj/machinery/light{ @@ -76148,7 +75771,7 @@ name = "1N-lighting fixture" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "xQQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -76162,7 +75785,7 @@ pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "xQR" = ( /obj/machinery/light{ dir = 4; @@ -76176,16 +75799,16 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "xQY" = ( /obj/machinery/oxygen_pump/mobile, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Stairwell) +/area/medical/Stairwell) "xRf" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "xRo" = ( /obj/machinery/light{ dir = 8; @@ -76194,21 +75817,21 @@ }, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/carpet/turcarpet, -/area/SouthernCrossV2/Bridge/CE_Quarters) +/area/bridge/sleeping/CE_Quarters) "xRu" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "xRv" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "xRB" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "xRV" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber2) +/area/maintenance/Deck3_Dorms_AftPortChamber2) "xSh" = ( /obj/structure/cable/green{ d1 = 1; @@ -76220,14 +75843,15 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Domicile/Dorm_Corridor_1) +/area/crew_quarters/Dorm_Corridor_1) "xSi" = ( /obj/effect/floor_decal/spline/fancy{ dir = 10 }, /turf/simulated/floor/carpet/blue, -/area/SouthernCrossV2/Domicile/Dormitory_07) +/area/crew_quarters/sleeping/Dormitory_07) "xSr" = ( /obj/machinery/power/apc{ dir = 4; @@ -76239,14 +75863,14 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "xSt" = ( /obj/structure/railing/grey{ color = "yellow"; dir = 1 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Medical_PortChamber1) +/area/maintenance/Deck3_Medical_PortChamber1) "xSz" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -76254,7 +75878,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Commons/Star_Breakroom) +/area/hallway/Star_Breakroom) "xSC" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -76267,7 +75891,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Stairwell) +/area/hallway/Aft_3_Deck_Stairwell) "xSX" = ( /obj/machinery/computer/aifixer{ dir = 1 @@ -76277,14 +75901,14 @@ pixel_y = -22 }, /turf/simulated/floor/bluegrid, -/area/SouthernCrossV2/Bridge/Cyborg_Station) +/area/bridge/Cyborg_Station) "xTv" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_1) +/area/harbor/For_3_Deck_Airlock_Access_1) "xTz" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -76301,11 +75925,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "xTY" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Bridge/Conference_Room) +/area/bridge/Conference_Room) +"xUe" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/engineering/Central_Engineering_Post) "xUo" = ( /obj/structure/cable/yellow{ d2 = 8; @@ -76318,38 +75950,38 @@ /turf/simulated/floor/airless{ icon_state = "solarpanel" }, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "xUy" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "xUE" = ( /obj/item/gps/command{ pixel_x = -10 }, /obj/structure/table/sifwoodentable, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "xUK" = ( /obj/machinery/ai_status_display{ pixel_y = -32; name = "1S-AI display" }, -/obj/machinery/computer/rdconsole/medical{ - dir = 1 +/obj/structure/bed/chair/backed_grey{ + color = "grey"; + dir = 8 }, -/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "xUL" = ( /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Array_AftStar) +/area/engineering/Solar_Array_AftStar) "xUR" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "xUT" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -76369,13 +76001,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "xVf" = ( /obj/structure/bed/chair/sofa/corner/orange{ dir = 8 }, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "xVo" = ( /obj/machinery/power/apc{ name = "south bump"; @@ -76384,7 +76016,7 @@ /obj/structure/cable/green, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Harbor/For_3_Deck_Airlock_Access_2) +/area/harbor/For_3_Deck_Airlock_Access_2) "xVw" = ( /obj/structure/window/plastitanium{ dir = 4 @@ -76394,8 +76026,8 @@ pixel_x = -2; pixel_y = 1 }, -/turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/turf/simulated/floor/wood/alt/parquet/turfpack/airless, +/area/bridge/Captain_Office) "xVF" = ( /obj/structure/cable/green{ d1 = 1; @@ -76417,11 +76049,11 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "xVM" = ( /obj/random/junk, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber2) +/area/maintenance/Deck3_Medical_ForChamber2) "xVW" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -76434,7 +76066,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine1_Substation) +/area/engineering/Engine1_Substation) "xVX" = ( /obj/machinery/status_display{ layer = 4; @@ -76459,14 +76091,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Central_3_Deck_Hall) +/area/hallway/Central_3_Deck_Hall) "xWa" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/wood/alt/panel, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "xWc" = ( /obj/machinery/camera/network/research{ c_tag = "D3-Med-Virology1"; @@ -76474,7 +76106,7 @@ network = list("Medical") }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "xWh" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -76483,7 +76115,7 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Domicile/Dormitory_02) +/area/crew_quarters/sleeping/Dormitory_02) "xWk" = ( /obj/structure/bed/double/padded, /obj/structure/cable/green{ @@ -76493,7 +76125,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_12) +/area/crew_quarters/sleeping/Dormitory_12) "xWm" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/yellow, @@ -76513,7 +76145,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_05) +/area/crew_quarters/sleeping/Dormitory_05) "xWn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -76530,11 +76162,11 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "xWy" = ( /obj/structure/reagent_dispensers/foam, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "xWP" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -76543,10 +76175,10 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "xWY" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor1) +/area/maintenance/Deck3_Dorms_AftCorridor1) "xXn" = ( /obj/structure/cable/green{ d1 = 4; @@ -76566,7 +76198,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "xXp" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -76581,7 +76213,7 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Chamber) +/area/engineering/Engine2_Chamber) "xXs" = ( /obj/item/reagent_containers/blood/prelabeled/OMinus{ pixel_y = 6; @@ -76613,7 +76245,7 @@ dir = 9 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Bridge/Firstaid_Post) +/area/bridge/Firstaid_Post) "xXF" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner2, @@ -76624,7 +76256,7 @@ dir = 1 }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Bridge/CMO_Quarters) +/area/bridge/sleeping/CMO_Quarters) "xXQ" = ( /obj/item/tool/wrench, /obj/structure/table/glass, @@ -76638,14 +76270,14 @@ pixel_y = -3 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "xYg" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "xYl" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 1 @@ -76655,7 +76287,7 @@ network = list("engineering") }, /turf/simulated/floor/reinforced/airless, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "xYo" = ( /obj/structure/bed/chair/sofa/blue, /obj/machinery/vending/wallmed1{ @@ -76663,11 +76295,11 @@ pixel_y = 26 }, /turf/simulated/floor/carpet/green, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "xYs" = ( /obj/structure/table/rack/steel, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "xYw" = ( /obj/structure/cable/green{ d1 = 1; @@ -76678,13 +76310,13 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Port_Breakroom) +/area/hallway/Port_Breakroom) "xYT" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 }, /turf/simulated/floor/carpet/blue2, -/area/SouthernCrossV2/Domicile/Dormitory_06) +/area/crew_quarters/sleeping/Dormitory_06) "xZb" = ( /obj/structure/sink{ dir = 8; @@ -76700,10 +76332,10 @@ dir = 4 }, /turf/simulated/floor/tiled/kafel_full/white, -/area/SouthernCrossV2/Bridge/HoS_Quarters) +/area/bridge/sleeping/HoS_Quarters) "xZl" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "xZu" = ( /obj/structure/cable/green{ d1 = 4; @@ -76726,33 +76358,23 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "xZB" = ( /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) -"xZM" = ( -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/steeldecal/steel_decals_central2{ - dir = 1 - }, -/turf/simulated/floor/wood/alt, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_2) +/area/medical/Virology) "yaw" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "yaB" = ( /obj/effect/floor_decal/spline/fancy{ dir = 10 }, /turf/simulated/floor/carpet/geo, -/area/SouthernCrossV2/Domicile/Dormitory_10) +/area/crew_quarters/sleeping/Dormitory_10) "yaQ" = ( /obj/structure/railing/grey{ color = "yellow"; @@ -76762,10 +76384,10 @@ color = "yellow" }, /turf/simulated/open, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "yaW" = ( /turf/simulated/wall, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForPortChamber2) +/area/maintenance/Deck3_Medical_ForPortChamber2) "ybj" = ( /obj/structure/table/standard, /obj/item/storage/firstaid/regular{ @@ -76784,7 +76406,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Bridge/Leisure_Room) +/area/bridge/Leisure_Room) "ybA" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -76816,7 +76438,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "ybU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -76828,10 +76450,10 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Substation) +/area/engineering/Atmospherics_Substation) "ybV" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftCorridor2) +/area/maintenance/Deck3_Dorms_AftCorridor2) "ycm" = ( /obj/structure/window/plastitanium{ color = "white"; @@ -76845,7 +76467,7 @@ desc = "A dense soft cushion laminated on the wall" }, /turf/simulated/floor/tiled/old_cargo, -/area/SouthernCrossV2/Medical/Deck3_Corridor) +/area/medical/Deck3_Corridor) "yco" = ( /obj/machinery/transhuman/resleever, /obj/machinery/camera/network/research{ @@ -76856,11 +76478,11 @@ /turf/simulated/floor/tiled/white{ color = "#8bbbd5" }, -/area/SouthernCrossV2/Medical/Resleeving) +/area/medical/Resleeving) "ycB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "ycF" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/hatch, @@ -76892,7 +76514,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "ycI" = ( /obj/machinery/power/apc{ dir = 1; @@ -76904,29 +76526,29 @@ icon_state = "0-8" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_AftStarChamber2) +/area/maintenance/Deck3_Engineering_AftStarChamber2) "ycN" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ dir = 1 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "ycR" = ( /obj/structure/bed/chair/bay/chair/padded/red/smallnest, /obj/effect/floor_decal/spline/fancy{ dir = 1 }, /turf/simulated/floor/carpet/blucarpet, -/area/SouthernCrossV2/Domicile/Dormitory_04) +/area/crew_quarters/sleeping/Dormitory_04) "ycV" = ( /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_AftPortChamber1) +/area/maintenance/Deck3_Dorms_AftPortChamber1) "ydb" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/binary/circulator, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "ydi" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -76939,90 +76561,27 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "ydk" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 8 }, /obj/effect/floor_decal/corner/paleblue/bordercorner{ dir = 8 }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Aft_Medical_Post) -"ydN" = ( -/obj/structure/table/rack/shelf, -/obj/item/storage/box/donkpockets{ - pixel_x = 7; - pixel_y = -7 - }, -/obj/item/storage/box/donkpockets/berry{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/storage/box/donkpockets/gondola{ - pixel_x = -9; - pixel_y = -7 - }, -/obj/item/storage/box/donkpockets/honk{ - pixel_x = -9; - pixel_y = -3 - }, -/obj/item/storage/box/donkpockets/pizza{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/storage/box/donkpockets/spicy{ - pixel_x = -9; - pixel_y = 1 - }, -/obj/item/storage/box/donkpockets/teriyaki{ - pixel_y = 5 - }, -/obj/item/storage/box/donkpockets/teriyaki{ - pixel_y = 5 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 7; - pixel_y = -7 - }, -/obj/item/storage/box/donkpockets/gondola{ - pixel_x = -9; - pixel_y = -7 - }, -/obj/item/storage/box/donkpockets/berry{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/storage/box/donkpockets/honk{ - pixel_x = -9; - pixel_y = -3 - }, -/obj/item/storage/box/donkpockets/pizza{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/storage/box/donkpockets/spicy{ - pixel_x = -9; - pixel_y = 1 - }, -/obj/item/storage/box/donkpockets/teriyaki{ - pixel_y = 5 - }, -/obj/effect/floor_decal/corner/lightorange/diagonal, -/turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/medical/Aft_Medical_Post) "ydV" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 }, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Medical/Autoresleeving) +/area/medical/Autoresleeving) "ydW" = ( /obj/machinery/door/firedoor/border_only, /obj/effect/floor_decal/industrial/arrows/red{ @@ -77043,16 +76602,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Bridge/Captain_Quarters) +/area/bridge/sleeping/Captain_Quarters) "yed" = ( /obj/machinery/the_singularitygen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor/grid, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "yen" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "yeI" = ( /obj/structure/bed/chair/wood{ dir = 4 @@ -77065,7 +76624,7 @@ /obj/effect/landmark/start/visitor, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "yeL" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/arrows/blue{ @@ -77077,11 +76636,11 @@ name = "Dorm one" }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "yeT" = ( /obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_AftPortCorridor1) +/area/maintenance/Deck3_Bridge_AftPortCorridor1) "yeY" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 @@ -77093,7 +76652,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/For_3_Deck_Stairwell) +/area/hallway/For_3_Deck_Stairwell) "yfe" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -77103,7 +76662,7 @@ }, /obj/random/trash, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_ForStarChamber2) +/area/maintenance/Deck3_Dorms_ForStarChamber2) "yfg" = ( /obj/effect/floor_decal/corner/black/full{ dir = 8 @@ -77113,10 +76672,10 @@ id_tag = "SC-co2_sensor" }, /turf/simulated/floor/reinforced/carbon_dioxide, -/area/SouthernCrossV2/Engineering/Atmospherics_Chamber) +/area/engineering/Atmospherics_Chamber) "yfh" = ( /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Domicile/Dormitory_03) +/area/crew_quarters/sleeping/Dormitory_03) "yfm" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/grille, @@ -77134,10 +76693,10 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Airlock_Access) +/area/engineering/Airlock_Access) "yfn" = ( /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarChamber1) +/area/maintenance/Deck3_Dorms_StarChamber1) "yfA" = ( /obj/structure/cable/green{ d1 = 1; @@ -77159,7 +76718,7 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Lounge) +/area/medical/Lounge) "yfD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -77170,7 +76729,7 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Morgue) +/area/medical/Morgue) "yfG" = ( /obj/structure/window/plastitanium{ dir = 8 @@ -77179,8 +76738,8 @@ pixel_x = 3 }, /obj/structure/table/darkglass, -/turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/Captain_Office) +/turf/simulated/floor/wood/alt/parquet/turfpack/airless, +/area/bridge/Captain_Office) "yfV" = ( /obj/machinery/light/small, /obj/effect/floor_decal/borderfloor{ @@ -77190,11 +76749,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "yfY" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_AftStarChamber1) +/area/maintenance/Deck3_Medical_AftStarChamber1) "yhb" = ( /obj/structure/railing/grey{ dir = 1 @@ -77208,11 +76767,11 @@ /obj/random/crate, /obj/item/bikehorn/rubberducky/white, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForStarChamber2) +/area/maintenance/Deck3_Medical_ForStarChamber2) "yhv" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/area/hallway/Aft_3_Deck_Central_Corridor_1) "yhy" = ( /obj/structure/table/woodentable, /obj/item/radio/intercom{ @@ -77222,7 +76781,7 @@ }, /obj/item/starcaster_news, /turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Domicile/Chomp_Lounge) +/area/crew_quarters/Chomp_Lounge) "yhJ" = ( /obj/effect/catwalk_plated/techfloor, /obj/structure/cable/white{ @@ -77231,7 +76790,7 @@ icon_state = "4-8" }, /turf/simulated/floor/redgrid/animated, -/area/SouthernCrossV2/Bridge/AI_Core_Chamber) +/area/bridge/AI_Core_Chamber) "yid" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/door/firedoor/border_only, @@ -77248,7 +76807,7 @@ desc = "Sign of some important station compartment." }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "yie" = ( /obj/structure/cable/green{ d1 = 2; @@ -77264,7 +76823,7 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/lightorange/border, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine_Tech_Storage) +/area/engineering/Engine_Tech_Storage) "yiq" = ( /obj/effect/catwalk_plated/techmaint, /obj/structure/cable/green{ @@ -77273,11 +76832,11 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor2) +/area/maintenance/Deck3_Dorms_StarCorridor2) "yis" = ( /obj/effect/floor_decal/corner/paleblue, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Control_Atrium) +/area/bridge/Control_Atrium) "yiH" = ( /obj/structure/cable/green{ d1 = 4; @@ -77285,7 +76844,7 @@ icon_state = "4-8" }, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Dormitory_01) +/area/crew_quarters/sleeping/Dormitory_01) "yiM" = ( /obj/structure/cable/pink{ d1 = 4; @@ -77296,7 +76855,7 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Engineering/Engine2_Substation) +/area/engineering/Engine2_Substation) "yiV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorwhite{ @@ -77306,14 +76865,14 @@ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "yjc" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Center_Port) +/area/maintenance/Deck3_Center_Port) "yjg" = ( /obj/structure/cable/green{ d1 = 2; @@ -77336,7 +76895,7 @@ icon_state = "0-2" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Engineering_ForCorridor1) +/area/maintenance/Deck3_Engineering_ForCorridor1) "yjj" = ( /obj/machinery/door/firedoor/multi_tile/glass, /obj/effect/floor_decal/industrial/arrows/blue, @@ -77355,13 +76914,13 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/SouthernCrossV2/Commons/Stairwell_Star) +/area/hallway/Stairwell_Star) "yjm" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 8 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Engine2_Waste_Handling) +/area/engineering/Engine2_Waste_Handling) "yjo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -77370,19 +76929,13 @@ dir = 1 }, /turf/simulated/floor/carpet/purcarpet, -/area/SouthernCrossV2/Bridge/Captain_Office) -"yjx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/SouthernCrossV2/Domicile/Chomp_Kitchen) +/area/bridge/Captain_Office) "yjL" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Engineering/Construction_Area) +/area/engineering/Construction_Area) "yjU" = ( /obj/structure/cable/green{ d1 = 1; @@ -77393,7 +76946,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "yjW" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/blue, @@ -77401,7 +76954,7 @@ id = "sc-WTmental01" }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Medical/Psych_Room_1) +/area/medical/Psych_Room_1) "yka" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 @@ -77410,7 +76963,7 @@ name = "Janeth" }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Public_Garden) +/area/crew_quarters/Public_Garden) "ykc" = ( /obj/machinery/computer/cryopod/robot{ pixel_x = 30 @@ -77423,11 +76976,11 @@ name = "1E-light fixture" }, /turf/simulated/floor/tiled/techfloor, -/area/SouthernCrossV2/Bridge/Cyborg_Station) +/area/bridge/Cyborg_Station) "ykd" = ( /obj/machinery/vending/loadout/gadget, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Domicile/Dorm_Foyer) +/area/crew_quarters/Dorm_Foyer) "ykf" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light{ @@ -77435,7 +76988,7 @@ name = "1E-light fixture" }, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "ykl" = ( /obj/machinery/light{ name = "1S-light fixture" @@ -77458,18 +77011,18 @@ }, /obj/structure/cable/green, /turf/simulated/floor/carpet/bcarpet, -/area/SouthernCrossV2/Medical/Patient_4) +/area/medical/Patient_4) "ykt" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Medical_ForChamber3) +/area/maintenance/Deck3_Medical_ForChamber3) "yku" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood/alt/parquet, -/area/SouthernCrossV2/Bridge/HoP_Office) +/area/bridge/HoP_Office) "ykB" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 6 @@ -77478,7 +77031,7 @@ /area/space) "ykC" = ( /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Bridge_ForPort_Corridor2) +/area/maintenance/Deck3_Bridge_ForPort_Corridor2) "ykJ" = ( /obj/effect/catwalk_plated/techmaint, /obj/machinery/light{ @@ -77487,10 +77040,10 @@ }, /obj/random/trash, /turf/simulated/floor/airless, -/area/SouthernCrossV2/Engineering/Solar_Control_AftStar) +/area/engineering/Solar_Control_AftStar) "ykL" = ( /turf/simulated/wall/r_wall, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "ykM" = ( /obj/structure/railing/grey{ color = "yellow" @@ -77500,7 +77053,7 @@ dir = 4 }, /turf/simulated/open, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "ykS" = ( /obj/structure/cable/green{ d1 = 1; @@ -77510,7 +77063,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood/alt/tile, -/area/SouthernCrossV2/Domicile/Observation_Lounge) +/area/crew_quarters/Observation_Lounge) "ykU" = ( /obj/structure/bed/chair/wood{ dir = 8 @@ -77518,27 +77071,27 @@ /obj/effect/landmark/start/visitor, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Domicile/Chomp_Dinner_1) +/area/crew_quarters/Chomp_Dinner_1) "ylp" = ( /obj/machinery/microwave{ pixel_y = 17 }, /obj/structure/table/standard, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Medical/Virology) +/area/medical/Virology) "ylu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 10 }, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Bridge_Substation) +/area/maintenance/Bridge_Substation) "ylw" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Maints/Deck3_Dorms_StarCorridor1) +/area/maintenance/Deck3_Dorms_StarCorridor1) "ylA" = ( /turf/simulated/floor/carpet/brown, -/area/SouthernCrossV2/Bridge/Deck3_Corridor) +/area/bridge/Deck3_Corridor) "ylH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -77549,11 +77102,11 @@ dir = 1 }, /turf/simulated/floor/tiled/hydro, -/area/SouthernCrossV2/Domicile/Public_Hydroponics) +/area/crew_quarters/Public_Hydroponics) "ylL" = ( /obj/structure/bed/chair/bay/chair/padded/red/smallnest, /turf/simulated/floor/plating, -/area/SouthernCrossV2/Domicile/Dormitory_11) +/area/crew_quarters/sleeping/Dormitory_11) "ylV" = ( /obj/item/modular_computer/console/preset/ert, /obj/machinery/light{ @@ -77572,15 +77125,15 @@ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/SouthernCrossV2/Bridge/Embassy) +/area/bridge/Embassy) "ylX" = ( /obj/item/radio/intercom{ dir = 4; name = "1E-Station Intercom (General)"; pixel_x = 22 }, -/turf/simulated/floor/glass/reinforced, -/area/SouthernCrossV2/Commons/Aft_3_Deck_Central_Corridor_1) +/turf/simulated/floor/tiled, +/area/hallway/Aft_3_Deck_Central_Corridor_1) (1,1,1) = {" apc @@ -86414,7 +85967,7 @@ apc apc apc aqj -cDl +mMn aqj apc apc @@ -86524,7 +86077,7 @@ apc apc apc aqj -cDl +mMn aqj apc apc @@ -86671,9 +86224,9 @@ apc apc apc apc -cDl +mMn mmN -cDl +mMn apc apc apc @@ -86781,9 +86334,9 @@ apc apc apc apc -cDl +mMn jwm -cDl +mMn apc apc apc @@ -93443,7 +92996,7 @@ xob nyt eaY xiQ -gZd +gYY joW kWZ gun @@ -97835,7 +97388,7 @@ bBZ dwY bBZ ogk -ogk +bdX qqS ycI aPH @@ -98351,7 +97904,7 @@ moO uFW wYA dNX -emm +azY qqS qAv vjX @@ -101245,8 +100798,8 @@ pdb muw voL muw -muw wVX +lyw jTu lPX gCl @@ -102246,7 +101799,7 @@ pvp tNl tNl wRG -vnT +reT wzO jZH gxS @@ -102972,7 +102525,7 @@ yjc oIC vto ddt -ddt +ruA dOP xWy hbN @@ -103252,7 +102805,7 @@ gdy mZl mqp acg -ddt +ruA rhw mqp ddt @@ -103431,7 +102984,7 @@ cPz lpN cPz taO -jPb +xzh gOm shV oZi @@ -103746,10 +103299,10 @@ pMG kjO ecn aAA -krO +pau abu abu -vTg +ecn gGk tFY gpR @@ -103962,7 +103515,7 @@ fDZ shV ucy hfg -cRv +wUP qJs hqo hqo @@ -103971,7 +103524,7 @@ sms ifa ifH wUP -pIA +hdW pIA vUl eTi @@ -104013,7 +103566,7 @@ bDU hoF euY qtU -jVq +sLk hgN fts ovH @@ -104519,7 +104072,7 @@ krO iUN abu ecn -ruA +bDU krO abu abu @@ -104787,7 +104340,7 @@ dVC lTV euY euY -euY +vVp hgN afq pwV @@ -104818,7 +104371,7 @@ dHa dHa dHa ddj -pfx +aaw ede tQo qBN @@ -105034,9 +104587,9 @@ cDw aqL uFS uFS -uFS +soc hyp -uFS +dFk uFS uFS uFS @@ -105288,24 +104841,24 @@ pQS jND rlD bDU -bDU +aMs xNQ -bdC -bdC -bDU -bdC -bdC bDU bDU -cVJ -brm +eDs +bDU +bjz +tcs +bDU +bDU +bDU uRe kqx gXC gnN -loO -fIA -loO +nBA +tSE +lea kOo gJm rZi @@ -105537,7 +105090,7 @@ maG lWD dHa dHa -mMn +akK mmp adu koz @@ -105548,16 +105101,16 @@ iKN bDU bDU xNQ -tkE -jET -xDD -eAz -jET -niI -iGW -fJR -fJR -usH +cQK +bkC +lxz +brm +bQV +cEG +bQV +bkC +lDw +uxn fJR fJR fJR @@ -105805,21 +105358,21 @@ wNb lAi bDU bDU -bjz +xNQ +xLP +jVq +bmI +jVq +bGG +ukQ +ikQ +diJ +fkS +eKn fJR -tYZ -cEG -bTy -fJR -bQV -bQV -fJR -drt -yjx -dVg euc -euc -fJR +bXC +xcP eYg nJU fJR @@ -106064,23 +105617,23 @@ bJj aKL aKL gBQ -fJR -bkm -xiI -xiI -cQF -dcT -dgL -fJR -drt -cEF -dIz -dIz -eyl -cEH -uDd -uDd +cEG +dAI +oEP +jVq +bGG +uOJ +uDe +bTy +glv +dQE cEH +xUe +xUe +gys +swY +eYk +vJr gkF eiV uZq @@ -106305,39 +105858,39 @@ iSF iSE tvL gop -eup -eup +bYz +bYz nzK qSZ dHa dHa abV tWU -aMs -aMs -aMs -aMs -aMs -aMs -aMs -aMs -aad -bPD -cqT -xiI -xiI -sII -ydN -wUV +kHn +kHn +kHn +kHn +kHn +kHn +kHn +kHn +qoS +cKv +rpY +ppD +ppD +hnD +uOJ +uDe +bTy +glv +dZo fJR -dIz -ovA -tih -dFk -txl -fJR -mmK psu +txl +prA +tIi +cBS fJR lnB pGA @@ -106563,33 +106116,33 @@ iSF jVA cHl fHW -eup -eup +bYz +yis bqB xKo dHa dHa nIE -aGs -aMs -aMs -aMs -aMs -aMs -aMs -aMs -aMs -bGG -bQV -crb -xiI -xiI -wZl -fkS -mGN -ikQ -iDp -nVQ +kHn +kHn +aMh +aMh +aMh +aMh +aMh +aMh +aMh +vnT +cEG +ppD +ppD +ppD +jVq +uOJ +uDe +bTy +glv +wfP fMV fMV fMV @@ -106612,7 +106165,7 @@ mgf mgf qTV eSH -nrR +pTW rfG rfG rfG @@ -106836,18 +106389,18 @@ aMh aMh aMh aMh +aMh kHn -bkC -fJR -wTa -xiI -nHS -sem -uOJ -ukQ -fJR -wbq -wbq +bQV +ppD +ppD +ppD +jVq +aBA +uDe +fmC +glv +pOL fMV foz foz @@ -107086,7 +106639,7 @@ jtL dHa dHa akK -cpV +hcx kHn aMh aMh @@ -107094,18 +106647,18 @@ aMh aMh aMh aMh +aMh kHn -tIi -fJR -wJY -xiI -idY -sMo +bQV +ppD +ppD +ppD +jVq uOJ uDe -fJR -fJR -fJR +bTy +glv +vUt fMV foz foz @@ -107330,7 +106883,7 @@ fLj fLj jSS jtL -eup +iSF eup hYl oRe @@ -107345,25 +106898,25 @@ dHa dHa abV mSu -kHn +iOs +aMh aMh aMh snD aMh aMh aMh -iOs cSX -fJR -wJY -xiI -oEP -nVv -ujy -iaG -fJR -eYk -xmQ +bQV +ppD +ppD +ppD +rmg +uOJ +uDe +bTy +glv +rsu fMV foz foz @@ -107610,18 +107163,18 @@ aMh aMh aMh aMh +aMh kHn -lxz bQV -mzR -xiI -xAP -diJ +ppD +ppD +ppD +jVq uOJ -bXC -fJR -eYk -jFm +uDe +bTy +glv +bnp fMV foz foz @@ -107868,18 +107421,18 @@ aMh aMh aMh aMh +aMh kHn -aBA -fJR -prA -xiI +bQV ppD -dAI -uOJ -eKo -fJR -ubW +ppD +ppD +jVq +dIz +uDe fmC +glv +fyW fMV foz foz @@ -108110,34 +107663,34 @@ eup iSF jVA bfP -fHW -eup -eup +diR +bYz +gBw cRD jtL dHa dHa akK aGs -aMs -aMs -aMs -aMs -aMs -aMs -aMs -aMs +kHn +aMh +aMh +aMh +aMh +aMh +aMh +aMh eJF -fJR -nBp -xiI -cBS -cBS +cEG +ppD +ppD +ppD +jVq uOJ -uwW -fJR -fLJ -fJR +uDe +bTy +glv +eES fMV fMV fMV @@ -108160,7 +107713,7 @@ mgf mgf qTV mEk -nrR +pTW rfG rfG rfG @@ -108369,33 +107922,33 @@ iSF weg tpU qIs -eup -eup +bYz +bYz tav hFy dHa dHa abV aak -aMs -aMs -aMs -aMs -aMs -aMs -aMs -aMs +kHn +kHn +kHn +kHn +kHn +kHn +kHn +kHn ger -bPD -nKZ -xiI +azX +rpY +ppD +ppD +tYZ +uOJ +uDe +bTy glv -kle -qzY -mFn -fJR -eYQ -laA +kpt hKr trw evA @@ -108644,16 +108197,16 @@ xIA aNx aNx uCi -bQV -fdI -xiI -frp -xiI -hNz -iRF -fJR -bkJ -xZM +cEG +wZl +oEP +jVq +bGG +uOJ +uDe +bTy +glv +kpt fsM hHz eJK @@ -108891,7 +108444,7 @@ rUF lWD dHa dHa -tnv +nIE mmp ncG koz @@ -108901,17 +108454,17 @@ iuZ awy dQh dQh +fzE +xLP +jVq +fVJ +jVq +bGG +xiI +wUV +xAP +iaG kpt -fJR -xIo -iXE -kCR -kCR -xbv -sdM -fJR -gSd -dQh cVS eyi fIA @@ -109159,17 +108712,17 @@ jND fXn dQh dQh -lea -rzo -xcP -ueQ -fPf -heB +fzE +cQK +bkC +iwI +brm bQV -uzY -fJR -dsu -nZD +cEG +bQV +bkC +dHF +laA hJj hJj hKr @@ -109416,17 +108969,17 @@ pQS atX aao dQh -dQh -lea -cQQ -uGm -dQh -cQQ -cQQ -laA +fbb fzE dQh -jsw +dQh +eBa +dQh +aad +mny +dQh +dQh +dQh dKj dYf gXC @@ -109678,9 +109231,9 @@ bPo uLM qba rkX -qba +cpV rKJ -qba +mKX qba oHP qba @@ -109881,7 +109434,7 @@ meg gTB pMd lCK -sun +tDI cxF epw vTb @@ -110195,7 +109748,7 @@ blk hZc avn dsP -cJI +dQh blk avn avn @@ -110204,7 +109757,7 @@ aJK dQh dZX bmm -jdD +dcT fWQ jIz hJj @@ -110464,7 +110017,7 @@ pWI bmm xnB iaz -fbp +tnv hJj hyk emy @@ -110720,9 +110273,9 @@ snX dQh eaN bmm -xDJ +fbp oNI -toX +jdD hJj cPX kcJ @@ -110968,17 +110521,17 @@ cXM cXM lzM ddq -dsP +qbz cMP blk avn avn -gSb +dsP dCl xku kTm bmm -bNg +kle nPk dES hJj @@ -111223,7 +110776,7 @@ cKI rFD xlk vBA -vjD +jgh cXM cXM cXM @@ -112983,7 +112536,7 @@ bxg oug eEJ iKn -eEJ +cJI iVi jGo oug @@ -113081,7 +112634,7 @@ dHa eow eow eow -vZm +jsw eWG lxv tYA @@ -113516,7 +113069,7 @@ eEC aLd ayM cSS -cSS +vDg gVl rul cwa @@ -114849,7 +114402,7 @@ qiV dih azB eSu -xLP +ess ehq gtJ ehq @@ -116382,7 +115935,7 @@ vXD mfp bWV pZA -kcG +uQe kcG mfp kcG @@ -116934,7 +116487,7 @@ rPp vyx sEn dpB -tbD +vTg hBq hBq dHa @@ -117161,7 +116714,7 @@ rcO kcG vwH pZA -aWm +vqh aWm uct krr @@ -122572,7 +122125,7 @@ wDV eaO mXX iiF -aNP +iDw kZN dDU xrZ @@ -123092,7 +122645,7 @@ wDV wDV wDV nxp -dVi +gSb ouJ xgk xRu @@ -124644,7 +124197,7 @@ gJr ouJ eEO xRu -xRu +bUO xVM ckO lOH @@ -127951,9 +127504,9 @@ apc apc apc apc -cDl +mMn naz -cDl +mMn apc apc apc @@ -127965,9 +127518,9 @@ apc apc apc apc -cDl +mMn naz -cDl +mMn apc apc apc @@ -128047,9 +127600,9 @@ apc apc apc apc -cDl +mMn biI -cDl +mMn apc apc apc @@ -128061,9 +127614,9 @@ apc apc apc apc -cDl +mMn biI -cDl +mMn apc apc apc @@ -128210,7 +127763,7 @@ apc apc apc aqj -cDl +mMn aqj apc apc @@ -128224,7 +127777,7 @@ apc apc apc aqj -cDl +mMn aqj apc apc @@ -128306,7 +127859,7 @@ apc apc apc aqj -cDl +mMn aqj apc apc @@ -128320,7 +127873,7 @@ apc apc apc aqj -cDl +mMn aqj apc apc diff --git a/maps/southern_sun/southern_cross-6.dmm b/modular_chomp/maps/soluna_nexus/soluna_nexus-6.dmm similarity index 100% rename from maps/southern_sun/southern_cross-6.dmm rename to modular_chomp/maps/soluna_nexus/soluna_nexus-6.dmm diff --git a/maps/southern_sun/southern_cross-7.dmm b/modular_chomp/maps/soluna_nexus/soluna_nexus-7.dmm similarity index 99% rename from maps/southern_sun/southern_cross-7.dmm rename to modular_chomp/maps/soluna_nexus/soluna_nexus-7.dmm index 8f288ed694..b92af11001 100644 --- a/maps/southern_sun/southern_cross-7.dmm +++ b/modular_chomp/maps/soluna_nexus/soluna_nexus-7.dmm @@ -4151,7 +4151,7 @@ "dhc" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ dir = 8; - id_tag = "cryostorage_recovery"; + id_tag = "cryostorage_shuttle_recovery"; tag_door = "cryostorage_recovery_hatch"; req_one_access = list(13); frequency = 1380; diff --git a/maps/southern_sun/southern_cross-8.dmm b/modular_chomp/maps/soluna_nexus/soluna_nexus-8.dmm similarity index 100% rename from maps/southern_sun/southern_cross-8.dmm rename to modular_chomp/maps/soluna_nexus/soluna_nexus-8.dmm diff --git a/maps/southern_sun/southern_cross.dm b/modular_chomp/maps/soluna_nexus/soluna_nexus.dm similarity index 51% rename from maps/southern_sun/southern_cross.dm rename to modular_chomp/maps/soluna_nexus/soluna_nexus.dm index 13f2671dd9..21c49338dd 100644 --- a/maps/southern_sun/southern_cross.dm +++ b/modular_chomp/maps/soluna_nexus/soluna_nexus.dm @@ -3,54 +3,56 @@ #if !defined(USING_MAP_DATUM) // CHOMPStation Edits Start: Disabling specific includes as vorestation.dme has them already loading via #includes there. UPDATE THIS if that changes. - #include "southern_cross_areas.dm" - #include "southern_cross_defines.dm" - #include "southern_cross_elevator.dm" - #include "southern_cross_events.dm" - #include "southern_cross_overrides.dm" - #include "southern_cross_presets.dm" - #include "southern_cross_shuttles.dm" - #include "southern_cross_shuttles_ch.dm" - #include "shuttles/crew_shuttles.dm" - #include "shuttles/crew_shuttles_ch.dm" - #include "shuttles/heist.dm" - #include "shuttles/merc.dm" - #include "shuttles/ninja.dm" - #include "shuttles/ert.dm" + #include "soluna_nexus_areas.dm" + #include "../southern_cross/southern_cross_areas_planet.dm" + #include "soluna_nexus_defines.dm" + #include "../southern_cross/southern_cross_sif_defines.dm" + #include "soluna_nexus_elevator.dm" + #include "../southern_cross/southern_cross_events.dm" + #include "../southern_cross/southern_cross_overrides.dm" + #include "soluna_nexus_presets.dm" + #include "soluna_nexus_shuttles.dm" + #include "../southern_cross/southern_cross_shuttles_ch.dm" + #include "../southern_cross/shuttles/crew_shuttles.dm" + #include "../southern_cross/shuttles/crew_shuttles_ch.dm" + #include "../southern_cross/shuttles/heist.dm" + #include "../southern_cross/shuttles/merc.dm" + #include "../southern_cross/shuttles/ninja.dm" + #include "../southern_cross/shuttles/ert.dm" - #include "loadout/loadout_accessories.dm" + #include "../southern_cross/loadout/loadout_accessories.dm" // #include "loadout/loadout_suit.dm" // #include "loadout/loadout_uniform.dm" - #include "datums/supplypacks/munitions.dm" + #include "../southern_cross/datums/supplypacks/munitions.dm" // #include "items/encryptionkey_sc.dm" // #include "items/headset_sc.dm" // #include "items/clothing/sc_suit.dm" // #include "items/clothing/sc_under.dm" // #include "items/clothing/sc_accessory.dm" - #include "job/outfits.dm" + #include "../southern_cross/job/outfits.dm" // #include "structures/closets/engineering.dm" // #include "structures/closets/medical.dm" // #include "structures/closets/misc.dm" // #include "structures/closets/research.dm" // #include "structures/closets/security.dm" //#include "turfs/outdoors.dm" //Moved inclusion to vorestation.dme to appease CI's smooth brain. - #include "events/wildlife_encounter.dm" + #include "../southern_cross/events/wildlife_encounter.dm" // CHOMPStation Edits End - Un-disable these includes if vorestation.dme ever removes them from their #includes. #if !AWAY_MISSION_TEST //Don't include these for just testing away missions if the flag is set to true in /code/_away_mission_tests.dm // #include "southern_cross-0.dmm" // Deck 0 - #include "southern_cross-1.dmm" //Deck 1 z1 - #include "southern_cross-2.dmm" //Deck 2 z2 - #include "southern_cross-3.dmm" //Deck 3 z3 - #include "southern_cross-4.dmm" //Sif outpost z4 - #include "southern_cross-5.dmm" //Sif mine z5 - #include "southern_cross-6.dmm" //Carrier z6 - #include "southern_cross-7.dmm" //Centcom z7 - #include "southern_cross-8.dmm" //Transit z8 - #include "southern_cross-9.dmm" //Sif wilds z9 + #include "soluna_nexus-1.dmm" //Deck 1 z1 + #include "soluna_nexus-2.dmm" //Deck 2 z2 + #include "soluna_nexus-3.dmm" //Deck 3 z3 + #include "../southern_cross/southern_cross-5.dmm" //Sif outpost z4, we are shifted 1 off from SC, this only works as we have the order done right on SC! + #include "../southern_cross/southern_cross-6.dmm" //Sif mine z5, we are shifted 1 off from SC, this only works as we have the order done right on SC! + #include "soluna_nexus-6.dmm" //Carrier z6 + #include "soluna_nexus-7.dmm" //Centcom z7 + #include "soluna_nexus-8.dmm" //Transit z8 + #include "../southern_cross/southern_cross-10.dmm" //Sif wilds z9, we are shifted 1 off from SC, this only works as we have the order done right on SC! // #include "southern_cross-10.dmm" //Valley z10 seemingly. For stranger critters and POIs. //Removed for an event. // #include "southern_cross-12.dmm" //Skylands z10 //Remove due to lack of use // #include "southern_cross-13.dmm" //Valley z10 seemingly. For stranger critters and POIs. //Removed for an event. @@ -59,14 +61,15 @@ #endif // #include "southern_cross-casino.dmm" //CHOMPedit: Disabled to save resources and loaded in during events - Jack - #include "submaps/_southern_cross_submaps.dm" //This contains VR world and gateway stuff + #include "../southern_cross/submaps/_southern_cross_submaps.dm" //This contains VR world and gateway stuff //PLANETS, installations, sectors, ships, etc for the overmap, I want put here. Add new comments and includes when you make new planets - #include "overmap/shuttles.dm" + #include "../southern_cross/overmap/shuttles.dm" //SIF - Planet - #include "overmap/sectors.dm" //This is actually the sector for Sif. This also includes places like the main station and the surface - #include "overmap/planets/kara/kara_OM_only.dm" //Kara, but just an OM icon + #include "overmap/sectors_sn.dm" //This is actually the sector for SN. + #include "../southern_cross/overmap/sectors_sif.dm" //This is actually the sector for Sif. + #include "../southern_cross/overmap/planets/kara/kara_OM_only.dm" //Kara, but just an OM icon /* //Disabled due to low usage. These are heavy mini-station-like Z layers too. //KARA - Planet #include "overmap/planets/kara/kara.dm" //And this is the sector for Kara. I have decided to better organize future planets and maps for them @@ -74,16 +77,16 @@ #include "overmap/planets/kara/northern_star/northern_star.dm" //This is the actual map info that we're using for kara #include "overmap/planets/kara/aerostat/aerostat.dm" //This is an installation for Kara. */ - #include "overmap/planets/thor/thor.dm" - #include "overmap/planets/tyr/tyr.dm" + #include "../southern_cross/overmap/planets/thor/thor.dm" + #include "../southern_cross/overmap/planets/tyr/tyr.dm" //SPACE - Anything random in space - #include "overmap/space/fueldepot.dm" //This is a fuel depot in space. + #include "../southern_cross/overmap/space/fueldepot.dm" //This is a fuel depot in space. - #define USING_MAP_DATUM /datum/map/southern_cross + #define USING_MAP_DATUM /datum/map/soluna_nexus // todo: map.dmm-s here diff --git a/modular_chomp/maps/soluna_nexus/soluna_nexus_areas.dm b/modular_chomp/maps/soluna_nexus/soluna_nexus_areas.dm new file mode 100644 index 0000000000..c0de450690 --- /dev/null +++ b/modular_chomp/maps/soluna_nexus/soluna_nexus_areas.dm @@ -0,0 +1,3201 @@ + +/* +/datum/map/southern_cross + + post_round_safe_areas = list ( + /area/centcom, + /area/shuttle/escape/centcom, + /area/shuttle/escape_pod1/centcom, + /area/shuttle/escape_pod2/centcom, + /area/shuttle/escape_pod3/centcom, + /area/shuttle/escape_pod5/centcom, + /area/shuttle/transport1/centcom, + /area/shuttle/administration/centcom, + /area/shuttle/response_ship, + ) +*/ + +//Turbolift + +/area/turbolift + name = "\improper Turbolift" + icon_state = "shuttle" + requires_power = 0 + dynamic_lighting = 1 + flags = RAD_SHIELDED + +/area/turbolift/start + name = "\improper Turbolift Start" + +/area/turbolift/firstdeck + name = "\improper first deck" + base_turf = /turf/simulated/floor/plating + +/area/turbolift/seconddeck + name = "\improper second deck" + base_turf = /turf/simulated/open + +/area/turbolift/thirddeck + name = "\improper third deck" + base_turf = /turf/simulated/open + +// Elevator areas. +// CHOMPEdit - Maintenance Deck +/* +/area/turbolift/port_deck_maints + name = "lift (maints deck)" + lift_floor_label = "Deck 0" + lift_floor_name = "Maintenance Deck" + lift_announce_str = "Arriving at Maintenance Deck: Engineering. Power Back Up. Gravity Generator." + base_turf = /turf/simulated/floor +*/ +/area/turbolift/port_deck_one + name = "lift (first deck)" + lift_floor_label = "Deck 1" + lift_floor_name = "Hangar Deck" + lift_announce_str = "Arriving at Hangar Deck: Main Hangars.Cargo Delivery. Telecommunications. Auxiliary Shuttle Docks. Escape Pods." + base_turf = /turf/simulated/floor + +/area/turbolift/port_deck_two + name = "lift (second deck)" + lift_floor_label = "Deck 2" + lift_floor_name = "Operations Deck" + lift_announce_str = "Arriving at Operations Deck: Engineering. Cargo. Medbay. Research. Security. Crew Facilities Shuttle Docks. Cryogenic Storage." + +/area/turbolift/port_deck_three + name = "lift (third deck)" + lift_floor_label = "Deck 3" + lift_floor_name = "Command Deck" + lift_announce_str = "Arriving at Command Deck: Bridge. Meeting Room. Command Quarters. AI Core. Solars." + +/area/turbolift/starboard_deck_one + name = "lift (first deck)" + lift_floor_label = "Deck 1" + lift_floor_name = "Hangar Deck" + lift_announce_str = "Arriving at Hangar Deck: Main Hangars.Cargo Delivery. Telecommunications. Auxiliary Shuttle Docks. Escape Pods." + base_turf = /turf/simulated/floor + +/area/turbolift/starboard_deck_two + name = "lift (second deck)" + lift_floor_label = "Deck 2" + lift_floor_name = "Operations Deck" + lift_announce_str = "Arriving at Operations Deck: Engineering. Cargo. Medbay. Research. Security. Crew Facilities, Shuttle Docks. Cryogenic Storage." + +/area/turbolift/starboard_deck_three + name = "lift (third deck)" + lift_floor_label = "Deck 3" + lift_floor_name = "Command Deck" + lift_announce_str = "Arriving at Command Deck: Bridge. Meeting Room. Command Quarters. AI Core. Solars." + +/area/turbolift/center_deck_one + name = "lift (first deck)" + lift_floor_label = "Deck 1" + lift_floor_name = "Hangar Deck" + lift_announce_str = "Arriving at Hangar Deck: Main Hangars. Cargo Delivery. Telecommunications. Auxiliary Shuttle Docks. Escape Pods." + base_turf = /turf/simulated/floor + +/area/turbolift/center_deck_two + name = "lift (second deck)" + lift_floor_label = "Deck 2" + lift_floor_name = "Operations Deck" + lift_announce_str = "Arriving at Operations Deck: Engineering. Cargo. Medbay. Research. Security. Crew Facilities Shuttle Docks. Cryogenic Storage." + +/area/turbolift/center_deck_three + name = "lift (third deck)" + lift_floor_label = "Deck 3" + lift_floor_name = "Command Deck" + lift_announce_str = "Arriving at Command Deck: Bridge. Meeting Room. Command Quarters. AI Core. Solars." + +/area/turbolift/cargo_deck_one + name = "lift (first deck)" + lift_floor_label = "Deck 1" + lift_floor_name = "Hangar Deck" + lift_announce_str = "Arriving at Cargo Delivery." + base_turf = /turf/simulated/floor + +/area/turbolift/cargo_deck_two + name = "lift (second deck)" + lift_floor_label = "Deck 2" + lift_floor_name = "Operations Deck" + lift_announce_str = "Arriving at Cargo." + +/area/turbolift/aft_deck_one + name = "lift (first deck)" + lift_floor_label = "Deck 1" + lift_floor_name = "Hangar Deck" + lift_announce_str = "Arriving at Hangar Deck: Main Hangars. Cargo Delivery. Telecommunications. Auxiliary Shuttle Docks. Escape Pods." + base_turf = /turf/simulated/floor + +/area/turbolift/aft_deck_two + name = "lift (second deck)" + lift_floor_label = "Deck 2" + lift_floor_name = "Operations Deck" + lift_announce_str = "Arriving at Operations Deck: Engineering. Cargo. Medbay. Research. Security. Crew Facilities Shuttle Docks. Cryogenic Storage." + +/area/turbolift/aft_deck_three + name = "lift (third deck)" + lift_floor_label = "Deck 3" + lift_floor_name = "Command Deck" + lift_announce_str = "Arriving at Command Deck: Bridge. Meeting Room. Command Quarters. AI Core. Solars." + +/area/turbolift/forward_deck_one + name = "lift (first deck)" + lift_floor_label = "Deck 1" + lift_floor_name = "Hangar Deck" + lift_announce_str = "Arriving at Hangar Deck: Main Hangars. Cargo Delivery. Telecommunications. Auxiliary Shuttle Docks. Escape Pods." + base_turf = /turf/simulated/floor + +/area/turbolift/forward_deck_two + name = "lift (second deck)" + lift_floor_label = "Deck 2" + lift_floor_name = "Operations Deck" + lift_announce_str = "Arriving at Operations Deck: Engineering. Cargo. Medbay. Research. Security. Crew Facilities Shuttle Docks. Cryogenic Storage." + +/area/turbolift/forward_deck_three + name = "lift (third deck)" + lift_floor_label = "Deck 3" + lift_floor_name = "Command Deck" + lift_announce_str = "Arriving at Command Deck: Bridge. Meeting Room. Command Quarters. AI Core. Solars." + +/area/maintenance/firstdeck + name = "First Deck Maintenance" + icon_state = "maintcentral" + +/area/maintenance/firstdeck/centralstarboard + name = "First Deck Starboard Maintenance" + icon_state = "smaint" + +/area/maintenance/firstdeck/centralport + name = "First Deck Port Maintenance" + icon_state = "pmaint" + +/area/hallway/primary/firstdeck/elevator + name = "\improper First Deck Central Elevator Access" + icon_state = "hallC" +/area/rnd/xenobiology/xenoflora_isolation + name = "\improper Xenoflora Isolation" + icon_state = "xeno_f_store" + +/area/crew_quarters/heads/sc/sd + name = "\improper Command - Station Director's Office" + icon_state = "captain" + sound_env = MEDIUM_SOFTFLOOR + holomap_color = HOLOMAP_AREACOLOR_COMMAND +// Shuttles + +//NT response shuttle + +/area/shuttle/response_ship + name = "\improper Response Team Ship" + icon_state = "shuttlered" + requires_power = 0 + flags = RAD_SHIELDED + ambience = AMBIENCE_HIGHSEC + +// Centcom Transport Shuttle +/area/shuttle/transport1 + icon_state = "shuttle" + name = "\improper Transport Shuttle" + +// Centcom Admin Shuttle + +/area/shuttle/administration + name = "\improper Administration Shuttle" + icon_state = "shuttlered" + +//Merc + +/area/syndicate_mothership + name = "\improper Mercenary Base" + icon_state = "syndie-ship" + requires_power = 0 + dynamic_lighting = 0 + flags = RAD_SHIELDED + ambience = AMBIENCE_HIGHSEC + +/area/syndicate_station + name = "\improper Mercenary Base" + icon_state = "syndie-ship" + requires_power = 0 + dynamic_lighting = 0 + flags = RAD_SHIELDED + ambience = AMBIENCE_HIGHSEC + +/area/syndicate_station/start + name = "\improper Mercenary Ship" + icon_state = "shuttlered" + +/area/syndicate_station/firstdeck + name = "north-west of first deck" + icon_state = "northwest" + +/area/syndicate_station/seconddeck + name = "north-east of second deck" + icon_state = "northeast" + +/area/syndicate_station/thirddeck + name = "south-east of third deck" + icon_state = "southeast" + +/area/syndicate_station/mining + name = "mining site" + icon_state = "shuttlered" + +/area/syndicate_station/planet + name = "planetside" + dynamic_lighting = 1 + icon_state = "shuttlered" + base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse + +/area/syndicate_station/transit + name = " transit" + icon_state = "shuttlered" + base_turf = /turf/space/transit/east + +/area/syndicate_station/orbit + name = "in orbit of Sif" + icon_state = "shuttlegrn" + base_turf = /turf/space + +/area/syndicate_station/sky + name = "hovering over skies of sif" + icon_state = "shuttlegrn" + base_turf = /turf/simulated/sky/west + +/area/syndicate_station/sky_transit + name = "in flight over sif" + icon_state = "shuttlered" + base_turf = /turf/simulated/sky/moving/west + +/area/syndicate_station/arrivals_dock + name = "\improper docked with Southern Cross" + dynamic_lighting = 0 + icon_state = "shuttle" + +//Skipjack + +/area/skipjack_station + name = "Raider Outpost" + icon_state = "yellow" + requires_power = 0 + dynamic_lighting = 0 + flags = RAD_SHIELDED + ambience = AMBIENCE_HIGHSEC + +/area/skipjack_station/transit + name = "transit" + icon_state = "shuttlered" + base_turf = /turf/space/transit/north + +/area/skipjack_station/firstdeck + name = "north of first deck" + icon_state = "northwest" + +/area/skipjack_station/seconddeck + name = "west of second deck" + icon_state = "west" + +/area/skipjack_station/thirddeck + name = "east of third deck" + icon_state = "east" + +/area/skipjack_station/mining + name = "mining site" + icon_state = "shuttlered" + +/area/skipjack_station/planet + name = "planet" + icon_state = "shuttlered" + dynamic_lighting = 1 + base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse + +/area/skipjack_station/orbit + name = "in orbit of Sif" + icon_state = "shuttlegrn" + base_turf = /turf/space + +/area/skipjack_station/sky + name = "hovering over skies of sif" + icon_state = "shuttlegrn" + base_turf = /turf/simulated/sky/north + +/area/skipjack_station/sky_transit + name = "in flight over sif" + icon_state = "shuttlered" + base_turf = /turf/simulated/sky/moving/north + +/area/skipjack_station/arrivals_dock + name = "\improper docked with Southern Cross" + icon_state = "shuttle" + +// Ninja areas +/area/ninja_dojo + name = "\improper Ninja Base" + icon_state = "green" + requires_power = 0 + flags = RAD_SHIELDED + ambience = AMBIENCE_HIGHSEC + +/area/ninja_dojo/dojo + name = "\improper Clan Dojo" + dynamic_lighting = 0 + +/area/shuttle/ninja + name = "\improper Ninja Shuttle" + icon_state = "shuttlered" + +//Trade Ship + +/area/shuttle/merchant + icon_state = "shuttle" + +/area/shuttle/merchant/home + name = "\improper Merchant Vessel - Home" + +/area/shuttle/merchant/away + name = "\improper Merchant Vessel - Away" + +//Small Escape Pods + + +/area/shuttle/escape_pod1 + name = "\improper Escape Pod One" + music = "music/escape.ogg" + +/area/shuttle/escape_pod1/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/airless + +/area/shuttle/escape_pod1/centcom + icon_state = "shuttle" + +/area/shuttle/escape_pod1/transit + icon_state = "shuttle" + +/area/shuttle/escape_pod2 + name = "\improper Escape Pod Two" + music = "music/escape.ogg" + +/area/shuttle/escape_pod2/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/airless + +/area/shuttle/escape_pod2/centcom + icon_state = "shuttle" + +/area/shuttle/escape_pod2/transit + icon_state = "shuttle" + +/area/shuttle/escape_pod3 + name = "\improper Escape Pod Three" + music = "music/escape.ogg" + +/area/shuttle/escape_pod3/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/airless + +/area/shuttle/escape_pod3/centcom + icon_state = "shuttle" + +/area/shuttle/escape_pod3/transit + icon_state = "shuttle" + +/area/shuttle/escape_pod4 + name = "\improper Escape Pod Four" + music = "music/escape.ogg" + +/area/shuttle/escape_pod4/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/airless + +/area/shuttle/escape_pod4/centcom + icon_state = "shuttle" + +/area/shuttle/escape_pod4/transit + icon_state = "shuttle" + +/area/shuttle/escape_pod5 + name = "\improper Escape Pod Five" + music = "music/escape.ogg" + +/area/shuttle/escape_pod5/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/airless + +/area/shuttle/escape_pod5/centcom + icon_state = "shuttle" + +/area/shuttle/escape_pod5/transit + icon_state = "shuttle" + +/area/shuttle/escape_pod6 + name = "\improper Escape Pod Six" + music = "music/escape.ogg" + +/area/shuttle/escape_pod6/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/airless + +/area/shuttle/escape_pod6/centcom + icon_state = "shuttle" + +/area/shuttle/escape_pod6/transit + icon_state = "shuttle" + +/area/shuttle/escape_pod7 + name = "\improper Escape Pod Seven" + music = "music/escape.ogg" + +/area/shuttle/escape_pod7/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/reinforced/airless + +/area/shuttle/escape_pod7/centcom + icon_state = "shuttle" + +/area/shuttle/escape_pod7/transit + icon_state = "shuttle" + +/area/shuttle/escape_pod8 + name = "\improper Escape Pod Eight" + music = "music/escape.ogg" + +/area/shuttle/escape_pod8/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/reinforced/airless + +/area/shuttle/escape_pod8/centcom + icon_state = "shuttle" + +/area/shuttle/escape_pod8/transit + icon_state = "shuttle" + +/area/shuttle/escape_pod9 + name = "\improper Escape Pod Nine" + music = "music/escape.ogg" + +/area/shuttle/escape_pod9/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/reinforced/airless + +/area/shuttle/escape_pod9/centcom + icon_state = "shuttle" + +/area/shuttle/escape_pod9/transit + icon_state = "shuttle" + +/area/shuttle/escape_pod10 + name = "\improper Escape Pod Ten" + music = "music/escape.ogg" + +/area/shuttle/escape_pod10/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/reinforced/airless + +/area/shuttle/escape_pod10/centcom + icon_state = "shuttle" + +/area/shuttle/escape_pod10/transit + icon_state = "shuttle" + +/area/shuttle/escape_pod11 + name = "\improper Escape Pod Eleven" + music = "music/escape.ogg" + +/area/shuttle/escape_pod11/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/reinforced/airless + +/area/shuttle/escape_pod11/centcom + icon_state = "shuttle" + +/area/shuttle/escape_pod11/transit + icon_state = "shuttle" + +/area/shuttle/escape_pod12 + name = "\improper Escape Pod Twelve" + music = "music/escape.ogg" + +/area/shuttle/escape_pod12/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/reinforced/airless + +/area/shuttle/escape_pod12/centcom + icon_state = "shuttle" + +/area/shuttle/escape_pod12/transit + icon_state = "shuttle" + +/area/shuttle/escape_pod13 + name = "\improper Escape Pod Thirteen" + music = "music/escape.ogg" + +/area/shuttle/escape_pod13/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/reinforced/airless + +/area/shuttle/escape_pod13/centcom + icon_state = "shuttle" + +/area/shuttle/escape_pod13/transit + icon_state = "shuttle" + +/area/shuttle/escape_pod14 + name = "\improper Escape Pod Fourteen" + music = "music/escape.ogg" + +/area/shuttle/escape_pod14/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/reinforced/airless + +/area/shuttle/escape_pod14/centcom + icon_state = "shuttle" + +/area/shuttle/escape_pod14/transit + icon_state = "shuttle" + +//Large Escape Pods + +/area/shuttle/large_escape_pod1 + name = "\improper Large Escape Pod One" + music = "music/escape.ogg" + +/area/shuttle/large_escape_pod1/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/airless + +/area/shuttle/large_escape_pod1/centcom + icon_state = "shuttle" + +/area/shuttle/large_escape_pod1/transit + icon_state = "shuttle" + +/area/shuttle/large_escape_pod2 + name = "\improper Large Escape Pod Two" + music = "music/escape.ogg" + +/area/shuttle/large_escape_pod2/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/airless + +/area/shuttle/large_escape_pod2/centcom + icon_state = "shuttle" + +/area/shuttle/large_escape_pod2/transit + icon_state = "shuttle" + +/area/shuttle/large_escape_pod3 + name = "\improper Large Escape Pod Three" + music = "music/escape.ogg" + +/area/shuttle/large_escape_pod3/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/airless + +/area/shuttle/large_escape_pod3/centcom + icon_state = "shuttle" + +/area/shuttle/large_escape_pod3/transit + icon_state = "shuttle" + +/area/shuttle/large_escape_pod4 + name = "\improper Large Escape Pod Four" + music = "music/escape.ogg" + +/area/shuttle/large_escape_pod4/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/airless + +/area/shuttle/large_escape_pod4/centcom + icon_state = "shuttle" + +/area/shuttle/large_escape_pod4/transit + icon_state = "shuttle" +/area/shuttle/cryo + name = "\improper Cryogenic Storage" + +/area/shuttle/cryo/station + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/airless + +/area/shuttle/cryo/centcom + icon_state = "shuttle" + +/area/shuttle/cryo/transit + icon_state = "shuttle" + +// Fishing CHOMPstation edit + +/area/surface/outpost/fishing + name = "\improper Fishing Outpost" + icon_state = "recreation_area" + +/area/surface/outpost/fishing/smes + name = "\improper Fishing SMES Maintenance" + icon_state = "substation" + ambience = AMBIENCE_SUBSTATION //CHOMP Addition + +//Shuttle 3 CHOMPedit + +/area/shuttle/shuttle3 + name = "\improper Hangar Deck" + icon_state = "yellow" + requires_power = 0 + dynamic_lighting = 1 + flags = RAD_SHIELDED + +/area/shuttle/shuttle3/start + name = "\improper Expedition Hangar One" + icon_state = "shuttlered" + base_turf = /turf/simulated/floor/reinforced + +/area/shuttle/shuttle3/seconddeck + name = "south of second deck" + icon_state = "south" + +/area/shuttle/shuttle3/stationhangar3 + name = "\improper Hangar Three" + icon_state = "shuttlered" + base_turf = /turf/simulated/floor/reinforced + +/area/shuttle/shuttle3/mining + name = "wilderness site" + icon_state = "shuttlered" + +/area/shuttle/shuttle3/transit + name = "transit" + icon_state = "shuttlered" + base_turf = /turf/space/transit/north + +/area/shuttle/shuttle3/orbit + name = "in orbit of Sif" + icon_state = "shuttlegrn" + base_turf = /turf/space + +/area/shuttle/shuttle3/sky + name = "hovering over skies of sif" + icon_state = "shuttlegrn" + base_turf = /turf/simulated/sky + +/area/shuttle/shuttle3/sky_transit + name = "in flight over sif" + icon_state = "shuttlered" + base_turf = /turf/simulated/sky/moving + +//CHOMPedit: Exploration outpost ferry shuttle + +/area/shuttle/expoutpost/site + name = "\improper Exploration Sling" + icon_state = "shuttle2" + +/area/shuttle/expoutpost/station + name = "\improper Exploration Sling" + icon_state = "shuttle2" + base_turf = /turf/simulated/floor/reinforced/airless + +//CHOMPedit: New Explo Carrier Areas. + +/area/expoutpost/stationshuttle + name = "\improper Station Shuttle to Exploration Carrier" + +// Bow + +/area/expoutpost/portbowairlock + name = "\improper Port Bow Airlock" + +/area/expoutpost/starboardbowairlock + name = "\improper Starboard Bow Airlock" + +/area/expoutpost/eva + name = "\improper EVA" + +/area/expoutpost/botany + name = "\improper Botany Lab" + +/area/expoutpost/washroom + name = "\improper Washroom" + +/area/expoutpost/civaccesshallway + name = "\improper Civilian Access Hallway" + +/area/expoutpost/janitorial + name = "\improper Janitorial Closet" + +/area/expoutpost/kitchen + name = "\improper Kitchen" + +/area/expoutpost/restrooms + name = "\improper Restrooms" + +/area/expoutpost/portbowhallway + name = "\improper Port Bow Hallway" + +/area/expoutpost/bar + name = "\improper Bar" + flags = RAD_SHIELDED + +/area/expoutpost/starbowhallway + name = "\improper Starboard Bow Hallway" + +/area/expoutpost/suite1 + name = "\improper Suite One" + flags = RAD_SHIELDED + +/area/expoutpost/suite2 + name = "\improper Suite Two" + flags = RAD_SHIELDED + +/area/expoutpost/pathfinderroom + name = "\improper Pathfinder's Ready-Room" + flags = RAD_SHIELDED + +/area/expoutpost/commanderroom + name = "\improper Security Commander's Ready-Room" + flags = RAD_SHIELDED + +/area/expoutpost/portqpadjunction + name = "\improper Port Q-Pad Junction" + +/area/expoutpost/starqpadjunction + name = "\improper Starboard Q-Pad Junction" + +/area/expoutpost/slingcarrierdock + name = "\improper Sling Carrier Dock" + +/area/expoutpost/stationqpad + name ="\improper Station Q-Pad Junction" + +/area/expoutpost/secbowcheckpoint + name = "\improper Security Bow Checkpoint" + +// Midship + +/area/expoutpost/staginghangar + name = "\improper Staging Hangar" + +// Stern + +/area/expoutpost/uppersternhallway + name = "\improper Upper Stern Hallway" + +/area/expoutpost/medbaylobby + name = "\improper Medbay Lobby" + +/area/expoutpost/medicalbay + name = "\improper Medical Bay" + +/area/expoutpost/surgical1 + name = "\improper Surgical Theatre One" + +/area/expoutpost/midsternhallway + name = "\improper Middle Stern Hallway" + +/area/expoutpost/exploarmory + name = "\improper Exploration Armory" + +/area/expoutpost/explobriefroom + name = "\improper Exploration Briefing Room" + +/area/expoutpost/explodorm1 + name = "\improper Exploration Dorm One" + flags = RAD_SHIELDED + +/area/expoutpost/explodorm2 + name = "\improper Exploration Dorm Two" + flags = RAD_SHIELDED + +/area/expoutpost/breakroom + name = "\improper Public Breakroom" + +/area/expoutpost/cic + name = "\improper Combat Information Center" + +/area/expoutpost/secoffice + name = "\improper Security Office" + +/area/expoutpost/gatewayeva + name = "\improper Gateway EVA" + +/area/expoutpost/gateway + name = "\improper Gateway" + +/area/expoutpost/secarmory + name = "\improper Security Armory" + +/area/expoutpost/miningfoyer + name = "\improper Mining Foyer" + +/area/expoutpost/reactoraccess + name = "\improper Reactor Access" + +/area/expoutpost/reactorcr + name = "\improper Reactor Control Room" + +/area/expoutpost/reactorroom + name = "\improper Fusion Reactor" + +/area/expoutpost/rndlobby + name = "\improper R&D Lobby" + +/area/expoutpost/rnd + name = "\improper Research and Development" + +/area/expoutpost/engoffice + name = "\improper Engineering Office" + +/area/expoutpost/engstorage + name = "\improper Engineering Equipment Room" + +/area/expoutpost/atmospherics + name = "\improper Atmospherics" + +/area/expoutpost/secureaccess + name = "\improper Secure Access Corridor" + +/area/expoutpost/techstorage + name = "\improper Technical Storage" + +/area/expoutpost/aicore + name = "\improper Auxiliary AI Core" + +/area/expoutpost/telecomms + name = "\improper Ship Telecomms" + +/area/expoutpost/disposals + name = "\improper Disposals Sorting" + +/area/expoutpost/lowersternhallway + name = "\improper Lower Stern Hallway" + +/area/expoutpost/portfuelstorage + name = "\improper Port Fuel Storage" + +/area/expoutpost/starfuelstorage + name = "\improper Starboard Fuel Storage" + +// Maints + +/area/expoutpost/portuppermaint + name = "\improper Port Upper Maintenance" + +/area/expoutpost/staruppermaint + name = "\improper Starboard Upper Maintenance" + +/area/expoutpost/portexplomaint + name = "\improper Port Exploration Maintenance" + +/area/expoutpost/starsciencemaint + name = "\improper Starboard Science Maintenance" + +/area/expoutpost/portlowermaint + name = "\improper Port Lower Maintenance" + +/area/expoutpost/starlowermaint + name = "\improper Starboard Lower Maintenance" + +/area/expoutpost/portsternairlock + name = "\improper Port Stern Airlock" + +/area/expoutpost/starsternairlock + name = "\improper Starboard Stern Airlock" + +// Hangars + +/area/expoutpost/hangarone + name = "\improper Exploration Carrier Hangar One" + icon_state = "hangar" + +/area/expoutpost/hangartwo + name = "\improper Exploration Carrier Hangar Two" + icon_state = "hangar" + +/area/expoutpost/hangarthree + name = "\improper Exploration Carrier Hangar Three" + icon_state = "hangar" + +/area/expoutpost/hangarfour + name = "\improper Exploration Carrier Hangar Four" + icon_state = "hangar" + +/area/expoutpost/hangarfive + name = "\improper Exploration Carrier Hangar Five" + icon_state = "hangar" + +/area/expoutpost/hangarsix + name = "\improper Exploration Carrier Hangar Six" + icon_state = "hangar" + +//CHOMPedit: Exploration backup shuttle. For now this is a placeholder for future expedition content. + +/area/shuttle/shuttlebackup + name = "\improper Hangar Deck" + icon_state = "yellow" + requires_power = 0 + dynamic_lighting = 1 + flags = RAD_SHIELDED + +/area/shuttle/shuttlebackup/start + name = "\improper Expedition Backup Shuttle Docks" + icon_state = "shuttlered" + +// Misc + +/area/wreck/ufoship + name = "\improper Wreck" + icon_state = "storage" + ambience = AMBIENCE_OTHERWORLDLY + +/area/wreck/supplyshuttle + name = "\improper Wreck" + icon_state = "storage" + ambience = AMBIENCE_RUINS + +/area/shuttle/overmap/sif + name = "wilderness site" + icon_state = "shuttlered" + +/area/maintenance/abcargo + name = "Abandoned Cargo" + icon_state = "maint_cargo" + +/area/maintenance/abmedical + name = "Abandoned Medical" + icon_state = "maint_medbay" + +/area/maintenance/abfirstaid + name = "Abandoned First Aid Station" + icon_state = "maint_medbay" + +/area/maintenance/abchemistry + name = "Abandoned Chemistry" + icon_state = "maint_medbay" + +/area/maintenance/abscience + name = "Abandoned Science" + icon_state = "asmaint" + +/area/maintenance/absgenetics + name = "Abandoned Genetics" + icon_state = "asmaint" + +/area/maintenance/thrift + name = "Abandoned Thrift Store" + icon_state = "mid_civilian_hallway" + +/area/maintenance/abtheatre + name = "Abandoned Theatre" + icon_state = "Theatre" + sound_env = LARGE_SOFTFLOOR + +/area/maintenance/ragecage + name = "Rage Cage" + icon_state = "nuke_storage" + +/area/engineering/lowlobby + name = "Engineering Deck 0 Lobby" + icon_state = "maint_pumpstation" + +/area/engineering/backuppowerlobby + name = "Engineering Backup Power Lobby" + icon_state = "engineering" + +/area/engineering/backuppower + name = "Engineering Backup Power" + icon_state = "engineering" + +/area/maintenance/substation/gravgen + name = "Gravity Generator Substation" + icon_state = "engineering" + +/area/engineering/gravgen + name = "Gravity Generator" + icon_state = "engineering" + +/area/maintenance/engineering/gravgen + name = "Gravity Generator Maintenance" + +/area/maintenance/maintdeck/field + name = "Maintenance Deck Field" + +/area/maintenance/maintdeck/fieldhallway + name = "Maintenance Deck Field Hallway" +/area/maintenance/maintdeck/fieldthrift + name = "Maintenance Deck Thrift Store Hallway" + +/area/maintenance/abhydroponicssupp + name = "Abandoned Botany Supplies" + +/area/maintenance/abhydroponics + name = "Abandoned Botany" + +/area/maintenance/smoleroom + name = "Smole Room" + +/area/maintenance/janitoral + name = "Maintenance Deck Janitoral" + +/area/maintenance/lookout + name = "Maintenance Deck Lookout" + +/area/maintenance/bar/dorm_1 + name = "Maintenance Deck Bar Dorms 1" + +/area/maintenance/bar/dorm_2 + name = "Maintenance Deck Bar Dorms 2" + +//ALL THE NEW AREAS FOR NEW STATION! KAS + +//BRIDGE AREAS + +/area/bridge + icon_state = "bridge" + holomap_color = HOLOMAP_AREACOLOR_COMMAND + ambience = AMBIENCE_ARRIVALS + sound_env = LARGE_ENCLOSED + lightswitch = 0 + +/area/bridge/HoP_Office + name = "\improper HoP Office" + icon_state = "bridge" + +/area/bridge/AI_Core_Chamber + name = "\improper AI Core Chamber" + icon_state = "bridge" + sound_env = AMBIENCE_AI + +/area/bridge/AI_Upload_Hall + name = "\improper AI Upload Hall" + icon_state = "bridge" + sound_env = AMBIENCE_AI + +/area/bridge/Cyborg_Station + name = "\improper Cyborg Station" + icon_state = "bridge" + sound_env = AMBIENCE_AI + +/area/bridge/Server_Room + name = "\improper Server Room" + icon_state = "bridge" + sound_env = AMBIENCE_AI + +/area/bridge/Deck3_Corridor + name = "\improper 3 Deck Corridor" + icon_state = "bridge" + lightswitch = 1 + +/area/bridge/sleeping + icon_state = "bridge" + flags = RAD_SHIELDED + limit_mob_size = FALSE + block_suit_sensors = TRUE + block_tracking = TRUE + soundproofed = TRUE + forbid_events = TRUE + +/area/bridge/sleeping/HoP_Quarters + name = "\improper HoP Quarters" + +/area/bridge/sleeping/CE_Quarters + name = "\improper CE Quarters" + +/area/bridge/sleeping/CMO_Quarters + name = "\improper CMO Quarters" +/area/bridge/sleeping/RD_Quarters + name = "\improper RD Quarters" + +/area/bridge/sleeping/HoS_Quarters + name = "\improper HoS Quarters" + +/area/bridge/sleeping/Secretary_Quarters + name = "\improper Secretary Quarters" + +/area/bridge/sleeping/Captain_Quarters + name = "\improper Captain Quarters" + +/area/bridge/Leisure_Room + name = "\improper Leisure Room" + icon_state = "bridge" + +/area/bridge/Breakroom + name = "\improper Breakroom" + icon_state = "bridge" + +/area/bridge/Control_Atrium + name = "\improper Control Atrium" + icon_state = "bridge" + +/area/bridge/Captain_Office + name = "\improper Captain Office" + icon_state = "bridge" + +/area/bridge/Conference_Room + name = "\improper Conference Room" + icon_state = "bridge" + +/area/bridge/Embassy + name = "\improper Embassy" + icon_state = "bridge" + +/area/bridge/Firstaid_Post + name = "\improper FirstAid Post" + icon_state = "bridge" + +/area/bridge/Vault_Reception + name = "\improper Vault Reception" + icon_state = "bridge" + +/area/bridge/Vault + name = "\improper Vault" + icon_state = "bridge" + +//SECURITY AREAS + +/area/security + icon_state = "security" + holomap_color = HOLOMAP_AREACOLOR_SECURITY + ambience = AMBIENCE_HIGHSEC + sound_env = STANDARD_STATION + lightswitch = 0 + +/area/security/Aft_Security_Post + name = "\improper Aft Security Post" + icon_state = "security" + +/area/security/Reception + name = "\improper Reception" + icon_state = "security" + +/area/security/Deck2_1_Corridor + name = "\improper 2 Deck 1 Corridor" + icon_state = "security" + +/area/security/Deck2_2_Corridor + name = "\improper 2 Deck 2 Corridor" + icon_state = "security" + +/area/security/Forensics_Office + name = "\improper Forensics Office" + icon_state = "security" + +/area/security/Internal_Affairs_Office + name = "\improper Internal Affairs Office" + icon_state = "security" + +/area/security/HoS_Office + name = "\improper HoS Office" + icon_state = "security" + +/area/security/Wardens_Office + name = "\improper Wardens Office" + icon_state = "security" + +/area/security/Equipment_Storage + name = "\improper Equipment Storage" + icon_state = "security" + +/area/security/Restroom + name = "\improper Restroom" + icon_state = "security" + lightswitch = 1 + +/area/security/Lobby + name = "\improper Lobby" + icon_state = "security" + +/area/security/Boardroom + name = "\improper Boardroom" + icon_state = "security" + +/area/security/Locker_Room + name = "\improper Locker Room" + icon_state = "security" + +/area/security/Firing_Range + name = "\improper Firing Range" + icon_state = "security" + +/area/security/Storage_Room + name = "\improper Storage Room" + icon_state = "security" + +/area/security/Shuttlebay_Storage + name = "\improper Shuttlebay Storage" + icon_state = "security" + +/area/security/Processing_Room + name = "\improper Processing Room" + icon_state = "security" + +/area/security/Evidence_Storage + name = "\improper Evidence Storage" + icon_state = "security" + +/area/security/Armory + name = "\improper Armory" + icon_state = "security" + +/area/security/Brig + name = "\improper Brig" + icon_state = "security" + +/area/security/Prison_Wing + name = "\improper Prison Wing" + icon_state = "security" + +/area/security/Visitation_Room + name = "\improper Visitation Room" + icon_state = "security" + +/area/security/Quantum_Pad_Checkpoint + name = "\improper Quantum Pad Checkpoint" + icon_state = "security" + lightswitch = 1 + +/area/security/Quantum_Pad_Storage + name = "\improper Quantum Pad Storage" + icon_state = "security" + +/area/security/Exploration_Ship_Bay + name = "\improper Exploration Ship Bay" + icon_state = "security" + ambience = AMBIENCE_HANGAR + +/area/security/Exploration_Sling_Shuttle + name = "\improper Station Shuttle to Exploration Carrier" + icon_state = "security" + ambience = AMBIENCE_HANGAR + +/area/security/Transit_Turrets + name = "\improper Transit Turrets" + icon_state = "security" + +//MEDICAL AREAS + +/area/medical + icon_state = "medbay" + holomap_color = HOLOMAP_AREACOLOR_MEDICAL + ambience = AMBIENCE_GENERIC + sound_env = STANDARD_STATION + lightswitch = 0 + +/area/medical/For_Medical_Post + name = "\improper For Medical Post" + icon_state = "medbay" + +/area/medical/Aft_Medical_Post + name = "\improper Aft Medical Post" + icon_state = "medbay" + +/area/medical/Port_Medical_Post + name = "\improper Port Medical Post" + icon_state = "medbay" + +/area/medical/EMT_Bay + name = "\improper EMT Bay" + icon_state = "medbay" + +/area/medical/Reception + name = "\improper Reception" + icon_state = "medbay" + +/area/medical/FirstAid_Storage + name = "\improper FirstAid Storage" + icon_state = "medbay" + +/area/medical/Chemistry + name = "\improper Chemistry" + icon_state = "medbay" + +/area/medical/Distillery + name = "\improper Distillery" + icon_state = "medbay" + +/area/medical/Treatment_Hall + name = "\improper Treatment Hall" + icon_state = "medbay" + +/area/medical/Surgery_Viewing + name = "\improper Surgery Viewing" + icon_state = "medbay" + +/area/medical/Surgery_Room_1 + name = "\improper Surgery Room 1" + icon_state = "medbay" + +/area/medical/Surgery_Room_2 + name = "\improper Surgery Room 2" + icon_state = "medbay" + +/area/medical/Deck2_Evac_Corridor + name = "\improper 2 Deck Evac Corridor" + icon_state = "medbay" + +/area/medical/Deck2_Corridor + name = "\improper 2 Deck Corridor" + icon_state = "medbay" + +/area/medical/Patient_Ward + name = "\improper Patient Ward" + icon_state = "medbay" + +/area/medical/Dressing_Room + name = "\improper Dressing Room" + icon_state = "medbay" + +/area/medical/Locker_Room + name = "\improper Locker Room" + icon_state = "medbay" + +/area/medical/CMO_Office + name = "\improper CMO Office" + icon_state = "medbay" + +/area/medical/Stairwell + name = "\improper Stairwell" + icon_state = "medbay" + +/area/medical/Morgue + name = "\improper Morgue" + icon_state = "medbay" + ambience = AMBIENCE_GHOSTLY + +/area/medical/Resleeving + name = "\improper Resleeving" + icon_state = "medbay" + +/area/medical/Lounge + name = "\improper Lounge" + icon_state = "medbay" + +/area/medical/Patient_1 + name = "\improper Patient 1" + icon_state = "medbay" + +/area/medical/Patient_2 + name = "\improper Patient 2" + icon_state = "medbay" + +/area/medical/Patient_3 + name = "\improper Patient 3" + icon_state = "medbay" + +/area/medical/Patient_4 + name = "\improper Patient 4" + icon_state = "medbay" + +/area/medical/Psych_Room_1 + name = "\improper Psych Room 1" + icon_state = "medbay" + +/area/medical/Psych_Room_2 + name = "\improper Psych Room 2" + icon_state = "medbay" + +/area/medical/Virology + name = "\improper Virology" + icon_state = "medbay" + +/area/medical/Genetics_Lab + name = "\improper Genetics Lab" + icon_state = "medbay" + +/area/medical/Surgery_Storage + name = "\improper Surgery Storage" + icon_state = "medbay" + +/area/medical/Deck3_Corridor + name = "\improper 3 Deck Corridor" + icon_state = "medbay" + +/area/medical/Autoresleeving + name = "\improper Autoresleeving" + icon_state = "medbay" + ambience = AMBIENCE_GHOSTLY + +/area/medical/Restrooms + name = "\improper Restrooms" + icon_state = "medbay" + lightswitch = 1 + +//SCIENCE AREAS + +/area/rnd + icon_state = "research" + holomap_color = HOLOMAP_AREACOLOR_SCIENCE + ambience = AMBIENCE_ENGINEERING + sound_env = LARGE_SOFTFLOOR + lightswitch = 0 + +/area/rnd/Research_Lab + name = "\improper Research Lab" + icon_state = "research" + +/area/rnd/Robotics_Lab + name = "\improper Robotics Lab" + icon_state = "research" + +/area/rnd/Mech_Bay + name = "\improper Mech Bay" + icon_state = "research" + +/area/rnd/Locker_Room + name = "\improper Locker Room" + icon_state = "research" + +/area/rnd/Server_Room + name = "\improper Server Room" + icon_state = "research" + +/area/rnd/Circuitry_Den + name = "\improper Circuitry Den" + icon_state = "research" + +/area/rnd/Testing_Lab + name = "\improper Testing Lab" + icon_state = "research" + +/area/rnd/Toxins_Storage + name = "\improper Toxins Storage" + icon_state = "research" + +/area/rnd/Toxins_Mixing_Room + name = "\improper Toxins Mixing Room" + icon_state = "research" + +/area/rnd/Toxins_Viewing_Port + name = "\improper Toxins Viewing Port" + icon_state = "research" + +/area/rnd/RD_Office + name = "\improper RD Office" + icon_state = "research" + +/area/rnd/Observation_Hall + name = "\improper Observation Hall" + icon_state = "research" + +/area/rnd/PA_Chamber + name = "\improper PA Chamber" + icon_state = "research" + +/area/rnd/Research_Ship_Bay + name = "\improper Research Ship Bay" + icon_state = "research" + ambience = AMBIENCE_HANGAR + +/area/rnd/Xenobiology_Lab + name = "\improper Xenobiology Lab" + icon_state = "research" + +/area/rnd/Xenobotany_Lab + name = "\improper Xenobotany Lab" + icon_state = "research" + +/area/rnd/Xenobotany_Isolation_Chamber + name = "\improper Xenobotany Isolation Chamber" + icon_state = "research" + +/area/rnd/Testing_Chamber + name = "\improper Testing Chamber" + icon_state = "research" + +/area/rnd/PA_Access + name = "\improper Testing PA Access" + icon_state = "research" + +/area/rnd/Deck2_Corridor + name = "\improper 2 Deck Corridor" + icon_state = "research" + + +//ENGINEERING AREAS + +/area/engineering + icon_state = "engineering" + holomap_color = HOLOMAP_AREACOLOR_ENGINEERING + ambience = AMBIENCE_ENGINEERING + sound_env = LARGE_ENCLOSED + lightswitch = 0 + +/area/engineering/Central_Engineering_Post + name = "\improper Central Engineering Post" + icon_state = "engineering" + lightswitch = 1 + +/area/engineering/GravGen_Room + name = "\improper GravGen Room" + icon_state = "engineering" + +/area/engineering/Telecomms_Foyer + name = "\improper Telecomms Foyer" + icon_state = "engineering" + ambience = AMBIENCE_AI + +/area/engineering/Telecomms_Control_Room + name = "\improper Telecomms Control Room" + icon_state = "engineering" + ambience = AMBIENCE_AI + +/area/engineering/Telecomms_Network + name = "\improper Telecomms Network" + icon_state = "engineering" + ambience = AMBIENCE_AI + lightswitch = 1 + +/area/engineering/Reception + name = "\improper Reception" + icon_state = "engineering" + +/area/engineering/Engineering_EVA + name = "\improper Engineering EVA" + icon_state = "engineering" + +/area/engineering/Locker_Room + name = "\improper Locker Room" + icon_state = "engineering" + +/area/engineering/Engineering_Workshop + name = "\improper Engineering Workshop" + icon_state = "engineering" + +/area/engineering/Deck2_1_Corridor + name = "\improper 2 Deck 1 Corridor" + icon_state = "engineering" + +/area/engineering/Deck2_2_Corridor + name = "\improper 2 Deck 2 Corridor" + icon_state = "engineering" + +/area/engineering/Deck2_Evac_Corridor + name = "\improper 2 Deck Evac Corridor" + icon_state = "engineering" + +/area/engineering/Storage + name = "\improper Storage" + icon_state = "engineering" + +/area/engineering/Drone_Fab + name = "\improper Drone Fab" + icon_state = "engineering" + +/area/engineering/Canister_Storage + name = "\improper Canister Storage" + icon_state = "engineering" + +/area/engineering/Mech_Bay + name = "\improper Mech Bay" + icon_state = "engineering" + +/area/engineering/Technical_Storage + name = "\improper Technical Storage" + icon_state = "engineering" + +/area/engineering/CE_Office + name = "\improper CE Office" + icon_state = "engineering" + +/area/engineering/Deck3_1_Corridor + name = "\improper 3 Deck 1 Corridor" + icon_state = "engineering" + +/area/engineering/Deck3_2_Corridor + name = "\improper 3 Deck 2 Corridor" + icon_state = "engineering" + +/area/engineering/Atmospherics_Chamber + name = "\improper Atmospherics Chamber" + icon_state = "engineering" + ambience = AMBIENCE_ATMOS + +/area/engineering/Atmospherics_Control_Room + name = "\improper Atmospherics Control Room" + icon_state = "engineering" + +/area/engineering/Atmospherics_Substation + name = "\improper Atmospherics Substation" + icon_state = "engineering" + +/area/engineering/Engine1_Chamber + name = "\improper 1 Engine Chamber" + icon_state = "engineering" + +/area/engineering/Engine1_Control_Room + name = "\improper 1 Engine Control Room" + icon_state = "engineering" + +/area/engineering/Engine1_Access_Hall + name = "\improper 1 Engine Access Hall" + icon_state = "engineering" + +/area/engineering/Engine1_Substation + name = "\improper 1 Engine Substation" + icon_state = "engineering" + +/area/engineering/Engine2_Chamber + name = "\improper 2 Engine Chamber" + icon_state = "engineering" + +/area/engineering/Engine3_Control_Room + name = "\improper 2 Engine Control Room" + icon_state = "engineering" + +/area/engineering/Engine2_Access_Hall + name = "\improper 2 Engine Access Hall" + icon_state = "engineering" + +/area/engineering/Engine2_Substation + name = "\improper 2 Engine Substation" + icon_state = "engineering" + +/area/engineering/Engine2_Canister_Storage + name = "\improper 2 Engine Canister Storage" + icon_state = "engineering" + +/area/engineering/Engine2_Waste_Handling + name = "\improper 2 Engine Waste Handling" + icon_state = "engineering" + +/area/engineering/Construction_Area + name = "\improper Construction Area" + icon_state = "engineering" + +/area/engineering/Airlock_Access + name = "\improper Airlock Access" + icon_state = "engineering" + +/area/engineering/Engine_Tech_Storage + name = "\improper Engine Tech Storage" + icon_state = "engineering" + +/area/engineering/Breakroom + name = "\improper Engineering Breakroom" + icon_state = "engineering" + +/area/engineering/Solar_Control_ForPort + name = "\improper Solar Control ForPort" + icon_state = "engineering" + ambience = AMBIENCE_SPACE + +/area/engineering/Solar_Control_ForStar + name = "\improper Solar Control ForStar" + icon_state = "engineering" + ambience = AMBIENCE_SPACE + +/area/engineering/Solar_Control_AftPort + name = "\improper Solar Control AftPort" + icon_state = "engineering" + ambience = AMBIENCE_SPACE + +/area/engineering/Solar_Control_AftStar + name = "\improper Solar Control AftStar" + icon_state = "engineering" + ambience = AMBIENCE_SPACE + +/area/engineering/Solar_Array_ForPort + name = "\improper Solar Array ForPort" + icon_state = "engineering" + ambience = AMBIENCE_SPACE + dynamic_lighting = 0 + +/area/engineering/Solar_Array_ForStar + name = "\improper Solar Array ForStar" + icon_state = "engineering" + ambience = AMBIENCE_SPACE + dynamic_lighting = 0 + +/area/engineering/Solar_Array_AftPort + name = "\improper Solar Array AftPort" + icon_state = "engineering" + ambience = AMBIENCE_SPACE + dynamic_lighting = 0 + +/area/engineering/Solar_Array_AftStar + name = "\improper Solar Array AftStar" + icon_state = "engineering" + ambience = AMBIENCE_SPACE + dynamic_lighting = 0 + +//CARGO AREAS + +/area/quartermaster + icon_state = "quart" + holomap_color = HOLOMAP_AREACOLOR_CARGO + ambience = AMBIENCE_HANGAR + sound_env = SOUND_ENVIRONMENT_HANGAR + lightswitch = 0 + +/area/quartermaster/For_Tool_Storage + name = "\improper For Tool Storage" + icon_state = "quart" + +/area/quartermaster/Star_Tool_Storage + name = "\improper Star Tool Storage" + icon_state = "quart" + +/area/quartermaster/Aft_Tool_Storage + name = "\improper Aft Tool Storage" + icon_state = "quart" + +/area/quartermaster/Reception + name = "\improper Reception" + icon_state = "quart" + +/area/quartermaster/Packaging_Room + name = "\improper Packaging Room" + icon_state = "quart" + +/area/quartermaster/Recycling + name = "\improper Recycling" + icon_state = "quart" + +/area/quartermaster/Warehouse + name = "\improper Warehouse" + icon_state = "quart" + +/area/quartermaster/Deck2_Stairwell + name = "\improper 2 Deck Stairwell" + icon_state = "quart" + +/area/quartermaster/Deck1_Stairwell + name = "\improper 1 Deck Stairwell" + icon_state = "quart" + +/area/quartermaster/Supply_Ship_Bay + name = "\improper Supply Ship Bay" + icon_state = "quart" + ambience = AMBIENCE_HANGAR + +/area/quartermaster/Depot1 + name = "\improper 1 Depot" + icon_state = "quart" + +/area/quartermaster/Depot2 + name = "\improper 2 Depot" + icon_state = "quart" + +/area/quartermaster/Mining_Ship_Bay + name = "\improper Mining Ship Bay" + icon_state = "quart" + ambience = AMBIENCE_HANGAR + +/area/quartermaster/Mining_EVA + name = "\improper Mail Room" + icon_state = "quart" + +/area/quartermaster/Waste_Disposals + name = "\improper Waste Disposals" + icon_state = "quart" + +/area/quartermaster/QM_Office + name = "\improper QM Office" + icon_state = "quart" + +/area/quartermaster/Mail_Room + name = "\improper Mail Room" + icon_state = "quart" + +/area/quartermaster/Deck1_Corridor + name = "\improper Mail Room" + icon_state = "quart" + +/area/quartermaster/Breakroom + name = "\improper Cargo Breakroom" + icon_state = "quart" + +//DOMICILE AREAS + +/area/crew_quarters + icon_state = "gaming" + ambience = AMBIENCE_GENERIC + sound_env = SOUND_ENVIRONMENT_HALLWAY + lightswitch = 0 + +/area/crew_quarters/Holodeck + name = "\improper Holodeck" + icon_state = "gaming" + +/area/crew_quarters/Midnight_Bar + name = "\improper Midnight Bar" + icon_state = "gaming" + flags = RAD_SHIELDED + +/area/crew_quarters/Midnight_Kitchen + name = "\improper Midnight Kitchen" + icon_state = "gaming" + flags = RAD_SHIELDED + +/area/crew_quarters/Gallery + name = "\improper Gallery" + icon_state = "gaming" + +/area/crew_quarters/VR + name = "\improper VR" + icon_state = "gaming" + +/area/crew_quarters/Gym + name = "\improper Gym" + icon_state = "gaming" + +/area/crew_quarters/Gym_Sauna + name = "\improper Gym Sauna" + icon_state = "gaming" + +/area/crew_quarters/Chapel_Lobby + name = "\improper Chapel Lobby" + icon_state = "gaming" + ambience = AMBIENCE_CHAPEL + +/area/crew_quarters/Chapel_Morgue + name = "\improper Chapel Morgue" + icon_state = "gaming" + ambience = AMBIENCE_CHAPEL + +/area/crew_quarters/Chapel_Office + name = "\improper Chapel Office" + icon_state = "gaming" + ambience = AMBIENCE_CHAPEL + +/area/crew_quarters/Central_Restroom + name = "\improper Central Restroom" + icon_state = "gaming" + flags = RAD_SHIELDED + lightswitch = 1 + +/area/crew_quarters/For_Restroom + name = "\improper For Restroom" + icon_state = "gaming" + flags = RAD_SHIELDED + lightswitch = 1 + +/area/crew_quarters/Star_Restroom + name = "\improper Star Restroom" + icon_state = "gaming" + flags = RAD_SHIELDED + lightswitch = 1 + +/area/crew_quarters/Aft_Restroom + name = "\improper Aft Restroom" + icon_state = "gaming" + flags = RAD_SHIELDED + lightswitch = 1 + +/area/crew_quarters/Port_Restroom + name = "\improper Port Restroom" + icon_state = "gaming" + flags = RAD_SHIELDED + lightswitch = 1 + +/area/crew_quarters/Library + name = "\improper Library" + icon_state = "gaming" + ambience = AMBIENCE_SPACE + +/area/crew_quarters/Library_Cafe + name = "\improper Library Cafe" + icon_state = "gaming" + ambience = AMBIENCE_SPACE + +/area/crew_quarters/Library_Office + name = "\improper Library Office" + icon_state = "gaming" + ambience = AMBIENCE_SPACE + +/area/crew_quarters/Rec_Lounge + name = "\improper Rec Lounge" + icon_state = "gaming" + +/area/crew_quarters/Office_Lounge + name = "\improper Office Lounge" + icon_state = "gaming" + +/area/crew_quarters/Chomp_Hydroponics + name = "\improper Chomp Hydroponics" + icon_state = "gaming" + flags = RAD_SHIELDED + +/area/crew_quarters/Chomp_Stage + name = "\improper Chomp Convention Stage" + icon_state = "gaming" + flags = RAD_SHIELDED + +/area/crew_quarters/Chomp_Kitchen + name = "\improper Chomp Kitchen" + icon_state = "gaming" + flags = RAD_SHIELDED + +/area/crew_quarters/Chomp_Dinner_1 + name = "\improper Chomp Dinner 1" + icon_state = "gaming" + flags = RAD_SHIELDED + lightswitch = 1 + +/area/crew_quarters/Chomp_Dinner_2 + name = "\improper Chomp Dinner 2" + icon_state = "gaming" + flags = RAD_SHIELDED + lightswitch = 1 + +/area/crew_quarters/Chomp_Lounge + name = "\improper Chomp Lounge" + icon_state = "gaming" + flags = RAD_SHIELDED + +/area/crew_quarters/Public_Hydroponics + name = "\improper Public Hydroponics" + icon_state = "gaming" + +/area/crew_quarters/Botanical_Shop + name = "\improper Botanical Shop" + icon_state = "gaming" + +/area/crew_quarters/Observation_Atrium + name = "\improper Observation Atrium" + icon_state = "gaming" + +/area/crew_quarters/Observation_Lounge + name = "\improper Observation Lounge" + icon_state = "gaming" + +/area/crew_quarters/Public_Garden + name = "\improper Public Garden" + icon_state = "gaming" + +/area/crew_quarters/sleeping + flags = RAD_SHIELDED + lightswitch = 0 + limit_mob_size = FALSE + block_suit_sensors = TRUE + block_tracking = TRUE + soundproofed = TRUE + forbid_events = TRUE + icon_state = "gaming" + +/area/crew_quarters/sleeping/Dormitory_01 + name = "\improper Dormitory 01" + +/area/crew_quarters/sleeping/Dormitory_02 + name = "\improper Dormitory 02" + +/area/crew_quarters/sleeping/Dormitory_03 + name = "\improper Dormitory 03" + +/area/crew_quarters/sleeping/Dormitory_04 + name = "\improper Dormitory 04" + +/area/crew_quarters/sleeping/Dormitory_05 + name = "\improper Dormitory 05" + +/area/crew_quarters/sleeping/Dormitory_06 + name = "\improper Dormitory 06" + +/area/crew_quarters/sleeping/Dormitory_07 + name = "\improper Dormitory 07" + +/area/crew_quarters/sleeping/Dormitory_08 + name = "\improper Dormitory 08" + +/area/crew_quarters/sleeping/Dormitory_09 + name = "\improper Dormitory 09" + +/area/crew_quarters/sleeping/Dormitory_10 + name = "\improper Dormitory 10" + +/area/crew_quarters/sleeping/Dormitory_11 + name = "\improper Dormitory 11" + +/area/crew_quarters/sleeping/Dormitory_12 + name = "\improper Dormitory 12" + +/area/crew_quarters/Dorm_Corridor_1 + name = "\improper Dorm Corridor 1" + icon_state = "gaming" + lightswitch = 1 + +/area/crew_quarters/Dorm_Corridor_2 + name = "\improper Dorm Corridor 2" + icon_state = "gaming" + lightswitch = 1 + +/area/crew_quarters/Dorm_Corridor_3 + name = "\improper Dorm Corridor 3" + icon_state = "gaming" + lightswitch = 1 + +/area/crew_quarters/Dorm_Corridor_4 + name = "\improper Dorm Corridor 4" + icon_state = "gaming" + lightswitch = 1 + +/area/crew_quarters/Dorm_Foyer + name = "\improper Dorm Foyer" + icon_state = "gaming" + lightswitch = 1 + +/area/crew_quarters/Public_Gateway + name = "\improper Public Gateway" + icon_state = "gaming" + +/area/crew_quarters/Emergency_EVA + name = "\improper Emergency EVA" + icon_state = "gaming" + +/area/crew_quarters/Public_EVA + name = "\improper Public EVA" + icon_state = "gaming" + +/area/crew_quarters/Custodial_Office + name = "\improper Custodial Office" + icon_state = "gaming" + +//COMMONS AREAS +/area/hallway + icon_state = "hallA" + ambience = AMBIENCE_GENERIC + sound_env = MEDIUM_SOFTFLOOR + +/area/hallway/ForPort_1_Deck_Observatory + name = "\improper ForPort 1 Deck Observatory" + icon_state = "hallA" + +/area/hallway/ForStar_1_Deck_Observatory + name = "\improper ForStar 1 Deck Observatory" + icon_state = "hallA" + +/area/hallway/AftPort_1_Deck_Observatory + name = "\improper AftPort 1 Deck Observatory" + icon_state = "hallA" + +/area/hallway/AftStar_1_Deck_Observatory + name = "\improper AftStar 1 Deck Observatory" + icon_state = "hallA" + +/area/hallway/ForPort_2_Deck_Observatory + name = "\improper ForPort 2 Deck Observatory" + icon_state = "hallA" + +/area/hallway/ForStar_2_Deck_Observatory + name = "\improper ForStar 2 Deck Observatory" + icon_state = "hallA" + +/area/hallway/AftPort_2_Deck_Observatory + name = "\improper AftPort 2 Deck Observatory" + icon_state = "hallA" + +/area/hallway/AftStar_2_Deck_Observatory + name = "\improper AftStar 2 Deck Observatory" + icon_state = "hallA" + +/area/hallway/For_Transit_Foyer + name = "\improper For Transit Foyer" + icon_state = "hallA" + +/area/hallway/Star_Transit_Foyer + name = "\improper Star Transit Foyer" + icon_state = "hallA" + flags = RAD_SHIELDED + +/area/hallway/Aft_Transit_Lobby + name = "\improper Aft Transit Lobby" + icon_state = "hallA" + +/area/hallway/Port_Transit_Foyer + name = "\improper Port Transit Foyer" + icon_state = "hallA" + flags = RAD_SHIELDED + +/area/hallway/For_1_Deck_Stairwell + name = "\improper For 1 Deck Stairwell" + icon_state = "hallA" + +/area/hallway/For_2_Deck_Stairwell + name = "\improper For 2 Deck Stairwell" + icon_state = "hallA" + +/area/hallway/For_3_Deck_Stairwell + name = "\improper For 3 Deck Stairwell" + icon_state = "hallA" + +/area/hallway/Star_1_Deck_Stairwell + name = "\improper Star 1 Deck Stairwell" + icon_state = "hallA" + +/area/hallway/Star_2_Deck_Stairwell + name = "\improper Star 2 Deck Stairwell" + icon_state = "hallA" + +/area/hallway/Star_3_Deck_Stairwell + name = "\improper Star 3 Deck Stairwell" + icon_state = "hallA" + +/area/hallway/Aft_1_Deck_Stairwell + name = "\improper Aft 1 Deck Stairwell" + icon_state = "hallA" + +/area/hallway/Aft_2_Deck_Stairwell + name = "\improper Aft 2 Deck Stairwell" + icon_state = "hallA" + +/area/hallway/Aft_3_Deck_Stairwell + name = "\improper Aft 3 Deck Stairwell" + icon_state = "hallA" + +/area/hallway/Port_1_Deck_Stairwell + name = "\improper Port 1 Deck Stairwell" + icon_state = "hallA" + +/area/hallway/Port_2_Deck_Stairwell + name = "\improper Port 2 Deck Stairwell" + icon_state = "hallA" + +/area/hallway/Port_3_Deck_Stairwell + name = "\improper Port 3 Deck Stairwell" + icon_state = "hallA" + +/area/hallway/For_2_Deck_Central_Corridor_1 + name = "\improper For 2 Deck Central Corridor 1" + icon_state = "hallA" + +/area/hallway/For_2_Deck_Central_Corridor_2 + name = "\improper For 2 Deck Central Corridor 2" + icon_state = "hallA" + +/area/hallway/Star_2_Deck_Central_Corridor_1 + name = "\improper Star 2 Deck Central Corridor 1" + icon_state = "hallA" + +/area/hallway/Star_2_Deck_Central_Corridor_2 + name = "\improper Star 2 Deck Central Corridor 2" + icon_state = "hallA" + +/area/hallway/Aft_2_Deck_Central_Corridor_1 + name = "\improper Aft 2 Deck Central Corridor 1" + icon_state = "hallA" + +/area/hallway/Aft_2_Deck_Central_Corridor_2 + name = "\improper Aft 2 Deck Central Corridor 2" + icon_state = "hallA" + +/area/hallway/Port_2_Deck_Central_Corridor_1 + name = "\improper Port 2 Deck Central Corridor 1" + icon_state = "hallA" + +/area/hallway/Port_2_Deck_Central_Corridor_2 + name = "\improper Port 2 Deck Central Corridor 2" + icon_state = "hallA" + +/area/hallway/Aft_3_Deck_Central_Corridor_1 + name = "\improper Aft 3 Deck Central Corridor 1" + icon_state = "hallA" + +/area/hallway/Aft_3_Deck_Central_Corridor_2 + name = "\improper Aft 3 Deck Central Corridor 2" + icon_state = "hallA" + +/area/hallway/For_2_Deck_Corridor_1 + name = "\improper For 2 Deck Corridor 1" + icon_state = "hallA" + +/area/hallway/For_2_Deck_Corridor_2 + name = "\improper For 2 Deck Corridor 2" + icon_state = "hallA" + +/area/hallway/Star_2_Deck_Corridor_1 + name = "\improper Star 2 Deck Corridor 1" + icon_state = "hallA" + +/area/hallway/Star_2_Deck_Corridor_2 + name = "\improper Star 2 Deck Corridor 2" + icon_state = "hallA" + +/area/hallway/Aft_2_Deck_Corridor_1 + name = "\improper Aft 2 Deck Corridor 1" + icon_state = "hallA" + +/area/hallway/Aft_2_Deck_Corridor_2 + name = "\improper Aft 2 Deck Corridor 2" + icon_state = "hallA" + +/area/hallway/Port_2_Deck_Corridor_1 + name = "\improper Port 2 Deck Corridor 1" + icon_state = "hallA" + +/area/hallway/Port_2_Deck_Corridor_2 + name = "\improper Port 2 Deck Corridor 2" + icon_state = "hallA" + +/area/hallway/Aft_2_Deck_Lobby + name = "\improper Aft 2 Deck Lobby" + icon_state = "hallA" + +/area/hallway/Aft_2_Deck_Shuttlebay_Corridor + name = "\improper Aft 2 Deck Shuttlebay Corridor" + icon_state = "hallA" + +/area/hallway/Central_1_Deck_Hall + name = "\improper Central 1 Deck Hall" + icon_state = "hallA" + +/area/hallway/Central_2_Deck_Hall + name = "\improper Central 2 Deck Hall" + icon_state = "hallA" + +/area/hallway/Central_3_Deck_Hall + name = "\improper Central 3 Deck Hall" + icon_state = "hallA" + +/area/hallway/Cryostorage_Lounge + name = "\improper Cryostorage Lounge" + icon_state = "hallA" + +/area/hallway/Deck1_Transit_Hall + name = "\improper 1 Deck Transit Hall" + icon_state = "hallA" + +/area/hallway/Deck1_Corridor + name = "\improper 1 Deck Corridor" + icon_state = "hallA" + +/area/hallway/For_Locker_Room + name = "\improper For Locker Room" + icon_state = "hallA" + +/area/hallway/Planetside_Equipment + name = "\improper Planetside Equipment" + icon_state = "hallA" + +/area/hallway/Star_Breakroom + name = "\improper Star Breakroom" + icon_state = "hallA" + +/area/hallway/Port_Breakroom + name = "\improper Port Breakroom" + icon_state = "hallA" + +/area/hallway/Port_1Deck_Central_Corridor_1 + name = "\improper Port Deck1 Central Corridor 1" + icon_state = "hallA" + +/area/hallway/Port_1Deck_Central_Corridor_2 + name = "\improper Port Deck1 Central Corridor 2" + icon_state = "hallA" + +/area/hallway/Star_1Deck_Central_Corridor_1 + name = "\improper Star Deck1 Central Corridor 1" + icon_state = "hallA" + +/area/hallway/Star_1Deck_Central_Corridor_2 + name = "\improper Star Deck1 Central Corridor 2" + icon_state = "hallA" + +/area/hallway/Port_1Deck_Atrium + name = "\improper Port Deck1 Atrium" + icon_state = "hallA" + +/area/hallway/Star_1Deck_Atrium + name = "\improper Star Deck1 Atrium" + icon_state = "hallA" + +/area/hallway/Stairwell_For + name = "\improper Stairwell Forward" + icon_state = "hallA" + +/area/hallway/Stairwell_Star + name = "\improper Stairwell Starboard" + icon_state = "hallA" + +/area/hallway/Stairwell_Aft + name = "\improper Stairwell Aft" + icon_state = "hallA" + +/area/hallway/Stairwell_Port + name = "\improper Stairwell Port" + icon_state = "hallA" + + +//HARBOR AREAS + +/area/harbor + icon_state = "hangar" + ambience = AMBIENCE_ARRIVALS + sound_env = SOUND_ENVIRONMENT_HANGAR + + +/area/harbor/Dock1 + name = "\improper 1 Dock" + icon_state = "hangar" + flags = RAD_SHIELDED + +/area/harbor/Dock2 + name = "\improper 2 Dock" + icon_state = "hangar" + flags = RAD_SHIELDED + +/area/harbor/Dock3 + name = "\improper 3 Dock" + icon_state = "hangar" + flags = RAD_SHIELDED + +/area/harbor/Dock4 + name = "\improper 4 Dock" + icon_state = "hangar" + flags = RAD_SHIELDED + +/area/harbor/Dock5 + name = "\improper 5 Dock" + icon_state = "hangar" + flags = RAD_SHIELDED + +/area/harbor/Ship_Bay1 + name = "\improper 1 Ship Bay" + icon_state = "hangar" + ambience = AMBIENCE_HANGAR + +/area/harbor/Ship_Bay2 + name = "\improper 2 Ship Bay" + icon_state = "hangar" + ambience = AMBIENCE_HANGAR + +/area/harbor/Ship_Bay3 + name = "\improper 3 Ship Bay" + icon_state = "hangar" + ambience = AMBIENCE_HANGAR + +/area/harbor/Ship_Bay4 + name = "\improper 4 Ship Bay" + icon_state = "hangar" + ambience = AMBIENCE_HANGAR + +/area/harbor/Port_Docking_Foyer + name = "\improper Port Docking Foyer" + icon_state = "hangar" + flags = RAD_SHIELDED + +/area/harbor/Star_Docking_Foyer + name = "\improper Star Docking Foyer" + icon_state = "hangar" + flags = RAD_SHIELDED + +/area/harbor/Fueling_Post + name = "\improper Fueling Post" + icon_state = "hangar" + +/area/harbor/Fueling_Storage + name = "\improper Fueling Storage" + icon_state = "hangar" + +/area/harbor/For_Shuttlebay + name = "\improper For Shuttlebay" + icon_state = "hangar" + +/area/harbor/Star_Shuttlebay + name = "\improper Star Shuttlebay" + icon_state = "hangar" + +/area/harbor/Aft_Shuttlebay + name = "\improper Aft Shuttlebay" + icon_state = "hangar" + +/area/harbor/Port_Shuttlebay + name = "\improper Port Shuttlebay" + icon_state = "hangar" + +/area/harbor/For_3_Deck_Airlock_Access_1 + name = "\improper For 3 Deck Airlock Access 1" + icon_state = "hangar" + +/area/harbor/For_3_Deck_Airlock_Access_2 + name = "\improper For 3 Deck Airlock Access 2" + icon_state = "hangar" + +/area/harbor/Star_2_Deck_Airlock_Access + name = "\improper Star 2 Deck Airlock Access" + icon_state = "hangar" + +/area/harbor/Star_3_Deck_Airlock_Access + name = "\improper Star 3 Deck Airlock Access" + icon_state = "hangar" + +/area/harbor/Aft_3_Deck_Airlock_Access + name = "\improper Aft 3 Deck Airlock Access" + icon_state = "hangar" + +/area/harbor/Aft_2_Deck_Airlock_Access + name = "\improper Aft 2 Deck Airlock Access" + icon_state = "hangar" + +/area/harbor/Port_3_Deck_Airlock_Access + name = "\improper Port 3 Deck Airlock Access" + icon_state = "hangar" + +//MAINTENANCE AREAS + +/area/maintenance + icon_state = "fsmaint" + flags = RAD_SHIELDED + ambience = AMBIENCE_MAINTENANCE + sound_env = SOUND_ENVIRONMENT_SEWER_PIPE + +/area/maintenance/ab_StripBar + name = "\improper abandoned StripBar" + icon_state = "fsmaint" + +/area/maintenance/ab_Medical + name = "\improper abandoned Medical" + icon_state = "fsmaint" + +/area/maintenance/ab_Surgery + name = "\improper abandoned Surgery" + icon_state = "fsmaint" + +/area/maintenance/ab_GeneralStore + name = "\improper abandoned GeneralStore" + icon_state = "fsmaint" + +/area/maintenance/ab_Kitchen + name = "\improper abandoned Kitchen" + icon_state = "fsmaint" + +/area/maintenance/ab_Hydroponics + name = "\improper abandoned Hydroponics" + icon_state = "fsmaint" + +/area/maintenance/ab_SportsField + name = "\improper abandoned SportsField" + icon_state = "fsmaint" + +/area/maintenance/ab_CardTrading + name = "\improper abandoned CardTrading" + icon_state = "fsmaint" + +/area/maintenance/ab_ChuteTrade + name = "\improper abandoned ChuteTrade" + icon_state = "fsmaint" + +/area/maintenance/ab_Theater + name = "\improper abandoned Theater" + icon_state = "fsmaint" + +/area/maintenance/ab_Pdance + name = "\improper abandoned Pdance" + icon_state = "fsmaint" + +/area/maintenance/ab_Chapel + name = "\improper abandoned Chapel" + icon_state = "fsmaint" + +/area/maintenance/ab_TeshDen + name = "\improper abandoned TeshDen" + icon_state = "fsmaint" + +/area/maintenance/Market_Stall_1 + name = "\improper Market Stall 1" + icon_state = "fsmaint" + +/area/maintenance/Market_Stall_2 + name = "\improper Market Stall 2" + icon_state = "fsmaint" + +/area/maintenance/Market_Stall_3 + name = "\improper Market Stall 3" + icon_state = "fsmaint" + +/area/maintenance/Market_Stall_4 + name = "\improper Market Stall 4" + icon_state = "fsmaint" + +/area/maintenance/Market_Stall_5 + name = "\improper Market Stall 5" + icon_state = "fsmaint" + +/area/maintenance/Market_Stall_6 + name = "\improper Market Stall 6" + icon_state = "fsmaint" + +/area/maintenance/Deck1_Port_Corridor + name = "\improper Deck1 Port Corridor" + icon_state = "fsmaint" + +/area/maintenance/Deck1_Star_Corridor + name = "\improper Deck1 Star Corridor" + icon_state = "fsmaint" + +/area/maintenance/Deck1_ForPort_Corridor1 + name = "\improper Deck1 ForPort Corridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck1_ForPort_Corridor2 + name = "\improper Deck1 ForPort Corridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck1_ForPort_Corridor3 + name = "\improper Deck1 ForPort Corridor3" + icon_state = "fsmaint" + +/area/maintenance/Deck1_ForPort_Chamber1 + name = "\improper Deck1 ForPort Chamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck1_ForStar_Corridor1 + name = "\improper Deck1 ForStar Corridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck1_ForStar_Corridor2 + name = "\improper Deck1 ForStar Corridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck1_ForStar_Corridor3 + name = "\improper Deck1 ForStar Corridor3" + icon_state = "fsmaint" + +/area/maintenance/Deck1_ForStar_Chamber1 + name = "\improper Deck1 ForStar Chamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck1_ForStar_Chamber2 + name = "\improper Deck1 ForStar Chamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck1_ForStar_Chamber3 + name = "\improper Deck1 ForStar Chamber3" + icon_state = "fsmaint" + +/area/maintenance/Deck1_AftStar1_Corridor1 + name = "\improper Deck1 AftStar1 Corridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck1_AftStar1_Corridor2 + name = "\improper Deck1 AftStar1 Corridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck1_AftStar1_Corridor3 + name = "\improper Deck1 AftStar1 Corridor3" + icon_state = "fsmaint" + +/area/maintenance/Deck1_AftPort_Corridor1 + name = "\improper Deck1 AftPort Corridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck1_AftPort_Corridor2 + name = "\improper Deck1 AftPort Corridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck1_AftPort_Corridor3 + name = "\improper Deck1 AftPort Corridor3" + icon_state = "fsmaint" + +/area/maintenance/Deck1_AftPort_Chamber1 + name = "\improper Deck1 AftPort Chamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck1_AftPort_Chamber2 + name = "\improper Deck1 AftPort Chamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck1_AftPort_Chamber3 + name = "\improper Deck1 AftPort Chamber3" + icon_state = "fsmaint" + +/area/maintenance/Deck1_Cargo_Corridor1 + name = "\improper Deck1 Cargo Corridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck1_Cargo_Corridor2 + name = "\improper Deck1 Cargo Corridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck1_Cargo_Corridor3 + name = "\improper Deck1 Cargo Corridor3" + icon_state = "fsmaint" + +/area/maintenance/Deck1_Cargo_Chamber1 + name = "\improper Deck1 Cargo Chamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck1_Security_PortCorridor1 + name = "\improper Deck1 Security PortCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck1_Security_PortCorridor2 + name = "\improper Deck1 Security PortCorridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck1_Security_PortChamber1 + name = "\improper Deck1 Security PortChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck1_Security_PortChamber2 + name = "\improper Deck1 Security PortChamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck1_Security_PortChamber3 + name = "\improper Deck1 Security PortChamber3" + icon_state = "fsmaint" + +/area/maintenance/Deck1_Security_StarCorridor1 + name = "\improper Deck1 Security StarCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck1_Security_StarCorridor2 + name = "\improper Deck1 Security StarCorridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck1_Security_StarCorridor3 + name = "\improper Deck1 Security StarCorridor3" + icon_state = "fsmaint" + +/area/maintenance/Deck1_Security_StarChamber1 + name = "\improper Deck1 Security StarChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck1_Security_StarChamber2 + name = "\improper Deck1 Security StarChamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck1_Science_ForCorridor1 + name = "\improper Deck1 Science ForCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck1_Science_AftCorridor1 + name = "\improper Deck1 Science AftCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_For_Corridor + name = "\improper Deck2 For Corridor" + icon_state = "fsmaint" + +/area/maintenance/Deck2_ForStar_Corridor + name = "\improper Deck2 ForStar Corridor" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Star_Corridor + name = "\improper Deck2 Star Corridor" + icon_state = "fsmaint" + +/area/maintenance/Deck2_AftStar_Corridor + name = "\improper Deck2 AftStar Corridor" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Aft_Corridor + name = "\improper Deck2 Aft Corridor" + icon_state = "fsmaint" + +/area/maintenance/Deck2_AftPort_Corridor + name = "\improper Deck2 AftPort Corridor" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Port_Corridor + name = "\improper Deck2 Port Corridor" + icon_state = "fsmaint" + +/area/maintenance/Deck2_ForPort_Corridor + name = "\improper Deck2 ForPort Corridor" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Security_StarCorridor1 + name = "\improper Deck2 Security StarCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Security_AftStarCorridor1 + name = "\improper Deck2 Security AftStarCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Security_AftStarCorridor2 + name = "\improper Deck2 Security AftStarCorridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Security_AftPortCorridor1 + name = "\improper Deck2 Security AftPortCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Security_AftPortCorridor2 + name = "\improper Deck2 Security AftPortCorridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Security_ForPortCorridor1 + name = "\improper Deck2 Security ForPortCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Security_ForPortChamber1 + name = "\improper Deck2 Security ForPortChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Security_ForCorridor1 + name = "\improper Deck2 Security ForCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Security_ForCorridor2 + name = "\improper Deck2 Security ForCorridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Security_ForCorridor3 + name = "\improper Deck2 Security ForCorridor3" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Security_PortCorridor1 + name = "\improper Deck2 Security PortCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Security_ForCorridor1 + name = "\improper Deck2 Security ForCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Security_ForStar_Chamber + name = "\improper Deck2 Security ForStar Chamber" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Science_ForCorridor1 + name = "\improper Deck2 Science ForCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Science_StarCorridor1 + name = "\improper Deck2 Science StarCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Science_StarCorridor2 + name = "\improper Deck2 Science StarCorridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Science_StarChamber1 + name = "\improper Deck2 Science StarChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Science_ForPort_Corridor + name = "\improper Deck2 Science ForPort Corridor" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Science_ForPort_Chamber + name = "\improper Deck2 Science ForPort Chamber" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Medical_AftPortChamber1 + name = "\improper Deck2 Medical AftPortChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Medical_AftPortCorridor1 + name = "\improper Deck2 Medical AftPortCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Medical_AftCorridor1 + name = "\improper Deck2 Medical AftCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Medical_AftCorridor2 + name = "\improper Deck2 Medical AftCorridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Medical_AftStarChamber1 + name = "\improper Deck2 Medical AftStarChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Civilian_ForStarCorridor1 + name = "\improper Deck2 Civilian ForStarCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Civilian_ForStarCorridor2 + name = "\improper Deck2 Civilian ForStarCorridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Civilian_StarCorridor1 + name = "\improper Deck2 Civilian StarCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Civilian_StarChamber1 + name = "\improper Deck2 Civilian StarChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Civilian_StarChamber2 + name = "\improper Deck2 Civilian StarChamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Civilian_AftCorridor1 + name = "\improper Deck2 Civilian AftCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Civilian_AftPortCorridor1 + name = "\improper Deck2 Civilian AftPortCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Civilian_PortChamber1 + name = "\improper Deck2 Civilian PortChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Civilian_PortChamber2 + name = "\improper Deck2 Civilian PortChamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Civilian_ForPortCorridor1 + name = "\improper Deck2 Civilian ForPortCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Civilian_ForPortCorridor2 + name = "\improper Deck2 Civilian ForPortCorridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Civilian_ForPortChamber1 + name = "\improper Deck2 Civilian ForPortChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Cargo_StarChamber1 + name = "\improper Deck2 Cargo StarChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Cargo_AftStarChamber1 + name = "\improper Deck2 Cargo AftStarChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Cargo_AftStarCorridor1 + name = "\improper Deck2 Cargo AftStarCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Cargo_AftCorridor1 + name = "\improper Deck2 Cargo AftCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Cargo_AftCorridor2 + name = "\improper Deck2 Cargo AftCorridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Cargo_AftPortCorridor1 + name = "\improper Deck2 Cargo AftPortCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Engineering_PortCorridor1 + name = "\improper Deck2 Engineering PortCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Engineering_PortCorridor2 + name = "\improper Deck2 Engineering PortCorridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Engineering_PortChamber1 + name = "\improper Deck2 Engineering PortChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Engineering_PortChamber2 + name = "\improper Deck2 Engineering PortChamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Engineering_ForStarChamber1 + name = "\improper Deck2 Engineering ForStarChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Engineering_ForStarChamber2 + name = "\improper Deck2 Engineering ForStarChamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck2_Engineering_ForStarCorridor1 + name = "\improper Deck2 Engineering ForStarCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Bridge_ForChamber1 + name = "\improper Deck3 Bridge ForChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Bridge_ForStarCorridor1 + name = "\improper Deck3 Bridge ForStarCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Bridge_ForStarCorridor2 + name = "\improper Deck3 Bridge ForStarCorridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Bridge_ForStarCorridor3 + name = "\improper Deck3 Bridge ForStarCorridor3" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Bridge_ForStarChamber1 + name = "\improper Deck3 Bridge ForStarChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Bridge_AftStarCorridor1 + name = "\improper Deck3 Bridge AftStarCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Bridge_AftPortCorridor1 + name = "\improper Deck3 Bridge AftPortCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Bridge_ForStarCorridor1 + name = "\improper Deck3 Bridge ForStarCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Bridge_ForStarCorridor2 + name = "\improper Deck3 Bridge ForStarCorridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Bridge_ForStarCorridor3 + name = "\improper Deck3 Bridge ForStarCorridor3" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Bridge_ForPort_Chamber1 + name = "\improper Deck3 Bridge ForPort Chamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Bridge_ForPort_Corridor1 + name = "\improper Deck3 Bridge ForPort Corridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Bridge_ForPort_Corridor2 + name = "\improper Deck3 Bridge ForPort Corridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Medical_ForChamber1 + name = "\improper Deck3 Medical ForChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Medical_ForChamber2 + name = "\improper Deck3 Medical ForChamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Medical_ForChamber3 + name = "\improper Deck3 Medical ForChamber3" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Medical_ForStarChamber1 + name = "\improper Deck3 Medical ForStarChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Medical_ForStarChamber2 + name = "\improper Deck3 Medical ForStarChamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Medical_ForStarChamber3 + name = "\improper Deck3 Medical ForStarChamber3" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Medical_StarCorridor1 + name = "\improper Deck3 Medical StarCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Medical_AftStarChamber1 + name = "\improper Deck3 Medical AftStarChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Medical_AftCorridor1 + name = "\improper Deck3 Medical AftCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Medical_AftCorridor2 + name = "\improper Deck3 Medical AftCorridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Medical_AftPortCorridor1 + name = "\improper Deck3 Medical AftPortCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Medical_AftPortChamber1 + name = "\improper Deck3 Medical AftPortChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Medical_AftPortChamber2 + name = "\improper Deck3 Medical AftPortChamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Medical_PortChamber1 + name = "\improper Deck3 Medical PortChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Medical_PortChamber2 + name = "\improper Deck3 Medical PortChamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Medical_ForPortChamber1 + name = "\improper Deck3 Medical ForPortChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Medical_ForPortChamber2 + name = "\improper Deck3 Medical ForPortChamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Dorms_ForCorridor1 + name = "\improper Deck3 Dorms ForCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Dorms_ForStarChamber1 + name = "\improper Deck3 Dorms ForStarChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Dorms_ForStarChamber2 + name = "\improper Deck3 Dorms ForStarChamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Dorms_StarCorridor1 + name = "\improper Deck3 Dorms StarCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Dorms_StarCorridor2 + name = "\improper Deck3 Dorms StarCorridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Dorms_StarChamber1 + name = "\improper Deck3 Dorms StarChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Dorms_StarChamber2 + name = "\improper Deck3 Dorms StarChamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Dorms_AftCorridor1 + name = "\improper Deck3 Dorms AftCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Dorms_AftCorridor2 + name = "\improper Deck3 Dorms AftCorridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Dorms_AftPortChamber1 + name = "\improper Deck3 Dorms AftPortChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Dorms_AftPortChamber2 + name = "\improper Deck3 Dorms AftPortChamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Dorms_PortCorridor1 + name = "\improper Deck3 Dorms PortCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Dorms_PortChamber1 + name = "\improper Deck3 Dorms PortChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Dorms_ForStarChamber1 + name = "\improper Deck3 Dorms ForStarChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Dorms_ForStarChamber2 + name = "\improper Deck3 Dorms ForStarChamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Dorms_ForPort_Corridor1 + name = "\improper Deck3 Dorms ForPort Corridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Dorms_ForPort_Chamber1 + name = "\improper Deck3 Dorms ForPort Chamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Engineering_ForCorridor1 + name = "\improper Deck3 Engineering ForCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Engineering_ForStarChamber1 + name = "\improper Deck3 Engineering ForStarChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Engineering_ForStarChamber2 + name = "\improper Deck3 Engineering ForStarChamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Engineering_StarChamber1 + name = "\improper Deck3 Engineering StarChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Engineering_AftStarCorridor1 + name = "\improper Deck3 Engineering AftStarCorridor1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Engineering_AftStarCorridor2 + name = "\improper Deck3 Engineering AftStarCorridor2" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Engineering_AftStarChamber1 + name = "\improper Deck3 Engineering AftStarChamber1" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Engineering_AftStarChamber2 + name = "\improper Deck3 Engineering AftStarChamber2" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Engineering_AftStarChamber3 + name = "\improper Deck3 Engineering AftStarChamber3" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Center_Star + name = "\improper Deck3 Center Star" + icon_state = "fsmaint" + +/area/maintenance/Deck3_Center_Port + name = "\improper Deck3 Center Port" + icon_state = "fsmaint" + +/area/maintenance/Distro_Central + name = "\improper Distro Central" + icon_state = "engineering" + ambience = AMBIENCE_ATMOS + +/area/maintenance/Distro_Harbor + name = "\improper Distro Harbor" + icon_state = "engineering" + ambience = AMBIENCE_ATMOS + +/area/maintenance/Distro_Civilian + name = "\improper Distro Civilian" + icon_state = "engineering" + ambience = AMBIENCE_ATMOS + +/area/maintenance/Research_Substation + name = "\improper Research Substation" + icon_state = "engineering" + ambience = AMBIENCE_SUBSTATION + lightswitch = 1 + +/area/maintenance/Medical_Substation + name = "\improper Medical Substation" + icon_state = "engineering" + ambience = AMBIENCE_SUBSTATION + lightswitch = 1 + +/area/maintenance/Dorms_Substation + name = "\improper Dorms Substation" + icon_state = "engineering" + ambience = AMBIENCE_SUBSTATION + lightswitch = 1 + +/area/maintenance/Domicile_Substation + name = "\improper Domicile Substation" + icon_state = "engineering" + ambience = AMBIENCE_SUBSTATION + lightswitch = 1 + +/area/maintenance/Harbor_Substation + name = "\improper Harbor Substation" + icon_state = "engineering" + ambience = AMBIENCE_SUBSTATION + lightswitch = 1 + +/area/maintenance/Telecomms_Substation + name = "\improper Telecomms Substation" + icon_state = "engineering" + ambience = AMBIENCE_SUBSTATION + lightswitch = 1 + +/area/maintenance/Security_Substation + name = "\improper Security Substation" + icon_state = "engineering" + ambience = AMBIENCE_SUBSTATION + lightswitch = 1 + +/area/maintenance/Bridge_Substation + name = "\improper Bridge Substation" + icon_state = "engineering" + ambience = AMBIENCE_SUBSTATION + lightswitch = 1 + +/area/maintenance/AI_Substation + name = "\improper AI Substation" + icon_state = "engineering" + ambience = AMBIENCE_SUBSTATION + lightswitch = 1 + +/area/maintenance/Cargo_Substation + name = "\improper Cargo Substation" + icon_state = "engineering" + ambience = AMBIENCE_SUBSTATION + lightswitch = 1 + +/area/maintenance/Engineering_Substation + name = "\improper Engineering Substation" + icon_state = "engineering" + ambience = AMBIENCE_SUBSTATION + lightswitch = 1 diff --git a/maps/southern_sun/southern_cross_defines.dm b/modular_chomp/maps/soluna_nexus/soluna_nexus_defines.dm similarity index 72% rename from maps/southern_sun/southern_cross_defines.dm rename to modular_chomp/maps/soluna_nexus/soluna_nexus_defines.dm index 87b4084d2a..9d5309ad10 100644 --- a/maps/southern_sun/southern_cross_defines.dm +++ b/modular_chomp/maps/soluna_nexus/soluna_nexus_defines.dm @@ -24,7 +24,6 @@ but they don't actually change anything about the load order #define Z_LEVEL_DEATH_VALLEY 13 #define Z_LEVEL_GATEWAY 14 -//#define Z_LEVEL_STATION_MAINTS //CHOMPedit Deck 0 maints removal due to new station. //#define Z_LEVEL_SURFACE_SKYLANDS //Sky islands removal due to lack of use //#define Z_LEVEL_AEROSTAT //Disabled due to lack of use //#define Z_LEVEL_NS_MINE //Disabled due to lack of use @@ -34,10 +33,10 @@ but they don't actually change anything about the load order //#define Z_LEVEL_EMPTY_SPACE xx //CHOMPedit: Disabling empty space as now the overmap generates empty space on demand. -/datum/map/southern_cross - name = "Southern Cross" - full_name = "Southern Cross" - path = "southern_cross" +/datum/map/soluna_nexus + name = "Soluna Nexus" + full_name = "Soluna Nexus" + path = "soluna_nexus" lobby_icon = 'icons/misc/CHOMPSTATION.gif' //CHOMPStation Edit lobby_screens = list() //CHOMPStation Edit - CHOMPStation image @@ -48,10 +47,10 @@ but they don't actually change anything about the load order Z_LEVEL_STATION_TWO, Z_LEVEL_STATION_THREE)) - zlevel_datum_type = /datum/map_z_level/southern_cross + zlevel_datum_type = /datum/map_z_level/soluna_nexus - station_name = "NLS Southern Cross" - station_short = "Southern Cross" + station_name = "NLS Soluna Nexus" + station_short = "Soluna Nexus" dock_name = "NCS Northern Star" // Now we're the centcom! boss_name = "Central Command" boss_short = "Centcom" @@ -107,14 +106,13 @@ but they don't actually change anything about the load order ) usable_email_tlds = list("freemail.nt") allowed_spawns = list("Arrivals Shuttle","Gateway", "Cryogenic Storage", "Cyborg Storage", "Station gateway", "Sif plains") - default_skybox = /datum/skybox_settings/southern_cross + default_skybox = /datum/skybox_settings/soluna_nexus unit_test_exempt_areas = list(/area/ninja_dojo, /area/shuttle/ninja) - unit_test_exempt_from_atmos = list(/area/SouthernCrossV2/Engineering/Telecomms_Network, /area/SouthernCrossV2/Security/Transit_Turrets) + unit_test_exempt_from_atmos = list(/area/engineering/Telecomms_Network, /area/security/Transit_Turrets) planet_datums_to_make = list(/datum/planet/sif,/datum/planet/thor, /datum/planet/tyr) //This must be added to load maps at round start otherwise they will have weather or sun. map_levels = list( - //Z_LEVEL_STATION_MAINTS, (Removed for new map. KAS) Z_LEVEL_STATION_ONE, Z_LEVEL_STATION_TWO, Z_LEVEL_STATION_THREE, @@ -149,7 +147,7 @@ but they don't actually change anything about the load order // Commented out due to causing a lot of bugs. The base proc plus overmap achieves this functionality anyways. /* // Short range computers see only the six main levels, others can see the surrounding surface levels. -/datum/map/southern_cross/get_map_levels(var/srcz, var/long_range = TRUE) +/datum/map/soluna_nexus/get_map_levels(var/srcz, var/long_range = TRUE) if (long_range && (srcz in map_levels)) return map_levels else if (srcz == Z_LEVEL_TRANSIT && !long_range) @@ -170,7 +168,7 @@ but they don't actually change anything about the load order else return list(srcz) //prevents runtimes when using CMC. any Z-level not defined above will be 'isolated' and only show to GPSes/CMCs on that same Z (e.g. CentCom). */ -/datum/map/southern_cross/perform_map_generation() +/datum/map/soluna_nexus/perform_map_generation() // First, place a bunch of submaps. This comes before tunnel/forest generation as to not interfere with the submap.(This controls POI limit generation, increase or lower its values to have more or less POI's) // Cave submaps are first. @@ -193,7 +191,7 @@ but they don't actually change anything about the load order return 1 // Skybox Settings -/datum/skybox_settings/southern_cross +/datum/skybox_settings/soluna_nexus icon_state = "dyable" random_color = TRUE // For making the 4-in-1 holomap, we calculate some offsets @@ -202,12 +200,12 @@ but they don't actually change anything about the load order #define SOUTHERN_CROSS_HOLOMAP_MARGIN_X ((HOLOMAP_ICON_SIZE - (2*SOUTHERN_CROSS_MAP_SIZE) - SOUTHERN_CROSS_HOLOMAP_CENTER_GUTTER) / 2) // 100 #define SOUTHERN_CROSS_HOLOMAP_MARGIN_Y ((HOLOMAP_ICON_SIZE - (2*SOUTHERN_CROSS_MAP_SIZE)) / 2) // 60 -/datum/map_z_level/southern_cross/station +/datum/map_z_level/soluna_nexus/station flags = MAP_LEVEL_STATION|MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_CONSOLES|MAP_LEVEL_VORESPAWN holomap_legend_x = 220 holomap_legend_y = 160 -/datum/map_z_level/southern_cross/station/station_one +/datum/map_z_level/soluna_nexus/station/station_one z = Z_LEVEL_STATION_ONE name = "Deck 1" base_turf = /turf/space @@ -215,7 +213,7 @@ but they don't actually change anything about the load order holomap_offset_x = SOUTHERN_CROSS_HOLOMAP_MARGIN_X - SOUTHERN_CROSS_HOLOMAP_CENTER_GUTTER / 2 holomap_offset_y = SOUTHERN_CROSS_HOLOMAP_MARGIN_Y + SOUTHERN_CROSS_MAP_SIZE*0 -/datum/map_z_level/southern_cross/station/station_two +/datum/map_z_level/soluna_nexus/station/station_two z = Z_LEVEL_STATION_TWO name = "Deck 2" base_turf = /turf/simulated/open @@ -223,7 +221,7 @@ but they don't actually change anything about the load order holomap_offset_x = SOUTHERN_CROSS_HOLOMAP_MARGIN_X - SOUTHERN_CROSS_HOLOMAP_CENTER_GUTTER / 2 holomap_offset_y = SOUTHERN_CROSS_HOLOMAP_MARGIN_Y + SOUTHERN_CROSS_MAP_SIZE*1 -/datum/map_z_level/southern_cross/station/station_three +/datum/map_z_level/soluna_nexus/station/station_three z = Z_LEVEL_STATION_THREE name = "Deck 3" base_turf = /turf/simulated/open @@ -238,19 +236,19 @@ but they don't actually change anything about the load order flags = MAP_LEVEL_PLAYER transit_chance = 60 */ -/datum/map_z_level/southern_cross/surface +/datum/map_z_level/soluna_nexus/surface z = Z_LEVEL_SURFACE name = "Plains" flags = MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED|MAP_LEVEL_CONSOLES|MAP_LEVEL_VORESPAWN base_turf = /turf/simulated/floor/outdoors/rocks -/datum/map_z_level/southern_cross/surface_mine +/datum/map_z_level/soluna_nexus/surface_mine z = Z_LEVEL_SURFACE_MINE name = "Mountains" flags = MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED|MAP_LEVEL_CONSOLES base_turf = /turf/simulated/floor/outdoors/rocks -/datum/map_z_level/southern_cross/surface_wild +/datum/map_z_level/soluna_nexus/surface_wild z = Z_LEVEL_SURFACE_WILD name = "Wilderness" flags = MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED|MAP_LEVEL_CONTACT|MAP_LEVEL_CONSOLES @@ -277,174 +275,34 @@ but they don't actually change anything about the load order flags = MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED|MAP_LEVEL_CONTACT|MAP_LEVEL_CONSOLES|MAP_LEVEL_VORESPAWN base_turf = /turf/simulated/floor/outdoors/rocks */ -/datum/map_z_level/southern_cross/misc +/datum/map_z_level/soluna_nexus/misc z = Z_LEVEL_MISC name = "Misc" flags = MAP_LEVEL_PLAYER|MAP_LEVEL_VORESPAWN transit_chance = 15 -/datum/map_z_level/southern_cross/centcom +/datum/map_z_level/soluna_nexus/centcom z = Z_LEVEL_CENTCOM name = "Centcom" flags = MAP_LEVEL_ADMIN|MAP_LEVEL_CONTACT -/datum/map_z_level/southern_cross/transit +/datum/map_z_level/soluna_nexus/transit z = Z_LEVEL_TRANSIT name = "Transit" flags = MAP_LEVEL_ADMIN|MAP_LEVEL_SEALED|MAP_LEVEL_PLAYER|MAP_LEVEL_CONTACT //Thor Z-Level -/datum/map_z_level/southern_cross/thor +/datum/map_z_level/soluna_nexus/thor z = Z_LEVEL_JUNGLE name = "Thor Surface" flags = MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED base_turf = /turf/simulated/floor/outdoors/rocks -/datum/map_z_level/southern_cross/valley +/datum/map_z_level/soluna_nexus/valley z = Z_LEVEL_DEATH_VALLEY name = "Desert Valley" flags = MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED base_turf = /turf/simulated/floor/outdoors/rocks -/* -// Deck 0 Z-Level (Removed for new map. KAS) -/datum/map_z_level/southern_cross/station/station_maintenance - z = Z_LEVEL_STATION_MAINTS - name = "Maintenance Deck" - base_turf = /turf/simulated/open - transit_chance = 15 - holomap_offset_x = HOLOMAP_ICON_SIZE - SOUTHERN_CROSS_HOLOMAP_MARGIN_X - SOUTHERN_CROSS_MAP_SIZE - 40 - holomap_offset_y = SOUTHERN_CROSS_HOLOMAP_MARGIN_Y + SOUTHERN_CROSS_MAP_SIZE*1 -*/ -/* - KSC 9/29/20 = No longer relevant code as we have nonencludian portals to jump between outpost,caves and wilderness -//Teleport to Mine - -/obj/effect/step_trigger/teleporter/mine/to_mining/New() - ..() - teleport_x = src.x - teleport_y = 2 - teleport_z = Z_LEVEL_SURFACE_MINE - -/obj/effect/step_trigger/teleporter/mine/from_mining/New() - ..() - teleport_x = src.x - teleport_y = world.maxy - 1 - teleport_z = Z_LEVEL_SURFACE - -//Teleport to Wild - -/obj/effect/step_trigger/teleporter/wild/to_wild/New() - ..() - teleport_x = src.x - teleport_y = 2 - teleport_z = Z_LEVEL_SURFACE_WILD - -/obj/effect/step_trigger/teleporter/wild/from_wild/New() - ..() - teleport_x = src.x - teleport_y = world.maxy - 1 - teleport_z = Z_LEVEL_SURFACE_MINE -*/ - -/datum/planet/sif - expected_z_levels = list( - Z_LEVEL_SURFACE, - Z_LEVEL_SURFACE_MINE, - Z_LEVEL_SURFACE_WILD - //Z_LEVEL_SURFACE_SKYLANDS, //Sky islands removal due to lack of use - ) -//Z_LEVEL_SURFACE_CASINO //CHOMPedit - KSC = So there is weather on the Casino. //Move this into /datum/planet/sif and remember to add a coma for the new entry, for when you need the casino again - -/datum/planet/thor - expected_z_levels = list( - Z_LEVEL_JUNGLE - ) - -/datum/planet/tyr - expected_z_levels = list( - Z_LEVEL_DEATH_VALLEY - ) - -/obj/effect/step_trigger/teleporter/bridge/east_to_west/Initialize() - teleport_x = src.x - 4 - teleport_y = src.y - teleport_z = src.z - return ..() - -/obj/effect/step_trigger/teleporter/bridge/east_to_west/small/Initialize() - teleport_x = src.x - 3 - teleport_y = src.y - teleport_z = src.z - return ..() - -/obj/effect/step_trigger/teleporter/bridge/west_to_east/Initialize() - teleport_x = src.x + 4 - teleport_y = src.y - teleport_z = src.z - return ..() - -/obj/effect/step_trigger/teleporter/bridge/west_to_east/small/Initialize() - teleport_x = src.x + 3 - teleport_y = src.y - teleport_z = src.z - return ..() - -/obj/effect/step_trigger/teleporter/bridge/north_to_south/Initialize() - teleport_x = src.x - teleport_y = src.y - 4 - teleport_z = src.z - return ..() - -/obj/effect/step_trigger/teleporter/bridge/south_to_north/Initialize() - teleport_x = src.x - teleport_y = src.y + 4 - teleport_z = src.z - return ..() - - /* KSC 9/29/20 = Adding these as we now have nonencludian portals */ - -/obj/effect/map_effect/portal/master/side_a/plains_to_caves - portal_id = "plains_caves-normal" - -/obj/effect/map_effect/portal/master/side_b/caves_to_plains - portal_id = "plains_caves-normal" - -/obj/effect/map_effect/portal/master/side_a/plains_to_caves/river - portal_id = "plains_caves-river" - -/obj/effect/map_effect/portal/master/side_b/caves_to_plains/river - portal_id = "plains_caves-river" - - -/obj/effect/map_effect/portal/master/side_a/caves_to_wilderness - portal_id = "caves_wilderness-normal" - -/obj/effect/map_effect/portal/master/side_b/wilderness_to_caves - portal_id = "caves_wilderness-normal" - -/obj/effect/map_effect/portal/master/side_a/caves_to_wilderness/river - portal_id = "caves_wilderness-river" - -/obj/effect/map_effect/portal/master/side_b/wilderness_to_caves/river - portal_id = "caves_wilderness-river" - -/obj/effect/map_effect/portal/master/side_a/wilderness_to_valley - portal_id = "wilderness_valley" - -/obj/effect/map_effect/portal/master/side_b/wilderness_to_valley - portal_id = "wilderness_valley" - - -/* -//CHOMPEdit this is very much necessary for us otherwise weather sounds play on other levels -/datum/planet/sif - expected_z_levels = list( - Z_LEVEL_SURFACE, - Z_LEVEL_SURFACE_MINE, - Z_LEVEL_SURFACE_WILD - ) -*/ -//Suit Storage Units /obj/machinery/suit_cycler/exploration name = "Explorer suit cycler" @@ -457,7 +315,7 @@ but they don't actually change anything about the load order req_access = null req_one_access = list(access_pilot,access_explorer) -/datum/map/southern_cross/get_map_info() +/datum/map/soluna_nexus/get_map_info() . = list() . += "The NLS [full_name] is a small waystation in orbit of the frozen garden world of Sif, jewel of the Vir system.
" . += "Though Vir is typically peaceful, the system has seen its fair share of conflict in the face of technological extremists, rogue drone intelligence, and worse.
" diff --git a/maps/southern_sun/southern_cross_elevator.dm b/modular_chomp/maps/soluna_nexus/soluna_nexus_elevator.dm similarity index 80% rename from maps/southern_sun/southern_cross_elevator.dm rename to modular_chomp/maps/soluna_nexus/soluna_nexus_elevator.dm index 0368bfef71..c49eaef700 100644 --- a/maps/southern_sun/southern_cross_elevator.dm +++ b/modular_chomp/maps/soluna_nexus/soluna_nexus_elevator.dm @@ -1,10 +1,10 @@ -/obj/turbolift_map_holder/southern_cross +/obj/turbolift_map_holder/soluna_nexus icon = 'icons/obj/turbolift_preview_5x5.dmi' depth = 3 lift_size_x = 4 lift_size_y = 4 -/obj/turbolift_map_holder/southern_cross/port +/obj/turbolift_map_holder/soluna_nexus/port name = "Southern Cross turbolift map placeholder - Port" dir = EAST @@ -15,7 +15,7 @@ /area/turbolift/port_deck_three ) -/obj/turbolift_map_holder/southern_cross/starboard +/obj/turbolift_map_holder/soluna_nexus/starboard name = "Sothern Cross turbolift map placeholder - Starboard" dir = WEST @@ -25,7 +25,7 @@ /area/turbolift/starboard_deck_three ) -/obj/turbolift_map_holder/southern_cross/cargo +/obj/turbolift_map_holder/soluna_nexus/cargo name = "Sothern Cross turbolift map placeholder - Cargo" dir = WEST depth = 2 @@ -35,7 +35,7 @@ /area/turbolift/cargo_deck_two ) -/obj/turbolift_map_holder/southern_cross/center +/obj/turbolift_map_holder/soluna_nexus/center name = "Southern Cross turbolift map placeholder - Center" areas_to_use = list( @@ -44,7 +44,7 @@ /area/turbolift/center_deck_three ) -/obj/turbolift_map_holder/southern_cross/aft +/obj/turbolift_map_holder/soluna_nexus/aft name = "Southern Cross turbolift map placeholder - Aft" dir = NORTH @@ -54,7 +54,7 @@ /area/turbolift/aft_deck_three ) -/obj/turbolift_map_holder/southern_cross/forward +/obj/turbolift_map_holder/soluna_nexus/forward name = "Southern Cross turbolift map placeholder - Forward" dir = WEST diff --git a/maps/southern_sun/southern_cross_presets.dm b/modular_chomp/maps/soluna_nexus/soluna_nexus_presets.dm similarity index 74% rename from maps/southern_sun/southern_cross_presets.dm rename to modular_chomp/maps/soluna_nexus/soluna_nexus_presets.dm index dc2084d357..5a1760b840 100644 --- a/maps/southern_sun/southern_cross_presets.dm +++ b/modular_chomp/maps/soluna_nexus/soluna_nexus_presets.dm @@ -3,8 +3,7 @@ var/const/NETWORK_SECOND_DECK = "Second Deck" var/const/NETWORK_FIRST_DECK = "First Deck" var/const/NETWORK_SUPPLY = "Supply" var/const/NETWORK_MAIN_OUTPOST = "Main Outpost" -var/const/NETWORK_CARRIER = "Exploration Carrier" //CHOMPedit: Exploration outpost cameras -//var/const/NETWORK_MAINT_DECK = "Maintenance Deck" // CHOMPEdit - Maintenance deck (Removed for new map. KAS) +var/const/NETWORK_CARRIER = "Exploration Carrier" // // Cameras @@ -26,12 +25,9 @@ var/const/NETWORK_CARRIER = "Exploration Carrier" //CHOMPedit: Exploration outp /obj/machinery/camera/network/supply network = list(NETWORK_SUPPLY) -/obj/machinery/camera/network/carrier //CHOMPedit: Exploration carrier cameras +/obj/machinery/camera/network/carrier network = list(NETWORK_CARRIER) -///obj/machinery/camera/network/maint_deck // CHOMPEdit - Maintenance deck -// network = list(NETWORK_MAINT_DECK) (Removed for new map. KAS) - // ### Preset machines ### @@ -67,43 +63,15 @@ var/const/NETWORK_CARRIER = "Exploration Carrier" //CHOMPedit: Exploration outp listening_level = Z_LEVEL_SURFACE_WILD autolinkers = list("wld_relay") - /obj/machinery/telecomms/relay/preset/southerncross/transit id = "Transit Relay" listening_level = Z_LEVEL_TRANSIT autolinkers = list("tns_relay") -/obj/machinery/telecomms/relay/preset/southerncross/explorer //CHOMPedit: Tcomms relay for exploration carrier +/obj/machinery/telecomms/relay/preset/southerncross/explorer listening_level = Z_LEVEL_MISC autolinkers = list("exp_relay") -/* (Removed for new map. KAS) -/obj/machinery/telecomms/relay/preset/southerncross/d0 - id = "Station Relay 0" - listening_level = Z_LEVEL_STATION_MAINTS - autolinkers = list("d0_relay") -*/ - -/* //Sky islands removal due to lack of use -/obj/machinery/telecomms/relay/preset/southerncross/skylands - id = "Sky Island Relay" - listening_level = Z_LEVEL_SURFACE_SKYLANDS - autolinkers = list("sky_relay") -*/ -/* -/obj/machinery/telecomms/relay/preset/southerncross/valley //CHOMPedit, add back if you want valley - id = "Valley Relay" - listening_level = Z_LEVEL_SURFACE_VALLEY - autolinkers = list("valley_relay") -*/ -//Temp Removal TFF 15/2/20 -/* -/obj/machinery/telecomms/relay/preset/belt_outpost // CHOMPedit: Tcomms relay for Belt Outpost - id = "Belt Mining Relay" - listening_level = Z_LEVEL_BELT - autolinkers = list("belt_relay") -*/ - /obj/machinery/telecomms/relay/preset/southerncross/centcomm id = "Centcom Relay" listening_level = Z_LEVEL_CENTCOM @@ -114,8 +82,8 @@ var/const/NETWORK_CARRIER = "Exploration Carrier" //CHOMPedit: Exploration outp id = "Hub" network = "tcommsat" autolinkers = list("hub", - "d1_relay", "d2_relay", "d3_relay", "pnt_relay", "cve_relay", "wld_relay", "tns_relay", "cnt_relay", "explorer", "exp_relay", "valley_relay", - //"belt_relay", // Chompstation edit - adds belt outpost to relays. Temp Removal of Belt Relay TFF 15/2/20, Added Valley comn stuff 2/14/2023 + "d1_relay", "d2_relay", "d3_relay", "pnt_relay", "cve_relay", "wld_relay", "tns_relay", "cnt_relay", "explorer", "exp_relay", + //"belt_relay", // Chompstation edit - adds belt outpost to relays. Temp Removal of Belt Relay TFF 15/2/20, Added Valley comn stuff 2/14/2023 Removed it 9/30/2024 //"sky_relay", // Sky islands removal due to lack of use "science", "medical", "supply", "service", "common", "command", "engineering", "security", "unused", "hb_relay", "receiverA", "broadcasterA" diff --git a/maps/southern_sun/southern_cross_shuttles.dm b/modular_chomp/maps/soluna_nexus/soluna_nexus_shuttles.dm similarity index 100% rename from maps/southern_sun/southern_cross_shuttles.dm rename to modular_chomp/maps/soluna_nexus/soluna_nexus_shuttles.dm diff --git a/maps/southern_cross/datums/supplypacks/munitions.dm b/modular_chomp/maps/southern_cross/datums/supplypacks/munitions.dm similarity index 100% rename from maps/southern_cross/datums/supplypacks/munitions.dm rename to modular_chomp/maps/southern_cross/datums/supplypacks/munitions.dm diff --git a/maps/southern_cross/events/wildlife_encounter.dm b/modular_chomp/maps/southern_cross/events/wildlife_encounter.dm similarity index 100% rename from maps/southern_cross/events/wildlife_encounter.dm rename to modular_chomp/maps/southern_cross/events/wildlife_encounter.dm diff --git a/maps/southern_cross/icons/mob/sc_suit.dmi b/modular_chomp/maps/southern_cross/icons/mob/sc_suit.dmi similarity index 100% rename from maps/southern_cross/icons/mob/sc_suit.dmi rename to modular_chomp/maps/southern_cross/icons/mob/sc_suit.dmi diff --git a/maps/southern_cross/icons/mob/sc_under.dmi b/modular_chomp/maps/southern_cross/icons/mob/sc_under.dmi similarity index 100% rename from maps/southern_cross/icons/mob/sc_under.dmi rename to modular_chomp/maps/southern_cross/icons/mob/sc_under.dmi diff --git a/maps/southern_cross/icons/mob/species/teshari/sc_suit.dmi b/modular_chomp/maps/southern_cross/icons/mob/species/teshari/sc_suit.dmi similarity index 100% rename from maps/southern_cross/icons/mob/species/teshari/sc_suit.dmi rename to modular_chomp/maps/southern_cross/icons/mob/species/teshari/sc_suit.dmi diff --git a/maps/southern_cross/icons/mob/species/teshari/sc_uniform.dmi b/modular_chomp/maps/southern_cross/icons/mob/species/teshari/sc_uniform.dmi similarity index 100% rename from maps/southern_cross/icons/mob/species/teshari/sc_uniform.dmi rename to modular_chomp/maps/southern_cross/icons/mob/species/teshari/sc_uniform.dmi diff --git a/maps/southern_cross/icons/obj/sc_hats.dmi b/modular_chomp/maps/southern_cross/icons/obj/sc_hats.dmi similarity index 100% rename from maps/southern_cross/icons/obj/sc_hats.dmi rename to modular_chomp/maps/southern_cross/icons/obj/sc_hats.dmi diff --git a/maps/southern_cross/icons/obj/sc_suit.dmi b/modular_chomp/maps/southern_cross/icons/obj/sc_suit.dmi similarity index 100% rename from maps/southern_cross/icons/obj/sc_suit.dmi rename to modular_chomp/maps/southern_cross/icons/obj/sc_suit.dmi diff --git a/maps/southern_cross/icons/obj/sc_ties.dmi b/modular_chomp/maps/southern_cross/icons/obj/sc_ties.dmi similarity index 100% rename from maps/southern_cross/icons/obj/sc_ties.dmi rename to modular_chomp/maps/southern_cross/icons/obj/sc_ties.dmi diff --git a/maps/southern_cross/icons/obj/sc_uniforms.dmi b/modular_chomp/maps/southern_cross/icons/obj/sc_uniforms.dmi similarity index 100% rename from maps/southern_cross/icons/obj/sc_uniforms.dmi rename to modular_chomp/maps/southern_cross/icons/obj/sc_uniforms.dmi diff --git a/maps/southern_cross/items/clothing/sc_accessory.dm b/modular_chomp/maps/southern_cross/items/clothing/sc_accessory.dm similarity index 100% rename from maps/southern_cross/items/clothing/sc_accessory.dm rename to modular_chomp/maps/southern_cross/items/clothing/sc_accessory.dm diff --git a/maps/southern_cross/items/clothing/sc_suit.dm b/modular_chomp/maps/southern_cross/items/clothing/sc_suit.dm similarity index 55% rename from maps/southern_cross/items/clothing/sc_suit.dm rename to modular_chomp/maps/southern_cross/items/clothing/sc_suit.dm index cec3eca91e..a448aa941e 100644 --- a/maps/southern_cross/items/clothing/sc_suit.dm +++ b/modular_chomp/maps/southern_cross/items/clothing/sc_suit.dm @@ -4,10 +4,10 @@ name = "pilot jacket" desc = "A thick, blue bomber jacket." icon_state = "pilot_bomber" - item_icons = list(slot_wear_suit_str = 'maps/southern_cross/icons/mob/sc_suit.dmi') + item_icons = list(slot_wear_suit_str = 'modular_chomp/maps/southern_cross/icons/mob/sc_suit.dmi') item_state_slots = list(slot_r_hand_str = "brown_jacket", slot_l_hand_str = "brown_jacket") - icon = 'maps/southern_cross/icons/obj/sc_suit.dmi' + icon = 'modular_chomp/maps/southern_cross/icons/obj/sc_suit.dmi' sprite_sheets = list( - SPECIES_TESHARI = 'maps/southern_cross/icons/mob/species/teshari/sc_suit.dmi' + SPECIES_TESHARI = 'modular_chomp/maps/southern_cross/icons/mob/species/teshari/sc_suit.dmi' ) - min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE \ No newline at end of file + min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE diff --git a/maps/southern_cross/items/clothing/sc_under.dm b/modular_chomp/maps/southern_cross/items/clothing/sc_under.dm similarity index 61% rename from maps/southern_cross/items/clothing/sc_under.dm rename to modular_chomp/maps/southern_cross/items/clothing/sc_under.dm index ea024abe7a..5852d675da 100644 --- a/maps/southern_cross/items/clothing/sc_under.dm +++ b/modular_chomp/maps/southern_cross/items/clothing/sc_under.dm @@ -5,10 +5,10 @@ desc = "A blue and grey NanoTrasen flight suit. Warm and practical, it feels cozy." icon_state = "pilot1" worn_state = "pilot1" - item_icons = list(slot_w_uniform_str = 'maps/southern_cross/icons/mob/sc_under.dmi') - icon = 'maps/southern_cross/icons/obj/sc_uniforms.dmi' + item_icons = list(slot_w_uniform_str = 'modular_chomp/maps/southern_cross/icons/mob/sc_under.dmi') + icon = 'modular_chomp/maps/southern_cross/icons/obj/sc_uniforms.dmi' sprite_sheets = list( - SPECIES_TESHARI = 'maps/southern_cross/icons/mob/species/teshari/sc_uniform.dmi' + SPECIES_TESHARI = 'modular_chomp/maps/southern_cross/icons/mob/species/teshari/sc_uniform.dmi' ) starting_accessories = list(/obj/item/clothing/accessory/storage/webbing/pilot1) @@ -22,10 +22,10 @@ worn_state = "pilot2" rolled_down = 0 rolled_sleeves = 0 - item_icons = list(slot_w_uniform_str = 'maps/southern_cross/icons/mob/sc_under.dmi') - icon = 'maps/southern_cross/icons/obj/sc_uniforms.dmi' + item_icons = list(slot_w_uniform_str = 'modular_chomp/maps/southern_cross/icons/mob/sc_under.dmi') + icon = 'modular_chomp/maps/southern_cross/icons/obj/sc_uniforms.dmi' sprite_sheets = list( - SPECIES_TESHARI = 'maps/southern_cross/icons/mob/species/teshari/sc_uniform.dmi' + SPECIES_TESHARI = 'modular_chomp/maps/southern_cross/icons/mob/species/teshari/sc_uniform.dmi' ) starting_accessories = list(/obj/item/clothing/accessory/storage/webbing/pilot2) diff --git a/maps/southern_cross/items/encryptionkey_sc.dm b/modular_chomp/maps/southern_cross/items/encryptionkey_sc.dm similarity index 100% rename from maps/southern_cross/items/encryptionkey_sc.dm rename to modular_chomp/maps/southern_cross/items/encryptionkey_sc.dm diff --git a/maps/southern_cross/items/headset_sc.dm b/modular_chomp/maps/southern_cross/items/headset_sc.dm similarity index 100% rename from maps/southern_cross/items/headset_sc.dm rename to modular_chomp/maps/southern_cross/items/headset_sc.dm diff --git a/maps/southern_cross/job/outfits.dm b/modular_chomp/maps/southern_cross/job/outfits.dm similarity index 100% rename from maps/southern_cross/job/outfits.dm rename to modular_chomp/maps/southern_cross/job/outfits.dm diff --git a/maps/southern_cross/loadout/loadout_accessories.dm b/modular_chomp/maps/southern_cross/loadout/loadout_accessories.dm similarity index 100% rename from maps/southern_cross/loadout/loadout_accessories.dm rename to modular_chomp/maps/southern_cross/loadout/loadout_accessories.dm diff --git a/maps/southern_cross/loadout/loadout_head.dm b/modular_chomp/maps/southern_cross/loadout/loadout_head.dm similarity index 100% rename from maps/southern_cross/loadout/loadout_head.dm rename to modular_chomp/maps/southern_cross/loadout/loadout_head.dm diff --git a/maps/southern_cross/loadout/loadout_suit.dm b/modular_chomp/maps/southern_cross/loadout/loadout_suit.dm similarity index 100% rename from maps/southern_cross/loadout/loadout_suit.dm rename to modular_chomp/maps/southern_cross/loadout/loadout_suit.dm diff --git a/maps/southern_cross/loadout/loadout_uniform.dm b/modular_chomp/maps/southern_cross/loadout/loadout_uniform.dm similarity index 100% rename from maps/southern_cross/loadout/loadout_uniform.dm rename to modular_chomp/maps/southern_cross/loadout/loadout_uniform.dm diff --git a/maps/southern_cross/loadout/loadout_vr.dm b/modular_chomp/maps/southern_cross/loadout/loadout_vr.dm similarity index 100% rename from maps/southern_cross/loadout/loadout_vr.dm rename to modular_chomp/maps/southern_cross/loadout/loadout_vr.dm diff --git a/maps/southern_cross/overmap/planets/kara/aerostat/aerostat.dm b/modular_chomp/maps/southern_cross/overmap/planets/kara/aerostat/aerostat.dm similarity index 100% rename from maps/southern_cross/overmap/planets/kara/aerostat/aerostat.dm rename to modular_chomp/maps/southern_cross/overmap/planets/kara/aerostat/aerostat.dm diff --git a/maps/southern_cross/overmap/planets/kara/aerostat/aerostat.dmm b/modular_chomp/maps/southern_cross/overmap/planets/kara/aerostat/aerostat.dmm similarity index 100% rename from maps/southern_cross/overmap/planets/kara/aerostat/aerostat.dmm rename to modular_chomp/maps/southern_cross/overmap/planets/kara/aerostat/aerostat.dmm diff --git a/maps/southern_cross/overmap/planets/kara/kara.dm b/modular_chomp/maps/southern_cross/overmap/planets/kara/kara.dm similarity index 100% rename from maps/southern_cross/overmap/planets/kara/kara.dm rename to modular_chomp/maps/southern_cross/overmap/planets/kara/kara.dm diff --git a/maps/southern_cross/overmap/planets/kara/kara_OM_only.dm b/modular_chomp/maps/southern_cross/overmap/planets/kara/kara_OM_only.dm similarity index 100% rename from maps/southern_cross/overmap/planets/kara/kara_OM_only.dm rename to modular_chomp/maps/southern_cross/overmap/planets/kara/kara_OM_only.dm diff --git a/maps/southern_cross/overmap/planets/kara/northern_star/backup/northern_star_mine.dmm b/modular_chomp/maps/southern_cross/overmap/planets/kara/northern_star/backup/northern_star_mine.dmm similarity index 100% rename from maps/southern_cross/overmap/planets/kara/northern_star/backup/northern_star_mine.dmm rename to modular_chomp/maps/southern_cross/overmap/planets/kara/northern_star/backup/northern_star_mine.dmm diff --git a/maps/southern_cross/overmap/planets/kara/northern_star/northern_star.dm b/modular_chomp/maps/southern_cross/overmap/planets/kara/northern_star/northern_star.dm similarity index 100% rename from maps/southern_cross/overmap/planets/kara/northern_star/northern_star.dm rename to modular_chomp/maps/southern_cross/overmap/planets/kara/northern_star/northern_star.dm diff --git a/maps/southern_cross/overmap/planets/kara/northern_star/northern_star_mine.dmm b/modular_chomp/maps/southern_cross/overmap/planets/kara/northern_star/northern_star_mine.dmm similarity index 100% rename from maps/southern_cross/overmap/planets/kara/northern_star/northern_star_mine.dmm rename to modular_chomp/maps/southern_cross/overmap/planets/kara/northern_star/northern_star_mine.dmm diff --git a/maps/southern_cross/overmap/planets/thor/thor.dm b/modular_chomp/maps/southern_cross/overmap/planets/thor/thor.dm similarity index 100% rename from maps/southern_cross/overmap/planets/thor/thor.dm rename to modular_chomp/maps/southern_cross/overmap/planets/thor/thor.dm diff --git a/maps/southern_cross/overmap/planets/thor/thor.dmm b/modular_chomp/maps/southern_cross/overmap/planets/thor/thor.dmm similarity index 100% rename from maps/southern_cross/overmap/planets/thor/thor.dmm rename to modular_chomp/maps/southern_cross/overmap/planets/thor/thor.dmm diff --git a/maps/southern_cross/overmap/planets/tyr/tyr.dm b/modular_chomp/maps/southern_cross/overmap/planets/tyr/tyr.dm similarity index 100% rename from maps/southern_cross/overmap/planets/tyr/tyr.dm rename to modular_chomp/maps/southern_cross/overmap/planets/tyr/tyr.dm diff --git a/maps/southern_cross/overmap/planets/tyr/tyr.dmm b/modular_chomp/maps/southern_cross/overmap/planets/tyr/tyr.dmm similarity index 100% rename from maps/southern_cross/overmap/planets/tyr/tyr.dmm rename to modular_chomp/maps/southern_cross/overmap/planets/tyr/tyr.dmm diff --git a/maps/southern_cross/overmap/sectors.dm b/modular_chomp/maps/southern_cross/overmap/sectors_sc.dm similarity index 67% rename from maps/southern_cross/overmap/sectors.dm rename to modular_chomp/maps/southern_cross/overmap/sectors_sc.dm index 04c9cd3931..29c58a1b96 100644 --- a/maps/southern_cross/overmap/sectors.dm +++ b/modular_chomp/maps/southern_cross/overmap/sectors_sc.dm @@ -1,53 +1,3 @@ -// Overmap object for Sif, hanging in the void of space -/obj/effect/overmap/visitable/planet/Sif - name = "Sif" - desc = "Location of Vir civilian colonies." - scanner_desc = @{"[i]Registration[/i]: Vir System Authority -[i]Class[/i]: Colony -[i]Transponder[/i]: Transmitting (CIV), Vir IFF -[b]Notice[/b]: The Vir government welcomes you to this world."} - - map_z = list(Z_LEVEL_SURFACE, Z_LEVEL_SURFACE_MINE, Z_LEVEL_SURFACE_WILD) - //Z_LEVEL_SURFACE_SKYLANDS, //removed due to lack of use - - initial_generic_waypoints = list( - "outpost_nw", - "outpost_s", - "outpost_w", - "wilderness_s", - "wilderness_se", - "wilderness_w", - "wilderness_n" - ) - - in_space = 0 - start_x = 10 - start_y = 10 - skybox_offset_x = 128 - skybox_offset_y = 128 - surface_color = "#2D545B" - mountain_color = "#735555" - ice_color = "FFFFFF" - icecaps = "icecaps" - icon_state = "frozen" //CHOMP comment: Not sure what this does at the moment, but we're doing it live. - -/obj/effect/overmap/visitable/planet/Sif/Initialize() - atmosphere = new(CELL_VOLUME) - atmosphere.adjust_gas_temp("oxygen", MOLES_O2STANDARD, 273) - atmosphere.adjust_gas_temp("nitrogen", MOLES_N2STANDARD, 273) - - . = ..() - -/obj/effect/overmap/visitable/planet/Sif/Initialize() - . = ..() - docking_codes = null - -/obj/effect/overmap/visitable/planet/Sif/get_skybox_representation() - var/image/tmp = ..() - tmp.pixel_x = skybox_offset_x - tmp.pixel_y = skybox_offset_y - return tmp - /obj/effect/overmap/visitable/sector/Southern_Cross name = "Southern Cross" icon = 'modular_chomp/icons/obj/overmap.dmi' diff --git a/modular_chomp/maps/southern_cross/overmap/sectors_sif.dm b/modular_chomp/maps/southern_cross/overmap/sectors_sif.dm new file mode 100644 index 0000000000..797fbd1caf --- /dev/null +++ b/modular_chomp/maps/southern_cross/overmap/sectors_sif.dm @@ -0,0 +1,49 @@ +// Overmap object for Sif, hanging in the void of space +/obj/effect/overmap/visitable/planet/Sif + name = "Sif" + desc = "Location of Vir civilian colonies." + scanner_desc = @{"[i]Registration[/i]: Vir System Authority +[i]Class[/i]: Colony +[i]Transponder[/i]: Transmitting (CIV), Vir IFF +[b]Notice[/b]: The Vir government welcomes you to this world."} + + map_z = list(Z_LEVEL_SURFACE, Z_LEVEL_SURFACE_MINE, Z_LEVEL_SURFACE_WILD) + //Z_LEVEL_SURFACE_SKYLANDS, //removed due to lack of use + + initial_generic_waypoints = list( + "outpost_nw", + "outpost_s", + "outpost_w", + "wilderness_s", + "wilderness_se", + "wilderness_w", + "wilderness_n" + ) + + in_space = 0 + start_x = 10 + start_y = 10 + skybox_offset_x = 128 + skybox_offset_y = 128 + surface_color = "#2D545B" + mountain_color = "#735555" + ice_color = "FFFFFF" + icecaps = "icecaps" + icon_state = "frozen" //CHOMP comment: Not sure what this does at the moment, but we're doing it live. + +/obj/effect/overmap/visitable/planet/Sif/Initialize() + atmosphere = new(CELL_VOLUME) + atmosphere.adjust_gas_temp("oxygen", MOLES_O2STANDARD, 273) + atmosphere.adjust_gas_temp("nitrogen", MOLES_N2STANDARD, 273) + + . = ..() + +/obj/effect/overmap/visitable/planet/Sif/Initialize() + . = ..() + docking_codes = null + +/obj/effect/overmap/visitable/planet/Sif/get_skybox_representation() + var/image/tmp = ..() + tmp.pixel_x = skybox_offset_x + tmp.pixel_y = skybox_offset_y + return tmp diff --git a/maps/southern_cross/overmap/shuttles.dm b/modular_chomp/maps/southern_cross/overmap/shuttles.dm similarity index 100% rename from maps/southern_cross/overmap/shuttles.dm rename to modular_chomp/maps/southern_cross/overmap/shuttles.dm diff --git a/maps/southern_cross/overmap/space/fueldepot.dm b/modular_chomp/maps/southern_cross/overmap/space/fueldepot.dm similarity index 94% rename from maps/southern_cross/overmap/space/fueldepot.dm rename to modular_chomp/maps/southern_cross/overmap/space/fueldepot.dm index ec0c150afe..ec3c178aea 100644 --- a/maps/southern_cross/overmap/space/fueldepot.dm +++ b/modular_chomp/maps/southern_cross/overmap/space/fueldepot.dm @@ -4,7 +4,7 @@ /datum/map_template/sc_lateload/away_fueldepot name = "Fuel Depot - Z1 Space" desc = "An unmanned fuel depot floating in space." - mappath = "maps/southern_cross/overmap/space/fueldepot.dmm" //This is where it is in our file system. + mappath = 'modular_chomp/maps/southern_cross/overmap/space/fueldepot.dmm' //This is where it is in our file system. associated_map_datum = /datum/map_z_level/sc_lateload/away_fueldepot /datum/map_z_level/sc_lateload/away_fueldepot diff --git a/maps/southern_cross/overmap/space/fueldepot.dmm b/modular_chomp/maps/southern_cross/overmap/space/fueldepot.dmm similarity index 100% rename from maps/southern_cross/overmap/space/fueldepot.dmm rename to modular_chomp/maps/southern_cross/overmap/space/fueldepot.dmm diff --git a/maps/southern_cross/shuttles/crew_shuttles.dm b/modular_chomp/maps/southern_cross/shuttles/crew_shuttles.dm similarity index 100% rename from maps/southern_cross/shuttles/crew_shuttles.dm rename to modular_chomp/maps/southern_cross/shuttles/crew_shuttles.dm diff --git a/maps/southern_cross/shuttles/crew_shuttles_ch.dm b/modular_chomp/maps/southern_cross/shuttles/crew_shuttles_ch.dm similarity index 100% rename from maps/southern_cross/shuttles/crew_shuttles_ch.dm rename to modular_chomp/maps/southern_cross/shuttles/crew_shuttles_ch.dm diff --git a/maps/southern_cross/shuttles/ert.dm b/modular_chomp/maps/southern_cross/shuttles/ert.dm similarity index 100% rename from maps/southern_cross/shuttles/ert.dm rename to modular_chomp/maps/southern_cross/shuttles/ert.dm diff --git a/maps/southern_cross/shuttles/heist.dm b/modular_chomp/maps/southern_cross/shuttles/heist.dm similarity index 100% rename from maps/southern_cross/shuttles/heist.dm rename to modular_chomp/maps/southern_cross/shuttles/heist.dm diff --git a/maps/southern_cross/shuttles/merc.dm b/modular_chomp/maps/southern_cross/shuttles/merc.dm similarity index 100% rename from maps/southern_cross/shuttles/merc.dm rename to modular_chomp/maps/southern_cross/shuttles/merc.dm diff --git a/maps/southern_cross/shuttles/ninja.dm b/modular_chomp/maps/southern_cross/shuttles/ninja.dm similarity index 100% rename from maps/southern_cross/shuttles/ninja.dm rename to modular_chomp/maps/southern_cross/shuttles/ninja.dm diff --git a/maps/southern_cross/southern_cross-1.dmm b/modular_chomp/maps/southern_cross/southern_cross-1.dmm similarity index 100% rename from maps/southern_cross/southern_cross-1.dmm rename to modular_chomp/maps/southern_cross/southern_cross-1.dmm diff --git a/maps/southern_cross/southern_cross-10.dmm b/modular_chomp/maps/southern_cross/southern_cross-10.dmm similarity index 100% rename from maps/southern_cross/southern_cross-10.dmm rename to modular_chomp/maps/southern_cross/southern_cross-10.dmm diff --git a/maps/southern_cross/southern_cross-11.dmm b/modular_chomp/maps/southern_cross/southern_cross-11.dmm similarity index 100% rename from maps/southern_cross/southern_cross-11.dmm rename to modular_chomp/maps/southern_cross/southern_cross-11.dmm diff --git a/maps/southern_cross/southern_cross-12-unused.dmm b/modular_chomp/maps/southern_cross/southern_cross-12-unused.dmm similarity index 100% rename from maps/southern_cross/southern_cross-12-unused.dmm rename to modular_chomp/maps/southern_cross/southern_cross-12-unused.dmm diff --git a/maps/southern_cross/southern_cross-13.dmm b/modular_chomp/maps/southern_cross/southern_cross-13.dmm similarity index 100% rename from maps/southern_cross/southern_cross-13.dmm rename to modular_chomp/maps/southern_cross/southern_cross-13.dmm diff --git a/maps/southern_cross/southern_cross-2.dmm b/modular_chomp/maps/southern_cross/southern_cross-2.dmm similarity index 100% rename from maps/southern_cross/southern_cross-2.dmm rename to modular_chomp/maps/southern_cross/southern_cross-2.dmm diff --git a/maps/southern_cross/southern_cross-3.dmm b/modular_chomp/maps/southern_cross/southern_cross-3.dmm similarity index 100% rename from maps/southern_cross/southern_cross-3.dmm rename to modular_chomp/maps/southern_cross/southern_cross-3.dmm diff --git a/maps/southern_cross/southern_cross-4-unused.dmm b/modular_chomp/maps/southern_cross/southern_cross-4-unused.dmm similarity index 100% rename from maps/southern_cross/southern_cross-4-unused.dmm rename to modular_chomp/maps/southern_cross/southern_cross-4-unused.dmm diff --git a/maps/southern_cross/southern_cross-4.dmm b/modular_chomp/maps/southern_cross/southern_cross-4.dmm similarity index 100% rename from maps/southern_cross/southern_cross-4.dmm rename to modular_chomp/maps/southern_cross/southern_cross-4.dmm diff --git a/maps/southern_cross/southern_cross-5.dmm b/modular_chomp/maps/southern_cross/southern_cross-5.dmm similarity index 100% rename from maps/southern_cross/southern_cross-5.dmm rename to modular_chomp/maps/southern_cross/southern_cross-5.dmm diff --git a/maps/southern_cross/southern_cross-6.dmm b/modular_chomp/maps/southern_cross/southern_cross-6.dmm similarity index 100% rename from maps/southern_cross/southern_cross-6.dmm rename to modular_chomp/maps/southern_cross/southern_cross-6.dmm diff --git a/maps/southern_cross/southern_cross-7.dmm b/modular_chomp/maps/southern_cross/southern_cross-7.dmm similarity index 100% rename from maps/southern_cross/southern_cross-7.dmm rename to modular_chomp/maps/southern_cross/southern_cross-7.dmm diff --git a/maps/southern_cross/southern_cross-8.dmm b/modular_chomp/maps/southern_cross/southern_cross-8.dmm similarity index 100% rename from maps/southern_cross/southern_cross-8.dmm rename to modular_chomp/maps/southern_cross/southern_cross-8.dmm diff --git a/maps/southern_cross/southern_cross-9.dmm b/modular_chomp/maps/southern_cross/southern_cross-9.dmm similarity index 100% rename from maps/southern_cross/southern_cross-9.dmm rename to modular_chomp/maps/southern_cross/southern_cross-9.dmm diff --git a/maps/southern_cross/southern_cross-casino.dmm b/modular_chomp/maps/southern_cross/southern_cross-casino.dmm similarity index 100% rename from maps/southern_cross/southern_cross-casino.dmm rename to modular_chomp/maps/southern_cross/southern_cross-casino.dmm diff --git a/maps/southern_cross/southern_cross.dm b/modular_chomp/maps/southern_cross/southern_cross.dm similarity index 94% rename from maps/southern_cross/southern_cross.dm rename to modular_chomp/maps/southern_cross/southern_cross.dm index 3d800bc7e7..9b5b24b1e8 100644 --- a/maps/southern_cross/southern_cross.dm +++ b/modular_chomp/maps/southern_cross/southern_cross.dm @@ -3,8 +3,10 @@ #if !defined(USING_MAP_DATUM) // CHOMPStation Edits Start: Disabling specific includes as vorestation.dme has them already loading via #includes there. UPDATE THIS if that changes. + #include "southern_cross_areas_planet.dm" #include "southern_cross_areas.dm" #include "southern_cross_defines.dm" + #include "southern_cross_sif_defines.dm" #include "southern_cross_elevator.dm" #include "southern_cross_events.dm" #include "southern_cross_overrides.dm" @@ -63,7 +65,8 @@ //PLANETS, installations, sectors, ships, etc for the overmap, I want put here. Add new comments and includes when you make new planets #include "overmap/shuttles.dm" //SIF - Planet - #include "overmap/sectors.dm" //This is actually the sector for Sif. This also includes places like the main station and the surface + #include "overmap/sectors_sc.dm" //This is actually the sector for SC. + #include "overmap/sectors_sif.dm" //This is actually the sector for Sif. #include "overmap/planets/kara/kara_OM_only.dm" //Kara, but just an OM icon /* //Disabled due to low usage. These are heavy mini-station-like Z layers too. //KARA - Planet diff --git a/maps/southern_cross/southern_cross_areas.dm b/modular_chomp/maps/southern_cross/southern_cross_areas.dm similarity index 72% rename from maps/southern_cross/southern_cross_areas.dm rename to modular_chomp/maps/southern_cross/southern_cross_areas.dm index c86280bc5d..4dc553db9a 100644 --- a/maps/southern_cross/southern_cross_areas.dm +++ b/modular_chomp/maps/southern_cross/southern_cross_areas.dm @@ -15,658 +15,6 @@ ) */ -//Planetside - -/area/surface - name = "The Surface (Don't Use)" - flags = RAD_SHIELDED - -/area/surface/center - name = "Center" - icon_state = "center" - -/area/surface/north - name = "Outpost" - icon_state = "north" - -/area/surface/south - name = "Lake" - icon_state = "south" - -/area/surface/east - name = "Shoreline" - icon_state = "east" - -/area/surface/west - name = "Snowfields" - icon_state = "west" - -/area/surface/northeast - name = "Depths" - icon_state = "northeast" - -/area/surface/northwest - name = "Mountains" - icon_state = "northwest" - -/area/surface/southwest - name = "Glowing Forest" - icon_state = "southwest" - -/area/surface/southeast - name = "Southern Shoreline" - icon_state = "southeast" - -/area/surface/outside - ambience = AMBIENCE_SIF - always_unpowered = TRUE - flags = AREA_FLAG_IS_NOT_PERSISTENT - outdoors = OUTDOORS_YES - -// The area near the outpost, so POIs don't show up right next to the outpost. -/area/surface/outside/plains/outpost - name = "Outpost Perimeter" - icon_state = "green" - -// Rest of the 'plains' Z-level, for POIs. -/area/surface/outside/plains/normal - name = "Plains" - icon_state = "yellow" - -// So POIs don't get embedded in rock. -/area/surface/outside/plains/mountains - name = "Mountains" - icon_state = "darkred" - -// Paths get their own area so POIs don't overwrite pathways. -/area/surface/outside/path - name = "Pathway" - icon_state = "purple" - -// Used to overmap shuttle landing zones so POIs dont override it -/area/surface/outside/landing/plains - name = "Plains" - icon_state = "purple" - -/area/surface/outside/path/plains - -/area/surface/outside/wilderness/normal - name = "Wilderness" - icon_state = "yellow" - -/area/surface/outside/wilderness/deep - name = "Deep Wilderness" - icon_state = "red" - -// So POIs don't get embedded in rock. -/area/surface/outside/wilderness/mountains - name = "Mountains" - icon_state = "darkred" - -// so POIs don't block landing zones -/area/surface/outside/landing/wilderness - name = "Wilderness" - icon_state = "purple" - -/* //Sky islands removal, lack of use -/area/surface/outside/wilderness/skylands - name = "Floating Islands" - icon_state = "blue" - -/area/surface/outside/wilderness/skylands/empty - name = "Sky" - icon_state = "red" - luminosity = 1 -*/ - - -/area/surface/outside/path/wilderness - -// Water -/area/surface/outside/ocean - name = "Sea" - icon_state = "bluenew" - -/area/surface/outside/river - name = "River" - icon_state = "bluenew" - -/area/surface/outside/river/faxalven - name = "Faxälven River" - -/area/surface/outside/river/indalsalven - name = "Indalsälven River" - -/area/surface/outside/river/svartan - name = "Svartån River" - -/area/surface/outside/lake/romsele - name = "Romsele Lake" - icon_state = "blue2" - - - -/area/surface/cave - flags = RAD_SHIELDED - always_unpowered = TRUE - -/area/surface/cave - ambience = list('sound/ambience/ambimine.ogg', 'sound/ambience/song_game.ogg', 'sound/music/LRRMenu.ogg', 'sound/music/LRRTrack3.ogg', 'sound/ambience/cave/AmbCaveDebriA.ogg', 'sound/ambience/cave/AmbCaveDebriB.ogg', 'sound/ambience/cave/AmbCaveDebriC.ogg', 'sound/ambience/cave/AmbCaveDebriD.ogg') - -// The bottom half that connects to the outpost and is safer. -/area/surface/cave/explored/normal - name = "Tunnels" - icon_state = "explored" - -/area/surface/cave/explored/trader - name = "Trader Hideout" - icon_state = "hideaway" - -/area/surface/cave/unexplored/normal - name = "Tunnels" - icon_state = "unexplored" - -// The top half of the map that is more dangerous. -/area/surface/cave/explored/deep - name = "Depths" - icon_state = "explored_deep" - -/area/surface/cave/unexplored/deep - name = "Depths" - icon_state = "unexplored_deep" - - - -//Surface Outposts - -/area/surface/outpost - ambience = AMBIENCE_GENERIC - -//Wilderness Shuttle Shelter - -/area/surface/outpost/shelter - name = "Wilderness Shelter" - -/area/surface/outpost/shelter/dorms - name = "Wilderness Shelter Dorms" - icon_state = "Sleep" - soundproofed = TRUE - limit_mob_size = FALSE - block_suit_sensors = TRUE - flags = RAD_SHIELDED - block_tracking = TRUE - -/area/surface/outpost/shelter/exterior - name = "Wilderness Shelter Exterior" - icon_state = "exit" - ambience = list('sound/ambience/ambimine.ogg', 'sound/ambience/song_game.ogg', 'sound/music/LRRMenu.ogg', 'sound/music/LRRTrack3.ogg', 'sound/ambience/cave/AmbCaveDebriA.ogg', 'sound/ambience/cave/AmbCaveDebriB.ogg', 'sound/ambience/cave/AmbCaveDebriC.ogg', 'sound/ambience/cave/AmbCaveDebriD.ogg') - outdoors = OUTDOORS_YES - -/area/surface/outpost/shelter/utilityroom - name = "Wilderness Shelter Utility Room" - icon_state = "substation" - -//Valley stuffs, chomps Edit by Jasper, for wilds but stranger. -/area/surface/outpost/unfinished - name = "Unfinished" - icon_state = "red" - -/area/surface/outside/valley/inner - name = "Valley Inner" - icon_state = "yellow" - -/area/surface/outside/valley/walls - name = "Valley Walls" - icon_state = "yellow" - outdoors = OUTDOORS_NO - -/area/surface/outside/valley/edge - name = "Valley Edge" - icon_state = "yellow" - -/area/surface/outside/valley/river - name = "Valley River" - icon_state = "yellow" - -/area/surface/outside/valley/end - name = "Valley's End" - icon_state = "red" - -// Main mining outpost -/area/surface/outpost/mining_main - name = "North Mining Outpost" - icon_state = "outpost_mine_main" - outdoors = OUTDOORS_NO - -/area/surface/outpost/mining_main/exterior - name = "North Mining Outpost Exterior" - icon_state = "outpost_mine_main" - outdoors = OUTDOORS_YES - -/area/surface/outpost/mining_main/crew_area - name = "North Mining Crew Area" - -/area/surface/outpost/mining_main/firstaid - name = "North Mining First-Aid Station" - -/area/surface/outpost/mining_main/storage - name = "North Mining Gear Storage" - -/area/surface/outpost/mining_main/uxstorage - name = "North Mining Gear Secondary Storage" - -/area/surface/outpost/mining_main/mech_bay - name = "North Mining Mech Bay" - -/area/surface/outpost/mining_main/emergencystorage - name = "\improper North Mining Emergency Storage" - flags = RAD_SHIELDED - icon_state = "emergencystorage" - sound_env = SMALL_ENCLOSED - -/area/surface/outpost/mining_main/refinery - name = "North Mining Refinery" - -/area/surface/outpost/mining_main/restroom - name = "North Mining Restroom" - sound_env = SMALL_ENCLOSED - -/area/surface/outpost/mining_main/tools - name = "North Mining Tool Storage" - -/area/surface/outpost/mining_main/cave - name = "North Mining Outpost Cave" - icon_state = "outpost_mine_main" - -//Rust-Engine Outpost CHOMPedit - ksc - -/area/surface/outpost/engineering/atmos_room - name = "North Atmos Room" - icon_state = "atmos" - -/area/surface/outpost/engineering/smes - name = "North Engineering SMES" - icon_state = "substation" - ambience = AMBIENCE_SUBSTATION //CHOMP Addition - -/area/surface/outpost/engineering/reactor_smes - name = "North Engineering Reactor SMES" - icon_state = "engine_smes" - ambience = AMBIENCE_SUBSTATION //CHOMP Addition - -/area/surface/outpost/engineering/storage - name = "North Engineering Storage" - icon_state = "storage" - -/area/surface/outpost/engineering/monitoring - name = "North Engineering Monitoring" - icon_state = "engine_monitoring" - -/area/surface/outpost/engineering/auxiliary_storage - name = "North Engineering Auxiliary Storage" - icon_state = "emergencystorage" - -//Research Surface Outpost - -/area/surface/outpost/research - icon_state = "outpost_research" - outdoors = OUTDOORS_NO - -/area/surface/outpost/research/xenoresearch - name = "\improper Xenoresearch" - -/area/surface/outpost/research/xenoresearch/smes - name = "\improper Xenoresearch SMES Maintenance" - icon_state = "substation" - sound_env = SMALL_ENCLOSED - ambience = AMBIENCE_SUBSTATION //CHOMP Addition - -/area/surface/outpost/research/xenoresearch/emergencystorage - name = "\improper Xenoresearch Emergency Storage" - icon_state = "emergencystorage" - sound_env = SMALL_ENCLOSED - -/area/surface/outpost/research/xenoresearch/first_aid //CHOMPstation edit - name = "\improper Xenoresearch First-Aid Station" - icon_state = "medbay2" - -/area/surface/outpost/research/xenoresearch/restroom - name = "\improper Xenoresearch Restroom" - icon_state = "research_restroom" - sound_env = SMALL_ENCLOSED - -/area/surface/outpost/research/xenoresearch/xenobiology - name = "\improper Xenobiology Lab" - icon_state = "xeno_lab" - -/area/surface/outpost/research/xenoresearch/xenoflora - name = "\improper Xenoflora Lab" - icon_state = "xeno_f_lab" - -/area/surface/outpost/research/xenoresearch/xenoflora_storage - name = "\improper Xenoflora Storage" - icon_state = "xeno_f_store" - -/area/surface/outpost/research/xenoresearch/medical - name = "Xenoresearch First-Aid Station" - -/area/surface/outpost/research/xenoarcheology - name = "\improper Xenoarcheology" - -/area/surface/outpost/research/xenoarcheology/exterior - name = "\improper xenoarcheology Exterior" - icon_state = "exit" - -/area/surface/outpost/research/xenoarcheology/medical - name = "Xenoarcheology First-Aid Station" - -/area/surface/outpost/research/xenoarcheology/smes - name = "\improper Xenoarcheology SMES Maintenance" - icon_state = "substation" - sound_env = SMALL_ENCLOSED - ambience = AMBIENCE_SUBSTATION //CHOMP Addition - -/area/surface/outpost/research/xenoarcheology/emergencystorage - name = "\improper Xenoarcheology Emergency Storage" - icon_state = "emergencystorage" - sound_env = SMALL_ENCLOSED - -/area/surface/outpost/research/xenoarcheology/restroom - name = "\improper Xenoarcheology Restroom" - icon_state = "research_restroom" - sound_env = SMALL_ENCLOSED - -/area/surface/outpost/research/xenoarcheology/analysis - name = "Xenoarcheology Sample Analysis" - -/area/surface/outpost/research/xenoarcheology/anomaly - name = "Xenoarcheology Anomalous Materials Lab" - -/area/surface/outpost/research/xenoarcheology/isolation_a - name = "Xenoarcheology Isolation A" - -/area/surface/outpost/research/xenoarcheology/isolation_b - name = "Xenoarcheology Isolation B" - -/area/surface/outpost/research/xenoarcheology/isolation_c - name = "Xenoarcheology Isolation C" - -/area/surface/outpost/research/xenoarcheology/lounge - name = "Xenoarcheology Research Lounge" - -/area/surface/outpost/research/xenoarcheology/longtermstorage - name = "Xenoarcheology Long-Term Anomalous Storage" - -/area/surface/outpost/research/xenoarcheology/exp_prep - name = "Xenoarcheology Expedition Preperation" - -//Main Outpost - -/area/surface/outpost/main - name = "\improper Main Outpost" - icon_state = "Sleep" - outdoors = OUTDOORS_NO - -/area/surface/outpost/main/laundry - name = "\improper Main Outpost Laundry Room" - -/area/surface/outpost/main/landing - name = "\improper Main Outpost Shuttle Landing" - icon_state = "hangar" - -/area/surface/outpost/main/gen_room - name = "\improper Main Outpost SMES" - icon_state = "substation" - ambience = AMBIENCE_SUBSTATION //CHOMP Edit - -/area/surface/outpost/main/gen_room/smes_left - name = "\improper Main Outpost Left Wing SMES" - -/area/surface/outpost/main/gen_room/smes_right - name = "\improper Main Outpost Right Wing SMES" - -/area/surface/outpost/main/gen_room/smes - name = "\improper Main Outpost Dorm SMES" - icon_state = "substation" - -/area/surface/outpost/main/pool - name = "\improper Main Outpost Pool" - icon_state = "pool" - -/area/surface/outpost/main/restroom - name = "\improper Main Outpost Restroom" - icon_state = "toilet" - sound_env = SMALL_ENCLOSED - -/area/surface/outpost/main/showers - name = "\improper Main Outpost Showers" - icon_state = "toilet" - sound_env = SMALL_ENCLOSED - -/area/surface/outpost/main/gym - name = "\improper Main Outpost Gym" - icon_state = "fitness" - -/area/surface/outpost/main/garage - name = "\improper Main Outpost Garage" - icon_state = "storage" - -/area/surface/outpost/main/crew_quarters - name = "\improper Main Outpost Crew Quarters" - sound_env = MEDIUM_SOFTFLOOR - -/area/surface/outpost/main/tcomm - name = "\improper Main Outpost Telecommunications" - icon_state = "tcomsatcham" - music = "signal" - -/area/surface/outpost/main/teleporter - name = "\improper Main Outpost Teleporter" - icon_state = "teleporter" - -/area/surface/outpost/main/first_aid - name = "\improper Main Outpost First-Aid Station" - icon_state = "medbay2" - -/area/surface/outpost/main/search_and_rescue - name = "\improper Main Outpost Search and Rescue" - icon_state = "medbay2" - -/area/surface/outpost/main/exploration - name = "\improper Main Outpost Exploration Prep Room" - icon_state = "outpost_research" - -/area/surface/outpost/main/exploration/containment - name = "\improper Main Outpost Fauna Containment" - -/area/surface/outpost/main/security - name = "\improper Main Outpost Security Station" - icon_state = "checkpoint1" - -/area/surface/outpost/main/gateway - name = "\improper Main Outpost Gateway" - icon_state = "teleporter" - music = "signal" - -/area/surface/outpost/main/gateway - name = "\improper Main Outpost Gateway" - icon_state = "teleporter" - -/area/surface/outpost/main/corridor - name = "\improper Main Outpost Corridor" - icon_state = "dk_yellow" - -/area/surface/outpost/main/corridor/dorms - name = "\improper Main Outpost Dorm Corridor" - -/area/surface/outpost/main/corridor/right_lower - name = "\improper Main Outpost Right Wing Lower Corridor" - -/area/surface/outpost/main/corridor/right_upper - name = "\improper Main Outpost Right Wing Upper Corridor" - -/area/surface/outpost/main/corridor/left_lower - name = "\improper Main Outpost Left Wing Lower Corridor" - -/area/surface/outpost/main/corridor/left_upper - name = "\improper Main Outpost Left Wing Upper Corridor" - -/area/surface/outpost/main/bar - name = "\improper Main Outpost Bar" - icon_state = "bar" -/* -/area/surface/outpost/main/dorms - name = "\improper Main Outpost Dorms" - -/area/surface/outpost/main/dorms/dorm_1 - name = "\improper Main Outpost Dorm One" - -/area/surface/outpost/main/dorms/dorm_2 - name = "\improper Main Outpost Dorm Two" - -/area/surface/outpost/main/dorms/dorm_3 - name = "\improper Main Outpost Dorm Three" - -/area/surface/outpost/main/dorms/dorm_4 - name = "\improper Main Outpost Dorm Four" - -/area/surface/outpost/main/dorms/dorm_5 - name = "\improper Main Outpost Dorm Five" - -/area/surface/outpost/main/dorms/dorm_6 - name = "\improper Main Outpost Dorm Six" -*/ -/area/surface/outpost/main/airlock - name = "\improper Main Outpost Airlock" - icon_state = "red" - ambience = AMBIENCE_SIF - -/area/surface/outpost/main/airlock/left_one - name = "\improper Outpost Left Wing Airlock One" - -/area/surface/outpost/main/airlock/left_two - name = "\improper Outpost Left Wing Airlock Two" - -/area/surface/outpost/main/airlock/left_three - name = "\improper Outpost Left Wing Airlock Three" - -/area/surface/outpost/main/airlock/right_one - name = "\improper Outpost Right Wing Airlock One" - -/area/surface/outpost/main/airlock/right_two - name = "\improper Outpost Right Wing Airlock Two" - -/area/surface/outpost/main/airlock/right_three - name = "\improper Outpost Right Wing Airlock Three" - -/area/surface/outpost/main/airlock/landing_north - name = "\improper Main Outpost North Airlock" - -/area/surface/outpost/main/airlock/landing_south - name = "\improper Main Outpost South Airlock" - -/area/surface/outpost/main/construction_area - name = "\improper Main Outpost Construction Area" - icon_state = "construction" - -/area/surface/outpost/main/janitor - name = "\improper Main Outpost Custodial Closet" - icon_state = "janitor" - -/area/surface/outpost/main/emergency_storage - flags = RAD_SHIELDED - name = "Emergency Storage" - icon_state = "emergencystorage" - -/area/surface/outpost/main/emergency_storage/one - name = "\improper Main Outpost Emergency Storage One" - -/area/surface/outpost/main/emergency_storage/two - name = "\improper Main Outpost Emergency Storage Two" - -/area/surface/outpost/wall - name = "The Wall" - icon_state = "red" - requires_power = FALSE - ambience = AMBIENCE_HIGHSEC - -/area/surface/outpost/wall/checkpoint - name = "Checkpoint" - ambience = AMBIENCE_HIGHSEC - -//Civilian Outpost - -/area/surface/outpost/civilian - name = "\improper Civilian Outpost" - icon_state = "recreation_area" - -/area/surface/outpost/civilian/smes - name = "\improper Civilian Outpost SMES" - icon_state = "substation" - ambience = AMBIENCE_ENGINEERING - -/area/surface/outpost/civilian/fishing - name = "\improper Civilian Outpost Fishing Supplies" - icon_state = "storage" - -/area/surface/outpost/civilian/pool - name = "\improper Civilian Outpost Pool" - icon_state = "pool" - -/area/surface/outpost/civilian/sauna - name = "\improper Civilian Outpost Sauna" - -/area/surface/outpost/civilian/emergency_storage - flags = RAD_SHIELDED - name = "\improper Civilian Outpost Emergency Storage" - icon_state = "emergencystorage" - -//Security Outpost - -/area/surface/outpost/security - name = "\improper Security Outpost" - icon_state = "checkpoint1" - -/area/surface/outpost/security/maa - name = "\improper Security Outpost Gear Storage" - icon_state = "security" - -/area/surface/outpost/security/smes - name = "\improper Security Outpost SMES" - icon_state = "substation" - ambience = AMBIENCE_SUBSTATION //CHOMP Edit - -//Mining Station - -/area/outpost/mining_station - icon_state = "outpost_mine_main" - name = "Mining Station" - outdoors = OUTDOORS_NO - -/area/outpost/mining_station/dorms - name = "Mining Station Dormitory" - -/area/outpost/mining_station/storage - name = "Mining Station Gear Storage" - -/area/outpost/mining_station/gen_station - name = "Mining Station Generator Room" - icon_state = "substation" - ambience = AMBIENCE_SUBSTATION //CHOMP Edit - -/area/outpost/mining_station/crew_area - name = "Mining Station Crew Area" - -/area/outpost/mining_station/refinery - name = "Mining Station Refinery" - -/area/outpost/mining_station/telecomms - name = "Main Station Telecommunications" - sound_env = SMALL_ENCLOSED - -/area/outpost/mining_station/dock - name = "Mining Station Dock" -z //Turbolift /area/turbolift diff --git a/modular_chomp/maps/southern_cross/southern_cross_areas_planet.dm b/modular_chomp/maps/southern_cross/southern_cross_areas_planet.dm new file mode 100644 index 0000000000..904390d8a8 --- /dev/null +++ b/modular_chomp/maps/southern_cross/southern_cross_areas_planet.dm @@ -0,0 +1,651 @@ +//Planetside + +/area/surface + name = "The Surface (Don't Use)" + flags = RAD_SHIELDED + +/area/surface/center + name = "Center" + icon_state = "center" + +/area/surface/north + name = "Outpost" + icon_state = "north" + +/area/surface/south + name = "Lake" + icon_state = "south" + +/area/surface/east + name = "Shoreline" + icon_state = "east" + +/area/surface/west + name = "Snowfields" + icon_state = "west" + +/area/surface/northeast + name = "Depths" + icon_state = "northeast" + +/area/surface/northwest + name = "Mountains" + icon_state = "northwest" + +/area/surface/southwest + name = "Glowing Forest" + icon_state = "southwest" + +/area/surface/southeast + name = "Southern Shoreline" + icon_state = "southeast" + +/area/surface/outside + ambience = AMBIENCE_SIF + always_unpowered = TRUE + flags = AREA_FLAG_IS_NOT_PERSISTENT + outdoors = OUTDOORS_YES + +// The area near the outpost, so POIs don't show up right next to the outpost. +/area/surface/outside/plains/outpost + name = "Outpost Perimeter" + icon_state = "green" + +// Rest of the 'plains' Z-level, for POIs. +/area/surface/outside/plains/normal + name = "Plains" + icon_state = "yellow" + +// So POIs don't get embedded in rock. +/area/surface/outside/plains/mountains + name = "Mountains" + icon_state = "darkred" + +// Paths get their own area so POIs don't overwrite pathways. +/area/surface/outside/path + name = "Pathway" + icon_state = "purple" + +// Used to overmap shuttle landing zones so POIs dont override it +/area/surface/outside/landing/plains + name = "Plains" + icon_state = "purple" + +/area/surface/outside/path/plains + +/area/surface/outside/wilderness/normal + name = "Wilderness" + icon_state = "yellow" + +/area/surface/outside/wilderness/deep + name = "Deep Wilderness" + icon_state = "red" + +// So POIs don't get embedded in rock. +/area/surface/outside/wilderness/mountains + name = "Mountains" + icon_state = "darkred" + +// so POIs don't block landing zones +/area/surface/outside/landing/wilderness + name = "Wilderness" + icon_state = "purple" + +/* //Sky islands removal, lack of use +/area/surface/outside/wilderness/skylands + name = "Floating Islands" + icon_state = "blue" + +/area/surface/outside/wilderness/skylands/empty + name = "Sky" + icon_state = "red" + luminosity = 1 +*/ + + +/area/surface/outside/path/wilderness + +// Water +/area/surface/outside/ocean + name = "Sea" + icon_state = "bluenew" + +/area/surface/outside/river + name = "River" + icon_state = "bluenew" + +/area/surface/outside/river/faxalven + name = "Faxälven River" + +/area/surface/outside/river/indalsalven + name = "Indalsälven River" + +/area/surface/outside/river/svartan + name = "Svartån River" + +/area/surface/outside/lake/romsele + name = "Romsele Lake" + icon_state = "blue2" + + + +/area/surface/cave + flags = RAD_SHIELDED + always_unpowered = TRUE + +/area/surface/cave + ambience = list('sound/ambience/ambimine.ogg', 'sound/ambience/song_game.ogg', 'sound/music/LRRMenu.ogg', 'sound/music/LRRTrack3.ogg', 'sound/ambience/cave/AmbCaveDebriA.ogg', 'sound/ambience/cave/AmbCaveDebriB.ogg', 'sound/ambience/cave/AmbCaveDebriC.ogg', 'sound/ambience/cave/AmbCaveDebriD.ogg') + +// The bottom half that connects to the outpost and is safer. +/area/surface/cave/explored/normal + name = "Tunnels" + icon_state = "explored" + +/area/surface/cave/explored/trader + name = "Trader Hideout" + icon_state = "hideaway" + +/area/surface/cave/unexplored/normal + name = "Tunnels" + icon_state = "unexplored" + +// The top half of the map that is more dangerous. +/area/surface/cave/explored/deep + name = "Depths" + icon_state = "explored_deep" + +/area/surface/cave/unexplored/deep + name = "Depths" + icon_state = "unexplored_deep" + + + +//Surface Outposts + +/area/surface/outpost + ambience = AMBIENCE_GENERIC + +//Wilderness Shuttle Shelter + +/area/surface/outpost/shelter + name = "Wilderness Shelter" + +/area/surface/outpost/shelter/dorms + name = "Wilderness Shelter Dorms" + icon_state = "Sleep" + soundproofed = TRUE + limit_mob_size = FALSE + block_suit_sensors = TRUE + flags = RAD_SHIELDED + block_tracking = TRUE + +/area/surface/outpost/shelter/exterior + name = "Wilderness Shelter Exterior" + icon_state = "exit" + ambience = list('sound/ambience/ambimine.ogg', 'sound/ambience/song_game.ogg', 'sound/music/LRRMenu.ogg', 'sound/music/LRRTrack3.ogg', 'sound/ambience/cave/AmbCaveDebriA.ogg', 'sound/ambience/cave/AmbCaveDebriB.ogg', 'sound/ambience/cave/AmbCaveDebriC.ogg', 'sound/ambience/cave/AmbCaveDebriD.ogg') + outdoors = OUTDOORS_YES + +/area/surface/outpost/shelter/utilityroom + name = "Wilderness Shelter Utility Room" + icon_state = "substation" + +//Valley stuffs, chomps Edit by Jasper, for wilds but stranger. +/area/surface/outpost/unfinished + name = "Unfinished" + icon_state = "red" + +/area/surface/outside/valley/inner + name = "Valley Inner" + icon_state = "yellow" + +/area/surface/outside/valley/walls + name = "Valley Walls" + icon_state = "yellow" + outdoors = OUTDOORS_NO + +/area/surface/outside/valley/edge + name = "Valley Edge" + icon_state = "yellow" + +/area/surface/outside/valley/river + name = "Valley River" + icon_state = "yellow" + +/area/surface/outside/valley/end + name = "Valley's End" + icon_state = "red" + +// Main mining outpost +/area/surface/outpost/mining_main + name = "North Mining Outpost" + icon_state = "outpost_mine_main" + outdoors = OUTDOORS_NO + +/area/surface/outpost/mining_main/exterior + name = "North Mining Outpost Exterior" + icon_state = "outpost_mine_main" + outdoors = OUTDOORS_YES + +/area/surface/outpost/mining_main/crew_area + name = "North Mining Crew Area" + +/area/surface/outpost/mining_main/firstaid + name = "North Mining First-Aid Station" + +/area/surface/outpost/mining_main/storage + name = "North Mining Gear Storage" + +/area/surface/outpost/mining_main/uxstorage + name = "North Mining Gear Secondary Storage" + +/area/surface/outpost/mining_main/mech_bay + name = "North Mining Mech Bay" + +/area/surface/outpost/mining_main/emergencystorage + name = "\improper North Mining Emergency Storage" + flags = RAD_SHIELDED + icon_state = "emergencystorage" + sound_env = SMALL_ENCLOSED + +/area/surface/outpost/mining_main/refinery + name = "North Mining Refinery" + +/area/surface/outpost/mining_main/restroom + name = "North Mining Restroom" + sound_env = SMALL_ENCLOSED + +/area/surface/outpost/mining_main/tools + name = "North Mining Tool Storage" + +/area/surface/outpost/mining_main/cave + name = "North Mining Outpost Cave" + icon_state = "outpost_mine_main" + +//Rust-Engine Outpost CHOMPedit - ksc + +/area/surface/outpost/engineering/atmos_room + name = "North Atmos Room" + icon_state = "atmos" + +/area/surface/outpost/engineering/smes + name = "North Engineering SMES" + icon_state = "substation" + ambience = AMBIENCE_SUBSTATION //CHOMP Addition + +/area/surface/outpost/engineering/reactor_smes + name = "North Engineering Reactor SMES" + icon_state = "engine_smes" + ambience = AMBIENCE_SUBSTATION //CHOMP Addition + +/area/surface/outpost/engineering/storage + name = "North Engineering Storage" + icon_state = "storage" + +/area/surface/outpost/engineering/monitoring + name = "North Engineering Monitoring" + icon_state = "engine_monitoring" + +/area/surface/outpost/engineering/auxiliary_storage + name = "North Engineering Auxiliary Storage" + icon_state = "emergencystorage" + +//Research Surface Outpost + +/area/surface/outpost/research + icon_state = "outpost_research" + outdoors = OUTDOORS_NO + +/area/surface/outpost/research/xenoresearch + name = "\improper Xenoresearch" + +/area/surface/outpost/research/xenoresearch/smes + name = "\improper Xenoresearch SMES Maintenance" + icon_state = "substation" + sound_env = SMALL_ENCLOSED + ambience = AMBIENCE_SUBSTATION //CHOMP Addition + +/area/surface/outpost/research/xenoresearch/emergencystorage + name = "\improper Xenoresearch Emergency Storage" + icon_state = "emergencystorage" + sound_env = SMALL_ENCLOSED + +/area/surface/outpost/research/xenoresearch/first_aid //CHOMPstation edit + name = "\improper Xenoresearch First-Aid Station" + icon_state = "medbay2" + +/area/surface/outpost/research/xenoresearch/restroom + name = "\improper Xenoresearch Restroom" + icon_state = "research_restroom" + sound_env = SMALL_ENCLOSED + +/area/surface/outpost/research/xenoresearch/xenobiology + name = "\improper Xenobiology Lab" + icon_state = "xeno_lab" + +/area/surface/outpost/research/xenoresearch/xenoflora + name = "\improper Xenoflora Lab" + icon_state = "xeno_f_lab" + +/area/surface/outpost/research/xenoresearch/xenoflora_storage + name = "\improper Xenoflora Storage" + icon_state = "xeno_f_store" + +/area/surface/outpost/research/xenoresearch/medical + name = "Xenoresearch First-Aid Station" + +/area/surface/outpost/research/xenoarcheology + name = "\improper Xenoarcheology" + +/area/surface/outpost/research/xenoarcheology/exterior + name = "\improper xenoarcheology Exterior" + icon_state = "exit" + +/area/surface/outpost/research/xenoarcheology/medical + name = "Xenoarcheology First-Aid Station" + +/area/surface/outpost/research/xenoarcheology/smes + name = "\improper Xenoarcheology SMES Maintenance" + icon_state = "substation" + sound_env = SMALL_ENCLOSED + ambience = AMBIENCE_SUBSTATION //CHOMP Addition + +/area/surface/outpost/research/xenoarcheology/emergencystorage + name = "\improper Xenoarcheology Emergency Storage" + icon_state = "emergencystorage" + sound_env = SMALL_ENCLOSED + +/area/surface/outpost/research/xenoarcheology/restroom + name = "\improper Xenoarcheology Restroom" + icon_state = "research_restroom" + sound_env = SMALL_ENCLOSED + +/area/surface/outpost/research/xenoarcheology/analysis + name = "Xenoarcheology Sample Analysis" + +/area/surface/outpost/research/xenoarcheology/anomaly + name = "Xenoarcheology Anomalous Materials Lab" + +/area/surface/outpost/research/xenoarcheology/isolation_a + name = "Xenoarcheology Isolation A" + +/area/surface/outpost/research/xenoarcheology/isolation_b + name = "Xenoarcheology Isolation B" + +/area/surface/outpost/research/xenoarcheology/isolation_c + name = "Xenoarcheology Isolation C" + +/area/surface/outpost/research/xenoarcheology/lounge + name = "Xenoarcheology Research Lounge" + +/area/surface/outpost/research/xenoarcheology/longtermstorage + name = "Xenoarcheology Long-Term Anomalous Storage" + +/area/surface/outpost/research/xenoarcheology/exp_prep + name = "Xenoarcheology Expedition Preperation" + +//Main Outpost + +/area/surface/outpost/main + name = "\improper Main Outpost" + icon_state = "Sleep" + outdoors = OUTDOORS_NO + +/area/surface/outpost/main/laundry + name = "\improper Main Outpost Laundry Room" + +/area/surface/outpost/main/landing + name = "\improper Main Outpost Shuttle Landing" + icon_state = "hangar" + +/area/surface/outpost/main/gen_room + name = "\improper Main Outpost SMES" + icon_state = "substation" + ambience = AMBIENCE_SUBSTATION //CHOMP Edit + +/area/surface/outpost/main/gen_room/smes_left + name = "\improper Main Outpost Left Wing SMES" + +/area/surface/outpost/main/gen_room/smes_right + name = "\improper Main Outpost Right Wing SMES" + +/area/surface/outpost/main/gen_room/smes + name = "\improper Main Outpost Dorm SMES" + icon_state = "substation" + +/area/surface/outpost/main/pool + name = "\improper Main Outpost Pool" + icon_state = "pool" + +/area/surface/outpost/main/restroom + name = "\improper Main Outpost Restroom" + icon_state = "toilet" + sound_env = SMALL_ENCLOSED + +/area/surface/outpost/main/showers + name = "\improper Main Outpost Showers" + icon_state = "toilet" + sound_env = SMALL_ENCLOSED + +/area/surface/outpost/main/gym + name = "\improper Main Outpost Gym" + icon_state = "fitness" + +/area/surface/outpost/main/garage + name = "\improper Main Outpost Garage" + icon_state = "storage" + +/area/surface/outpost/main/crew_quarters + name = "\improper Main Outpost Crew Quarters" + sound_env = MEDIUM_SOFTFLOOR + +/area/surface/outpost/main/tcomm + name = "\improper Main Outpost Telecommunications" + icon_state = "tcomsatcham" + music = "signal" + +/area/surface/outpost/main/teleporter + name = "\improper Main Outpost Teleporter" + icon_state = "teleporter" + +/area/surface/outpost/main/first_aid + name = "\improper Main Outpost First-Aid Station" + icon_state = "medbay2" + +/area/surface/outpost/main/search_and_rescue + name = "\improper Main Outpost Search and Rescue" + icon_state = "medbay2" + +/area/surface/outpost/main/exploration + name = "\improper Main Outpost Exploration Prep Room" + icon_state = "outpost_research" + +/area/surface/outpost/main/exploration/containment + name = "\improper Main Outpost Fauna Containment" + +/area/surface/outpost/main/security + name = "\improper Main Outpost Security Station" + icon_state = "checkpoint1" + +/area/surface/outpost/main/gateway + name = "\improper Main Outpost Gateway" + icon_state = "teleporter" + music = "signal" + +/area/surface/outpost/main/gateway + name = "\improper Main Outpost Gateway" + icon_state = "teleporter" + +/area/surface/outpost/main/corridor + name = "\improper Main Outpost Corridor" + icon_state = "dk_yellow" + +/area/surface/outpost/main/corridor/dorms + name = "\improper Main Outpost Dorm Corridor" + +/area/surface/outpost/main/corridor/right_lower + name = "\improper Main Outpost Right Wing Lower Corridor" + +/area/surface/outpost/main/corridor/right_upper + name = "\improper Main Outpost Right Wing Upper Corridor" + +/area/surface/outpost/main/corridor/left_lower + name = "\improper Main Outpost Left Wing Lower Corridor" + +/area/surface/outpost/main/corridor/left_upper + name = "\improper Main Outpost Left Wing Upper Corridor" + +/area/surface/outpost/main/bar + name = "\improper Main Outpost Bar" + icon_state = "bar" +/* +/area/surface/outpost/main/dorms + name = "\improper Main Outpost Dorms" + +/area/surface/outpost/main/dorms/dorm_1 + name = "\improper Main Outpost Dorm One" + +/area/surface/outpost/main/dorms/dorm_2 + name = "\improper Main Outpost Dorm Two" + +/area/surface/outpost/main/dorms/dorm_3 + name = "\improper Main Outpost Dorm Three" + +/area/surface/outpost/main/dorms/dorm_4 + name = "\improper Main Outpost Dorm Four" + +/area/surface/outpost/main/dorms/dorm_5 + name = "\improper Main Outpost Dorm Five" + +/area/surface/outpost/main/dorms/dorm_6 + name = "\improper Main Outpost Dorm Six" +*/ +/area/surface/outpost/main/airlock + name = "\improper Main Outpost Airlock" + icon_state = "red" + ambience = AMBIENCE_SIF + +/area/surface/outpost/main/airlock/left_one + name = "\improper Outpost Left Wing Airlock One" + +/area/surface/outpost/main/airlock/left_two + name = "\improper Outpost Left Wing Airlock Two" + +/area/surface/outpost/main/airlock/left_three + name = "\improper Outpost Left Wing Airlock Three" + +/area/surface/outpost/main/airlock/right_one + name = "\improper Outpost Right Wing Airlock One" + +/area/surface/outpost/main/airlock/right_two + name = "\improper Outpost Right Wing Airlock Two" + +/area/surface/outpost/main/airlock/right_three + name = "\improper Outpost Right Wing Airlock Three" + +/area/surface/outpost/main/airlock/landing_north + name = "\improper Main Outpost North Airlock" + +/area/surface/outpost/main/airlock/landing_south + name = "\improper Main Outpost South Airlock" + +/area/surface/outpost/main/construction_area + name = "\improper Main Outpost Construction Area" + icon_state = "construction" + +/area/surface/outpost/main/janitor + name = "\improper Main Outpost Custodial Closet" + icon_state = "janitor" + +/area/surface/outpost/main/emergency_storage + flags = RAD_SHIELDED + name = "Emergency Storage" + icon_state = "emergencystorage" + +/area/surface/outpost/main/emergency_storage/one + name = "\improper Main Outpost Emergency Storage One" + +/area/surface/outpost/main/emergency_storage/two + name = "\improper Main Outpost Emergency Storage Two" + +/area/surface/outpost/wall + name = "The Wall" + icon_state = "red" + requires_power = FALSE + ambience = AMBIENCE_HIGHSEC + +/area/surface/outpost/wall/checkpoint + name = "Checkpoint" + ambience = AMBIENCE_HIGHSEC + +//Civilian Outpost + +/area/surface/outpost/civilian + name = "\improper Civilian Outpost" + icon_state = "recreation_area" + +/area/surface/outpost/civilian/smes + name = "\improper Civilian Outpost SMES" + icon_state = "substation" + ambience = AMBIENCE_ENGINEERING + +/area/surface/outpost/civilian/fishing + name = "\improper Civilian Outpost Fishing Supplies" + icon_state = "storage" + +/area/surface/outpost/civilian/pool + name = "\improper Civilian Outpost Pool" + icon_state = "pool" + +/area/surface/outpost/civilian/sauna + name = "\improper Civilian Outpost Sauna" + +/area/surface/outpost/civilian/emergency_storage + flags = RAD_SHIELDED + name = "\improper Civilian Outpost Emergency Storage" + icon_state = "emergencystorage" + +//Security Outpost + +/area/surface/outpost/security + name = "\improper Security Outpost" + icon_state = "checkpoint1" + +/area/surface/outpost/security/maa + name = "\improper Security Outpost Gear Storage" + icon_state = "security" + +/area/surface/outpost/security/smes + name = "\improper Security Outpost SMES" + icon_state = "substation" + ambience = AMBIENCE_SUBSTATION //CHOMP Edit + +//Mining Station + +/area/outpost/mining_station + icon_state = "outpost_mine_main" + name = "Mining Station" + outdoors = OUTDOORS_NO + +/area/outpost/mining_station/dorms + name = "Mining Station Dormitory" + +/area/outpost/mining_station/storage + name = "Mining Station Gear Storage" + +/area/outpost/mining_station/gen_station + name = "Mining Station Generator Room" + icon_state = "substation" + ambience = AMBIENCE_SUBSTATION //CHOMP Edit + +/area/outpost/mining_station/crew_area + name = "Mining Station Crew Area" + +/area/outpost/mining_station/refinery + name = "Mining Station Refinery" + +/area/outpost/mining_station/telecomms + name = "Main Station Telecommunications" + sound_env = SMALL_ENCLOSED + +/area/outpost/mining_station/dock + name = "Mining Station Dock" diff --git a/maps/southern_cross/southern_cross_defines.dm b/modular_chomp/maps/southern_cross/southern_cross_defines.dm similarity index 80% rename from maps/southern_cross/southern_cross_defines.dm rename to modular_chomp/maps/southern_cross/southern_cross_defines.dm index 7500c63348..87c34f7e5f 100644 --- a/maps/southern_cross/southern_cross_defines.dm +++ b/modular_chomp/maps/southern_cross/southern_cross_defines.dm @@ -311,138 +311,6 @@ but they don't actually change anything about the load order holomap_offset_x = HOLOMAP_ICON_SIZE - SOUTHERN_CROSS_HOLOMAP_MARGIN_X - SOUTHERN_CROSS_MAP_SIZE - 40 holomap_offset_y = SOUTHERN_CROSS_HOLOMAP_MARGIN_Y + SOUTHERN_CROSS_MAP_SIZE*1 -/* - KSC 9/29/20 = No longer relevant code as we have nonencludian portals to jump between outpost,caves and wilderness -//Teleport to Mine - -/obj/effect/step_trigger/teleporter/mine/to_mining/New() - ..() - teleport_x = src.x - teleport_y = 2 - teleport_z = Z_LEVEL_SURFACE_MINE - -/obj/effect/step_trigger/teleporter/mine/from_mining/New() - ..() - teleport_x = src.x - teleport_y = world.maxy - 1 - teleport_z = Z_LEVEL_SURFACE - -//Teleport to Wild - -/obj/effect/step_trigger/teleporter/wild/to_wild/New() - ..() - teleport_x = src.x - teleport_y = 2 - teleport_z = Z_LEVEL_SURFACE_WILD - -/obj/effect/step_trigger/teleporter/wild/from_wild/New() - ..() - teleport_x = src.x - teleport_y = world.maxy - 1 - teleport_z = Z_LEVEL_SURFACE_MINE -*/ - -/datum/planet/sif - expected_z_levels = list( - Z_LEVEL_SURFACE, - Z_LEVEL_SURFACE_MINE, - Z_LEVEL_SURFACE_WILD, - //Z_LEVEL_SURFACE_SKYLANDS, //Sky islands removal due to lack of use - //Z_LEVEL_SURFACE_VALLEY //Replaced with Tyr - ) -//Z_LEVEL_SURFACE_CASINO //CHOMPedit - KSC = So there is weather on the Casino. //Move this into /datum/planet/sif and remember to add a coma for the new entry, for when you need the casino again - -/datum/planet/thor - expected_z_levels = list( - Z_LEVEL_JUNGLE - ) - -/datum/planet/tyr - expected_z_levels = list( - Z_LEVEL_DEATH_VALLEY - ) - -/obj/effect/step_trigger/teleporter/bridge/east_to_west/Initialize() - teleport_x = src.x - 4 - teleport_y = src.y - teleport_z = src.z - return ..() - -/obj/effect/step_trigger/teleporter/bridge/east_to_west/small/Initialize() - teleport_x = src.x - 3 - teleport_y = src.y - teleport_z = src.z - return ..() - -/obj/effect/step_trigger/teleporter/bridge/west_to_east/Initialize() - teleport_x = src.x + 4 - teleport_y = src.y - teleport_z = src.z - return ..() - -/obj/effect/step_trigger/teleporter/bridge/west_to_east/small/Initialize() - teleport_x = src.x + 3 - teleport_y = src.y - teleport_z = src.z - return ..() - -/obj/effect/step_trigger/teleporter/bridge/north_to_south/Initialize() - teleport_x = src.x - teleport_y = src.y - 4 - teleport_z = src.z - return ..() - -/obj/effect/step_trigger/teleporter/bridge/south_to_north/Initialize() - teleport_x = src.x - teleport_y = src.y + 4 - teleport_z = src.z - return ..() - - /* KSC 9/29/20 = Adding these as we now have nonencludian portals */ - -/obj/effect/map_effect/portal/master/side_a/plains_to_caves - portal_id = "plains_caves-normal" - -/obj/effect/map_effect/portal/master/side_b/caves_to_plains - portal_id = "plains_caves-normal" - -/obj/effect/map_effect/portal/master/side_a/plains_to_caves/river - portal_id = "plains_caves-river" - -/obj/effect/map_effect/portal/master/side_b/caves_to_plains/river - portal_id = "plains_caves-river" - - -/obj/effect/map_effect/portal/master/side_a/caves_to_wilderness - portal_id = "caves_wilderness-normal" - -/obj/effect/map_effect/portal/master/side_b/wilderness_to_caves - portal_id = "caves_wilderness-normal" - -/obj/effect/map_effect/portal/master/side_a/caves_to_wilderness/river - portal_id = "caves_wilderness-river" - -/obj/effect/map_effect/portal/master/side_b/wilderness_to_caves/river - portal_id = "caves_wilderness-river" - -/obj/effect/map_effect/portal/master/side_a/wilderness_to_valley - portal_id = "wilderness_valley" - -/obj/effect/map_effect/portal/master/side_b/wilderness_to_valley - portal_id = "wilderness_valley" - - -/* -//CHOMPEdit this is very much necessary for us otherwise weather sounds play on other levels -/datum/planet/sif - expected_z_levels = list( - Z_LEVEL_SURFACE, - Z_LEVEL_SURFACE_MINE, - Z_LEVEL_SURFACE_WILD - ) -*/ -//Suit Storage Units - /obj/machinery/suit_cycler/exploration name = "Explorer suit cycler" model_text = "Exploration" diff --git a/maps/southern_cross/southern_cross_elevator.dm b/modular_chomp/maps/southern_cross/southern_cross_elevator.dm similarity index 100% rename from maps/southern_cross/southern_cross_elevator.dm rename to modular_chomp/maps/southern_cross/southern_cross_elevator.dm diff --git a/maps/southern_cross/southern_cross_events.dm b/modular_chomp/maps/southern_cross/southern_cross_events.dm similarity index 100% rename from maps/southern_cross/southern_cross_events.dm rename to modular_chomp/maps/southern_cross/southern_cross_events.dm diff --git a/maps/southern_cross/southern_cross_jobs.dm b/modular_chomp/maps/southern_cross/southern_cross_jobs.dm similarity index 100% rename from maps/southern_cross/southern_cross_jobs.dm rename to modular_chomp/maps/southern_cross/southern_cross_jobs.dm diff --git a/maps/southern_cross/southern_cross_overrides.dm b/modular_chomp/maps/southern_cross/southern_cross_overrides.dm similarity index 100% rename from maps/southern_cross/southern_cross_overrides.dm rename to modular_chomp/maps/southern_cross/southern_cross_overrides.dm diff --git a/maps/southern_cross/southern_cross_presets.dm b/modular_chomp/maps/southern_cross/southern_cross_presets.dm similarity index 100% rename from maps/southern_cross/southern_cross_presets.dm rename to modular_chomp/maps/southern_cross/southern_cross_presets.dm diff --git a/maps/southern_cross/southern_cross_shuttles.dm b/modular_chomp/maps/southern_cross/southern_cross_shuttles.dm similarity index 100% rename from maps/southern_cross/southern_cross_shuttles.dm rename to modular_chomp/maps/southern_cross/southern_cross_shuttles.dm diff --git a/maps/southern_cross/southern_cross_shuttles_ch.dm b/modular_chomp/maps/southern_cross/southern_cross_shuttles_ch.dm similarity index 100% rename from maps/southern_cross/southern_cross_shuttles_ch.dm rename to modular_chomp/maps/southern_cross/southern_cross_shuttles_ch.dm diff --git a/modular_chomp/maps/southern_cross/southern_cross_sif_defines.dm b/modular_chomp/maps/southern_cross/southern_cross_sif_defines.dm new file mode 100644 index 0000000000..4ef3730003 --- /dev/null +++ b/modular_chomp/maps/southern_cross/southern_cross_sif_defines.dm @@ -0,0 +1,90 @@ + + +/datum/planet/sif + expected_z_levels = list( + Z_LEVEL_SURFACE, + Z_LEVEL_SURFACE_MINE, + Z_LEVEL_SURFACE_WILD, + //Z_LEVEL_SURFACE_SKYLANDS, //Sky islands removal due to lack of use + //Z_LEVEL_SURFACE_VALLEY //Replaced with Tyr + ) +//Z_LEVEL_SURFACE_CASINO //CHOMPedit - KSC = So there is weather on the Casino. //Move this into /datum/planet/sif and remember to add a coma for the new entry, for when you need the casino again + +/datum/planet/thor + expected_z_levels = list( + Z_LEVEL_JUNGLE + ) + +/datum/planet/tyr + expected_z_levels = list( + Z_LEVEL_DEATH_VALLEY + ) + +/obj/effect/step_trigger/teleporter/bridge/east_to_west/Initialize() + teleport_x = src.x - 4 + teleport_y = src.y + teleport_z = src.z + return ..() + +/obj/effect/step_trigger/teleporter/bridge/east_to_west/small/Initialize() + teleport_x = src.x - 3 + teleport_y = src.y + teleport_z = src.z + return ..() + +/obj/effect/step_trigger/teleporter/bridge/west_to_east/Initialize() + teleport_x = src.x + 4 + teleport_y = src.y + teleport_z = src.z + return ..() + +/obj/effect/step_trigger/teleporter/bridge/west_to_east/small/Initialize() + teleport_x = src.x + 3 + teleport_y = src.y + teleport_z = src.z + return ..() + +/obj/effect/step_trigger/teleporter/bridge/north_to_south/Initialize() + teleport_x = src.x + teleport_y = src.y - 4 + teleport_z = src.z + return ..() + +/obj/effect/step_trigger/teleporter/bridge/south_to_north/Initialize() + teleport_x = src.x + teleport_y = src.y + 4 + teleport_z = src.z + return ..() + + /* KSC 9/29/20 = Adding these as we now have nonencludian portals */ + +/obj/effect/map_effect/portal/master/side_a/plains_to_caves + portal_id = "plains_caves-normal" + +/obj/effect/map_effect/portal/master/side_b/caves_to_plains + portal_id = "plains_caves-normal" + +/obj/effect/map_effect/portal/master/side_a/plains_to_caves/river + portal_id = "plains_caves-river" + +/obj/effect/map_effect/portal/master/side_b/caves_to_plains/river + portal_id = "plains_caves-river" + + +/obj/effect/map_effect/portal/master/side_a/caves_to_wilderness + portal_id = "caves_wilderness-normal" + +/obj/effect/map_effect/portal/master/side_b/wilderness_to_caves + portal_id = "caves_wilderness-normal" + +/obj/effect/map_effect/portal/master/side_a/caves_to_wilderness/river + portal_id = "caves_wilderness-river" + +/obj/effect/map_effect/portal/master/side_b/wilderness_to_caves/river + portal_id = "caves_wilderness-river" + +/obj/effect/map_effect/portal/master/side_a/wilderness_to_valley + portal_id = "wilderness_valley" + +/obj/effect/map_effect/portal/master/side_b/wilderness_to_valley + portal_id = "wilderness_valley" diff --git a/maps/southern_cross/structures/closets/engineering.dm b/modular_chomp/maps/southern_cross/structures/closets/engineering.dm similarity index 100% rename from maps/southern_cross/structures/closets/engineering.dm rename to modular_chomp/maps/southern_cross/structures/closets/engineering.dm diff --git a/maps/southern_cross/structures/closets/medical.dm b/modular_chomp/maps/southern_cross/structures/closets/medical.dm similarity index 100% rename from maps/southern_cross/structures/closets/medical.dm rename to modular_chomp/maps/southern_cross/structures/closets/medical.dm diff --git a/maps/southern_cross/structures/closets/misc.dm b/modular_chomp/maps/southern_cross/structures/closets/misc.dm similarity index 100% rename from maps/southern_cross/structures/closets/misc.dm rename to modular_chomp/maps/southern_cross/structures/closets/misc.dm diff --git a/maps/southern_cross/structures/closets/research.dm b/modular_chomp/maps/southern_cross/structures/closets/research.dm similarity index 100% rename from maps/southern_cross/structures/closets/research.dm rename to modular_chomp/maps/southern_cross/structures/closets/research.dm diff --git a/maps/southern_cross/structures/closets/security.dm b/modular_chomp/maps/southern_cross/structures/closets/security.dm similarity index 100% rename from maps/southern_cross/structures/closets/security.dm rename to modular_chomp/maps/southern_cross/structures/closets/security.dm diff --git a/maps/southern_cross/submaps/_southern_cross_submaps.dm b/modular_chomp/maps/southern_cross/submaps/_southern_cross_submaps.dm similarity index 93% rename from maps/southern_cross/submaps/_southern_cross_submaps.dm rename to modular_chomp/maps/southern_cross/submaps/_southern_cross_submaps.dm index 1cc50dbc22..0d9a22a8ad 100644 --- a/maps/southern_cross/submaps/_southern_cross_submaps.dm +++ b/modular_chomp/maps/southern_cross/submaps/_southern_cross_submaps.dm @@ -42,20 +42,20 @@ /datum/map_template/sc_lateload/gateway/snowfield name = "Snow Field" desc = "An old base in middle of snowy wasteland" - mappath = "maps/southern_cross/submaps/gateway/snowfield.dmm" + mappath = 'gateway/snowfield.dmm' #include "gateway/darkrps.dm" /datum/map_template/sc_lateload/gateway/darkrps name = "Abandoned City" desc = "An abandoned city overrun with piracy and mercernaries." - mappath = "maps/southern_cross/submaps/gateway/darkrps.dmm" + mappath = 'gateway/darkrps.dmm' associated_map_datum = /datum/map_z_level/sc_lateload/gateway_destination #include "gateway/diescraper.dm" /datum/map_template/sc_lateload/gateway/diescraper name = "Skyscraper" desc = "A skyscraper of various businesses, apartments, and recreations. Do not fall" - mappath = "maps/southern_cross/submaps/gateway/diescraper.dmm" + mappath = 'gateway/diescraper.dmm' associated_map_datum = /datum/map_z_level/sc_lateload/gateway_destination #include "gateway/BaseBlep.dm" @@ -63,28 +63,28 @@ name = "Base Blep" desc = "A brand new but already lost base at the end of a squishy canyon" - mappath = "maps/southern_cross/submaps/gateway/BaseBlep.dmm" + mappath = 'gateway/BaseBlep.dmm' associated_map_datum = /datum/map_z_level/sc_lateload/gateway_destination #include "gateway/maddnesslab.dm" /datum/map_template/sc_lateload/gateway/maddnesslab name = "Maddness Lab" desc = "An ancient base brimming with creations of maddness" - mappath = "maps/southern_cross/submaps/gateway/maddnesslab.dmm" + mappath = 'gateway/maddnesslab.dmm' associated_map_datum = /datum/map_z_level/sc_lateload/gateway_destination #include "gateway/carpfarm.dm" /datum/map_template/sc_lateload/gateway/carpfarm name = "Carp Farm" desc = "Asteroid base surrounded by carp" - mappath = "maps/southern_cross/submaps/gateway/carpfarm.dmm" + mappath = '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 = "maps/southern_cross/submaps/gateway/hiddeneclipse.dmm" + mappath = '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 @@ -93,7 +93,7 @@ /datum/map_template/sc_lateload/vr_world name = "VR World" desc = "A dynamic, virtual world." - mappath = "modular_chomp/maps/virtual_reality/constructVR.dmm" //Use modular + mappath = 'modular_chomp/maps/virtual_reality/constructVR.dmm' //Use modular associated_map_datum = /datum/map_z_level/sc_lateload/vr_world /datum/map_z_level/sc_lateload/vr_world @@ -103,13 +103,13 @@ /datum/map_template/sc_lateload/thor name = "Thor Surface" desc = "The jungle like surface of Sif's moon" - mappath = "maps/southern_cross/overmap/planets/thor/thor.dmm" + mappath = 'modular_chomp/maps/southern_cross/overmap/planets/thor/thor.dmm' associated_map_datum = /datum/planet/thor /datum/map_template/sc_lateload/tyr name = "Desert Valley" desc = "An anomalous valley within tyr" - mappath = "maps/southern_sun/overmap/planets/tyr/tyr.dmm" + mappath = 'modular_chomp/maps/southern_cross/overmap/planets/tyr/tyr.dmm' associated_map_datum = /datum/planet/tyr @@ -119,7 +119,7 @@ /datum/map_template/sc_lateload/away_fueldepot name = "Fuel Depot - Z1 Space" desc = "An unmanned fuel depot floating in space." - mappath = "maps/expedition_vr/space/fueldepot.dmm" + mappath = 'maps/expedition_vr/space/fueldepot.dmm' associated_map_datum = /datum/map_z_level/sc_lateload/away_fueldepot /datum/map_z_level/sc_lateload/away_fueldepot diff --git a/maps/southern_cross/submaps/asteroid_belt/_templates.dm b/modular_chomp/maps/southern_cross/submaps/asteroid_belt/_templates.dm similarity index 100% rename from maps/southern_cross/submaps/asteroid_belt/_templates.dm rename to modular_chomp/maps/southern_cross/submaps/asteroid_belt/_templates.dm diff --git a/maps/southern_cross/submaps/asteroid_belt/belt_miner_things.dm b/modular_chomp/maps/southern_cross/submaps/asteroid_belt/belt_miner_things.dm similarity index 100% rename from maps/southern_cross/submaps/asteroid_belt/belt_miner_things.dm rename to modular_chomp/maps/southern_cross/submaps/asteroid_belt/belt_miner_things.dm diff --git a/maps/southern_cross/submaps/asteroid_belt/broken_o2_gen.dmm b/modular_chomp/maps/southern_cross/submaps/asteroid_belt/broken_o2_gen.dmm similarity index 100% rename from maps/southern_cross/submaps/asteroid_belt/broken_o2_gen.dmm rename to modular_chomp/maps/southern_cross/submaps/asteroid_belt/broken_o2_gen.dmm diff --git a/maps/southern_cross/submaps/asteroid_belt/corrupt_hound_bay.dmm b/modular_chomp/maps/southern_cross/submaps/asteroid_belt/corrupt_hound_bay.dmm similarity index 100% rename from maps/southern_cross/submaps/asteroid_belt/corrupt_hound_bay.dmm rename to modular_chomp/maps/southern_cross/submaps/asteroid_belt/corrupt_hound_bay.dmm diff --git a/maps/southern_cross/submaps/asteroid_belt/crashed_shuttle.dmm b/modular_chomp/maps/southern_cross/submaps/asteroid_belt/crashed_shuttle.dmm similarity index 100% rename from maps/southern_cross/submaps/asteroid_belt/crashed_shuttle.dmm rename to modular_chomp/maps/southern_cross/submaps/asteroid_belt/crashed_shuttle.dmm diff --git a/maps/southern_cross/submaps/asteroid_belt/frost_spider_nest.dmm b/modular_chomp/maps/southern_cross/submaps/asteroid_belt/frost_spider_nest.dmm similarity index 100% rename from maps/southern_cross/submaps/asteroid_belt/frost_spider_nest.dmm rename to modular_chomp/maps/southern_cross/submaps/asteroid_belt/frost_spider_nest.dmm diff --git a/maps/southern_cross/submaps/asteroid_belt/hard_cave.dmm b/modular_chomp/maps/southern_cross/submaps/asteroid_belt/hard_cave.dmm similarity index 100% rename from maps/southern_cross/submaps/asteroid_belt/hard_cave.dmm rename to modular_chomp/maps/southern_cross/submaps/asteroid_belt/hard_cave.dmm diff --git a/maps/southern_cross/submaps/asteroid_belt/infection_pod.dmm b/modular_chomp/maps/southern_cross/submaps/asteroid_belt/infection_pod.dmm similarity index 100% rename from maps/southern_cross/submaps/asteroid_belt/infection_pod.dmm rename to modular_chomp/maps/southern_cross/submaps/asteroid_belt/infection_pod.dmm diff --git a/maps/southern_cross/submaps/asteroid_belt/inferno.dmm b/modular_chomp/maps/southern_cross/submaps/asteroid_belt/inferno.dmm similarity index 100% rename from maps/southern_cross/submaps/asteroid_belt/inferno.dmm rename to modular_chomp/maps/southern_cross/submaps/asteroid_belt/inferno.dmm diff --git a/maps/southern_cross/submaps/asteroid_belt/large_cave.dmm b/modular_chomp/maps/southern_cross/submaps/asteroid_belt/large_cave.dmm similarity index 100% rename from maps/southern_cross/submaps/asteroid_belt/large_cave.dmm rename to modular_chomp/maps/southern_cross/submaps/asteroid_belt/large_cave.dmm diff --git a/maps/southern_cross/submaps/asteroid_belt/mimicry.dmm b/modular_chomp/maps/southern_cross/submaps/asteroid_belt/mimicry.dmm similarity index 100% rename from maps/southern_cross/submaps/asteroid_belt/mimicry.dmm rename to modular_chomp/maps/southern_cross/submaps/asteroid_belt/mimicry.dmm diff --git a/maps/southern_cross/submaps/asteroid_belt/mysterious_cavern.dmm b/modular_chomp/maps/southern_cross/submaps/asteroid_belt/mysterious_cavern.dmm similarity index 100% rename from maps/southern_cross/submaps/asteroid_belt/mysterious_cavern.dmm rename to modular_chomp/maps/southern_cross/submaps/asteroid_belt/mysterious_cavern.dmm diff --git a/maps/southern_cross/submaps/asteroid_belt/normal_cave.dmm b/modular_chomp/maps/southern_cross/submaps/asteroid_belt/normal_cave.dmm similarity index 100% rename from maps/southern_cross/submaps/asteroid_belt/normal_cave.dmm rename to modular_chomp/maps/southern_cross/submaps/asteroid_belt/normal_cave.dmm diff --git a/maps/southern_cross/submaps/asteroid_belt/pressure_seal.dmm b/modular_chomp/maps/southern_cross/submaps/asteroid_belt/pressure_seal.dmm similarity index 100% rename from maps/southern_cross/submaps/asteroid_belt/pressure_seal.dmm rename to modular_chomp/maps/southern_cross/submaps/asteroid_belt/pressure_seal.dmm diff --git a/maps/southern_cross/submaps/asteroid_belt/space_cave.dmm b/modular_chomp/maps/southern_cross/submaps/asteroid_belt/space_cave.dmm similarity index 100% rename from maps/southern_cross/submaps/asteroid_belt/space_cave.dmm rename to modular_chomp/maps/southern_cross/submaps/asteroid_belt/space_cave.dmm diff --git a/maps/southern_cross/submaps/gateway/BaseBlep.dm b/modular_chomp/maps/southern_cross/submaps/gateway/BaseBlep.dm similarity index 100% rename from maps/southern_cross/submaps/gateway/BaseBlep.dm rename to modular_chomp/maps/southern_cross/submaps/gateway/BaseBlep.dm diff --git a/maps/southern_cross/submaps/gateway/BaseBlep.dmm b/modular_chomp/maps/southern_cross/submaps/gateway/BaseBlep.dmm similarity index 100% rename from maps/southern_cross/submaps/gateway/BaseBlep.dmm rename to modular_chomp/maps/southern_cross/submaps/gateway/BaseBlep.dmm diff --git a/maps/southern_cross/submaps/gateway/carpfarm.dm b/modular_chomp/maps/southern_cross/submaps/gateway/carpfarm.dm similarity index 100% rename from maps/southern_cross/submaps/gateway/carpfarm.dm rename to modular_chomp/maps/southern_cross/submaps/gateway/carpfarm.dm diff --git a/maps/southern_cross/submaps/gateway/carpfarm.dmm b/modular_chomp/maps/southern_cross/submaps/gateway/carpfarm.dmm similarity index 100% rename from maps/southern_cross/submaps/gateway/carpfarm.dmm rename to modular_chomp/maps/southern_cross/submaps/gateway/carpfarm.dmm diff --git a/maps/southern_cross/submaps/gateway/darkrps.dm b/modular_chomp/maps/southern_cross/submaps/gateway/darkrps.dm similarity index 100% rename from maps/southern_cross/submaps/gateway/darkrps.dm rename to modular_chomp/maps/southern_cross/submaps/gateway/darkrps.dm diff --git a/maps/southern_cross/submaps/gateway/darkrps.dmm b/modular_chomp/maps/southern_cross/submaps/gateway/darkrps.dmm similarity index 100% rename from maps/southern_cross/submaps/gateway/darkrps.dmm rename to modular_chomp/maps/southern_cross/submaps/gateway/darkrps.dmm diff --git a/maps/southern_cross/submaps/gateway/diescraper.dm b/modular_chomp/maps/southern_cross/submaps/gateway/diescraper.dm similarity index 100% rename from maps/southern_cross/submaps/gateway/diescraper.dm rename to modular_chomp/maps/southern_cross/submaps/gateway/diescraper.dm diff --git a/maps/southern_cross/submaps/gateway/diescraper.dmm b/modular_chomp/maps/southern_cross/submaps/gateway/diescraper.dmm similarity index 100% rename from maps/southern_cross/submaps/gateway/diescraper.dmm rename to modular_chomp/maps/southern_cross/submaps/gateway/diescraper.dmm diff --git a/maps/southern_cross/submaps/gateway/hiddeneclipse.dm b/modular_chomp/maps/southern_cross/submaps/gateway/hiddeneclipse.dm similarity index 100% rename from maps/southern_cross/submaps/gateway/hiddeneclipse.dm rename to modular_chomp/maps/southern_cross/submaps/gateway/hiddeneclipse.dm diff --git a/maps/southern_cross/submaps/gateway/hiddeneclipse.dmm b/modular_chomp/maps/southern_cross/submaps/gateway/hiddeneclipse.dmm similarity index 100% rename from maps/southern_cross/submaps/gateway/hiddeneclipse.dmm rename to modular_chomp/maps/southern_cross/submaps/gateway/hiddeneclipse.dmm diff --git a/maps/southern_cross/submaps/gateway/maddnesslab.dm b/modular_chomp/maps/southern_cross/submaps/gateway/maddnesslab.dm similarity index 100% rename from maps/southern_cross/submaps/gateway/maddnesslab.dm rename to modular_chomp/maps/southern_cross/submaps/gateway/maddnesslab.dm diff --git a/maps/southern_cross/submaps/gateway/maddnesslab.dmm b/modular_chomp/maps/southern_cross/submaps/gateway/maddnesslab.dmm similarity index 100% rename from maps/southern_cross/submaps/gateway/maddnesslab.dmm rename to modular_chomp/maps/southern_cross/submaps/gateway/maddnesslab.dmm diff --git a/maps/southern_cross/submaps/gateway/snowfield.dm b/modular_chomp/maps/southern_cross/submaps/gateway/snowfield.dm similarity index 100% rename from maps/southern_cross/submaps/gateway/snowfield.dm rename to modular_chomp/maps/southern_cross/submaps/gateway/snowfield.dm diff --git a/maps/southern_cross/submaps/gateway/snowfield.dmm b/modular_chomp/maps/southern_cross/submaps/gateway/snowfield.dmm similarity index 100% rename from maps/southern_cross/submaps/gateway/snowfield.dmm rename to modular_chomp/maps/southern_cross/submaps/gateway/snowfield.dmm diff --git a/maps/southern_cross/submaps/gateway/snowfield_ch.dm b/modular_chomp/maps/southern_cross/submaps/gateway/snowfield_ch.dm similarity index 100% rename from maps/southern_cross/submaps/gateway/snowfield_ch.dm rename to modular_chomp/maps/southern_cross/submaps/gateway/snowfield_ch.dm diff --git a/maps/southern_cross/submaps/sc_belt_miner.dmm b/modular_chomp/maps/southern_cross/submaps/sc_belt_miner.dmm similarity index 100% rename from maps/southern_cross/submaps/sc_belt_miner.dmm rename to modular_chomp/maps/southern_cross/submaps/sc_belt_miner.dmm diff --git a/maps/southern_cross/turfs/outdoors.dm b/modular_chomp/maps/southern_cross/turfs/outdoors.dm similarity index 100% rename from maps/southern_cross/turfs/outdoors.dm rename to modular_chomp/maps/southern_cross/turfs/outdoors.dm diff --git a/modular_chomp/code/game/turfs/turfpacks/packs_sim/turfpacks_sim_outdoors.dm b/modular_chomp/maps/turfpacks/packs_sim/turfpacks_sim_outdoors.dm similarity index 100% rename from modular_chomp/code/game/turfs/turfpacks/packs_sim/turfpacks_sim_outdoors.dm rename to modular_chomp/maps/turfpacks/packs_sim/turfpacks_sim_outdoors.dm diff --git a/modular_chomp/code/game/turfs/turfpacks/packs_sim/turfpacks_sim_special.dm b/modular_chomp/maps/turfpacks/packs_sim/turfpacks_sim_special.dm similarity index 100% rename from modular_chomp/code/game/turfs/turfpacks/packs_sim/turfpacks_sim_special.dm rename to modular_chomp/maps/turfpacks/packs_sim/turfpacks_sim_special.dm diff --git a/modular_chomp/code/game/turfs/turfpacks/packs_sim/turfpacks_sim_tiled.dm b/modular_chomp/maps/turfpacks/packs_sim/turfpacks_sim_tiled.dm similarity index 100% rename from modular_chomp/code/game/turfs/turfpacks/packs_sim/turfpacks_sim_tiled.dm rename to modular_chomp/maps/turfpacks/packs_sim/turfpacks_sim_tiled.dm diff --git a/modular_chomp/code/game/turfs/turfpacks/packs_sim/turfpacks_sim_walls.dm b/modular_chomp/maps/turfpacks/packs_sim/turfpacks_sim_walls.dm similarity index 100% rename from modular_chomp/code/game/turfs/turfpacks/packs_sim/turfpacks_sim_walls.dm rename to modular_chomp/maps/turfpacks/packs_sim/turfpacks_sim_walls.dm diff --git a/modular_chomp/code/game/turfs/turfpacks/packs_unsim/turfpacks_unsim_outdoors.dm b/modular_chomp/maps/turfpacks/packs_unsim/turfpacks_unsim_outdoors.dm similarity index 100% rename from modular_chomp/code/game/turfs/turfpacks/packs_unsim/turfpacks_unsim_outdoors.dm rename to modular_chomp/maps/turfpacks/packs_unsim/turfpacks_unsim_outdoors.dm diff --git a/modular_chomp/code/game/turfs/turfpacks/packs_unsim/turfpacks_unsim_special.dm b/modular_chomp/maps/turfpacks/packs_unsim/turfpacks_unsim_special.dm similarity index 100% rename from modular_chomp/code/game/turfs/turfpacks/packs_unsim/turfpacks_unsim_special.dm rename to modular_chomp/maps/turfpacks/packs_unsim/turfpacks_unsim_special.dm diff --git a/modular_chomp/code/game/turfs/turfpacks/packs_unsim/turfpacks_unsim_tiled.dm b/modular_chomp/maps/turfpacks/packs_unsim/turfpacks_unsim_tiled.dm similarity index 100% rename from modular_chomp/code/game/turfs/turfpacks/packs_unsim/turfpacks_unsim_tiled.dm rename to modular_chomp/maps/turfpacks/packs_unsim/turfpacks_unsim_tiled.dm diff --git a/modular_chomp/code/game/turfs/turfpacks/packs_unsim/turfpacks_unsim_walls.dm b/modular_chomp/maps/turfpacks/packs_unsim/turfpacks_unsim_walls.dm similarity index 100% rename from modular_chomp/code/game/turfs/turfpacks/packs_unsim/turfpacks_unsim_walls.dm rename to modular_chomp/maps/turfpacks/packs_unsim/turfpacks_unsim_walls.dm diff --git a/modular_chomp/code/game/turfs/turfpacks/turfpacks.dm b/modular_chomp/maps/turfpacks/turfpacks.dm similarity index 100% rename from modular_chomp/code/game/turfs/turfpacks/turfpacks.dm rename to modular_chomp/maps/turfpacks/turfpacks.dm diff --git a/modular_chomp/code/game/turfs/turfpacks/unsim_turfs/unsim_turfs.dm b/modular_chomp/maps/turfpacks/unsim_turfs/unsim_turfs.dm similarity index 100% rename from modular_chomp/code/game/turfs/turfpacks/unsim_turfs/unsim_turfs.dm rename to modular_chomp/maps/turfpacks/unsim_turfs/unsim_turfs.dm diff --git a/modular_chomp/code/game/turfs/turfpacks/unsim_turfs/unsim_turfs_outdoors.dm b/modular_chomp/maps/turfpacks/unsim_turfs/unsim_turfs_outdoors.dm similarity index 100% rename from modular_chomp/code/game/turfs/turfpacks/unsim_turfs/unsim_turfs_outdoors.dm rename to modular_chomp/maps/turfpacks/unsim_turfs/unsim_turfs_outdoors.dm diff --git a/modular_chomp/code/game/turfs/turfpacks/unsim_turfs/unsim_turfs_special.dm b/modular_chomp/maps/turfpacks/unsim_turfs/unsim_turfs_special.dm similarity index 100% rename from modular_chomp/code/game/turfs/turfpacks/unsim_turfs/unsim_turfs_special.dm rename to modular_chomp/maps/turfpacks/unsim_turfs/unsim_turfs_special.dm diff --git a/modular_chomp/code/game/turfs/turfpacks/unsim_turfs/unsim_turfs_tiles.dm b/modular_chomp/maps/turfpacks/unsim_turfs/unsim_turfs_tiles.dm similarity index 100% rename from modular_chomp/code/game/turfs/turfpacks/unsim_turfs/unsim_turfs_tiles.dm rename to modular_chomp/maps/turfpacks/unsim_turfs/unsim_turfs_tiles.dm diff --git a/modular_chomp/code/game/turfs/turfpacks/unsim_turfs/unsim_turfs_walls.dm b/modular_chomp/maps/turfpacks/unsim_turfs/unsim_turfs_walls.dm similarity index 100% rename from modular_chomp/code/game/turfs/turfpacks/unsim_turfs/unsim_turfs_walls.dm rename to modular_chomp/maps/turfpacks/unsim_turfs/unsim_turfs_walls.dm diff --git a/modular_chomp/maps/~map_system/maps.dm b/modular_chomp/maps/~map_system/maps.dm new file mode 100644 index 0000000000..a1ec1d5cc8 --- /dev/null +++ b/modular_chomp/maps/~map_system/maps.dm @@ -0,0 +1,373 @@ +var/datum/map/using_map = new USING_MAP_DATUM +var/list/all_maps = list() + +/hook/startup/proc/initialise_map_list() + for(var/type in subtypesof(/datum/map)) + var/datum/map/M + if(type == using_map.type) + M = using_map + M.setup_map() + else + M = new type + if(!M.path) + log_debug("Map '[M]' does not have a defined path, not adding to map list!") + else + all_maps[M.path] = M + return 1 + + +/datum/map + var/name = "Unnamed Map" + var/full_name = "Unnamed Map" + var/path + + var/zlevel_datum_type // If populated, all subtypes of this type will be instantiated and used to populate the *_levels lists. + var/list/base_turf_by_z = list() // Custom base turf by Z-level. Defaults to world.turf for unlisted Z-levels + + // Automatically populated lists made static for faster lookups + var/static/list/zlevels = list() + var/static/list/station_levels = list() // Z-levels the station exists on + var/static/list/admin_levels = list() // Z-levels for admin functionality (Centcom, shuttle transit, etc) + var/static/list/contact_levels = list() // Z-levels that can be contacted from the station, for eg announcements + var/static/list/player_levels = list() // Z-levels a character can typically reach + var/static/list/sealed_levels = list() // Z-levels that don't allow random transit at edge + var/static/list/xenoarch_exempt_levels = list() //Z-levels exempt from xenoarch finds and digsites spawning. + var/static/list/persist_levels = list() // Z-levels where SSpersistence should persist between rounds. Defaults to station_levels if unset. + var/static/list/secret_levels = list() // Z-levels that (non-admin) ghosts can't get to + var/static/list/hidden_levels = list() // Z-levels who's contents are hidden, but not forbidden (gateways) + var/static/list/empty_levels = list() // Empty Z-levels that may be used for various things + var/static/list/vorespawn_levels = list() //Z-levels where players are allowed to vore latejoin to. //CHOMPedit: the number of missing chompedits is giving me an aneurysm + var/static/list/mappable_levels = list()// List of levels where mapping or other similar devices might work fully + var/static/list/below_blocked_levels = list()// List of levels where mapping or other similar devices might work fully + // End Static Lists + + // Z-levels available to various consoles, such as the crew monitor. Defaults to station_levels if unset. + var/list/map_levels + + // E-mail TLDs to use for NTnet modular computer e-mail addresses + var/list/usable_email_tlds = list("freemail.nt") + + //This list contains the z-level numbers which can be accessed via space travel and the percentile chances to get there. + var/list/accessible_z_levels = list() + + //List of additional z-levels to load above the existing .dmm file z-levels using the maploader. Must be map template >>> NAMES <<<. + var/list/lateload_z_levels = list() + + //Similar to above, but only pick ONE to load, useful for random away missions and whatnot + var/list/lateload_gateway = list() + var/list/lateload_overmap = list() //VOREStation Add - The same thing as gateway, but not + var/list/lateload_redgate = list() //VOREStation Add - The same thing as gateway, but safe-ish + + var/list/allowed_jobs = list() //Job datums to use. + //Works a lot better so if we get to a point where three-ish maps are used + //We don't have to C&P ones that are only common between two of them + //That doesn't mean we have to include them with the rest of the jobs though, especially for map specific ones. + //Also including them lets us override already created jobs, letting us keep the datums to a minimum mostly. + //This is probably a lot longer explanation than it needs to be. + + var/list/holomap_smoosh // List of lists of zlevels to smoosh into single icons + var/list/holomap_offset_x = list() + var/list/holomap_offset_y = list() + var/list/holomap_legend_x = list() + var/list/holomap_legend_y = list() + var/list/meteor_strike_areas // VOREStation Edit - Areas meteor strikes may choose to hit. + var/ai_shell_restricted = FALSE //VOREStation Addition - are there z-levels restricted? + var/ai_shell_allowed_levels = list() //VOREStation Addition - which z-levels ARE we allowed to visit? + + //VOREStation Addition Start + var/list/belter_docked_z = list() + var/list/belter_transit_z = list() + var/list/belter_belt_z = list() + var/list/mining_station_z = list() + var/list/mining_outpost_z = list() + //VOREStation Addition End + + var/station_name = "BAD Station" + var/station_short = "Baddy" + var/dock_name = "THE PirateBay" + var/dock_type = "station" //VOREStation Edit - for a list of valid types see the switch block in air_traffic.dm at line 148 + var/boss_name = "Captain Roger" + var/boss_short = "Cap'" + var/company_name = "BadMan" + var/company_short = "BM" + var/starsys_name = "Dull Star" + + var/shuttle_docked_message + var/shuttle_leaving_dock + var/shuttle_called_message + var/shuttle_recall_message + var/shuttle_name = "NAS |Faraday|" // YW EDIT: default name 'NAS |Hawking|' + var/emergency_shuttle_docked_message + var/emergency_shuttle_leaving_dock + var/emergency_shuttle_called_message + var/emergency_shuttle_recall_message + + var/list/station_networks = list() // Camera networks that will show up on the console. + var/list/secondary_networks = list() // Camera networks that exist, but don't show on regular camera monitors. + + var/bot_patrolling = TRUE // Determines if this map supports automated bot patrols + + var/allowed_spawns = list("Arrivals Shuttle","Gateway", "Cryogenic Storage", "Cyborg Storage") + + // VOREStation Edit - Persistence! + var/datum/spawnpoint/spawnpoint_died = /datum/spawnpoint/arrivals // Used if you end the round dead. + var/datum/spawnpoint/spawnpoint_left = /datum/spawnpoint/arrivals // Used of you end the round at centcom. + var/datum/spawnpoint/spawnpoint_stayed = /datum/spawnpoint/cryo // Used if you end the round on the station. + // VOREStation Edit End + + var/use_overmap = 0 // If overmap should be used (including overmap space travel override) + var/overmap_size = 20 // Dimensions of overmap zlevel if overmap is used. + var/overmap_z = 0 // If 0 will generate overmap zlevel on init. Otherwise will populate the zlevel provided. + var/overmap_event_areas = 0 // How many event "clouds" will be generated + + var/datum/skybox_settings/default_skybox // What skybox do we use if a zlevel doesn't have a custom one? Provide a type. + + //CHOMPStation Edit Start TFF 24/12/19 - Chompers welcome screen message + var/lobby_icon = 'icons/misc/CHOMPSTATION.gif' // The icon which contains the lobby image(s) + var/list/lobby_screens = list() // The list of lobby screen to pick() from. If left unset the first icon state is always selected. + //CHOMPStation Edit End + + var/default_law_type = /datum/ai_laws/nanotrasen // The default lawset use by synth units, if not overriden by their laws var. + + var/id_hud_icons = 'icons/mob/hud.dmi' // Used by the ID HUD (primarily sechud) overlay. + + // Some maps include areas for that map only and don't exist when not compiled, so CI needs this to learn of new areas that are specific to a map. + var/list/unit_test_exempt_areas = list() + var/list/unit_test_exempt_from_atmos = list() + var/list/unit_test_exempt_from_apc = list() + var/list/unit_test_exempt_from_wires = list() + var/list/unit_test_z_levels //To test more than Z1, set your z-levels to test here. + + var/list/planet_datums_to_make = list() // Types of `/datum/planet`s that will be instantiated by SSPlanets. + +/datum/map/New() + ..() + if(zlevel_datum_type) + for(var/type in subtypesof(zlevel_datum_type)) + new type(src) + if(!map_levels?.len) + map_levels = station_levels.Copy() + if(!mappable_levels?.len) + mappable_levels = station_levels.Copy() + if(!persist_levels?.len) + persist_levels = station_levels.Copy() + if(!mappable_levels?.len) + mappable_levels = station_levels.Copy() + if(!allowed_jobs || !allowed_jobs.len) + allowed_jobs = subtypesof(/datum/job) + if(default_skybox) //Type was specified + default_skybox = new default_skybox() + else + default_skybox = new() + +// Gets the current time on a current zlevel, and returns a time datum +/datum/map/proc/get_zlevel_time(var/z) + if(!z) + z = 1 + var/datum/planet/P = z <= SSplanets.z_to_planet.len ? SSplanets.z_to_planet[z] : null + // We found a planet tied to that zlevel, give them the time + if(P?.current_time) + return P.current_time + + // We have to invent a time + else + var/datum/time/T = new (station_time_in_ds) + return T + +// Returns a boolean for if it's night or not on a particular zlevel +/datum/map/proc/get_night(var/z) + if(!z) + z = 1 + var/datum/time/now = get_zlevel_time(z) + var/percent = now.seconds_stored / now.seconds_in_day //practically all of these are in DS + + // First quarter, last quarter + if(percent < 0.25 || percent > 0.75) + return TRUE + // Second quarter, third quarter + else + return FALSE + +// Boolean for if we should use SSnightshift night hours +/datum/map/proc/get_nightshift() + return get_night(5) //Defaults to z1, customize however you want on your own maps - CHOMPEdit - Sif is 5 + +/datum/map/proc/setup_map() + return + +/datum/map/proc/perform_map_generation() + return + +/datum/map/proc/get_network_access(var/network) + return 0 + +// By default transition randomly to another zlevel +/datum/map/proc/get_transit_zlevel(var/current_z_level) + var/list/candidates = using_map.accessible_z_levels.Copy() + candidates.Remove(num2text(current_z_level)) + + if(!candidates.len) + return current_z_level + return text2num(pickweight(candidates)) + +/datum/map/proc/get_empty_zlevel() + // Try to free up a z level from existing temp sectors + if(!empty_levels.len) + for(var/Z in map_sectors) + var/obj/effect/overmap/visitable/sector/temporary/T = map_sectors[Z] + T.cleanup() // If we can release some of these, do that. + + // Else, we need to buy a new one. + if(!empty_levels.len) + world.increment_max_z() + empty_levels += world.maxz + return pick_n_take(empty_levels) + +/datum/map/proc/cache_empty_zlevel(var/z) + if(z) // Else, it's not a valid z and we want to expunge it + empty_levels |= z + +//CHOMPAdd Start restricted map view +/datum/map/proc/get_visible_map_levels(var/srcz, var/long_range = FALSE) + if (long_range && (srcz in contact_levels)) + return contact_levels.Copy() - admin_levels + //If in station levels, return station levels + else if (srcz in station_levels) + return station_levels.Copy() + //Just give them back their zlevel + else + return list(srcz) +//CHOMPAdd End + +// Get a list of 'nearby' or 'connected' zlevels. +// You should at least return a list with the given z if nothing else. +/datum/map/proc/get_map_levels(var/srcz, var/long_range = FALSE, var/om_range = -1) + //Get what sector we're in + var/obj/effect/overmap/visitable/O = get_overmap_sector(srcz) + if(istype(O)) + //Just the sector we're in + if(om_range == -1) + return O.map_z.Copy() + + //Otherwise every sector we're on top of + var/list/connections = list() + var/turf/T = get_turf(O) + var/turfrange = long_range ? max(0, om_range) : om_range + for(var/obj/effect/overmap/visitable/V in range(turfrange, T)) + connections += V.map_z // Adding list to list adds contents + return connections + + //Traditional behavior, if not in an overmap sector + else + //If long range, and they're at least in contact levels, return contact levels. + if (long_range && (srcz in contact_levels)) + return contact_levels.Copy() + //If in station levels, return station levels + else if (srcz in station_levels) + return station_levels.Copy() + //Just give them back their zlevel + else + return list(srcz) + +/datum/map/proc/get_zlevel_name(var/index) + var/datum/map_z_level/Z = zlevels["[index]"] + return Z?.name + +// Access check is of the type requires one. These have been carefully selected to avoid allowing the janitor to see channels he shouldn't +// This list needs to be purged but people insist on adding more cruft to the radio. +/datum/map/proc/default_internal_channels() + return list( + num2text(PUB_FREQ) = list(), + num2text(AI_FREQ) = list(access_synth), + num2text(ENT_FREQ) = list(), + num2text(ERT_FREQ) = list(access_cent_specops), + num2text(COMM_FREQ) = list(access_heads), + num2text(ENG_FREQ) = list(access_engine_equip, access_atmospherics), + num2text(MED_FREQ) = list(access_medical_equip), + num2text(MED_I_FREQ) = list(access_medical_equip), + num2text(BDCM_FREQ) = list(access_security), // CHOMPEdit + num2text(SEC_FREQ) = list(access_security), + num2text(SEC_I_FREQ) = list(access_security), + num2text(SCI_FREQ) = list(access_tox,access_robotics,access_xenobiology), + num2text(SUP_FREQ) = list(access_cargo), + num2text(SRV_FREQ) = list(access_janitor, access_hydroponics), + ) + +/datum/map/proc/get_skybox_datum(z) + var/datum/map_z_level/picked = zlevels["[z]"] + if(picked?.custom_skybox) + return picked.custom_skybox + + return default_skybox + +// Another way to setup the map datum that can be convenient. Just declare all your zlevels as subtypes of a common +// subtype of /datum/map_z_level and set zlevel_datum_type on /datum/map to have the lists auto-initialized. + +// Structure to hold zlevel info together in one nice convenient package. +/datum/map_z_level + var/z = 0 // Actual z-index of the zlevel. This had better be right! + var/name // Friendly name of the zlevel + var/flags = 0 // Bitflag of which *_levels lists this z should be put into. + var/turf/base_turf // Type path of the base turf for this z + var/transit_chance = 0 // Percentile chance this z will be chosen for map-edge space transit. + +// Holomaps + var/holomap_offset_x = -1 // Number of pixels to offset the map right (for centering) for this z + var/holomap_offset_y = -1 // Number of pixels to offset the map up (for centering) for this z + var/holomap_legend_x = 96 // x position of the holomap legend for this z + var/holomap_legend_y = 96 // y position of the holomap legend for this z + +// Skybox + var/datum/skybox_settings/custom_skybox // Can override skybox type here for this z + +// Default constructor applies itself to the parent map datum +/datum/map_z_level/New(var/datum/map/map) + if(!z) return + map.zlevels["[z]"] = src + if(flags & MAP_LEVEL_STATION) map.station_levels += z + if(flags & MAP_LEVEL_ADMIN) map.admin_levels += z + if(flags & MAP_LEVEL_CONTACT) map.contact_levels += z + if(flags & MAP_LEVEL_PLAYER) map.player_levels += z + if(flags & MAP_LEVEL_SEALED) map.sealed_levels += z + if(flags & MAP_LEVEL_XENOARCH_EXEMPT) map.xenoarch_exempt_levels += z + if(flags & MAP_LEVEL_VORESPAWN) map.vorespawn_levels += z //CHOMPedit: I stg stop forgetting CHOMPedit comments + if(flags & MAP_LEVEL_PERSIST) map.persist_levels += z + if(flags & MAP_LEVEL_EMPTY) + if(!map.empty_levels) map.empty_levels = list() + map.empty_levels += z + if(flags & MAP_LEVEL_CONSOLES) + if (!map.map_levels) map.map_levels = list() + map.map_levels += z + if(flags & MAP_LEVEL_BELOW_BLOCKED) + if (!map.below_blocked_levels) map.below_blocked_levels = list() + map.below_blocked_levels += z + if(base_turf) + map.base_turf_by_z["[z]"] = base_turf + if(transit_chance) + map.accessible_z_levels["[z]"] = transit_chance + if(flags & MAP_LEVEL_MAPPABLE) + map.mappable_levels |= z + // Holomaps + // Auto-center the map if needed (Guess based on maxx/maxy) + if (holomap_offset_x < 0) + holomap_offset_x = ((HOLOMAP_ICON_SIZE - world.maxx) / 2) + if (holomap_offset_y < 0) + holomap_offset_y = ((HOLOMAP_ICON_SIZE - world.maxy) / 2) + // Assign them to the map lists + LIST_NUMERIC_SET(map.holomap_offset_x, z, holomap_offset_x) + LIST_NUMERIC_SET(map.holomap_offset_y, z, holomap_offset_y) + LIST_NUMERIC_SET(map.holomap_legend_x, z, holomap_legend_x) + LIST_NUMERIC_SET(map.holomap_legend_y, z, holomap_legend_y) + if(custom_skybox) + custom_skybox = new custom_skybox() + +/datum/map_z_level/Destroy(var/force) + stack_trace("Attempt to delete a map_z_level instance [log_info_line(src)]") + if(!force) + return QDEL_HINT_LETMELIVE // No. + if (using_map.zlevels["[z]"] == src) + using_map.zlevels -= "[z]" + return ..() + +/datum/map/proc/get_map_info() + return "No map information available" diff --git a/modular_chomp/maps/~map_system/maps_vr.dm b/modular_chomp/maps/~map_system/maps_vr.dm new file mode 100644 index 0000000000..6baee739a6 --- /dev/null +++ b/modular_chomp/maps/~map_system/maps_vr.dm @@ -0,0 +1,96 @@ +/datum/map + var/list/lateload_gb_north = list() + var/list/lateload_gb_south = list() + var/list/lateload_gb_east = list() + var/list/lateload_gb_west = list() + +/datum/controller/subsystem/mapping/loadLateMaps() + if(using_map.name == "RascalsPass") + var/list/gbn_load = using_map.lateload_gb_north + var/list/gbs_load = using_map.lateload_gb_south + var/list/gbe_load = using_map.lateload_gb_east + var/list/gbw_load = using_map.lateload_gb_west + + + if(LAZYLEN(gbn_load)) //Just copied from gateway picking, this is so we can have a kind of OM map version of the same concept. + var/picklist = pick(gbn_load) + if(!picklist) //No lateload maps at all + return + + if(!islist(picklist)) //So you can have a 'chain' of z-levels that make up one away mission + error("Randompick Z level [picklist] is not a list! Must be in a list!") + return + + for(var/map in picklist) + if(islist(map)) + // TRIPLE NEST. In this situation we pick one at random from the choices in the list. + //This allows a sort of a1,a2,a3,b1,b2,b3,c1,c2,c3 setup where it picks one 'a', one 'b', one 'c' + map = pick(map) + var/datum/map_template/MT = map_templates[map] + if(!istype(MT)) + error("Randompick Z level \"[map]\" is not a valid map!") + else + MT.load_new_z(centered = FALSE) + if(LAZYLEN(gbs_load)) //Just copied from gateway picking, this is so we can have a kind of OM map version of the same concept. + var/picklist = pick(gbs_load) + + if(!picklist) //No lateload maps at all + return + + if(!islist(picklist)) //So you can have a 'chain' of z-levels that make up one away mission + error("Randompick Z level [picklist] is not a list! Must be in a list!") + return + + for(var/map in picklist) + if(islist(map)) + // TRIPLE NEST. In this situation we pick one at random from the choices in the list. + //This allows a sort of a1,a2,a3,b1,b2,b3,c1,c2,c3 setup where it picks one 'a', one 'b', one 'c' + map = pick(map) + var/datum/map_template/MT = map_templates[map] + if(!istype(MT)) + error("Randompick Z level \"[map]\" is not a valid map!") + else + MT.load_new_z(centered = FALSE) + + if(LAZYLEN(gbe_load)) //Just copied from gateway picking, this is so we can have a kind of OM map version of the same concept. + var/picklist = pick(gbe_load) + + if(!picklist) //No lateload maps at all + return + + if(!islist(picklist)) //So you can have a 'chain' of z-levels that make up one away mission + error("Randompick Z level [picklist] is not a list! Must be in a list!") + return + + for(var/map in picklist) + if(islist(map)) + // TRIPLE NEST. In this situation we pick one at random from the choices in the list. + //This allows a sort of a1,a2,a3,b1,b2,b3,c1,c2,c3 setup where it picks one 'a', one 'b', one 'c' + map = pick(map) + var/datum/map_template/MT = map_templates[map] + if(!istype(MT)) + error("Randompick Z level \"[map]\" is not a valid map!") + else + MT.load_new_z(centered = FALSE) + + if(LAZYLEN(gbw_load)) //Just copied from gateway picking, this is so we can have a kind of OM map version of the same concept. + var/picklist = pick(gbw_load) + + if(!picklist) //No lateload maps at all + return + + if(!islist(picklist)) //So you can have a 'chain' of z-levels that make up one away mission + error("Randompick Z level [picklist] is not a list! Must be in a list!") + return + + for(var/map in picklist) + if(islist(map)) + // TRIPLE NEST. In this situation we pick one at random from the choices in the list. + //This allows a sort of a1,a2,a3,b1,b2,b3,c1,c2,c3 setup where it picks one 'a', one 'b', one 'c' + map = pick(map) + var/datum/map_template/MT = map_templates[map] + if(!istype(MT)) + error("Randompick Z level \"[map]\" is not a valid map!") + else + MT.load_new_z(centered = FALSE) + . = ..() \ No newline at end of file diff --git a/tools/github-actions/nanomap-renderer-invoker.sh b/tools/github-actions/nanomap-renderer-invoker.sh index 87b8224160..cc3c756e98 100755 --- a/tools/github-actions/nanomap-renderer-invoker.sh +++ b/tools/github-actions/nanomap-renderer-invoker.sh @@ -2,7 +2,8 @@ BASEDIR=$PWD #Put directories to get maps from here. One per line. mapdirs=( - "maps/southern_cross" + "modular_chomp/maps/southern_cross" + "modular_chomp/maps/soluna_nexus" ) #DO NOT TOUCH THIS VARIABLE. It will automatically fill with any maps in mapdirs that are form MAPNAME-n.dmm where n is the z level. map_files=() diff --git a/vorestation.dme b/vorestation.dme index e3d0c9f188..bcf8cf87ae 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -4701,21 +4701,8 @@ #include "maps\redgate\falls\atoll_decals.dm" #include "maps\redgate\falls\atoll_objs.dm" #include "maps\redgate\falls\atoll_turfs.dm" -#include "maps\southern_cross\southern_cross.dm" -#include "maps\southern_cross\items\encryptionkey_sc.dm" -#include "maps\southern_cross\items\headset_sc.dm" -#include "maps\southern_cross\items\clothing\sc_accessory.dm" -#include "maps\southern_cross\items\clothing\sc_suit.dm" -#include "maps\southern_cross\items\clothing\sc_under.dm" -#include "maps\southern_cross\structures\closets\engineering.dm" -#include "maps\southern_cross\structures\closets\medical.dm" -#include "maps\southern_cross\structures\closets\misc.dm" -#include "maps\southern_cross\structures\closets\research.dm" -#include "maps\southern_cross\structures\closets\security.dm" -#include "maps\southern_cross\turfs\outdoors.dm" #include "maps\submaps\_helpers.dm" #include "maps\submaps\_readme.dm" -#include "maps\~map_system\maps.dm" #include "modular_chomp\code\coalesce_ch.dm" #include "modular_chomp\code\global.dm" #include "modular_chomp\code\__defines\_planes+layers.dm" @@ -4821,12 +4808,6 @@ #include "modular_chomp\code\game\turfs\simulated\outdoors\desert_planet.dm" #include "modular_chomp\code\game\turfs\simulated\outdoors\lava_land.dm" #include "modular_chomp\code\game\turfs\simulated\outdoors\valley.dm" -#include "modular_chomp\code\game\turfs\turfpacks\turfpacks.dm" -#include "modular_chomp\code\game\turfs\turfpacks\unsim_turfs\unsim_turfs.dm" -#include "modular_chomp\code\game\turfs\turfpacks\unsim_turfs\unsim_turfs_outdoors.dm" -#include "modular_chomp\code\game\turfs\turfpacks\unsim_turfs\unsim_turfs_special.dm" -#include "modular_chomp\code\game\turfs\turfpacks\unsim_turfs\unsim_turfs_tiles.dm" -#include "modular_chomp\code\game\turfs\turfpacks\unsim_turfs\unsim_turfs_walls.dm" #include "modular_chomp\code\modules\admin\functions\modify_traits.dm" #include "modular_chomp\code\modules\admin\verbs\debug.dm" #include "modular_chomp\code\modules\admin\verbs\randomverbs.dm" @@ -5143,6 +5124,18 @@ #include "modular_chomp\maps\overmap\om_ships\offmap.dm" #include "modular_chomp\maps\overmap\space_pois\space_areas.dm" #include "modular_chomp\maps\overmap\space_pois\space_pois.dm" +#include "modular_chomp\maps\southern_cross\southern_cross.dm" +#include "modular_chomp\maps\southern_cross\items\encryptionkey_sc.dm" +#include "modular_chomp\maps\southern_cross\items\headset_sc.dm" +#include "modular_chomp\maps\southern_cross\items\clothing\sc_accessory.dm" +#include "modular_chomp\maps\southern_cross\items\clothing\sc_suit.dm" +#include "modular_chomp\maps\southern_cross\items\clothing\sc_under.dm" +#include "modular_chomp\maps\southern_cross\structures\closets\engineering.dm" +#include "modular_chomp\maps\southern_cross\structures\closets\medical.dm" +#include "modular_chomp\maps\southern_cross\structures\closets\misc.dm" +#include "modular_chomp\maps\southern_cross\structures\closets\research.dm" +#include "modular_chomp\maps\southern_cross\structures\closets\security.dm" +#include "modular_chomp\maps\southern_cross\turfs\outdoors.dm" #include "modular_chomp\maps\submaps\engine_submaps\engine.dm" #include "modular_chomp\maps\submaps\engine_submaps\engine_areas.dm" #include "modular_chomp\maps\submaps\engine_submaps\southern_cross\_engine_submaps.dm" @@ -5156,5 +5149,12 @@ #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\turfpacks\turfpacks.dm" +#include "modular_chomp\maps\turfpacks\unsim_turfs\unsim_turfs.dm" +#include "modular_chomp\maps\turfpacks\unsim_turfs\unsim_turfs_outdoors.dm" +#include "modular_chomp\maps\turfpacks\unsim_turfs\unsim_turfs_special.dm" +#include "modular_chomp\maps\turfpacks\unsim_turfs\unsim_turfs_tiles.dm" +#include "modular_chomp\maps\turfpacks\unsim_turfs\unsim_turfs_walls.dm" #include "modular_chomp\maps\virtual_reality\constructVR.dm" +#include "modular_chomp\maps\~map_system\maps.dm" // END_INCLUDE